/* =================================================================
   Frauenärztliche Gemeinschaftspraxis Casparistraße
   Design-System  ·  "Ruhig & elegant"
   -----------------------------------------------------------------
   Warme Naturtöne (Sage / Sand / Dusty Rose), edle Typografie,
   viel Weißraum. Selbst-gehostete Fonts (DSGVO-konform).
   ================================================================= */

/* ---------- Webfonts (lokal gehostet) ---------- */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben — an die Markenwelt der Praxis angepasst:
     warmes Terrakotta-Rot + Bernstein/Gold (Logo #da850a) auf warmem Creme.
     Variablennamen (--sage / --rose) sind aus Kompatibilität beibehalten:
       --sage* = PRIMÄR (Terrakotta-Rot) · --rose* = AKZENT (Bernstein/Gold). */
  --cream:        #F7F1E5;
  --cream-deep:   #F0E5D1;
  --surface:      #FFFFFF;
  --surface-warm: #FDF7EC;

  --ink:          #2A231C;
  --ink-soft:     #5C5044;
  --ink-mute:     #8C806D;

  /* PRIMÄR – warmes Terrakotta-/Ziegelrot (Buttons, Footer, CTA, Struktur) */
  --sage:         #A53C2C;
  --sage-deep:    #7C2A1E;
  --sage-tint:    #EBD5CD;
  --sage-wash:    #F6E7E0;

  /* AKZENT – Bernstein/Gold aus dem Logo (#da850a) */
  --rose:         #B06E12;
  --rose-deep:    #8A5410;
  --rose-tint:    #F4E3C1;
  --rose-wash:    #FBF1DA;

  --line:         #E9DDC8;
  --line-soft:    #F2E9D8;

  /* Typografie */
  --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radien & Schatten */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(44,42,36,.04), 0 2px 8px rgba(44,42,36,.05);
  --shadow-md: 0 4px 14px rgba(44,42,36,.06), 0 12px 34px rgba(44,42,36,.07);
  --shadow-lg: 0 18px 50px rgba(44,42,36,.12);

  /* Layout */
  --container: 1160px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

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

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .97rem + .25vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: var(--sage-deep); text-decoration-color: var(--rose); text-underline-offset: 3px; }
a:hover { color: var(--rose-deep); }

::selection { background: var(--rose-tint); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 1.6rem + 3.1vw, 3.9rem); font-weight: 500; line-height: 1.06; }
h2 { font-size: clamp(1.8rem, 1.4rem + 1.9vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 1.12rem + .75vw, 1.6rem); }
h4 { font-size: 1.18rem; font-weight: 600; }

p { text-wrap: pretty; }
strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--rose);
  display: inline-block;
}

.lead {
  font-size: clamp(1.1rem, 1.02rem + .5vw, 1.35rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
/* Breiter, „aufgelockerter" Inhalt: Sektion 100vw, Inhalt füllt 90 % der Viewport-Breite */
.container--wide { width: 90vw; max-width: none; margin-inline: auto; }
@media (max-width: 620px) { .container--wide { width: 100%; padding-inline: var(--gutter); } }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--cream-deep); }
.section--sage { background: var(--sage-wash); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.center .measure { margin-inline: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

.section-head { max-width: 58ch; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.center .section-head { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--sage);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  padding: .95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; }

.btn--rose { --btn-bg: var(--rose); }
.btn--rose:hover { background: var(--rose-deep); }
.btn--sage:hover { background: var(--sage-deep); }

.btn--outline {
  --btn-fg: var(--sage-deep);
  background: transparent;
  border-color: var(--sage);
  box-shadow: none;
}
.btn--outline:hover { background: var(--sage); --btn-fg: #fff; }

.btn--ghost {
  --btn-fg: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }

/* Variante für dunkle Hintergründe (z. B. CTA-Band) – Text bleibt lesbar */
.btn--on-dark {
  --btn-fg: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.55);
  box-shadow: none;
}
.btn--on-dark:hover { --btn-fg: #fff; background: rgba(255,255,255,.15); border-color: #fff; }

.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.center .btn-row { justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; text-decoration: none; color: var(--sage-deep);
}
.textlink svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* =================================================================
   HEADER / NAVIGATION
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(44,42,36,.05);
}
.nav {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 78px;
  padding-block: .6rem;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; line-height: 1; }
.logo:hover { color: inherit; }
.logo__img { height: 44px; width: auto; display: block; max-width: min(72vw, 360px); object-fit: contain; object-position: left center; }
@media (max-width: 480px) { .logo__img { height: 38px; } }
.footer__brand .logo__img { height: 42px; }
.logo__mark { width: 40px; height: 40px; flex: none; color: var(--sage); }
.logo__text { display: flex; flex-direction: column; gap: .12rem; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.32rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em;
}
.logo__sub {
  font-size: .64rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-mute);
}

.nav__spacer { margin-left: auto; }

/* Desktop: Navigation rechtsbündig vom Logo absetzen */
@media (min-width: 941px) { .nav__links { margin-left: auto; } }

.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; padding: 0; }
.nav__links a {
  display: block;
  font-size: .95rem; font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: .55rem .85rem;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--surface-warm); }
.nav__links a[aria-current="page"] { color: var(--sage-deep); background: var(--sage-tint); }

.nav__cta { display: inline-flex; gap: .6rem; }

/* Burger */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface-warm); cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 78px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; gap: 1.2rem;
    padding: 1.5rem var(--gutter) 2rem;
    display: none;
  }
  .nav__menu.is-open { display: flex; animation: menuIn .3s var(--ease); }
  .nav__links { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav__links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav__cta { flex-direction: column; }
  .nav__cta .btn { width: 100%; }
}
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.nav__menu { display: contents; }
@media (max-width: 940px) { .nav__menu { display: none; } }

/* Info-Bar (oberste schmale Leiste) */
.topbar {
  background: var(--sage-deep);
  color: color-mix(in srgb, #fff 88%, var(--sage-tint));
  font-size: .85rem;
}
.topbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1.6rem;
  min-height: 40px; padding-block: .4rem;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--rose-tint); text-decoration: underline; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 1em; height: 1em; opacity: .8; }
.topbar__spacer { margin-left: auto; }
@media (max-width: 620px) { .topbar__hide-sm { display: none; } }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__content { max-width: 36rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: normal; color: var(--rose-deep); font-weight: 600; }
.hero .lead { margin-bottom: 2rem; }
.hero__meta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; }
.hero__meta-item { display: flex; flex-direction: column; gap: .15rem; }
.hero__meta-item .k { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.hero__meta-item .v { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }

.hero__visual { position: relative; }
.hero__visual .media-placeholder { aspect-ratio: 4 / 5; border-radius: var(--r-xl); }
.hero__badge {
  position: absolute; left: -1.5rem; bottom: 1.8rem;
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 1.1rem 1.3rem;
  display: flex; align-items: center; gap: .9rem; max-width: 18rem;
  border: 1px solid var(--line-soft);
}
.hero__badge .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--rose-wash); color: var(--rose-deep); display: grid; place-items: center; flex: none; }
.hero__badge .ico svg { width: 22px; height: 22px; }
.hero__badge .t { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.2; }
.hero__badge .s { font-size: .82rem; color: var(--ink-soft); }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* Auf Mobilgeräten zuerst Botschaft + Buttons, dann das Bild */
  .hero__content { order: -1; }
  .hero__visual { max-width: 30rem; margin-top: 2.4rem; }
  .hero__badge { left: 0; }
}

/* Dekoratives Blatt-Ornament */
.leaf-bg { position: absolute; pointer-events: none; opacity: .5; z-index: -1; color: var(--sage-tint); }

/* =================================================================
   MEDIA-PLATZHALTER  (austauschbar gegen echte Fotos)
   ================================================================= */
.media-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 120% at 0% 0%, var(--sage-wash), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, var(--rose-wash), transparent 55%),
    var(--cream-deep);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
  color: var(--ink-mute);
  aspect-ratio: 3 / 2;
}
.media-placeholder::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(86,104,79,.04) 14px 15px);
  pointer-events: none;
}
.media-placeholder__inner { position: relative; text-align: center; padding: 1.5rem; z-index: 1; }
.media-placeholder svg { width: 46px; height: 46px; margin-inline: auto; opacity: .55; color: var(--sage); }
.media-placeholder .ph-label {
  margin-top: .7rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}
.media-placeholder.is-portrait { aspect-ratio: 3 / 4; }
.media-placeholder.is-square { aspect-ratio: 1 / 1; }
.media-placeholder.is-wide { aspect-ratio: 16 / 9; }

/* =================================================================
   KARTEN / GRIDS
   ================================================================= */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-tint); }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--sage-wash); color: var(--sage-deep);
  display: grid; place-items: center; margin-bottom: 1.3rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card--rose .card__icon { background: var(--rose-wash); color: var(--rose-deep); }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card__list { list-style: none; padding: 0; margin-top: 1rem; display: grid; gap: .55rem; }
.card__list li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--ink-soft); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--rose);
}

/* Feature / Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .split--reverse .split__media { order: 0; }
}

/* Checkliste */
.checklist { list-style: none; padding: 0; display: grid; gap: .85rem; }
.checklist li { position: relative; padding-left: 2.1rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .12em;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sage-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C2A1E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* Pills / Tags */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; padding: .35rem .8rem;
  border-radius: 999px; background: var(--sage-tint); color: var(--sage-deep);
}
.pill--rose { background: var(--rose-tint); color: var(--rose-deep); }

/* =================================================================
   TEAM
   ================================================================= */
.team-card { text-align: left; }
.team-card .media-placeholder { aspect-ratio: 3 / 4; border-radius: var(--r-lg); margin-bottom: 1.1rem; }
.team-card h3 { font-size: 1.32rem; margin-bottom: .15rem; }
.team-card .role { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: .55rem; }
.team-card .focus { font-size: .95rem; color: var(--ink-soft); }

/* =================================================================
   SPRECHZEITEN-TABELLE
   ================================================================= */
.hours { width: 100%; border-collapse: collapse; }
.hours caption { text-align: left; }
.hours th, .hours td { padding: .95rem 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: baseline; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .day { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); width: 8.5rem; }
.hours .slots { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours .closed { color: var(--ink-mute); font-style: italic; }
.hours tr.is-today .day { color: var(--sage-deep); }
.hours tr.is-today { background: var(--sage-wash); }
.hours tr.is-today .day::after {
  content: "heute"; display: inline-block; margin-left: .6rem;
  font-family: var(--font-body); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--rose); padding: .12rem .5rem; border-radius: 999px; vertical-align: middle;
}

/* Info-Box / Callout */
.callout {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--surface-warm); border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: var(--r-md); padding: 1.3rem 1.5rem;
}
.callout .ico { color: var(--rose-deep); flex: none; }
.callout .ico svg { width: 24px; height: 24px; }
.callout h4 { margin-bottom: .25rem; }
.callout p { color: var(--ink-soft); font-size: .96rem; }
.callout--sage { border-left-color: var(--sage); }
.callout--sage .ico { color: var(--sage-deep); }

/* Kontakt-Kacheln */
.contact-tile {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem; background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); height: 100%;
}
.contact-tile .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--sage-wash); color: var(--sage-deep); display: grid; place-items: center; flex: none; }
.contact-tile .ico svg { width: 24px; height: 24px; }
.contact-tile .k { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.contact-tile .v { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.contact-tile a { text-decoration: none; }
.contact-tile a:hover { color: var(--rose-deep); }

/* =================================================================
   FORMULAR
   ================================================================= */
.form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--rose-deep); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-wash);
}
.field textarea { min-height: 140px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.checkbox input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; accent-color: var(--sage); flex: none; }

/* =================================================================
   PAGE-HERO (Unterseiten)
   ================================================================= */
.page-hero { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3.2rem); }
.page-hero .lead { margin-top: 1.2rem; max-width: 56ch; }
.breadcrumb { font-size: .85rem; color: var(--ink-mute); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--sage-deep); }
.breadcrumb span { margin-inline: .4rem; }

/* Prose */
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-top: .4rem; }
.placeholder-note {
  font-size: .85rem; color: var(--rose-deep); background: var(--rose-wash);
  border: 1px dashed var(--rose); border-radius: var(--r-sm); padding: .9rem 1.1rem; margin-top: 1.2rem;
}

/* CTA-Band */
.cta-band {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: #fff; border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: color-mix(in srgb, #fff 85%, var(--sage-tint)); max-width: 48ch; }
.cta-band .btn--rose { box-shadow: var(--shadow-md); }
.cta-band__leaf { position: absolute; right: -40px; top: -40px; width: 260px; opacity: .12; color: #fff; pointer-events: none; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--sage-deep); color: color-mix(in srgb, #fff 80%, var(--sage-tint)); margin-top: var(--section-y); }
.site-footer a { color: color-mix(in srgb, #fff 80%, var(--sage-tint)); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .logo__name { color: #fff; }
.footer__brand .logo__sub { color: color-mix(in srgb, #fff 60%, var(--sage)); }
.footer__brand .logo__mark { color: var(--rose-tint); }
.footer__about { margin-top: 1.2rem; font-size: .92rem; line-height: 1.65; max-width: 30ch; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .65rem; font-size: .94rem; }
.footer__contact-line { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact-line svg { width: 18px; height: 18px; margin-top: .2rem; opacity: .7; flex: none; }
.footer__bottom {
  border-top: 1px solid color-mix(in srgb, #fff 14%, transparent);
  padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center;
  font-size: .85rem;
}
.footer__bottom .sp { margin-left: auto; }

/* =================================================================
   SCROLL-REVEAL
   ================================================================= */
/* Versteckter Startzustand nur, wenn JS aktiv ist (.js auf <html>).
   Ohne JS bleibt der Inhalt sichtbar (Ausfallsicherheit / SEO). */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1; transform: none; } }

/* Utilities */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -3rem; z-index: 200; background: var(--sage-deep); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) var(--r-sm); transition: top .2s; }
.skip-link:focus { top: 0; color: #fff; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 0; }
