/* =========================================================
   Stark zurück ins Leben — Vera Bosak
   Mobile Logopädie & Alltagsbegleitung, Telgte
   Stylesheet
   ========================================================= */

/* ---------- 0. Schriften (lokal eingebunden, kein Google-Server) ----------
   Variable Fonts: eine Datei deckt alle Schriftschnitte ab.               */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- 1. Design-Tokens ---------- */
:root {
  /* Markenfarben — direkt aus dem Logo entnommen */
  --orange:        #ff8b3d;   /* Logo-Orange (Hintergrundfläche) */
  --orange-dark:   #e5762a;   /* Hover-Variante */
  --orange-deep:   #b45c1d;   /* dunkel genug für Text auf hellem Grund */
  --pink:          #fe9bc0;   /* Logo-Rosa (Kreisfläche) */
  --pink-soft:     #fbdcea;
  --pink-deep:     #d46f9a;

  /* Neutrale Töne */
  --cream:         #fdf8f3;
  --cream-2:       #f8efe6;
  --ink:           #2b2523;
  --ink-soft:      #564c47;
  --ink-muted:     #7a6d67;
  --line:          #ebddd1;
  --white:         #ffffff;

  /* Typografie */
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --wrap-narrow: 820px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Schatten */
  --shadow-sm: 0 2px 10px rgba(43, 37, 35, .06);
  --shadow-md: 0 10px 30px rgba(43, 37, 35, .09);
  --shadow-lg: 0 24px 60px rgba(43, 37, 35, .13);

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

/* ---------- 2. Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  /* Große Grundschrift: Zielgruppe sind auch ältere Leserinnen und Leser */
  font-size: 1.125rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.25rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

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

a { color: var(--orange-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pink-deep); }

/* Sichtbarer Fokus für Tastaturbedienung */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

strong { font-weight: 700; color: var(--ink); }

/* ---------- 3. Layout-Helfer ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(2.75rem, 6vw, 4.5rem) 0; }
.section--cream { background: var(--cream-2); }
.section--white { background: var(--white); }
.section--pink { background: var(--pink-soft); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .9rem 1.4rem;
  border-radius: 0 0 var(--radius) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- 4. Kopfzeile & Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 243, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .85rem 0;
}

.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: inherit; }
.brand:hover { color: inherit; }
.brand__mark {
  width: 58px; height: 58px; border-radius: 14px; object-fit: cover;
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.01em;
}
.brand__claim {
  font-size: .78rem; color: var(--ink-muted); letter-spacing: .06em;
  text-transform: uppercase; font-weight: 600;
}

.nav { display: flex; align-items: center; gap: .4rem; }
.nav a {
  padding: .6rem .95rem; border-radius: var(--radius-pill);
  color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.nav a:hover { background: var(--pink-soft); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--orange-deep); background: rgba(239, 139, 62, .12); }

.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: .7rem 1.35rem !important; box-shadow: var(--shadow-sm);
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Anruf-Button im Kopfbereich – nur in der mobilen Ansicht sichtbar.
   Er liegt ausserhalb des Klappmenues, damit die Telefonnummer auf dem
   Handy ohne Umweg erreichbar ist. */
.header-call {
  display: none; align-items: center; gap: .45rem;
  margin-left: auto; padding: .6rem 1rem;
  background: var(--orange); color: #fff; text-decoration: none;
  border-radius: var(--radius-pill); font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.header-call:hover { background: var(--orange-dark); color: #fff; }
.header-call svg { width: 18px; height: 18px; stroke-width: 2.2; flex-shrink: 0; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .6rem; border-radius: 12px; color: var(--ink);
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px; background: currentColor;
  border-radius: 2px; margin: 5px 0;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .header-call { display: inline-flex; }

  /* top:100% statt fester Pixelzahl – das Menü sitzt damit immer exakt
     unter der Kopfzeile, egal wie hoch sie gerade ist. */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--cream); padding: 1.25rem 1.25rem 2rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s var(--ease);
    max-height: 80vh; overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .95rem 1rem; font-size: 1.1rem; }
  .nav-cta { margin: .6rem 0 0; text-align: center; }
  .brand__mark { width: 50px; height: 50px; }
  .brand__claim { display: none; }
}

/* Sehr schmale Geräte: nur noch das Hörersymbol, damit die Kopfzeile
   nicht umbricht. */
@media (max-width: 420px) {
  .header-call span { display: none; }
  .header-call { padding: .65rem; }
  .brand__name { font-size: 1.05rem; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.9rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform .2s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; box-shadow: var(--shadow-lg); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--light { background: #fff; color: var(--orange-deep); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: var(--pink-soft); color: var(--orange-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* Hinweiszeile direkt unter einer Button-Reihe */
.btn-note {
  margin: .9rem 0 0;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 32rem;
  padding-left: 1.5rem;
  position: relative;
}
.btn-note::before {
  content: "i";
  position: absolute; left: 0; top: .18em;
  width: 1.05rem; height: 1.05rem; border-radius: 50%;
  background: var(--pink-soft); color: var(--orange-deep);
  font-size: .72rem; font-weight: 700; font-style: italic;
  display: grid; place-items: center; line-height: 1;
}

/* ---------- 6. Kleinteile ---------- */
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink-deep); margin-bottom: 1rem;
}

.lead { font-size: clamp(1.15rem, 2vw, 1.35rem); color: var(--ink-soft); line-height: 1.7; }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line);
  padding: .55rem 1.1rem; border-radius: var(--radius-pill);
  font-size: .95rem; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.badge__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ---------- 7. Startseite: Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(1100px 620px at 88% -8%, rgba(244, 162, 196, .42), transparent 62%),
    radial-gradient(880px 540px at 4% 108%, rgba(239, 139, 62, .22), transparent 60%),
    var(--cream);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { margin-bottom: .5em; }
.hero h1 .accent {
  color: var(--ink);
  background: linear-gradient(transparent 62%, rgba(244, 162, 196, .55) 62%);
}
.hero__sub { font-size: clamp(1.05rem, 1.8vw, 1.22rem); color: var(--ink-soft); max-width: 33rem; }

.hero__media { position: relative; display: flex; justify-content: center; }
.hero__logo {
  width: min(100%, 420px); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.hero__media::before {
  content: ""; position: absolute; z-index: 1;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: rgba(244, 162, 196, .35); filter: blur(38px);
  top: -8%; right: -4%;
}
.hero__stamp {
  position: absolute; z-index: 3; bottom: -22px; left: -14px;
  background: #fff; border-radius: var(--radius);
  padding: .9rem 1.25rem; box-shadow: var(--shadow-md);
  font-size: .92rem; font-weight: 700; color: var(--ink);
  line-height: 1.35; max-width: 19rem;
}
.hero__stamp span {
  display: block; font-weight: 500; color: var(--ink-muted);
  font-size: .82rem; line-height: 1.4; margin-top: .3rem;
}
/* Zweite fett gesetzte Zeile – optisch identisch zur ersten Zeile des Kastens */
.hero__stamp-lead {
  display: block; font-weight: 700; color: var(--ink);
  font-size: .92rem; line-height: 1.35; margin-top: .75rem;
}

.hero__facts {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem;
  margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.hero__fact strong {
  display: block; font-family: var(--font-display); font-size: 1.7rem;
  color: var(--orange-deep); line-height: 1.1;
}
.hero__fact span { font-size: .95rem; color: var(--ink-muted); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }

  /* Der weiße Kasten steht hier nicht mehr absolut, sondern im Fluss.
     Ohne column-Richtung würde er sich die Flex-Zeile mit dem Logo
     teilen und abgeschnitten dargestellt. */
  .hero__media {
    order: -1; margin-bottom: 1rem;
    flex-direction: column; align-items: center;
  }
  .hero__logo { width: min(100%, 320px); }
  .hero__stamp {
    position: static; margin-top: 1.25rem;
    width: min(100%, 420px); max-width: none;
  }
}

/* ---------- 8. Karten ---------- */
.card-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
}

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--pink); }
.card h3 { margin-bottom: .55em; }
.card p { color: var(--ink-soft); font-size: 1.02rem; }

.card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--pink-soft), rgba(239, 139, 62, .2));
  color: var(--orange-deep); flex-shrink: 0;
}
.card__icon svg { width: 28px; height: 28px; stroke-width: 1.7; }

.card__link {
  margin-top: auto; padding-top: 1.35rem; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
}
.card__link::after { content: "→"; transition: transform .25s var(--ease); }
.card:hover .card__link::after { transform: translateX(4px); }

/* ---------- 9. Text-Bild-Blöcke ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.split--narrow-media { grid-template-columns: .8fr 1.2fr; }
@media (max-width: 900px) {
  .split, .split--narrow-media { grid-template-columns: 1fr; }
}

.portrait-frame { position: relative; }
.portrait-frame img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; object-fit: cover; position: relative; z-index: 2;
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border-radius: var(--radius-lg); background: var(--pink-soft); z-index: 1;
}

/* ---------- 10. Listen ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.check-list li {
  position: relative; padding-left: 2.1rem;
  color: var(--ink-soft); line-height: 1.6;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--pink-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45c1d' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / .75rem no-repeat;
}
.check-list--two { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: .85rem 2rem; }

.tag-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.tag-list li {
  background: var(--white); border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  font-size: .95rem; color: var(--ink-soft); font-weight: 500;
}

/* ---------- 11. Akkordeon (natives details/summary) ---------- */
.accordion { display: grid; gap: 1rem; }

.acc {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.acc[open] { border-color: var(--pink); box-shadow: var(--shadow-sm); }

.acc > summary {
  cursor: pointer; list-style: none; padding: 1.35rem 3.5rem 1.35rem 1.7rem;
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  font-weight: 600; color: var(--ink); position: relative;
  transition: background .2s var(--ease);
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary:hover { background: var(--cream); }
.acc > summary::after {
  content: ""; position: absolute; right: 1.6rem; top: 50%;
  width: 14px; height: 14px; margin-top: -8px;
  border-right: 2.5px solid var(--orange-deep);
  border-bottom: 2.5px solid var(--orange-deep);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.acc[open] > summary::after { transform: rotate(-135deg); margin-top: -3px; }

.acc__body { padding: 0 1.7rem 1.7rem; color: var(--ink-soft); }
.acc__body > *:first-child { margin-top: 0; }
.acc__body h4 { color: var(--ink); margin: 1.6rem 0 .5rem; }
.acc__body h4:first-child { margin-top: 0; }

/* ---------- 12. Leistungsblöcke ---------- */
.service-block {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.9rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm); margin-bottom: 2rem;
}
.service-block:last-child { margin-bottom: 0; }
.service-block__head { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem; }
.service-block__head h2 { margin-bottom: .25em; }
.service-block__head p { color: var(--ink-muted); font-size: 1.05rem; }

.note {
  background: var(--pink-soft); border-left: 5px solid var(--pink-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.3rem 1.6rem; margin: 1.75rem 0 0; font-size: 1rem; color: var(--ink-soft);
}
.note strong { color: var(--ink); }
.note--orange { background: rgba(239, 139, 62, .12); border-left-color: var(--orange); }

.price-tag {
  display: inline-flex; align-items: baseline; gap: .5rem;
  background: var(--cream-2); border-radius: var(--radius);
  padding: 1rem 1.5rem; margin-top: 1rem;
}
.price-tag b { font-family: var(--font-display); font-size: 1.8rem; color: var(--orange-deep); }
.price-tag span { color: var(--ink-muted); font-size: .98rem; }

/* ---------- 12b. Bewertungen ---------- */
.rating-summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .5rem 1rem; margin-top: 1.5rem;
}
.rating-summary__score {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.rating-summary__meta { color: var(--ink-muted); font-size: 1rem; }

.stars { display: inline-flex; gap: .15rem; }
.stars svg { width: 1.15rem; height: 1.15rem; fill: var(--orange); }

/* align-items: stretch (Standard) sorgt dafür, dass alle Karten
   einer Reihe dieselbe Höhe bekommen. */
.review-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.9rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-card blockquote {
  margin: 1rem 0 1.4rem; font-size: 1.02rem; line-height: 1.7; color: var(--ink-soft);
}
.review-card blockquote p { margin-bottom: .8em; }

/* margin-top:auto schiebt die Namenszeile ans untere Kartenende –
   dadurch stehen sie über alle Karten einer Reihe auf gleicher Höhe. */
.review-card__author {
  margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: .75rem; flex-wrap: wrap;
}
.review-card__name { font-weight: 700; color: var(--ink); font-size: 1rem; }
.review-card__date { font-size: .88rem; color: var(--ink-muted); }

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

/* ---------- 13. Zeitstrahl (Ablauf) ---------- */
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.6rem; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; background: var(--orange); color: #fff;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: .4em; }
.step p { font-size: .99rem; color: var(--ink-soft); }

/* ---------- 14. Kontaktbereich ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list svg { width: 24px; height: 24px; color: var(--orange-deep); flex-shrink: 0; margin-top: .3rem; stroke-width: 1.8; }
.contact-list dt, .contact-list .label {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-muted); font-weight: 700; display: block; margin-bottom: .1rem;
}
.contact-list a { font-size: 1.15rem; font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* Formular */
.form-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block; font-weight: 700; font-size: .98rem;
  margin-bottom: .45rem; color: var(--ink);
}
.field .req { color: var(--pink-deep); }
.field input, .field textarea {
  width: 100%; padding: .95rem 1.1rem;
  border: 2px solid var(--line); border-radius: 14px;
  background: var(--cream); font: inherit; font-size: 1.02rem; color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--orange); background: #fff; outline: none; }
.field textarea { min-height: 165px; resize: vertical; }

/* Einwilligungs-Checkbox */
.field-check {
  display: flex; gap: .85rem; align-items: flex-start;
  margin-top: 1.5rem; padding: 1.1rem 1.25rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
}
.field-check input[type="checkbox"] {
  width: 1.35rem; height: 1.35rem; margin: .15rem 0 0;
  accent-color: var(--orange); flex-shrink: 0; cursor: pointer;
}
.field-check label {
  font-size: .95rem; line-height: 1.6; color: var(--ink-soft);
  font-weight: 400; cursor: pointer; margin: 0;
}

/* Honigtopf gegen Spam-Bots – für Menschen nicht wahrnehmbar */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.form-hint { font-size: .92rem; color: var(--ink-muted); margin-top: 1rem; }

/* Rückmeldung über dem Formular */
.alert {
  margin: 1.25rem 0 0; padding: 1rem 1.25rem;
  border-radius: 14px; border-left: 5px solid transparent;
  font-size: .98rem; line-height: 1.6;
}
.alert[hidden] { display: none; }
.alert--error { background: #fdeceb; border-left-color: #c0392b; color: #8a2a22; }
.alert--success { background: #e8f5ec; border-left-color: #2e7d4f; color: #1f5c37; }

/* Button während des Versands */
.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* ---------- 15. Abschluss-CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink-deep) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem); text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .93); max-width: 44rem; margin-inline: auto; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn--ghost { border-color: rgba(255, 255, 255, .8); color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--orange-deep); }

/* ---------- 16. Fußzeile ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .75); padding: 4rem 0 2rem; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .84rem;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem;
}
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: var(--pink); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer-brand { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.footer-brand img { width: 54px; height: 54px; border-radius: 12px; object-fit: cover; }
.footer-brand strong { color: #fff; font-family: var(--font-display); font-size: 1.15rem; }
.footer-note { font-size: .95rem; line-height: 1.7; max-width: 30rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.75rem; font-size: .9rem; color: rgba(255, 255, 255, .55);
}

/* ---------- 17. Seitenkopf der Unterseiten ---------- */
.page-hero {
  background:
    radial-gradient(760px 420px at 82% -20%, rgba(244, 162, 196, .4), transparent 62%),
    var(--cream);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  border-bottom: 1px solid var(--line);
}
.page-hero p.lead { max-width: 48rem; }

.breadcrumb { font-size: .92rem; color: var(--ink-muted); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-deep); text-decoration: underline; }

/* ---------- 18. Impressum ---------- */
.legal { max-width: 44rem; }
.legal h2 { font-size: 1.55rem; margin-top: 2.75rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal dl { display: grid; gap: 1.3rem; margin: 0; }
.legal dt {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-muted); font-weight: 700;
}
.legal dd { margin: .2rem 0 0; font-size: 1.08rem; }

/* ---------- 19. Einblenden beim Scrollen ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 20. Druck ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none !important; }
  body { background: #fff; font-size: 11pt; }
}
