/* ============================================================
   Hebamme Kerstin Piening — Landingpage
   Design tokens (from Claude Design system) + base + components
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Caveat:wght@400;500;600&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  /* Brand */
  --brand-honey: #fdc86b;
  --brand-honey-600: #f2b647;
  --brand-honey-300: #fedfa6;
  --brand-honey-100: #fdf1dc;
  --brand-green: #50ad31;
  --brand-green-700: #3d8626;
  --brand-green-900: #2b5f1b;
  --brand-green-300: #a7d795;
  --brand-green-100: #e9f4e3;

  /* Neutrals */
  --cream-50: #fdfaf3;
  --cream-100: #f8f1e4;
  --cream-200: #efe5d3;
  --stone-300: #dcd3c4;
  --stone-400: #b6ac9a;
  --ink-500: #6f6a60;
  --ink-700: #4a463f;
  --ink-900: #2b2924;
  --white: #ffffff;

  /* Semantic */
  --success: #50ad31;
  --warning: #e0952b;
  --danger: #c2503a;
  --info: #5b8ea6;

  /* Aliases */
  --text-body: var(--ink-700);
  --text-strong: var(--ink-900);
  --text-muted: var(--ink-500);
  --text-on-dark: var(--cream-50);
  --text-accent: var(--brand-green-700);

  --surface-page: var(--cream-50);
  --surface-card: var(--white);
  --surface-sunk: var(--cream-100);
  --surface-inverse: #4a5f39; /* dark-panel green — matches the footer/final-cta band so every dark green surface on the site is the same tone */

  --border-hairline: var(--stone-300);
  --border-strong: var(--ink-900);

  --action-primary: var(--brand-honey);
  --action-primary-hover: var(--brand-honey-600);
  --action-primary-text: var(--ink-900);
  --action-secondary: var(--brand-green);
  --action-secondary-hover: var(--brand-green-700);
  --action-secondary-text: var(--white);

  --focus-ring: var(--brand-green-700);

  /* Elevation */
  --shadow-none: none;
  --shadow-card: 0 1px 2px rgba(43, 41, 36, .04), 0 8px 24px rgba(43, 41, 36, .07);
  --shadow-raised: 0 2px 4px rgba(43, 41, 36, .06), 0 18px 40px rgba(43, 41, 36, .10);
  --shadow-image: 0 24px 60px rgba(43, 41, 36, .14);
  --overlay-photo: linear-gradient(180deg, rgba(43, 41, 36, .34) 0%, rgba(43, 41, 36, .12) 38%, rgba(43, 41, 36, .30) 100%);
  --overlay-scrim: rgba(43, 41, 36, .42);

  /* Fonts */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  /* Typography scale */
  --text-hero: clamp(40px, 6vw, 76px);
  --text-display: clamp(32px, 4.4vw, 56px);
  --text-h1: 40px;
  --text-h2: 30px;
  --text-h3: 22px;
  --text-lead: 19px;
  --text-body-size: 16px;
  --text-small: 14px;
  --text-micro: 12px;
  --script-lg: clamp(34px, 4vw, 52px);
  --script-md: 28px;
  --lh-tight: 1.08;
  --lh-heading: 1.2;
  --lh-body: 1.7;
  --lh-script: 1.25;
  --ls-caps: 0.18em;
  --ls-display: 0.02em;
  --ls-body: 0;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Motion */
  --ease-soft: cubic-bezier(.25, .6, .3, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur-fast: 140ms;
  --dur-base: 260ms;
  --dur-slow: 600ms;
  --hover-lift: translateY(-2px);
  --press-scale: scale(.985);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --radius-none: 0;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --measure: 62ch;
  --container: 1180px;
  --container-narrow: 720px;
  --border-width: 1px;
}

/* ============================================================
   Base
   ============================================================ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--brand-green-700); }
a:hover { color: var(--brand-green-900); }
img { max-width: 100%; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.section--sunk { background: var(--surface-sunk); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(253, 250, 243, 0.94);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-2) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
}
.brand img { display: block; height: 50px; width: auto; }
.brand__sub {
  display: none;
  font-size: var(--text-micro);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand-green);
  font-weight: var(--weight-semibold);
  border-left: 1px solid var(--border-hairline);
  padding-left: var(--space-4);
}

.nav-links {
  display: none;
  gap: var(--space-5);
  font-size: var(--text-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}
.nav-links a { color: var(--text-body); text-decoration: none; transition: color var(--dur-fast) var(--ease-soft); }
.nav-links a:hover { color: var(--brand-green); }

@media (min-width: 1024px) {
  .brand__sub { display: block; }
  .nav-links { display: flex; }
}

/* Mobile menu toggle — the only way to reach the nav links below 1024px,
   since .nav-links itself is hidden there. */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-soft), opacity var(--dur-fast) var(--ease-soft);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(253, 250, 243, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-card);
  padding: var(--space-3) var(--space-5) var(--space-5);
  max-height: calc(100svh - 76px);
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: var(--space-3) var(--space-1);
  font-size: 16px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--border-hairline);
}
.mobile-nav a:last-child { border-bottom: 0; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 46px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: var(--text-small);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
  border: 0;
  cursor: pointer;
  white-space: normal;
  text-align: center;
  max-width: 100%;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--action-primary); color: var(--action-primary-text); }
.btn-primary:hover { background: var(--action-primary-hover); color: var(--action-primary-text); }
.btn-lg { min-height: 56px; padding: 0 var(--space-6); font-size: 17px; }
.btn-md { min-height: 52px; padding: 0 var(--space-6); font-size: 16px; }
.btn-outline-dark {
  border: 1px solid rgba(253, 250, 243, 0.5);
  color: var(--cream-50);
  background: rgba(43, 41, 36, 0.24);
  font-weight: var(--weight-semibold);
}
.btn-outline-dark:hover { background: rgba(43, 41, 36, 0.4); color: var(--cream-50); }
.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text-strong);
  background: transparent;
}
.btn-outline:hover { background: var(--cream-100); color: var(--text-strong); }
.btn-sm { min-height: 40px; padding: 0 var(--space-4); font-size: var(--text-small); }

/* ============================================================
   Hero
   Mobile (<860px): the photo gets its own full-width band — fully visible,
   nothing ever drawn over her face — and the text sits below it in a solid
   panel. A photo this tight on a portrait subject has no position where
   overlaid text avoids her AND leaves her fully visible at once (the crop
   is essentially one vertical strip), so separating the two bands is the
   only way to guarantee both. Desktop (>=860px) has room for the classic
   full-viewport overlay, with a scrim tuned so the subject (right side of
   the photo) stays clear of the text (left).
   ============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  background: var(--surface-inverse);
}

.hero__media-clip {
  position: relative;
  flex: none;
  height: 54svh;
  min-height: 340px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 20%;
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(43, 41, 36, 0.35) 0%, rgba(43, 41, 36, 0) 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  align-content: center;
  gap: var(--space-3);
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-5) var(--space-7);
}

.hero__scroll-cue { display: none; }

/* The WhatsApp CTA is already reachable via the header button and the
   sticky corner button — dropping it from the hero on mobile keeps the
   panel below the photo compact. */
@media (max-width: 859px) {
  .hero__actions-wa { display: none; }
}

@media (min-width: 860px) {
  .hero { flex-direction: row; align-items: flex-end; height: 100svh; min-height: 560px; }

  .hero__media-clip { position: absolute; inset: 0; height: auto; min-height: 0; }

  .hero__media img { object-position: 68% 28%; }

  /* Layered scrim: a diagonal wash keeps the left text zone dark where
     the subject sits clear on the right, plus a bottom wash for the
     lead paragraph/actions. */
  .hero__scrim {
    background:
      linear-gradient(100deg, rgba(43, 41, 36, 0.72) 0%, rgba(43, 41, 36, 0.5) 38%, rgba(43, 41, 36, 0.1) 66%, rgba(43, 41, 36, 0.22) 100%),
      linear-gradient(0deg, rgba(43, 41, 36, 0.6) 0%, rgba(43, 41, 36, 0.08) 42%, rgba(43, 41, 36, 0) 62%, rgba(43, 41, 36, 0.28) 100%);
  }

  .hero__content {
    align-content: start;
    max-width: min(720px, 52vw);
    margin: 0;
    padding: var(--space-8) var(--space-5) var(--space-9);
  }

  .hero__scroll-cue { display: flex; }
}

.hero__eyebrow {
  margin: 0;
  font-size: var(--text-micro);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand-honey);
  font-weight: var(--weight-semibold);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero__script {
  display: block;
  font-family: var(--font-script);
  font-size: var(--script-lg);
  line-height: var(--lh-script);
  color: var(--brand-honey);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  font-size: var(--text-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--cream-50);
  text-wrap: balance;
  max-width: 24ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}
.hero__lead {
  margin: 0;
  font-size: var(--text-lead);
  line-height: var(--lh-body);
  color: rgba(253, 250, 243, 0.92);
  max-width: 54ch;
  text-wrap: pretty;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
  align-items: center;
}
/* On mobile the hero sits over the photo again, so give the primary CTA a
   bigger, easier-to-hit touch target. Desktop keeps the standard btn-lg size. */
@media (max-width: 859px) {
  .hero__actions .btn-lg { min-height: 60px; padding: 0 var(--space-7); font-size: 18px; }
}
.hero__note {
  margin: 0;
  font-size: var(--text-small);
  color: rgba(253, 250, 243, 0.8);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero__scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: var(--space-5);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(253, 250, 243, 0.85);
  text-decoration: none;
  font-size: var(--text-micro);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  opacity: 0;
  animation: heroCueIn .8s var(--ease-out) 1.1s forwards;
}
.hero__scroll-cue svg { animation: heroCueBounce 1.8s ease-in-out infinite; }
@keyframes heroCueIn { to { opacity: 1; } }
@keyframes heroCueBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue { opacity: 1; animation: none; }
  .hero__scroll-cue svg { animation: none; }
}

/* ============================================================
   Feature strip
   ============================================================ */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.feature { display: grid; gap: var(--space-2); align-content: start; }
.feature__rule { display: block; height: 3px; width: 44px; background: var(--brand-green); }
.feature__title {
  margin: var(--space-2) 0 0;
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  color: var(--text-strong);
}
.feature__text { margin: 0; font-size: 15.5px; line-height: var(--lh-body); color: var(--text-body); }

/* ============================================================
   Über mich
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr); }
}

.about-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 44vw, 560px);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}
.about-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 40% 22%;
}
.about-media__fade {
  position: absolute; top: 0; bottom: 0; left: 0; right: -24%;
  background: linear-gradient(90deg, rgba(248, 241, 228, 0) 40%, rgba(248, 241, 228, 0.5) 66%, rgba(248, 241, 228, 0.92) 84%, var(--surface-sunk) 100%);
}

.about-text {
  padding: var(--space-8) var(--space-5);
  display: grid;
  gap: var(--space-4);
  max-width: 640px;
}
@media (min-width: 1024px) {
  .about-text { padding-left: var(--space-7); }
}
.about-text__script {
  display: block;
  font-family: var(--font-script);
  font-size: var(--script-md);
  line-height: var(--lh-script);
  color: var(--brand-green);
}
.about-text__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  font-size: var(--text-display);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
}
.about-text p { margin: 0; font-size: 17px; line-height: var(--lh-body); color: var(--text-body); text-wrap: pretty; }
.about-list {
  list-style: none;
  margin: var(--space-2) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}
.about-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: var(--space-3);
  align-items: baseline;
  font-size: 16px;
  color: var(--text-strong);
}
.about-list li span {
  display: block;
  height: 2px; width: 20px;
  background: var(--brand-green);
  transform: translateY(-4px);
}
.about-cta {
  display: grid;
  gap: var(--space-3);
  justify-items: start;
  margin-top: var(--space-2);
}
.about-cta p.about-cta__script {
  margin: 0;
  font-family: var(--font-script);
  font-size: var(--script-md);
  line-height: var(--lh-script);
  color: var(--brand-green);
}

/* ============================================================
   Full-bleed quote band (with parallax)
   ============================================================ */

.quote-band {
  position: relative;
  isolation: isolate;
  height: clamp(220px, 30vw, 340px);
  overflow: hidden;
}
.quote-band__media { position: absolute; inset: -14% 0; z-index: 0; will-change: transform; }
.quote-band__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; display: block; }
.quote-band__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(43, 41, 36, 0.62) 0%, rgba(43, 41, 36, 0.12) 55%, rgba(43, 41, 36, 0.2) 100%);
}
.quote-band__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: flex-end;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
}
.quote-band__content p {
  margin: 0;
  font-family: var(--font-script);
  font-size: var(--script-lg);
  line-height: var(--lh-script);
  color: var(--cream-50);
  max-width: 24ch;
}

/* ============================================================
   Offer sections (Kurse / Nachsorge)
   ============================================================ */

.offer-heading {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
}
.offer-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
}
.offer-heading__rule { flex: 1; height: 2px; background: var(--brand-green-300); }

.offer-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.offer-figure img { display: block; width: 100%; object-fit: cover; object-position: 50% 50%; }
.offer-figure figcaption {
  position: absolute; right: 12px; bottom: 12px;
  margin: 0;
  background: rgba(43, 41, 36, 0.68);
  color: var(--cream-50);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.offer-card {
  background: var(--surface-sunk);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.offer-card h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-h3);
  line-height: var(--lh-heading);
  color: var(--text-strong);
}
.offer-card p { margin: 0; font-size: 15.5px; line-height: var(--lh-body); color: var(--text-body); flex: 1; }
.offer-card__link {
  align-self: flex-start;
  margin-top: var(--space-2);
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-green-700);
  text-decoration: none;
  border-bottom: 2px solid var(--brand-honey);
  padding-bottom: 3px;
}

.two-col {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
  background: var(--brand-green-100);
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: minmax(0, 1fr) auto; }
}
.two-col h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-h2);
  line-height: var(--lh-heading);
  color: var(--text-strong);
}
.two-col p { margin: 0; font-size: 16.5px; line-height: var(--lh-body); color: var(--text-body); max-width: 52ch; }
.two-col .btn { justify-self: start; }

/* ============================================================
   Einzugsgebiet
   ============================================================ */

.gebiet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 1024px) {
  .gebiet-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
}
.gebiet-text { max-width: 560px; display: grid; gap: var(--space-4); }
.gebiet-text h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  font-size: var(--text-display);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
}
.gebiet-text p { margin: 0; font-size: 17px; line-height: var(--lh-body); color: var(--text-body); text-wrap: pretty; }

.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 15px;
  color: var(--text-strong);
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease-soft);
}
.chip:hover { border-color: var(--brand-green); color: var(--text-strong); }
.chip svg { color: var(--brand-green); }

.map-frame {
  position: relative;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-card);
}
.map-frame iframe { width: 100%; height: 400px; border: 0; display: block; pointer-events: none; background: var(--surface-sunk); }
.map-frame__link { position: absolute; inset: 0; z-index: 1; display: block; }
.map-frame__consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-6);
  background: var(--surface-sunk);
}
.map-frame__consent p { margin: 0; font-size: 15px; line-height: var(--lh-body); color: var(--text-body); max-width: 42ch; }
.map-frame__label {
  position: absolute; left: 12px; bottom: 12px; z-index: 3;
  margin: 0;
  background: rgba(253, 250, 243, 0.94);
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  font-size: 12.5px;
  color: var(--text-body);
}

/* ============================================================
   Testimonials
   ============================================================ */

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  font-size: var(--text-display);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.testimonial {
  margin: 0;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: grid;
  gap: var(--space-3);
  align-content: start;
}
.testimonial__mark { font-family: var(--font-display); font-size: 48px; line-height: 0.42; height: 22px; color: var(--brand-honey); }
.testimonial blockquote { margin: 0; font-family: var(--font-display); font-size: 20px; line-height: 1.5; color: var(--text-strong); }
.testimonial figcaption { font-size: var(--text-small); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { margin-top: var(--space-6); display: grid; gap: var(--space-3); }
.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: var(--weight-semibold);
  color: var(--text-strong);
}
.faq-item__sign { flex: none; font-size: 24px; line-height: 1; color: var(--brand-green); }
.faq-item__a {
  margin: 0;
  padding: 0 var(--space-5) var(--space-5);
  font-size: 16px;
  line-height: var(--lh-body);
  color: var(--text-body);
}
.faq-item[data-open="false"] .faq-item__a { display: none; }

.faq-cta {
  margin-top: var(--space-5);
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}
.faq-cta p { margin: 0; font-size: 16.5px; color: var(--text-strong); }

/* ============================================================
   Kliniken / Links
   ============================================================ */

.klinik-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.klinik-card {
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.klinik-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-h3);
  line-height: var(--lh-heading);
  color: var(--text-strong);
}
.klinik-card p { margin: 0; font-size: 15.5px; line-height: var(--lh-body); color: var(--text-body); flex: 1; }
.klinik-card p a { color: var(--brand-green-700); text-decoration: none; }
.klinik-card__link {
  align-self: flex-start;
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  color: var(--brand-green-700);
  text-decoration: none;
  border-bottom: 2px solid var(--brand-honey);
  padding-bottom: 3px;
}

.links-title {
  margin: var(--space-7) 0 0;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  font-size: var(--text-h1);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
}
.links-intro { margin: var(--space-3) 0 0; font-size: 16px; line-height: var(--lh-body); color: var(--text-body); max-width: var(--measure); }
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.link-card {
  display: block;
  background: var(--surface-sunk);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-decoration: none;
  transition: box-shadow var(--dur-base) var(--ease-soft);
}
.link-card:hover { box-shadow: var(--shadow-card); }
.link-card__title { display: block; font-weight: var(--weight-bold); font-size: 16.5px; color: var(--text-strong); }
.link-card__host { display: block; margin-top: var(--space-2); font-size: 14.5px; color: var(--text-muted); }

/* ============================================================
   Final CTA band
   ============================================================ */

.final-cta {
  background: var(--surface-inverse);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 64px);
  color: var(--text-on-dark);
  text-align: center;
  display: grid;
  gap: var(--space-4);
  justify-items: center;
}
.final-cta__script { display: block; font-family: var(--font-script); font-size: var(--script-md); line-height: var(--lh-script); color: var(--brand-honey); }
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  font-size: var(--text-display);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  max-width: 22ch;
}
.final-cta p { margin: 0; font-size: 17px; line-height: var(--lh-body); color: rgba(253, 250, 243, 0.86); max-width: 52ch; }
.final-cta .btn { margin-top: var(--space-2); }
.final-cta__disclaimer { font-size: 13.5px; color: rgba(253, 250, 243, 0.7); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer { background: var(--surface-inverse); color: var(--text-on-dark); }
.site-footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-8) var(--space-5) var(--space-7);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-7);
}
.site-footer__logo {
  display: inline-block;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}
.site-footer__logo img { display: block; height: 56px; width: auto; }
.site-footer address {
  margin: var(--space-4) 0 0;
  font-style: normal;
  font-size: 16px;
  line-height: var(--lh-body);
  color: rgba(253, 250, 243, 0.82);
}
.site-footer__label {
  margin: 0;
  font-size: var(--text-micro);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand-honey);
  font-weight: var(--weight-semibold);
}
.site-footer__col p { margin: var(--space-3) 0 0; font-size: 16px; line-height: 1.9; }
.site-footer__col a { color: var(--text-on-dark); text-decoration: none; }
.site-footer__text { margin: var(--space-3) 0 0; font-size: 16px; line-height: var(--lh-body); color: rgba(253, 250, 243, 0.82); }
.site-footer .btn-primary { margin-top: var(--space-4); min-height: 48px; padding: 0 var(--space-5); font-size: 15.5px; }

.site-footer__bottom { border-top: 1px solid rgba(253, 250, 243, 0.16); }
.site-footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(253, 250, 243, 0.6);
}
.site-footer__bottom-inner p { margin: 0; }
.site-footer__bottom-inner a { color: rgba(253, 250, 243, 0.82); text-decoration: none; border-bottom: 1px solid rgba(253, 250, 243, 0.35); }

/* ============================================================
   Sticky WhatsApp
   ============================================================ */

.sticky-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  height: 60px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-pill);
  background: var(--action-primary);
  color: var(--action-primary-text);
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: 16px;
  text-decoration: none;
  box-shadow: var(--shadow-raised);
  transition: background var(--dur-base) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.sticky-wa:hover { background: var(--action-primary-hover); color: var(--action-primary-text); transform: translateY(-1px); }

/* ============================================================
   Scroll-reveal (IntersectionObserver driven)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-group > * { transition-delay: calc(var(--reveal-i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Legal pages (Impressum / Datenschutz)
   ============================================================ */

.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 243, 0.94);
  backdrop-filter: blur(10px);
}
.legal-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-2) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-5);
  font-size: var(--text-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
}
.legal-nav a { color: var(--text-body); text-decoration: none; transition: color var(--dur-fast) var(--ease-soft); }
.legal-nav a:hover { color: var(--brand-green); }

.legal-main { max-width: var(--container-narrow); margin: 0 auto; padding: var(--space-8) var(--space-5); }
.legal-main h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  font-size: var(--text-display);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
}
.legal-main h2 {
  margin: var(--space-7) 0 0;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-h2);
  line-height: var(--lh-heading);
  color: var(--text-strong);
}
.legal-main p { margin: var(--space-4) 0 0; font-size: 16.5px; line-height: var(--lh-body); }

.legal-box { margin-top: var(--space-7); background: var(--surface-sunk); padding: var(--space-6); }
.legal-box p { margin: 0; font-size: 17px; line-height: var(--lh-body); color: var(--text-strong); }
.legal-box p + p { margin-top: var(--space-4); }

.legal-list { margin: var(--space-4) 0 0; padding: 0; list-style: none; display: grid; gap: var(--space-2); }
.legal-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: var(--space-3);
  align-items: baseline;
  font-size: 16.5px;
}
.legal-list li span:first-child {
  display: block;
  height: 2px; width: 18px;
  background: var(--brand-green);
  border-radius: var(--radius-pill);
  transform: translateY(-5px);
}
.legal-list--links { gap: var(--space-3); }
.legal-list--links li { display: block; font-size: 16.5px; line-height: var(--lh-body); }

.legal-footer { background: var(--surface-inverse); color: var(--text-on-dark); }
.legal-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-size: 14px;
}
.legal-footer__inner p { margin: 0; }
.legal-footer__inner p:first-child { color: rgba(253, 250, 243, 0.7); }
.legal-footer__links { display: flex; gap: var(--space-4); }
.legal-footer a { color: var(--text-on-dark); text-decoration: none; }

/* ============================================================
   Cookie consent banner
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: var(--space-4);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.cookie-banner.is-visible { transform: translateY(0); pointer-events: auto; }
.cookie-banner[hidden] { display: flex; } /* keep transition-capable even while toggled via JS class */

.cookie-banner__card {
  width: 100%;
  max-width: 720px;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
  padding: var(--space-6);
  display: grid;
  gap: var(--space-4);
}
.cookie-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-h3);
  color: var(--text-strong);
}
.cookie-banner__text { margin: var(--space-2) 0 0; font-size: 15px; line-height: var(--lh-body); color: var(--text-body); }
.cookie-banner__text a { color: var(--brand-green-700); }

.cookie-banner__settings {
  display: grid;
  gap: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-hairline);
}
.cookie-banner__settings[hidden] { display: none; }
.btn[hidden] { display: none; }
.cookie-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
  cursor: pointer;
}
.cookie-option input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--brand-green-700); }
.cookie-option input:disabled { opacity: 0.6; cursor: not-allowed; }
.cookie-option strong { display: block; font-size: 15px; color: var(--text-strong); }
.cookie-option small { display: block; margin-top: 2px; font-size: 13px; line-height: 1.5; color: var(--text-muted); }

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.cookie-banner__link {
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--brand-green-700);
  text-decoration: underline;
  cursor: pointer;
  margin-right: auto;
}
.cookie-banner__link:hover { color: var(--brand-green-900); }

@media (max-width: 560px) {
  .cookie-banner__actions { flex-direction: column-reverse; align-items: stretch; }
  .cookie-banner__link { margin: var(--space-1) 0; text-align: center; }
}
