/* ==========================================================================
   Physiotherapie Sandra-Barbara Braun — Design System
   ========================================================================== */

@import url('../fonts/fonts-local.css');

:root {
  /* Farben — "Warm Modern Physio" */
  --c-ivory: #F5F1E9;
  --c-offwhite: #FFFDFA;
  --c-cream: #EEE6D9;
  --c-sand: #D8C6AD;
  --c-sage: #C9D0C0;
  --c-sage-soft: #DCE2D4;
  --c-sage-deep: #5C6B54;
  --c-olive: #4F5C46;
  --c-olive-deep: #394032;
  --c-terracotta: #B66F52;
  --c-terracotta-deep: #9C5E42;
  --c-charcoal: #242421;
  --c-charcoal-soft: #4B4944;
  --c-border: rgba(36, 36, 33, 0.12);
  --c-sage-tint: #EEF1E9;
  --c-terracotta-tint: #F1E3D8;
  --c-terracotta-tint-deep: #E7D2C2;

  /* Typografie: Sans als Hauptschrift, Serif nur als Akzent */
  --f-serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', serif;
  --f-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Abstände */
  --container: 1260px;
  --container-narrow: 820px;
  --space-section: clamp(4.5rem, 4vw + 3rem, 8.5rem);
  --space-section-sm: clamp(3rem, 3vw + 1.5rem, 5.5rem);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --shadow-soft: 0 24px 48px -28px rgba(36, 36, 33, 0.28);
  --shadow-tight: 0 8px 22px -12px rgba(36, 36, 33, 0.3);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--c-ivory);
  color: var(--c-charcoal);
  font-family: var(--f-sans);
  font-size: 1.05rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-sans);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--c-charcoal);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.4rem, 2vw + 1.9rem, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 1.3vw + 1.4rem, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 0.5vw + 1.05rem, 1.4rem); font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: var(--container-narrow); }

section { position: relative; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-terracotta-deep);
  margin-bottom: 1.1em;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-terracotta);
  display: inline-block;
}

.lede {
  font-size: clamp(1.05rem, 0.3vw + 1rem, 1.25rem);
  color: var(--c-charcoal-soft);
  max-width: 46ch;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 3vw, 3.5rem);
}
.section-head--center { margin-inline: auto; text-align: center; }

.text-olive { color: var(--c-olive-deep); }
.text-soft { color: var(--c-charcoal-soft); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--c-charcoal);
  color: var(--c-offwhite);
  padding: 0.75em 1.25em;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.7em;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--c-olive-deep);
  color: var(--c-offwhite);
  box-shadow: var(--shadow-tight);
}
.btn--primary:hover { background: var(--c-charcoal); box-shadow: 0 16px 34px -14px rgba(52,50,47,.45); }

.btn--ghost {
  background: transparent;
  color: var(--c-charcoal);
  border-color: var(--c-border);
}
.btn--ghost:hover { border-color: var(--c-charcoal); background: rgba(52,50,47,0.04); }

.btn--light {
  background: var(--c-offwhite);
  color: var(--c-charcoal);
}
.btn--light:hover { background: #fff; }

.btn--phone {
  display: inline-flex;
  align-items: center;
  color: var(--c-charcoal);
  font-family: var(--f-serif);
  font-size: 1.05rem;
  gap: 0.55em;
  padding: 0.4em 0;
  border-bottom: 1px solid var(--c-border);
  border-radius: 0;
  white-space: nowrap;
}
.btn--phone:hover { border-color: var(--c-terracotta); color: var(--c-terracotta-deep); }
.btn--phone svg { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--c-border);
  box-shadow: 0 12px 30px -24px rgba(52,50,47,.5);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.15rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: var(--c-charcoal);
}
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-olive-deep);
  color: var(--c-offwhite);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__text small {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-olive);
}

.main-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2vw, 2.2rem); }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-charcoal-soft);
  position: relative;
  padding-block: 0.3em;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--c-terracotta);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover { color: var(--c-charcoal); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--c-charcoal); }
.main-nav > .btn { display: none; }
.nav-phone-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none; border: none; padding: 0.4rem;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ''; display: block; width: 22px; height: 1.5px;
  background: var(--c-charcoal); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6.5px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }

@media (max-width: 900px) {
  .header-actions .btn--primary { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(88vw, 380px);
    height: 100vh;
    background: var(--c-offwhite);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6.5rem 2.2rem 2.5rem;
    gap: 1.6rem;
    transform: translateX(105%);
    transition: transform 0.45s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,0.3);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; }
  .nav-phone-mobile { display: inline-flex; margin-top: 0.5rem; }
  .main-nav > .btn { display: inline-flex; margin-top: 1rem; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(52,50,47,0.35);
    opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
    z-index: 90;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
}

@media (max-width: 520px) {
  .header-actions { display: none; }
  .brand__text small { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--c-ivory);
  overflow: hidden;
  position: relative;
}
.hero__layout {
  display: grid;
  grid-template-columns: minmax(320px, 580px) 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  min-height: clamp(460px, 74vh, 700px);
}
.hero__content {
  max-width: 520px;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}
.hero__content h1 { margin-bottom: 0.5em; }
.hero__accent {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--c-terracotta-deep);
}
.hero__actions {
  display: flex; align-items: center; gap: 1.8rem; margin-top: 1.8rem; flex-wrap: wrap;
}
.hero__phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--c-charcoal);
  font-weight: 600;
  padding-bottom: 0.2rem;
  border-bottom: 1.5px solid var(--c-border);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.hero__phone svg { color: var(--c-terracotta-deep); flex-shrink: 0; }
.hero__phone:hover { border-color: var(--c-terracotta); color: var(--c-terracotta-deep); }

.hero__facts {
  display: flex; gap: clamp(1.8rem, 3vw, 2.8rem); margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.hero__facts div { max-width: 190px; }
.hero__facts-value {
  display: block; font-weight: 700; font-size: 1.05rem; color: var(--c-charcoal);
}
.hero__facts-label { font-size: 0.85rem; color: var(--c-charcoal-soft); }

.hero__media {
  position: relative;
  height: clamp(340px, 60vh, 620px);
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .hero__layout { grid-template-columns: 1fr; min-height: 0; gap: 0; }
  .hero__media { order: 1; height: clamp(300px, 52vh, 420px); }
  .hero__content {
    order: 2; max-width: none;
    padding: clamp(2rem, 6vw, 2.8rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 3.5rem);
  }
  .hero__facts { margin-top: 2.2rem; }
}

/* ---------- Image placeholders ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-sage-deep);
  display: flex; align-items: flex-end;
  color: var(--c-offwhite);
}
.img-placeholder__label {
  position: relative; z-index: 1;
  margin: 1.1rem;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(36,36,33,0.12);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.95rem;
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 88%;
  color: var(--c-charcoal);
}
.img-placeholder__label b {
  display: block;
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--c-charcoal);
  margin-bottom: 0.15em;
}
.img-placeholder__label em {
  font-style: normal;
  color: var(--c-terracotta-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  text-transform: uppercase;
}
.img-placeholder--wide { aspect-ratio: 16/10; }
.img-placeholder--square { aspect-ratio: 1/1; }
.img-placeholder--portrait { aspect-ratio: 3/4; }
.img-placeholder--tall { aspect-ratio: 4/5; }

/* ---------- Echte Fotos ---------- */
.photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-cream);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) sepia(0.05) contrast(1.02);
}
.photo::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(52,50,47,0.06);
  pointer-events: none;
}
.photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem 1rem;
  background: linear-gradient(0deg, rgba(52,50,47,0.55), transparent);
  color: var(--c-offwhite);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.photo--wide { aspect-ratio: 16/10; }
.photo--square { aspect-ratio: 1/1; }
.photo--portrait { aspect-ratio: 3/4; }
.photo--tall { aspect-ratio: 4/5; }

/* ---------- Zitat (wiederverwendbar) ---------- */
.pull-quote {
  position: relative;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1vw + 1.1rem, 1.7rem);
  color: var(--c-charcoal);
  line-height: 1.42;
  margin: 0.4rem 0 1.4rem;
}

/* ---------- Leistungen ---------- */
.services {
  background: var(--c-offwhite);
}
.services__list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 1.75rem;
  padding: clamp(1.5rem, 2.5vw, 2.1rem) 0;
  border-top: 1px solid var(--c-border);
  transition: padding-inline 0.35s var(--ease), background 0.35s var(--ease);
}
.services__list > *:last-child { border-bottom: 1px solid var(--c-border); }
.service-row:hover {
  padding-inline: 1.25rem;
  background: var(--c-ivory);
  border-radius: var(--radius-sm);
}
.service-row__index {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-terracotta);
  font-weight: 500;
}
.service-row__body h3 { margin-bottom: 0.35rem; }
.service-row__body p { color: var(--c-charcoal-soft); max-width: 56ch; margin: 0; }
.service-row__arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-charcoal-soft);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  flex-shrink: 0;
}
.service-row:hover .service-row__arrow {
  background: var(--c-olive-deep); color: var(--c-offwhite); transform: rotate(45deg); border-color: var(--c-olive-deep);
}
@media (max-width: 700px) {
  .service-row { grid-template-columns: 40px 1fr; row-gap: 0.6rem; }
  .service-row__arrow { display: none; }
}

/* ---------- Vertrauen / USP ---------- */
.trust { background: var(--c-olive-deep); color: var(--c-offwhite); }
.trust__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.8rem, 4vw, 4rem);
}
.trust__head h2 { color: var(--c-offwhite); }
.trust__head .eyebrow { color: var(--c-sand); }
.trust__head .eyebrow::before { background: var(--c-sand); }
.trust__head .lede { margin: 0; max-width: 40ch; color: rgba(255,253,250,0.72); }
.trust__head h2 .statement { color: var(--c-sand); }
@media (max-width: 800px) {
  .trust__head { grid-template-columns: 1fr; }
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 0 clamp(1.2rem, 2vw, 1.8rem) 0 0;
  border-left: 1px solid rgba(255,253,250,0.18);
  padding-left: clamp(1.2rem, 2vw, 1.8rem);
}
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-item__num {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--c-sand);
  margin-bottom: 0.9rem;
  line-height: 1;
}
.trust-item h3 { color: var(--c-offwhite); font-size: 1.1rem; margin-bottom: 0.5rem; }
.trust-item p { color: rgba(255,253,250,0.72); font-size: 0.92rem; }

@media (max-width: 900px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .trust-item:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 560px) {
  .trust__grid { grid-template-columns: 1fr; row-gap: 2rem; }
  .trust-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,253,250,0.18); padding-top: 1.6rem; }
  .trust-item:first-child { border-top: none; padding-top: 0; }
}

/* ---------- Hausbesuche (Feature Band) ---------- */
.feature-band-section { background: var(--c-sage); }
.feature-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.feature-band .eyebrow { color: var(--c-terracotta-deep); }
.feature-band__list { margin: 1.6rem 0 2.2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.feature-band__list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--c-charcoal); font-weight: 600; }
.feature-band__list svg { flex-shrink: 0; margin-top: 0.2rem; color: var(--c-olive-deep); }
.feature-band__media { position: relative; height: clamp(260px, 34vw, 380px); }
.feature-band__media .img-placeholder { position: absolute; inset: 0; height: 100%; }

@media (max-width: 900px) {
  .feature-band__grid { grid-template-columns: 1fr; }
  .feature-band__media { order: -1; height: clamp(220px, 60vw, 320px); }
}

/* ---------- Team / Sandra ---------- */
.team { background: var(--c-ivory); }
.team__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.team__media { position: relative; }
.team__credentials {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
.team__credentials li {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-olive-deep);
  background: var(--c-sage-tint);
  border: 1px solid rgba(57,64,50,0.15);
  padding: 0.5em 1em;
  border-radius: 7px;
}
.badge-todo {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-terracotta-deep);
  background: rgba(185,120,93,0.12);
  border: 1px solid rgba(185,120,93,0.3);
  padding: 0.15em 0.55em;
  border-radius: 5px;
  vertical-align: middle;
  margin-left: 0.5em;
}
@media (max-width: 900px) {
  .team__grid { grid-template-columns: 1fr; }
  .team__media { max-width: 380px; margin-inline: auto; width: 100%; }
}

/* ---------- Praxisräume Gallery ---------- */
.gallery { background: var(--c-ivory); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(140px, auto));
  gap: 1.1rem;
}
.gallery__grid > *:nth-child(1) { grid-column: span 2; grid-row: span 2; transform: translateY(-14px); }
.gallery__grid > *:nth-child(2) { grid-column: span 2; }
.gallery__grid > *:nth-child(3) { grid-column: span 1; }
.gallery__grid > *:nth-child(4) { grid-column: span 1; }
.gallery__grid .img-placeholder { height: 100%; aspect-ratio: auto; }

@media (max-width: 860px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .gallery__grid > * { grid-column: span 1 !important; transform: none !important; }
  .gallery__grid .img-placeholder { aspect-ratio: 4/3; }
}

/* ---------- Praxis-Fotokomposition (Startseite) ---------- */
.showcase { background: var(--c-offwhite); }
.showcase__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: stretch;
}
.showcase__grid .photo { height: clamp(340px, 42vw, 540px); border-radius: var(--radius-md); }
.showcase__grid > *:last-child { margin-top: clamp(0px, 5vw, 2.4rem); }

@media (max-width: 800px) {
  .showcase__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .showcase__grid .photo { height: clamp(260px, 60vw, 360px); }
  .showcase__grid > *:last-child { margin-top: 0; }
}

/* ---------- Praxisräume, asymmetrisch (Praxis-Seite) ---------- */
.rooms__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.6rem);
}
.rooms__grid > *:first-child { grid-row: span 2; }
.rooms__grid .photo { height: 100%; min-height: 260px; border-radius: var(--radius-md); }

@media (max-width: 800px) {
  .rooms__grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .rooms__grid > *:first-child { grid-row: auto; }
  .rooms__grid .photo { height: clamp(260px, 62vw, 380px); }
}

/* ---------- Bewertungen ---------- */
.reviews { background: var(--c-ivory); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--c-offwhite);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--c-border);
}
.review-card__stars { color: var(--c-sand); margin-bottom: 1rem; display: flex; gap: 0.2rem; }
.review-card p { color: var(--c-charcoal-soft); font-size: 0.95rem; }
.review-card--empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: transparent;
  border: none;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  min-height: 160px;
  max-width: 560px;
  margin-inline: auto;
  padding: 2.2rem 2rem;
}
.review-card--empty .eyebrow { margin-bottom: 0.6rem; }
.review-card--empty .eyebrow::before { display: none; }
@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ---------- Ablauf / Steps ---------- */
.process { background: var(--c-offwhite); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.2rem;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--c-terracotta);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute; top: 0; left: 0; right: -0.8rem;
  height: 2px; background: var(--c-terracotta-tint-deep);
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; color: var(--c-charcoal-soft); }
@media (max-width: 900px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process__grid { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--c-ivory); }
.faq__list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0;
  background: none; border: none; text-align: left;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-charcoal);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ''; position: absolute; background: var(--c-charcoal);
  transition: transform 0.3s var(--ease), opacity .3s var(--ease);
}
.faq-item__icon::before { width: 11px; height: 1.4px; }
.faq-item__icon::after { width: 1.4px; height: 11px; }
.faq-item[data-open="true"] .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-item[data-open="true"] .faq-item__a { max-height: 320px; }
.faq-item__a-inner { padding-bottom: 1.6rem; color: var(--c-charcoal-soft); max-width: 62ch; }

/* ---------- Kontakt ---------- */
.contact { background: var(--c-sage-tint); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-card {
  background: var(--c-offwhite);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.8rem);
  border: 1px solid var(--c-border);
}
.contact-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.8rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list svg { flex-shrink: 0; color: var(--c-terracotta-deep); margin-top: 0.2rem; }
.contact-list strong { display: block; font-family: var(--f-serif); font-weight: 500; margin-bottom: 0.15rem; }
.contact-list span, .contact-list a { color: var(--c-charcoal-soft); font-size: 0.96rem; }
.contact-list a:hover { color: var(--c-terracotta-deep); }

.contact-map {
  margin-top: 1.8rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--c-charcoal); }
.field input, .field textarea, .field select {
  background: var(--c-offwhite);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  color: var(--c-charcoal);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-olive); box-shadow: 0 0 0 3px rgba(101,106,84,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--consent { flex-direction: row; align-items: flex-start; gap: 0.7rem; }
.field--consent input { width: auto; margin-top: 0.3rem; }
.field--consent label { font-weight: 400; font-size: 0.87rem; color: var(--c-charcoal-soft); }
.form-note {
  font-size: 0.82rem; color: var(--c-charcoal-soft);
  background: var(--c-cream);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field { grid-column: 1 / -1; }
}

/* Dunkle Kontakt-Variante (nur Startseite) */
.contact--dark { background: var(--c-olive-deep); }
.contact--dark > .container > div > .eyebrow { color: var(--c-sand); }
.contact--dark > .container > div > .eyebrow::before { background: var(--c-sand); }
.contact--dark > .container > div > h2 { color: var(--c-offwhite); }
.contact--dark .field label { color: var(--c-offwhite); }
.contact--dark .field--consent label { color: rgba(255,253,250,0.75); }
.contact--dark .contact-form > .text-soft { color: rgba(255,253,250,0.6); }
.contact--dark .contact-form .btn--primary { background: var(--c-terracotta); color: var(--c-offwhite); }
.contact--dark .contact-form .btn--primary:hover { background: var(--c-terracotta-deep); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--c-charcoal);
  color: var(--c-offwhite);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}
.cta-band h2 { color: var(--c-offwhite); }
.cta-band p { color: rgba(252,250,246,0.75); max-width: 50ch; margin-inline: auto; }
.cta-band__actions { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.cta-band .btn--primary { background: var(--c-terracotta); }
.cta-band .btn--primary:hover { background: var(--c-terracotta-deep); }
.cta-band .btn--ghost { color: var(--c-offwhite); border-color: rgba(252,250,246,0.3); }
.cta-band .btn--ghost:hover { border-color: var(--c-offwhite); background: rgba(255,255,255,0.06); }
.cta-band--forest { background: var(--c-olive-deep); }

/* Solide Salbei-Fläche (Gegenstück zu section--sage, das nur einen Tint nutzt) */
.bg-sage { background: var(--c-sage); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-cream);
  padding-top: clamp(3.5rem, 5vw, 5.5rem);
  color: var(--c-charcoal-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-border);
}
.footer__brand p { max-width: 34ch; font-size: 0.93rem; margin-top: 1rem; }
.footer h4 {
  font-family: var(--f-sans); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-charcoal);
  margin-bottom: 1.1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a:hover { color: var(--c-terracotta-deep); }
.footer__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 1.5rem; font-size: 0.82rem; flex-wrap: wrap; gap: 0.8rem;
}
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: var(--c-terracotta-deep); }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Page header (Unterseiten) ---------- */
.page-hero {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}
.page-hero__breadcrumb {
  font-size: 0.85rem; color: var(--c-charcoal-soft); margin-bottom: 1.4rem;
  display: flex; gap: 0.5rem; align-items: center;
}
.page-hero__breadcrumb a:hover { color: var(--c-terracotta-deep); }
.page-hero h1 { max-width: min(18ch, 100%); }

/* Kompakte Variante (Leistungsseite) */
.page-hero--compact {
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}
.page-hero--compact .page-hero__breadcrumb {
  font-size: 0.78rem; opacity: 0.7; margin-bottom: 1rem;
}
.page-hero--compact h1 { margin-bottom: 0.4em; }
.page-hero--compact .lede { max-width: 60ch; }

/* ---------- Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Editorial / Decorative utilities ---------- */
.section--sage { background: var(--c-sage-tint); }
.section--terracotta { background: var(--c-terracotta-tint); }

.statement {
  font-family: var(--f-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 1.08em;
  color: var(--c-olive-deep);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.rule-accent {
  width: 46px;
  height: 2px;
  background: var(--c-terracotta);
  border-radius: 2px;
  display: block;
}

.dot-accent {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-terracotta);
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- Misc components reused across pages ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.badge-pill {
  font-size: 0.82rem; font-weight: 600;
  padding: 0.5em 1.05em; border-radius: 100px;
  background: var(--c-cream); color: var(--c-olive-deep);
  border: 1px solid var(--c-border);
}

.divider-quote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.divider-quote p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1.3vw + 1rem, 1.9rem);
  color: var(--c-olive-deep);
  line-height: 1.5;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.list-check { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.4rem; }
.list-check li { display: flex; gap: 0.8rem; align-items: flex-start; }
.list-check svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--c-terracotta-deep); }

.section--alt { background: var(--c-offwhite); }
.pad-section { padding-block: var(--space-section); }
.pad-section-sm { padding-block: var(--space-section-sm); }

/* ---------- Weitere Leistungen (Akkordeon) ---------- */
.more-services { max-width: 900px; margin-inline: auto; }
.more-services__category { border-bottom: 1px solid var(--c-border); }
.more-services__category summary {
  padding: 1.4rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
}
.more-services__category summary::-webkit-details-marker { display: none; }
.more-services__category summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-terracotta);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.more-services__category[open] summary::after { content: '–'; }
.more-services__list { padding-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; }
.more-services__list li strong { display: block; font-weight: 700; margin-bottom: 0.15rem; }
.more-services__list li span { color: var(--c-charcoal-soft); font-size: 0.92rem; }

.legal { background: var(--c-offwhite); }
.legal h2 { margin-top: 2.4rem; font-size: 1.4rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; }
.legal p, .legal li { color: var(--c-charcoal-soft); }
.legal a { color: var(--c-olive-deep); text-decoration: underline; text-underline-offset: 2px; }
