/* ========================
   CSS RESET & BASE STYLES
   ======================== */
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%;
    font: inherit;
    vertical-align: baseline;
    border-collapse: collapse;
    box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: "Roboto", serif;
  background: #F8F6F3;
  color: #313942;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #B08D57;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #926f3c;
}
strong {
  font-weight: 600;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ================
   TYPOGRAPHY SCALE
   ================ */
h1, .h1 {
  font-family: 'Oswald', serif;
  font-size: 2.5rem;
  line-height: 1.17;
  color: #313942;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Oswald', serif;
  font-size: 2rem;
  line-height: 1.2;
  color: #313942;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
h3, .h3 {
  font-family: 'Oswald', serif;
  font-size: 1.375rem;
  color: #B08D57;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, .h4 {
  font-size: 1.125rem;
  font-family: 'Oswald', serif;
  color: #313942;
}
p, .body {
  margin-bottom: 16px;
  font-family: "Roboto", serif;
  color: #313942;
  font-size: 16px;
}

/* =============
   LAYOUT
   ============= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(49,57,66,0.04);
}

@media (max-width: 800px) {
  .container {
    max-width: 95vw;
  }
  .section {
    padding: 32px 8px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 24px 5vw;
  }
  .content-wrapper,
  .container {
    padding: 0;
  }
}

/* HERO SECTION (/) */
.hero {
  padding: 0;
  background: linear-gradient(120deg, #F8F6F3 0 70%, #ede9e2 100%);
  border-bottom: 1px solid #E0DED9;
  margin-bottom: 0;
}
.hero .container {
  min-height: 400px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.25rem;
  color: #454c53;
  margin-bottom: 24px;
}

/* CARDS & GRIDS */
.card-container, .service-cards, .card-grid, .feature-grid, .team-bios, .badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-cards > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(49,57,66,0.05);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s;
  min-width: 240px;
  flex: 1 1 250px;
  max-width: 330px;
}
.card:hover, .service-cards > div:hover {
  box-shadow: 0 8px 24px 0 rgba(49,57,66,0.12);
}
.service-cards {
  gap: 24px;
}
.service-cards > div {
  align-items: center;
  text-align: left;
}
.feature-grid {
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}
.feature-grid li {
  background: #faf8f4;
  border-radius: 16px;
  padding: 28px 16px 16px 16px;
  box-shadow: 0 0.5px 4px 0 rgba(49,57,66,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 320px;
  transition: box-shadow 0.18s, background 0.18s;
}
.feature-grid li:hover {
  background: #f5efe3;
  box-shadow: 0 6px 20px 0 rgba(176,141,87,0.13);
}
.value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 8px;
}
.badge-list {
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.badge-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6f3ee;
  padding: 10px 20px;
  border-radius: 26px;
  font-weight: 500;
  font-size: 16px;
}

.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.team-bios > div {
  background: #f9f8f6;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px 0 rgba(49,57,66,0.04);
  padding: 18px 20px 18px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 370px;
}

@media (max-width: 1100px) {
  .feature-grid,
  .card-container,
  .service-cards,
  .team-bios {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .feature-grid,
  .service-cards,
  .card-container,
  .team-bios {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid li, .card, .service-cards > div, .team-bios > div {
    min-width: 0;
    max-width: unset;
  }
}

/******
TEXT-IMAGE SECTION (Flexbox, classic proportions)
******/
.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;
  }
}

/* ================
   BUTTONS & CTA
   ================ */
.cta-btn, .service-cards > div a.cta-btn, a.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 2.2em;
  font-family: 'Oswald', serif;
  font-size: 1.19rem;
  font-weight: 600;
  color: #fff;
  background: #313942;
  border-radius: 28px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(40, 44, 48, 0.08);
  letter-spacing: 0.6px;
  outline: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.2s, box-shadow 0.17s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #B08D57;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(176,141,87,0.19);
}

/*******
   HEADER & NAVBAR
********/
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #E8E4DC;
  position: relative;
  z-index: 110;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  gap: 30px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  font-family: 'Oswald', serif;
  font-size: 1.09em;
}
.main-nav a {
  color: #313942;
  padding: 6px 0 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-bottom 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B08D57;
  border-bottom: 2px solid #B08D57;
}
header .cta-btn {
  margin-left: 20px;
}

/******
   MOBILE NAV BURGER BUTTON
******/
.mobile-menu-toggle {
  display: none;
  background: #313942;
  color: #fff;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 250;
  transition: background 0.15s, box-shadow 0.16s;
  box-shadow: 0 4px 16px 0 rgba(49,57,66,0.10);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #B08D57;
}
@media (max-width: 900px) {
  .main-nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/************
   MOBILE MENU OVERLAY
*************/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 82vw;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 32px 0 rgba(49,57,66,0.16);
  transform: translateX(102%);
  transition: transform 0.38s cubic-bezier(0.7,0.2,0.2,1);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px 28px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #B08D57;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 12px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.mobile-nav a {
  color: #313942;
  font-family: 'Oswald', serif;
  font-size: 1.26rem;
  font-weight: 600;
  padding: 12px 0 11px 0;
  border-bottom: 1px solid #EDE7DF;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #B08D57;
  background: #f2ebdf;
  border-radius: 4px;
}
@media (min-width: 900px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/***********
   FOOTER
***********/
footer {
  padding: 40px 0 20px 0;
  background: #f1ede7;
  border-top: 1.5px solid #e2ddd5;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-logo img {
  width: 62px;
  height: auto;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 4px;
  flex-wrap: wrap;
  font-family: 'Oswald', serif;

}
.footer-nav a {
  color: #313942;
  font-size: 1.03rem;
  opacity: 0.89;
  padding: 6px 0;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B08D57;
}
.footer-contact {
  font-size: 0.98rem;
  color: #525458;
  opacity: 0.95;
  text-align: center;
}
.footer-hours {
  font-size: 0.96rem;
  color: #746853;
  text-align: center;
  opacity: 0.93;
}

/* ===============
   TABLES (Preise)
   =============== */
.service-price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Roboto", serif;
  margin: 24px 0 12px 0;
  background: #fff;
  box-shadow: 0 0.5px 8px 0 rgba(49,57,66,0.03);
  border-radius: 11px;
  overflow: hidden;
}
.service-price-table th, .service-price-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid #f1ede7;
}
.service-price-table th {
  background: #ece6db;
  font-family: 'Oswald', serif;
  font-size: 1.08rem;
  color: #313942;
  font-weight: 600;
}
.service-price-table tr:last-child td {
  border-bottom: none;
}
.service-price-table td {
  font-size: 1rem;
  color: #313942;
}
@media (max-width: 700px) {
  .service-price-table th, .service-price-table td {
    font-size: 0.98rem;
    padding: 10px 6px;
  }
}

/*******
  TESTIMONIAL CARDS
*******/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 18px 28px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2.5px 18px 0 rgba(49,57,66,0.08);
  max-width: 590px;
  color: #313942;
  font-size: 1.08rem;
  border-left: 6px solid #B08D57;
  transition: box-shadow 0.16s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(49,57,66,0.14);
  border-left-color: #313942;
}
.client-info {
  font-family: 'Oswald', serif;
  color: #B08D57;
  font-size: 1em;
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.client-info span {
  color: #313942;
  font-size: 1.05em;
  margin-left: 5px;
}

/*****************
 CONTACT PAGE/SECTIONS
*****************/
.contact-details p,
.opening-hours,
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.phone-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #B08D57;
  font-family: 'Oswald', serif;
  font-size: 1.1rem;
  margin-top: 5px;
}
.contact-short {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B08D57;
  font-weight: 500;
  font-size: 1.15em;
}
.text-section {
  font-weight: 600;
  margin: 18px 0 0 0;
}

.beratung-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F6F1EB;
  color: #84744F;
  font-family: 'Oswald', serif;
  font-size: 1.07rem;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 18px;
  margin: 16px 0 5px 0;
  box-shadow: 0 2.5px 7px 0 rgba(176,141,87,0.07);
}

/*******************
  LISTS & INCLUSIONS
*******************/
.benefit-list, .inclusions ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.inclusions ul li {
  color: #515050;
  font-size: 1.07em;
  padding-left: 18px;
  position: relative;
}
.inclusions ul li:before {
  content: '•';
  color: #B08D57;
  position: absolute;
  left: 0;
  font-size: 1em;
  top: 0;
}
.benefit-list li {
  font-size: 1.09em;
  padding-left: 16px;
  position: relative;
}
.benefit-list li:before {
  content: '✔';
  color: #B08D57;
  position: absolute;
  left: 0;
  font-size: 1em;
  top: 0;  
}

/******
    NOTES & MESSAGES
******/
.notes {
  font-size: 0.98em;
  color: #939393;
  margin-top: 7px;
}

/******
   CTA SECTION
******/
.cta {
  background: #313942;
  padding: 40px 0;
  margin-bottom: 0;
}
.cta .container {
  align-items: center;
}
.cta .cta-btn {
  background: #B08D57;
  color: #fff;
  font-size: 1.34em;
  padding: 1.1em 2.7em;
  margin-bottom: 0;
  transition: background 0.21s;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #fff;
  color: #B08D57;
}
.cta .contact-short {
  margin-top: 16px;
  color: #fff;
  font-size: 1.13em;
  font-family: 'Oswald', serif;
}
.cta .contact-short img {
  filter: invert(1) sepia(0.2) saturate(0.5) brightness(1.3);
}

/******
  RESPONSIVE ADJUSTMENTS
******/
@media (max-width:900px) {
  .footer-nav {
    gap: 18px;
    font-size: 0.98em;
  }
  .footer-logo img {
    width: 48px;
  }
  h1, .h1 { font-size: 1.8rem; margin-bottom: 16px; }
  h2, .h2 { font-size: 1.35rem; margin-bottom: 12px; }
  .hero h1 { font-size: 1.8rem; }
  .testimonial-card { padding: 16px; font-size: 1rem; }
}
@media (max-width: 600px) {
  .section {
    border-radius: 8px;
    margin-bottom: 36px;
    padding: 16px 0;
  }
  .hero .container { padding-top: 18px; padding-bottom: 24px; }
  .badge-list { gap: 12px; }
  .team-bios {
    gap: 12px;
  }
}

/******
  ANIMATION UTILS
******/
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
[data-animate] {
  animation: fadeIn 0.65s cubic-bezier(0.7,0.2,0.2,1) forwards;
}

/******
  COOKIE CONSENT BANNER
******/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f9f6ef;
  color: #313942;
  border-top: 2px solid #E8E4DC;
  box-shadow: 0 -3px 21px 0 rgba(49,57,66,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  gap: 24px;
  z-index: 5000;
  font-size: 1rem;
  font-family: "Roboto", serif;
  animation: fadeIn 0.56s ease;
}
.cookie-consent-banner__text {
  max-width: 620px;
  font-size: 0.98em;
  margin-right: 16px;
}
.cookie-consent-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', serif;
  padding: 0.7em 2em;
  font-size: 1.06em;
  border-radius: 22px;
  border: 1.5px solid #B08D57;
  background: #B08D57;
  color: #fff;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
  box-shadow: 0 2px 10px 0 rgba(176,141,87,0.06);
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: #B08D57;
}
.cookie-btn.cookie-settings {
  background: #313942;
  border-color: #313942;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 6px 18px 0 rgba(176,141,87,0.18);
  background: #fff;
  color: #B08D57;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #B08D57;
  color: #fff;
  border-color: #B08D57;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px;
    gap: 15px;
    font-size: 0.97em;
  }
  .cookie-consent-banner__actions {
    gap: 10px;
  }
}

/*****
COOKIE MODAL
******/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(49,57,66,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  animation: fadeIn 0.42s cubic-bezier(0.7,0.2,0.2,1);
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 18px;
  max-width: 430px;
  width: 98vw;
  padding: 36px 28px 24px 28px;
  box-shadow: 0 8px 32px 0 rgba(49,57,66,0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal__close {
  position: absolute;
  top: 13px;
  right: 20px;
  font-size: 1.6em;
  background: none;
  border: none;
  color: #B08D57;
  font-weight: bold;
  cursor: pointer;
}
.cookie-modal__title {
  font-family: 'Oswald', serif;
  font-size: 1.3em;
  color: #B08D57;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 9px 0;
}
.cookie-category label {
  font-size: 1.06em;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B08D57;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  opacity: 0.65;
}

/*****
 ACCESSIBILITY
******/
:focus-visible {
  outline: 2px solid #B08D57;
  outline-offset: 1.5px;
  box-shadow: 0 2px 8px rgba(176,141,87,0.09);
}

/*****
 MICRO-INTERACTIONS
******/
a, button, .cta-btn, .cookie-btn {
  transition: color 0.14s, background 0.16s, border 0.15s, box-shadow 0.16s, filter 0.16s;
}
.card, .service-cards > div, .testimonial-card, .feature-grid li {
  transition: box-shadow 0.19s, background 0.18s, border-color 0.18s;
}

/*****
 GENERAL FLEX UTILITIES
*****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/*********
 SPACING & GAPS (as specified)
*********/
.card-container,
.feature-grid,
.card-grid,
.team-bios,
.badge-list,
.content-grid {
  gap: 24px;
}
.section, .card, .testimonial-card, .feature-grid li, .service-cards > div {
  margin-bottom: 20px;
}
/************
 END CSS
************/
