/* aide Au Pair Services – helle Marken-Optik: Logo-Lila, Weiß, warmes Grau */
@font-face { font-family: "Poppins"; src: url("fonts/poppins-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("fonts/poppins-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Inter"; src: url("fonts/inter.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

:root {
  --lilac: #DDA9EC;
  --lilac-soft: #F4E6FA;
  --lilac-pale: #FBF4FD;
  --lilac-deep: #8E4BA8;
  --ink: #3A3A3A;
  --ink-strong: #2B2B2B;
  --muted: #6E6E73;
  --line: #E8E2EA;
  --white: #FFFFFF;
  --display: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  --body: "Inter", system-ui, "Segoe UI", sans-serif;
  --wrap: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--body); font-size: 1.0625rem; line-height: 1.7; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lilac-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink-strong); }
:focus-visible { outline: 3px solid var(--lilac); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--display); color: var(--ink-strong); line-height: 1.2; margin: 0 0 .6em; font-weight: 600; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.2rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1.1em; max-width: 66ch; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 54ch; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink-strong); color: #fff; padding: .6rem 1rem; z-index: 10; }
.skip:focus { left: 1rem; }

/* Header */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.1rem 0; flex-wrap: wrap; }
.brand { display: block; }
.brand img { height: 74px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.nav a { color: var(--ink); text-decoration: none; font-size: .98rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--lilac-deep); }

/* Buttons */
.btn { display: inline-block; font-family: var(--display); font-weight: 500; font-size: .98rem; padding: .8rem 1.5rem; border-radius: 999px; text-decoration: none; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--lilac); color: var(--ink-strong); }
.btn-primary:hover { background: var(--lilac-deep); color: #fff; }
.btn-ghost { border-color: var(--lilac); color: var(--lilac-deep); }
.btn-ghost:hover { background: var(--lilac-soft); color: var(--ink-strong); }
.btn-light { background: #fff; color: var(--ink-strong); }
.btn-light:hover { background: var(--lilac); }
.nav .btn { padding: .6rem 1.2rem; }

/* Hero */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.founder-line { margin-top: 1.6rem; font-size: .95rem; color: var(--muted); }
.hero-portrait { margin: 0; }
.hero-portrait img { width: 100%; border-radius: 20px; }
.hero-portrait figcaption { margin-top: .8rem; font-size: .9rem; color: var(--muted); }

/* Ablauf */
.journey { background: var(--lilac-pale); }
.steps { list-style: none; margin: 2.8rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; counter-reset: step; position: relative; }
.steps::before { content: ""; position: absolute; top: 1.7rem; left: 1.7rem; right: calc((100% - 5.6rem) / 5 - 1.7rem); height: 1px; background: var(--lilac); }
.step { position: relative; counter-increment: step; }
.step::before { content: counter(step); display: grid; place-items: center; width: 3.4rem; height: 3.4rem; border-radius: 50%; background: var(--lilac); color: var(--ink-strong); font-family: var(--display); font-weight: 600; font-size: 1.35rem; position: relative; margin-bottom: 1.1rem; }
.step h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.step p { font-size: .94rem; color: var(--muted); margin: 0; }
.step .dur { display: inline-block; margin-top: .7rem; font-size: .85rem; color: var(--lilac-deep); }

/* Bausteine */
.packages-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 2.5rem; }
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.module { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.8rem; }
.module h3 { font-size: 1.45rem; margin-bottom: .2rem; color: var(--lilac-deep); }
.module .tag { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; display: block; }
.module ul { margin: 0; padding-left: 1.1rem; }
.module li { margin-bottom: .5rem; font-size: .96rem; }

.invitation { margin-top: 2.8rem; background: var(--lilac-soft); border-radius: 18px; padding: 2rem; max-width: 62ch; }
.invitation p { font-size: 1.05rem; }
.invitation .btn { margin-top: .4rem; }
.note { font-size: .95rem; color: var(--muted); margin-top: 1.5rem; }

/* Split / Panel */
.split { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.panel { background: var(--lilac-pale); padding: 1.8rem; border-radius: 18px; }
.panel p:last-child { margin-bottom: 0; }

/* Zitat */
.quote-band { background: var(--lilac-soft); padding: clamp(2.8rem, 6vw, 4rem) 0; }
.quote-band figure { margin: 0 auto; max-width: 52ch; text-align: center; }
.quote-band blockquote { margin: 0 0 1rem; font-family: var(--display); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.4; color: var(--ink-strong); }
.quote-band figcaption { color: var(--muted); font-size: .95rem; }

/* Fakten & Tabellen */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; margin: 2rem 0 0; }
.facts div { padding: 1rem 0; border-top: 1px solid var(--line); }
.facts dt { font-family: var(--display); font-weight: 500; color: var(--ink-strong); }
.facts dd { margin: .2rem 0 0; color: var(--muted); }
table.costs { width: 100%; max-width: 620px; border-collapse: collapse; margin: 1.5rem 0; }
.costs th, .costs td { text-align: left; padding: .7rem .4rem; border-bottom: 1px solid var(--line); }
.costs td:last-child, .costs th:last-child { text-align: right; white-space: nowrap; }
.costs .group th, .costs .group th:last-child { text-align: left; font-family: var(--display); font-size: 1.05rem; color: var(--lilac-deep); padding-top: 1.6rem; border-bottom: 1px solid var(--lilac); }
.costs .total td { font-weight: 600; border-bottom: 0; }

/* Kontakt */
.contact { background: var(--lilac-pale); }
.contact .wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); }
.form-slot { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; min-height: 200px; }

/* Unterseiten */
.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 .5rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul { padding-left: 1.2rem; max-width: 66ch; }
.prose li { margin-bottom: .4rem; }
.letter { max-width: 62ch; }
.letter .signature { font-family: var(--display); }
.about-split { grid-template-columns: .85fr 1.15fr; }
.about-portrait { margin: 0; }
.about-portrait img { width: 100%; border-radius: 20px; }
.about-portrait figcaption { margin-top: .8rem; font-size: .9rem; color: var(--muted); }

/* Footer */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 2rem 0; font-size: .93rem; color: var(--muted); }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-footer a { color: var(--ink); }

/* Responsive */
@media (max-width: 900px) {
  .hero .wrap, .split, .contact .wrap, .packages-intro, .about-split { grid-template-columns: 1fr; }
  .hero-portrait img, .about-portrait img { max-width: 360px; }
  .modules { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .steps::before { top: 0; bottom: 0; left: 1.7rem; right: auto; width: 1px; height: auto; }
  .step { display: grid; grid-template-columns: 3.4rem 1fr; column-gap: 1.1rem; }
  .step::before { grid-row: 1 / span 3; grid-column: 1; margin: 0; }
  .step > * { grid-column: 2; }
  .facts { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .brand img { height: 56px; }
  .nav { gap: 1rem; font-size: .95rem; }
}

/* Kundenstimmen */
.voices { background: var(--lilac-soft); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.voices h2 { margin-bottom: 2rem; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.voice { margin: 0; background: var(--white); border-radius: 18px; padding: 1.7rem; }
.voice blockquote { margin: 0 0 1rem; font-size: 1rem; line-height: 1.6; color: var(--ink); }
.voice figcaption { font-family: var(--display); font-weight: 500; font-size: .92rem; color: var(--lilac-deep); }
@media (max-width: 900px) { .voice-grid { grid-template-columns: 1fr; } }

/* Portrait neben "Ich kenne beide Seiten" */
.side-portrait { margin: 1.5rem 0 0; max-width: 260px; }
.side-portrait img { width: 100%; border-radius: 18px; }
.side-portrait figcaption { margin-top: .7rem; font-size: .9rem; color: var(--muted); }

/* Werte-Sektion auf "Über mich" */
.values { background: var(--lilac-pale); padding: clamp(3rem, 7vw, 5rem) 0; }
.value-grid { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; counter-reset: val; }
.value-grid li { counter-increment: val; background: var(--white); border-radius: 18px; padding: 1.6rem 1.8rem; position: relative; }
.value-grid li::before { content: "0" counter(val); font-family: var(--display); font-weight: 600; font-size: .85rem; color: var(--lilac-deep); letter-spacing: .08em; display: block; margin-bottom: .6rem; }
.value-grid h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.value-grid p { margin: 0; font-size: .97rem; color: var(--muted); }
.values-cta { margin-top: 2.2rem; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }

/* Formular-Container schlanker, damit das Tally-Design zur Geltung kommt */
.form-slot { padding: .75rem; }
