/* 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, 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  background: #F5F2E9;
  color: #383146;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* BODY & TYPOGRAPHY */
body {
  font-family: 'Lato', Arial, sans-serif;
  background: #F5F2E9;
  color: #383146;
  line-height: 1.6;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #383146;
  line-height: 1.2;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
}

/* GENERAL CONTAINERS AND LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(56, 49, 70, 0.07);
  border-bottom: 1.5px solid #e7e4db;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 3.5px;
  letter-spacing: 0.03em;
  color: #383146;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover {
  background: #A65A2D;
  color: #fff;
}
.main-nav a.cta {
  background: #383146;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(56,49,70, 0.09);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}
.main-nav a.cta:hover {
  background: #A65A2D;
  color: #fff;
  box-shadow: 0 8px 24px rgba(56,49,70,0.18);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #383146;
  cursor: pointer;
  margin-left: 20px;
  z-index: 202;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.20s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ece9e2;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #F5F2E9;
  box-shadow: 0 4px 32px rgba(56,49,70,0.30);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.8,-0.01,0,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #383146;
  align-self: flex-end;
  margin-bottom: 14px;
  padding: 2px 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.17s;
  z-index: 1102;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ece9e2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  border-radius: 5px;
  padding: 13px 6px 13px 0;
  color: #383146;
  background: none;
  font-family: 'Lato', Arial, sans-serif;
  transition: background 0.17s, color 0.22s;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #A65A2D;
  color: #fff;
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: #F5F2E9;
  padding-top: 44px;
  padding-bottom: 44px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #ece9e2;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.02em;
  font-weight: 900;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  color: #383146;
  margin-bottom: 20px;
}
.hero .cta {
  margin-top: 14px;
}
@media (min-width: 700px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .hero .container {
    flex-direction: row;
    align-items: center;
    gap: 54px;
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* CTA BUTTONS */
.cta, a.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #A65A2D;
  color: #fff !important;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 32px;
  padding: 13px 36px;
  box-shadow: 0 4px 20px rgba(166,90,45,.11);
  cursor: pointer;
  transition: background 0.18s, color 0.22s, transform 0.16s, box-shadow 0.18s;
  outline: none;
  text-align: center;
}
.cta:hover, .cta:focus {
  background: #383146;
  color: #fff !important;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 8px 32px rgba(56,49,70,0.20);
}

/* FEATURE GRID & CARDS (Geometric look) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  border: 2.7px solid #ece9e2;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(56,49,70,0.055);
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s, border-color 0.22s, transform 0.13s;
}
.feature-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}
.feature-card h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  letter-spacing: 0.07em;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 34px rgba(56,49,70,0.19);
  border-color: #A65A2D;
  transform: translateY(-2px) scale(1.013);
}

@media (max-width: 950px) {
  .feature-grid {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* SERVICE CARD (Touren & Preise) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border: 2px solid #ece9e2;
  border-radius: 13px;
  padding: 26px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-width: 210px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(56,49,70,0.06);
  position: relative;
  transition: box-shadow 0.20s, border-color 0.19s, transform 0.12s;
}
.service-card:hover {
  border-color: #A65A2D;
  box-shadow: 0 10px 38px rgba(166,90,45,0.11);
  transform: translateY(-2px) scale(1.017);
}
.service-card img {
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
}
.price-badge {
  background: #A65A2D;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  padding: 2px 13px;
  border-radius: 7px 12px 7px 12px / 12px 7px 12px 7px;
  margin-left: 8px;
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .service-card {
    min-width: 0;
    width: 100%;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 22px;
}
.faq-item {
  background: #fff;
  border: 2px solid #ece9e2;
  border-radius: 10px;
  padding: 17px 24px;
  position: relative;
  margin-bottom: 20px;
  transition: border-color 0.20s, box-shadow 0.20s;
}
.faq-item h3 {
  font-size: 1.13rem;
}
.faq-item:hover, .faq-item:focus-within {
  border-color: #A65A2D;
  box-shadow: 0 6px 22px rgba(166,90,45,0.11);
}

/* TEXT IMAGE SECTION / TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.text-section ul, .text-image-section ul {
  margin-left: 16px;
  margin-bottom: 0;
  list-style: disc;
  color: #A65A2D;
}
.text-section li {
  margin-bottom: 8px;
  font-weight: 400;
  color: #383146;
}
.text-section b {
  color: #A65A2D;
  font-weight: 700;
  margin-right: 6px;
  font-family: 'Lato', Arial, sans-serif;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px 20px 22px;
  background: #fff;
  border: 2.3px solid #ece9e2;
  border-radius: 13px;
  box-shadow: 0 4px 16px rgba(56,49,70,0.07);
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: border-color 0.14s, box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #A65A2D;
  box-shadow: 0 10px 36px rgba(166,90,45,0.13);
  transform: translateY(-1.5px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
  color: #383146;
}
.testimonial-author {
  color: #A65A2D;
  font-weight: bold;
  font-size: 1.02rem;
  font-family: 'Lato', Arial, sans-serif;
}
.star-rating {
  color: #A65A2D;
  font-size: 1.17rem;
  letter-spacing: 2.5px;
  user-select: none;
  font-family: 'Lato', Arial, sans-serif;
}

@media (max-width: 740px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* CARDS & CARD CONTAINER SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 17px rgba(56,49,70,0.07);
  transition: box-shadow 0.12s, transform 0.12s;
  border: 2px solid #ece9e2;
}
.card:hover {
  box-shadow: 0 10px 41px rgba(166,90,45,0.11);
  transform: scale(1.013);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* FOOTER */
footer {
  background: #383146;
  color: #fff;
  padding: 48px 0 20px 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
}
.footer-main img {
  height: 38px;
  margin-right: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.19s;
  letter-spacing: 0.03em;
}
.footer-nav a:hover {
  border-bottom: 2px solid #A65A2D;
  color: #A65A2D;
}
.footer-contact {
  font-size: 0.94rem;
  color: #ece9e2;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 740px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* MISC & UTILS */
::-webkit-input-placeholder { color: #b8b2cd; }
::-moz-placeholder { color: #b8b2cd; }
:-ms-input-placeholder { color: #b8b2cd; }
::placeholder { color: #b8b2cd; opacity: 1; }

hr {
  border: none;
  border-top: 2px solid #ece9e2;
  margin: 36px 0;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #383146;
  color: #fff;
  z-index: 2050;
  box-shadow: 0 -2px 20px rgba(56,49,70,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 15px 20px 15px;
  gap: 19px;
  font-size: 1rem;
  animation: slideUpCC 0.47s cubic-bezier(.56,.26,.18,1.02);
}
@keyframes slideUpCC {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 7px;
}
#cookie-consent-banner .cookie-btn {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  font-size: 1.01rem;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  background: #A65A2D;
  color: #fff;
  transition: background 0.17s, color 0.15s;
  margin-left: 0;
}
#cookie-consent-banner .cookie-btn:hover, #cookie-consent-banner .cookie-btn:focus {
  background: #fff;
  color: #A65A2D;
}
#cookie-consent-banner .cookie-btn.secondary {
  background: #fff;
  color: #A65A2D;
  border: 2px solid #A65A2D;
}
#cookie-consent-banner .cookie-btn.secondary:hover, #cookie-consent-banner .cookie-btn.secondary:focus {
  background: #383146;
  color: #fff;
  border-color: #fff;
}

/* Cookie Preferences Modal */
#cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(56,49,70,0.61);
  z-index: 2060;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeCookieOverlay 0.3s;
}
@keyframes fadeCookieOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal-overlay.active {
  display: flex;
}
#cookie-modal {
  background: #fff;
  color: #383146;
  border-radius: 18px;
  box-shadow: 0 6px 45px rgba(56,49,70,0.17);
  max-width: 430px;
  width: 92vw;
  padding: 30px 28px 24px 28px;
  position: relative;
  animation: popCookieModal 0.36s cubic-bezier(.54,.09,.17,.94);
}
@keyframes popCookieModal {
  from { transform: scale(.93); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
#cookie-modal h3 {
  font-size: 1.33rem;
  color: #A65A2D;
  margin-bottom: 14px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
}
#cookie-modal .cookie-category .toggle {
  appearance: none;
  width: 28px; height: 16px;
  background: #ece9e2;
  border-radius: 8px;
  position: relative;
  outline: none;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.18s;
}
#cookie-modal .cookie-category .toggle:checked {
  background: #A65A2D;
}
#cookie-modal .cookie-category .toggle:before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s, box-shadow 0.13s;
  box-shadow: 0 1px 2px rgba(56,49,70,0.12);
}
#cookie-modal .cookie-category .toggle:checked:before {
  transform: translateX(12px);
  background: #F5F2E9;
}
#cookie-modal .cookie-category label {
  font-size: 1.03rem;
  font-family: 'Lato', Arial, sans-serif;
}
#cookie-modal .cookie-category .cookie-always-on {
  background: #b2aea6;
  color: #fff;
  padding: 2px 9px;
  font-size: 0.945rem;
  border-radius: 10px;
  margin-left: 6px;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 13px;
  justify-content: flex-end;
}
#cookie-modal .cookie-btn {
  background: #A65A2D;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
}
#cookie-modal .cookie-btn.secondary {
  background: #ece9e2;
  color: #A65A2D;
}
#cookie-modal .cookie-btn:hover, #cookie-modal .cookie-btn:focus {
  background: #383146;
  color: #fff;
}

/* GEOMETRIC STRUCTURED DESIGN EXTRAS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Content padding */
@media (max-width: 990px) {
  .container {
    padding: 0 8px;
  }
}

/* HEADINGS - Angular/geometric accent for geometric_structured style */
h1, h2, h3 {
  text-transform: none;
  letter-spacing: 0.04em;
}
h1 {
  border-left: 8px solid #A65A2D;
  padding-left: 20px;
  border-radius: 8px;
}
h2 {
  border-left: 6px solid #A65A2D;
  padding-left: 14px;
  border-radius: 6px;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
    padding-left: 12px;
  }
  h2 {
    font-size: 1.33rem;
    padding-left: 8px;
  }
}

/* Link style in text */
.text-section a {
  color: #A65A2D;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.15s;
}
.text-section a:hover, .text-section a:focus {
  color: #383146;
}

/* Utility - Hide visually */
.visually-hidden {
  position: absolute !important;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* Accessibility Focus States */
a:focus, .cta:focus, button:focus, .cookie-btn:focus {
  outline: 2px solid #A65A2D;
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS & TRANSITIONS */
button, .cta, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.2s, color 0.16s, box-shadow 0.18s, transform 0.14s;
}

/* SCROLLBAR for desktop */
@media (min-width: 700px) {
  ::-webkit-scrollbar {
    width: 8px;
    background: #ece9e2;
  }
  ::-webkit-scrollbar-thumb {
    background: #bcb2a9;
    border-radius: 20px;
  }
}

/*--- END ---*/