:root {
  --color-deep: #1f3720;
  --color-deep-light: #2e6b45;
  --color-Ochre: #b07b2f;
  --color-gold: #d4af37;
  --color-sand: #f6e9d3;
  --color-cream: #fcf7ef;
  --color-text: #2c2a24;
  --color-muted: #6f685d;
  --color-ink: #13110f;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(31, 55, 32, 0.12);
  --shadow-sm: 0 4px 12px rgba(31, 55, 32, 0.08);
  --shadow-md: 0 8px 20px rgba(31, 55, 32, 0.12);
  --shadow-lg: 0 16px 32px rgba(31, 55, 32, 0.15);
  font-size: 17px;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Poppins-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Poppins-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Poppins-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/Poppins-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/PlayfairDisplay-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/PlayfairDisplay-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/PlayfairDisplay-900.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  width: 100%;
}
body {
  font-family: 'Poppins', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: var(--color-text);
  background: url("assets/weichao-deng-E0bj4Q53_Dw-unsplash.jpg") no-repeat center center fixed;
  background-size: cover;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-deep);
  text-decoration: none;
}
a:hover {
  color: var(--color-Ochre);
}

.wrapper {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1.4rem 0 1.6rem;
  background: rgba(214, 174, 103, 0.82);
  border-bottom: 1px solid rgba(216, 165, 62, 0.75);
  box-shadow: 0 24px 70px rgba(31, 55, 32, 0.06);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand-image {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(176, 123, 47, 0.22);
  background: #fff;
  transition: border-color 0.2s ease;
}

.brand:hover .brand-image {
  border-color: rgba(176, 123, 47, 0.4);
}

.brand-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-deep);
  font-size: 0.96rem;
}

.brand-subtitle {
  color: var(--color-muted);
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

/* Navigation */
.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.nav-toggle {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 55, 32, 0.35);
  z-index: 1000;
  cursor: pointer;
}

#nav-toggle:checked ~ .nav-overlay {
  display: block;
}

#nav-toggle:checked ~ .nav-links {
  display: flex;
  z-index: 1001;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  padding: 0.75rem 1.2rem;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--color-deep);
  background: transparent;
  color: var(--color-deep);
  letter-spacing: 0.02em;
  position: relative;
  line-height: 1;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  background: var(--color-deep);
  color: #ffffff;
}

.nav-button::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--color-deep);
  box-shadow: 0 5px 0 var(--color-deep), 0 10px 0 var(--color-deep);
  margin-right: 0.6rem;
  transform: translateY(-0.2rem);
  vertical-align: middle;
}
.nav-button:hover::before {
  background: #ffffff;
  box-shadow: 0 5px 0 #ffffff, 0 10px 0 #ffffff;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  background: rgba(214, 174, 103, 0.98);
  border: 1px solid rgba(31, 55, 32, 0.10);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(31, 55, 32, 0.2);
  padding: 0.75rem;
  z-index: 1001;
  width: min(100%, 420px);
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

#nav-toggle:checked ~ .nav-links {
  display: flex;
}

.nav-item {
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  background: transparent;
  color: var(--color-deep);
  border: 1px solid var(--color-deep);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, color 0.12s ease;
  font-size: 0.95rem;
  text-align: center;
}

.nav-item a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  font-weight: 500;
}

.nav-item:hover {
  background: var(--color-deep);
  color: #ffffff;
  transform: translateX(4px);
}

.desktop-nav {
  display: none;
  gap: 1rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.desktop-nav a {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: transparent;
  color: var(--color-deep);
  border: 1px solid var(--color-deep);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  font-weight: 500;
}

.desktop-nav a:hover {
  transform: translateY(-1px);
  background: var(--color-deep);
  color: #ffffff;
}

@media (min-width: 768px) {
  .nav-button,
  .nav-overlay,
  #nav-toggle,
  .nav-links {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
  }
}

.hero-panel {
  margin-top: 0;
  padding: 3.5rem 0 4.8rem;
  background: rgba(31, 55, 32, 0.72);
  box-shadow: 0 24px 70px rgba(31, 55, 32, 0.06);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

/* Responsive two-column layout for hero: main copy + media/categories */ 
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(340px, 520px);
    align-items: stretch;
  }

  .hero-media {
    align-self: stretch;
  }

  #massagen .section-intro h2 .massagen-break {
    display: block;
    margin-left: 10rem;
    padding-top: 2rem;
    line-height: 1.35;
  }
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-categories {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(31,55,32,0.06);
  padding: 0.5rem;
  min-width: 100px;
  width: calc(33% - 0.5rem);
  max-width: 140px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.category-card img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
}
.category-title {
  font-weight: 700;
  color: var(--color-deep);
  font-size: 0.95rem;
  text-align: center;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.12);
}

@media (min-width: 900px) {
  .hero-categories {
    flex-direction: column;
    align-items: stretch;
  }
  .category-card {
    width: 100%;
    max-width: none;
    padding: 0.75rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  .category-card img {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    border-radius: 10px;
  }
  .category-title {
    text-align: left;
  }
}

/* Make hero copy use high-contrast styles like the Yoga/Pflege sections */
.hero-panel .eyebrow {
  color: var(--color-gold);
}

.hero-panel .hero-copy h1 {
  color: #ffffff;
}

.hero-panel .hero-copy p {
  color: rgba(255,255,255,0.92);
}

/* Ensure hero action buttons remain visible on dark background */
.hero-panel .button-secondary {
  background: #fff;
  color: var(--color-deep);
}

.eyebrow,
.section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-Ochre);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.hero-copy h1,
.section-header h2 {
  font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(2.95rem, 5vw, 4.6rem);
  line-height: 1.02;
  max-width: 12ch;
  margin-bottom: 1.2rem;
  color: var(--color-deep);
  letter-spacing: -0.04em;
}

.hero-copy p,
.section-intro p,
.content-card p,
.service-card p,
.timeline-item p,
.footer-grid p {
  color: var(--color-muted);
}

.hero-copy p {
  max-width: 48rem;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  background: var(--color-deep);
  color: #fff;
  box-shadow: 0 18px 35px rgba(31, 55, 32, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-secondary {
  background: #fff;
  color: var(--color-deep);
  border: 1px solid rgba(31, 55, 32, 0.12);
  box-shadow: 0 14px 28px rgba(31, 55, 32, 0.08);
}

.hero-contact {
  align-self: start;
}

.contact-card {
  padding: 2.3rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(176, 123, 47, 0.16);
  box-shadow: 0 30px 70px rgba(31, 55, 32, 0.1);
  backdrop-filter: blur(16px);
}

/* Hero-specific contact styling */
.hero-contact .contact-card {
  padding: 2.8rem 2.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  box-shadow: 0 18px 40px rgba(31,55,32,0.08);
  min-width: 300px;
  max-width: 420px;
}

.hero-contact .contact-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-deep);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-contact .contact-item {
  margin-bottom: 0.9rem;
}

.hero-contact .contact-item-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-Ochre);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.hero-contact .contact-item-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-deep);
}

.hero-contact .contact-item-value a {
  color: var(--color-deep);
  text-decoration: none;
}

@media (max-width: 767px) {
  .hero-contact .contact-card {
    max-width: none;
    width: 100%;
  }

  .header-inner {
    position: relative;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .brand {
    order: 1;
    width: 100%;
    margin-left: 0;
    padding-right: 5.5rem;
    position: relative;
  }

  .brand-image {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
  }

  .main-nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-button {
    order: 0;
    position: sticky;
    top: 0;
    z-index: 30;
    width: 100%;
    margin: 0;
  }

  .nav-links {
    width: auto;
    min-width: max-content;
    max-width: calc(100% - 2rem);
    left: 0;
    right: auto;
  }

  .nav-item {
    min-width: max-content;
  }

  /* Mobile contact page: remove outer box and center content */
  body.contact .hero-panel .content-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  body.contact .hero-panel .section-grid {
    display: grid;
    gap: 1.75rem;
  }

  body.contact .hero-panel .section-intro,
  body.contact .hero-panel .section-intro p,
  body.contact .hero-panel .hero-actions,
  body.contact .hero-panel .hero-actions a,
  body.contact .contact-method,
  body.contact .contact-note-box {
    text-align: center;
  }

  body.contact .hero-panel .hero-actions {
    justify-content: center;
  }

  body.contact .hero-panel .contact-grid {
    grid-template-columns: 1fr;
  }

  body.contact .contact-method {
    margin: 0 auto;
  }
}

.contact-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-deep);
  letter-spacing: 0.05em;
}

.contact-card p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-card a {
  color: var(--color-deep);
  text-decoration: underline;
}

.contact-note {
  color: var(--color-deep);
  font-weight: 600;
}

.quote-panel {
  padding: 5rem 0;
  background: rgba(214, 174, 103, 0.82);
  border: 1px solid rgba(216, 165, 62, 0.75);
  box-shadow: 0 24px 70px rgba(31, 55, 32, 0.06);
}

.quote-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
}

.quote-text {
  font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-deep);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.quote-author {
  color: var(--color-muted);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content {
  max-width: 600px;
  padding: 3rem 1.5rem;
}

.error-code {
  font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--color-Ochre);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 700;
}

.error-title {
  font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-deep);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.error-text {
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.legal-page {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 55, 32, 0.12);
  box-shadow: 0 25px 60px rgba(31, 55, 32, 0.16);
  border-radius: 32px;
  padding: 2.5rem 2.5rem 2rem;
  color: var(--color-ink);
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  color: var(--color-deep);
}

.legal-page p,
.legal-page li {
  color: var(--color-text);
}

.image-credit {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.section-block {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(214, 174, 103, 0.82);
  border: 1px solid rgba(216, 165, 62, 0.75);
  box-shadow: 0 24px 70px rgba(31, 55, 32, 0.06);
}

/* Preserve existing section-alt style, then add dark green overlays for specific sections */
.section-grid,
.section-header {
  display: grid;
  gap: 2.5rem;
}

/* Remove bottom spacing so the ocker `#werdegang` background meets the footer */
.section-block#werdegang {
  padding-bottom: 5rem;
  margin-bottom: 0;
}

/* Dark transparent overlays for Yoga, Pflege and the contact hero */
#yoga,
#pflege,
body.contact .hero-panel {
  background: rgba(31, 55, 32, 0.72);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links and accents on dark overlays */
#yoga a,
#pflege a,
body.contact .hero-panel a,
body.contact .contact-method a,
body.contact .contact-link {
  color: var(--color-sand);
  text-decoration: underline;
}

/* Eyebrow and accent colors */
#yoga .section-eyebrow,
#pflege .section-eyebrow,
body.contact .section-eyebrow {
  color: var(--color-gold);
}

/* Contact page section label in light sections */
body.contact .section-alt .section-eyebrow {
  color: var(--color-deep);
}

/* Contact hero buttons should match index hero buttons */
body.contact .hero-panel .button-secondary {
  background: #fff;
  color: var(--color-deep);
}

/* Headings contrast */
#yoga h1, #yoga h2, #yoga h3,
#pflege h1, #pflege h2, #pflege h3,
body.contact h1, body.contact h2, body.contact h3 {
  color: #ffffff;
}

/* Contact method cards slightly lighter for depth */
.section-intro {
  max-width: 44rem;
  margin: 0 auto;
}

.section-block:not(:has(.section-grid)) .section-intro {
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
}

@media (max-width: 899px) {
  #massagen .section-intro h2 .massagen-break {
    display: inline;
  }
}

.section-media,
.section-media-small {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-media:hover,
.section-media-small:hover {
  transform: translateY(-4px);
  box-shadow: 12px 14px 16px rgba(0, 0, 0, 0.7);
}

.section-media img,
.section-media-small img {
  width: 100%;
  height: auto;
  display: block;
}

.content-card,
.service-card {
  padding: 2.4rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 65px rgba(31, 55, 32, 0.1);
}

.content-card {
  margin-top: 2rem;
}

/* High-contrast text only inside dark green overlays (#yoga, #pflege, contact hero) */
#yoga .content-card,
#yoga .service-card,
#yoga .overview-card,
#yoga .timeline-item,
#yoga .contact-card,
#yoga .faq-item,
#pflege .content-card,
#pflege .service-card,
#pflege .overview-card,
#pflege .timeline-item,
#pflege .contact-card,
#pflege .faq-item,
body.contact .hero-panel {
  color: #ffffff;
}

#yoga h1, #yoga h2, #yoga h3, #yoga p, #yoga span,
#pflege h1, #pflege h2, #pflege h3, #pflege p, #pflege span,
body.contact .hero-panel h1, body.contact .hero-panel h2, body.contact .hero-panel h3, body.contact .hero-panel p, body.contact .hero-panel span {
  color: #ffffff;
}

#yoga a, #pflege a, body.contact .hero-panel a, body.contact .contact-link {
  color: var(--color-sand);
  text-decoration: underline;
}

/* keep timeline year accent visible as gold */
.timeline-item span {
  color: var(--color-gold);
}

/* Ochre sections (section-alt) must use dark text for contrast */ 
.section-alt,
.section-alt h1, .section-alt h2, .section-alt h3, .section-alt p, .section-alt a,
.section-alt .content-card, .section-alt .service-card, .section-alt .overview-card, .section-alt .timeline-item {
  color: var(--color-text);
}

.section-alt a {
  color: var(--color-deep);
  text-decoration: underline;
}

.section-grid + .wrapper {
  margin-top: 2rem;
}

.highlight {
  font-style: italic;
  color: var(--color-deep);
  margin-bottom: 1.75rem;
  line-height: 1.9;
}

.service-highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  border-radius: 26px;
  border: 1px solid rgba(176, 123, 47, 0.2);
  background: rgba(212, 175, 55, 0.08);
}

.service-highlight p:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-deep);
}

.price {
  font-weight: 700;
  color: var(--color-Ochre);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  background: rgba(246, 233, 211, 0.65);
  border: 1px solid rgba(176, 123, 47, 0.16);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(31, 55, 32, 0.06);
  color: var(--color-deep);
  font-size: 0.95rem;
  text-align: center;
}

.price-item strong {
  display: block;
  font-weight: 700;
  color: var(--color-Ochre);
  letter-spacing: 0.02em;
}

.price-item::before {
  content: '';
}

.service-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}

.service-card {
  border-left: 6px solid var(--color-Ochre);
  padding-left: 2.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--color-deep);
  font-size: 1.15rem;
}

.timeline-grid {
  display: grid;
  gap: 1.25rem;
}

.timeline-item {
  padding: 1.8rem 1.8rem 1.8rem 3rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border-left: 6px solid var(--color-Ochre);
  box-shadow: 0 28px 65px rgba(31, 55, 32, 0.08);
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-weight: 700;
  color: var(--color-deep);
  letter-spacing: 0.03em;
}

/* Right-side gold accent for Angebots-Karten and Werdegang timeline items */
.overview-card,
.service-overview .overview-card {
  border-right: 6px solid var(--color-Ochre);
  padding-right: 2.4rem;
  box-sizing: border-box;
}

body.contact .overview-card {
  border-right: 6px solid var(--color-Ochre);
  border-left: 6px solid var(--color-Ochre);
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  box-sizing: border-box;
}

#werdegang .timeline-item {
  border-right: 6px solid var(--color-Ochre);
  box-sizing: border-box;
}

/* Right-side ochre accents for Yoga and Massagen boxes (images excluded) */
#yoga .service-card,
#massagen .service-card {
  border-right: 6px solid var(--color-Ochre);
  box-sizing: border-box;
  padding-right: 1.6rem;
}

.site-footer {
  background: rgba(250, 246, 239, 0.82);
  margin-top: 0;
}

.footer-content {
  padding: 4rem 0 2rem;
}

.footer-columns {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-col p {
  line-height: 1.9;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-deep);
  font-size: 1.05rem;
}

.footer-bottom {
  border-top: 1px solid rgba(31, 55, 32, 0.08);
  padding: 1.75rem 0 2rem;
  text-align: center;
  color: var(--color-muted);
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--color-deep);
  letter-spacing: -0.03em;
}

.legal-page h2 {
  font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--color-deep);
  letter-spacing: -0.02em;
}

.legal-page h3 {
  font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-deep);
  font-weight: 700;
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.85;
  color: var(--color-text);
}

.legal-page ul {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.85;
}

.legal-page li {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.legal-page a {
  color: var(--color-Ochre);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--color-deep);
}

.legal-update {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 55, 32, 0.08);
  font-style: italic;
  color: var(--color-muted);
}

/* Make specific section labels dark green for Index: Massagen & Werdegang */
#massagen .section-eyebrow,
#werdegang .section-eyebrow {
  color: var(--color-deep);
}

/* Ochre→Gold gradient overlays for Massagen and Werdegang (rebalanced to reduce green cast) */
#massagen,
#werdegang {
  /* stronger, warmer stops and higher opacity so background green shows through less */
  background: linear-gradient(180deg,
    rgba(145,92,35,0.86) 0%,
    rgba(196,140,56,0.78) 45%,
    rgba(212,160,50,0.98) 100%
  );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header: ochre background on all pages for consistency and contrast */
.site-header {
  background: rgba(214, 174, 103, 0.95);
  color: var(--color-deep);
}

/* Footer variations per page for clear contrast and legibility */
.home .site-footer {
  background: rgba(31, 55, 32, 0.92);
  color: #ffffff;
}
.home .site-footer a {
  color: var(--color-sand);
  text-decoration: underline;
}
.home .site-footer .footer-title {
  color: #ffffff;
}
.home .site-footer .footer-bottom {
  border-top-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
}

.contact .site-footer {
  background: rgba(214, 174, 103, 0.95);
  color: var(--color-deep);
}
.contact .site-footer a {
  color: var(--color-deep);
  text-decoration: underline;
}
.contact .site-footer .footer-title {
  color: var(--color-deep);
}
.contact .site-footer .footer-bottom {
  border-top-color: rgba(31, 55, 32, 0.08);
  color: var(--color-muted);
}

/* =================================
   Media Queries - Mobile First
   ================================= */

/* Small Devices (Landscape Phones, 640px and up) */
@media (min-width: 640px) {
  .site-header {
    padding: 2rem 0 2.5rem;
  }
  
  .main-nav {
    font-size: 0.98rem;
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }

  .section-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .section-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .section-media-small {
    max-width: 720px;
    margin: 0 auto;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
  
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Devices (Desktops, 1024px and up) */
@media (min-width: 1024px) {
  .header-inner {
    gap: 3rem;
  }

  .hero-panel {
    padding: 4.5rem 0 5.5rem;
  }

  .hero-contact {
    position: sticky;
    top: 2rem;
  }
}

/* Extra Large Devices (Large Desktops, 1280px and up) */
@media (min-width: 1280px) {
  .wrapper {
    width: min(1200px, calc(100% - 3rem));
  }
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-method {
  background: rgba(255, 255, 255, 0.18);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 55, 32, 0.12);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .contact-method {
    background: rgba(255, 255, 255, 0.24);
  }
}

.contact-method:hover {
  box-shadow: 0 24px 60px rgba(31, 55, 32, 0.1);
  transform: translateY(-2px);
}

.contact-method h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--color-deep);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-method p {
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-method strong {
  color: var(--color-text);
  font-weight: 600;
}

.contact-method a {
  color: var(--color-Ochre);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-method a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.service-overview {
  margin-top: 4rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.overview-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-gold);
}

.overview-card h3 {
  font-family: 'Playfair Display', Georgia, Cambria, serif;
  font-weight: 700;
  color: var(--color-deep);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.overview-card p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  margin-top: 1.5rem;
}

.service-list li {
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: var(--color-text);
  line-height: 1.7;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-deep);
  font-weight: bold;
  font-size: 1.25rem;
}

.faq-section {
  margin-top: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(31, 55, 32, 0.08);
}

.faq-item h4 {
  font-family: 'Playfair Display', Georgia, Cambria, serif;
  font-weight: 700;
  color: var(--color-deep);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--color-text);
  line-height: 1.7;
}

.contact-note-box {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin-top: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(31, 55, 32, 0.08);
}

.contact-note-box p {
  color: var(--color-text);
}

.contact-note-box p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-size: 1.1rem;
}

.contact-note-box strong {
  color: var(--color-gold);
  font-weight: 600;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
