/* --- CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F9F6F2;
  color: #2D3E50;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #BD8B72;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2D3E50;
}
ul, ol {
  margin-left: 1.3em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2D3E50;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; letter-spacing: 0.02em; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol { margin-bottom: 20px; }
strong {
  color: #BD8B72;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { padding: 30px 8px; margin-bottom: 36px; }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(45,62,80,0.04), 0 1.5px 6px rgba(189,139,114,0.10);
  padding: 32px 28px;
  margin-bottom: 25px;
  margin-top: 12px;
}
@media (max-width: 640px) {
  .text-section {
    padding: 18px 7px;
  }
}

/* --- HEADER --- */
header {
  background: #fff9f4;
  box-shadow: 0 2px 8px 0 rgba(45,62,80,0.09);
  padding: 0;
  z-index: 30;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 0;
}
.logo img {
  height: 52px;
  transition: transform 0.22s;
}
.logo:hover img {
  transform: scale(1.06) rotate(-4deg);
}

/* --- NAVIGATION (Desktop) --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 8px;
  color: #2D3E50;
  transition: background 0.16s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F9F6F2;
  color: #BD8B72;
}
.button-primary {
  background: #BD8B72;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1.05rem;
  box-shadow: 0 2px 14px 0 rgba(189,139,114,0.09);
  letter-spacing: 0.04em;
  border: none;
  margin-left: 12px;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  position: relative;
  z-index: 1;
}
.button-primary:hover, .button-primary:focus {
  background: #2D3E50;
  color: #fff9f4;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 6px 16px 0 rgba(45,62,80,0.10);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #BD8B72;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 2.1rem;
  padding: 6px 15px;
  margin-left: 18px;
  box-shadow: 0 2px 7px 0 rgba(45,62,80,0.09);
  transition: background 0.15s, transform 0.14s;
  z-index: 140;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #2D3E50;
  color: #fff9f4;
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff9f4;
  box-shadow: 0 8px 32px 0 rgba(45,62,80,0.16);
  transform: translateX(-100vw);
  transition: transform 0.33s ease;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 0 0;
  background: #BD8B72;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 130;
  box-shadow: 0 2.5px 14px 0 rgba(45,62,80,0.13);
  transition: background 0.16s, color 0.17s, transform 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2D3E50;
}
.mobile-nav {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0 42px;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 12px 0;
  font-family: 'Playfair Display', Georgia, serif;
  color: #2D3E50;
  border-bottom: 1px solid #F3E4DA;
  width: 100%;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #BD8B72;
  color: #fff;
  border-radius: 8px;
}
@media (max-width: 1100px) {
  .main-nav { gap: 14px; }
  .main-nav a { padding: 8px 8px; font-size: 0.99rem; }
}
@media (max-width: 900px) {
  .main-nav { gap: 8px; }
  .main-nav a { padding: 7px 5.5px; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 500px) {
  .mobile-nav { padding: 0 14px; }
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(100deg, #ffe2d2 0%, #fffdee 100%);
  display: flex;
  align-items: center;
  min-height: 320px;
  margin-bottom: 54px;
  border-bottom-left-radius: 90px 48px;
  border-bottom-right-radius: 90px 48px;
  box-shadow: 0 8px 32px 0 rgba(189,139,114,0.14);
  position: relative;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  height: 100%;
}
.hero .content-wrapper {
  max-width: 760px;
  gap: 16px;
  background: rgba(255,253,238,0.86);
  border-radius: 24px;
  padding: 36px 34px;
  box-shadow: 0 4px 18px rgba(189,139,114,0.07);
  margin-top: 42px;
  margin-bottom: 42px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.7rem;
  color: #BD8B72;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #BD8B72 65%, #2D3E50 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.25rem;
  color: #2D3E50;
}
@media (max-width: 768px) {
  .hero { min-height: 180px; border-bottom-left-radius: 46px 22px; border-bottom-right-radius: 46px 22px; }
  .hero .content-wrapper { padding: 20px 9px; margin-top: 14px; margin-bottom: 21px; }
  .hero h1 { font-size: 1.5rem; }
}

/* --- SPACING CLASSES ---*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(45,62,80,0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(189,139,114,0.16);
  transform: translateY(-3px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; }
}

/* --- FEATURES GRID / SERVICE + FEATURE ITEMS --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px 46px 22px 46px / 28px 38px 34px 26px;
  box-shadow: 0 2.5px 18px 0 rgba(189,139,114,0.09);
  padding: 32px 22px 28px 22px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.12s, background 0.18s;
}
.feature-item img, .service-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature-item:hover, .service-item:hover {
  background: #fff7f2;
  box-shadow: 0 8px 28px 0 rgba(45,62,80,0.13);
  transform: translateY(-3px) scale(1.03);
}
.features-grid > .feature-item:last-child, .features-grid > .service-item:last-child { margin-bottom: 0; }
@media (max-width: 980px) {
  .features-grid, .services-list { flex-direction: column; gap: 18px; }
  .feature-item, .service-item { max-width: 100%; }
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.service-pricing-note {
  margin-top: 24px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff5ef;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 0.5px 11px rgba(189,139,114,0.05);
  transition: box-shadow 0.13s, transform 0.12s, background 0.18s;
  border-left: 7px solid #BD8B72;
}
.testimonial-card p {
  color: #2D3E50;
  font-size: 1.1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #2D3E50;
  opacity: 0.85;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover {
  background: #ffe6da;
  box-shadow: 0 7px 18px 0 rgba(189,139,114,0.17);
  transform: scale(1.015);
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-item {
  background: #fff7f2;
  border-left: 7px solid #BD8B72;
  border-radius: 14px;
  padding: 24px 24px 18px 24px;
  margin-bottom: 10px;
  box-shadow: 0 1px 8px rgba(189,139,114,0.07);
  transition: box-shadow 0.15s;
}
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.faq-item p {
  font-size: 0.99rem;
}
.faq-item:hover {
  box-shadow: 0 4px 13px 0 rgba(45,62,80,0.07);
}

/* --- STEPS LIST (Ablauf) --- */
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.step-item {
  background: #fff;
  border-radius: 18px 36px 18px 32px/14px 42px 32px 22px;
  box-shadow: 0 1px 10px rgba(189,139,114,0.09);
  padding: 26px 22px;
  min-width: 220px;
  max-width: 324px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.step-item h3 { color: #BD8B72; margin-bottom: 8px; }
.step-item:hover {
  box-shadow: 0 8px 18px 0 rgba(45,62,80,0.14);
  transform: translateY(-2.5px) scale(1.02);
}
@media (max-width: 980px) {
  .steps-list { flex-direction: column; gap: 15px; }
  .step-item { max-width: 100%; }
}

/* --- MAP, PARKING INFO, CONTACT --- */
.map-snippet {
  background: #fff7f2;
  border-radius: 18px;
  padding: 22px 20px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.parking-info ul {
  margin-bottom: 0;
  font-size: 1.01rem;
}
.contact-form-hint p {
  font-size: 0.96rem;
  font-style: italic;
  color: #929fa7;
  margin-bottom: 0;
}

/* --- CONFIRMATION --- */
.confirmation-message .content-wrapper {
  align-items: center;
  text-align: center;
  padding: 36px 0;
}
.confirmation-message h1 {
  color: #BD8B72;
  margin-bottom: 16px;
  font-size: 2.1rem;
}

/* --- FOOTER --- */
footer {
  background: #fff9f4;
  padding: 40px 0 14px 0;
  margin-top: 60px;
  border-top-left-radius: 56px 18px;
  border-top-right-radius: 56px 18px;
  box-shadow: 0 -2px 10px 0 rgba(45,62,80,0.04);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-logo-wrapper {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-logo-wrapper img {
  height: 38px;
}
.footer-logo-wrapper span {
  font-family: 'Playfair Display', Georgia, serif;
  color: #BD8B72;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.footer-nav a {
  color: #2D3E50;
  font-size: 0.98rem;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.09s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #BD8B72;
  color: #fff;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe7;
  color: #2D3E50;
  box-shadow: 0 -2px 18px 0 rgba(189,139,114,0.21);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 25px 30px 21px 30px;
  z-index: 160;
  font-size: 1rem;
  animation: cookie-slide-in 0.44s cubic-bezier(.38,.9,.33,1.09);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { margin-bottom: 0; flex: 3 1 200px; }
.cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  background: #BD8B72;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  border: none;
  border-radius: 10px;
  padding: 9px 21px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, transform 0.12s;
  margin: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #2D3E50;
  color: #fffbe7;
  transform: scale(1.04);
}
.cookie-btn.secondary {
  background: #fff;
  color: #BD8B72;
  border: 1.5px solid #BD8B72;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #BD8B72;
  color: #fff;
}
@media (max-width: 640px) {
  .cookie-banner { padding: 16px 4px; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 0.99rem; }
  .cookie-buttons { flex-wrap: wrap; gap: 10px; }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(45,62,80,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal 0.18s cubic-bezier(.53,.03,.95,1.10);
}
@keyframes fadein-modal { from { opacity:0; } to { opacity:1; } }
.cookie-modal {
  background: #fffbe7;
  border-radius: 18px;
  box-shadow: 0 6px 38px 0 rgba(45,62,80,0.22);
  min-width: 330px;
  max-width: 98vw;
  padding: 40px 36px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-size: 1rem;
  z-index: 2010;
  animation: slide-in-modal 0.27s cubic-bezier(.34,.93,.99,1.27);
}
@keyframes slide-in-modal {
  from { transform: translateY(46px); opacity:0.7; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #BD8B72;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  width: 36px;
  height: 18px;
  border-radius: 13px;
  background: #F3E4DA;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-right: 6px;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #BD8B72;
  transition: transform 0.20s, background 0.2s;
}
.cookie-modal .toggle-switch input[type="checkbox"]:checked + .toggle-slider {
  transform: translateX(18px);
  background: #2D3E50;
}
.cookie-modal .cookie-category.essential .toggle-switch {
  background: #f5e8e4;
}
.cookie-modal .cookie-category.essential label {
  opacity: 0.6;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn { margin-top: 6px; }
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 22px;
  background: #BD8B72;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.13s;
  z-index: 2100;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #2D3E50;
}
@media (max-width: 540px) {
  .cookie-modal { min-width: 90vw; padding: 15px 5vw 18px 5vw; }
}

/* --- TYPOGRAPHY ARTISTIC --- */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

::selection { background: #ffe2d2; }

/* --- UNIQUE ARTISTIC TOUCHES --- */
h1, h2, h3 {
  position: relative;
  z-index: 1;
  line-height: 1.1;
}
h2::after {
  content: '';
  display: block;
  width: 66px;
  height: 5px;
  background: #BD8B72;
  border-radius: 3px;
  margin-top: 7px;
}
h1::after {
  content: '';
  display: block;
  width: 36px;
  height: 3.5px;
  background: #2D3E50;
  border-radius: 2px;
  margin-top: 9px;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
a, button, .button-primary {
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, transform 0.12s;
}
.feature-item:hover img, .service-item:hover img {
  transform: scale(1.10) rotate(-9deg);
  transition: transform 0.23s cubic-bezier(.55,.07,1,.53);
}

/* --- FORMS (contact + basic) --- */
input, textarea, select {
  background: #fff;
  color: #2D3E50;
  border: 1.5px solid #E2D3C7;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 1.07rem;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 8px 0 rgba(189,139,114,0.03);
  transition: border 0.12s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid #BD8B72;
  box-shadow: 0 3px 8px 0 rgba(189,139,114,0.08);
}
label {
  font-size: 1rem;
  color: #2D3E50;
}

/* --- RESPONSIVE LAYOUTS (mobile first) --- */
@media (max-width: 800px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .hero .content-wrapper { padding: 15px 3vw; }
}
@media (max-width: 680px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  .button-primary, .cookie-btn { font-size: 0.97rem; padding: 8px 18px; }
  .card, .feature-item, .service-item, .step-item { padding: 12px 8px; border-radius: 11px; font-size: 0.98rem; }
}
@media (max-width: 475px) {
  .container { padding-left: 2.5vw; padding-right: 2.5vw; }
  footer { padding: 20px 0 3px 0; margin-top: 32px; }
}

/* --- Z-INDEX LAYERS --- */
header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { z-index: 1001; }

/* --- MISC --- */
hr {
  border: none;
  border-bottom: 2px solid #F3E4DA;
  margin: 28px 0;
}

/* --- UTILITY FLEX CLASSES --- */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-col {
  flex-direction: column;
}

/* --- ARTISTIC DECORATIVE ELEMENTS --- */
/* Only for decoration, do not overlay content */
.hero::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 120px; height: 44px;
  background: #BD8B72;
  opacity: 0.11;
  border-radius: 60px 45px 30px 30px;
  transform: translateX(-50%) rotate(-7deg);
  z-index: 0;
}

/* --- END --- */
