/* ============================================================
   ANGSTFREI²  -  Lydia Karstädt
   Brand palette derived pixel-exact from the logo (sunrise over navy water).
   Accent lock: GOLD is the single accent. NAVY is the structural/dark colour.
   The coral->orange->gold gradient is used only as the intentional "sunrise"
   brand device (hero glow, brand wordmark, dividers), never as random pops.
   Theme lock: LIGHT only - the brand metaphor is light emerging from dark.
   Motion: gentle by design (anxiety-aware). Everything honours reduced-motion.
   ============================================================ */

@import url("fonts.css");

:root {
  /* --- Brand colours (from logo) --- */
  --navy:        #013A5E;   /* deep anchor: trust, calm, depth */
  --navy-600:    #014B79;   /* logo wave blue */
  --navy-300:    #5E86A2;
  --gold:        #FCB424;   /* signature sun - the single accent */
  --gold-600:    #F49E12;
  --orange:      #FA892A;
  --coral:       #FB4E60;

  /* --- Surfaces (warm, calming, NOT craft-beige) --- */
  --bg:          #FFFAF4;   /* primary warm white */
  --bg-soft:     #FCEEDD;   /* soft peach tint (sunrise echo) */
  --bg-rose:     #FBEAE6;   /* very soft coral tint */
  --surface:     #FFFFFF;   /* clean cards */
  --line:        #EEE0CF;   /* hairline on warm bg */
  --line-soft:   #F3E7D7;

  /* --- Text --- */
  --ink:         #14304A;   /* warm deep navy-charcoal (not pure black) */
  --muted:       #4C5E6D;   /* passes AA on --bg */
  --muted-soft:  #6A7A87;

  /* --- Gradients (the sunrise) --- */
  --sunrise: linear-gradient(90deg, var(--coral) 0%, var(--orange) 48%, var(--gold) 100%);
  --sunrise-soft: linear-gradient(120deg, #FFD9C2 0%, #FFE7B8 100%);

  /* --- Shape system --- */
  --r-card: 22px;
  --r-lg:   32px;
  --r-sm:   12px;
  --r-pill: 999px;

  /* --- Soft, navy-tinted shadows (calm elevation) --- */
  --sh-sm: 0 2px 10px -4px rgba(1, 58, 94, .16);
  --sh:    0 18px 40px -22px rgba(1, 58, 94, .30);
  --sh-lg: 0 40px 80px -40px rgba(1, 58, 94, .38);

  /* --- Type --- */
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ---------------- Reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
/* media wrappers must fill their framed container (picture height:auto would collapse the img) */
.hero-portrait picture, .ph picture, .fw-media picture { width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--navy-600); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 12px;
  transition: top .2s ease; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------------- Layout ---------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }
.bg-soft { background: var(--bg-soft); }
.bg-rose { background: var(--bg-rose); }
.bg-navy { background: var(--navy); color: #F4F8FB; }

/* ---------------- Typography ---------------- */
.display, h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.14; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.2; }
em, .italic { font-style: italic; }
/* italic descender clearance for display */
.display em, h1 em, h2 em { line-height: 1.16; padding-bottom: .06em; display: inline-block; }

.lead { font-size: clamp(1.12rem, 1.7vw, 1.32rem); line-height: 1.65; color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.prose p { max-width: 62ch; }
.prose p + p { margin-top: 1.1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--sunrise);
}

.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

.brand-word {
  font-family: var(--font-sans); font-weight: 800; letter-spacing: -.01em;
}
.brand-word sup { font-size: .55em; font-weight: 800; top: -.55em; position: relative;
  background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* gradient accent on small marks only (not big headlines) */
.grad { background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--r-pill); font-weight: 600; font-size: 1rem;
  border: 1.5px solid transparent; white-space: nowrap; line-height: 1;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, background-color .25s ease, color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 14px 30px -14px rgba(1,58,94,.7); }
.btn--primary:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(1,58,94,.8), 0 0 0 4px rgba(252,180,36,.18); }
.btn--primary:active { transform: translateY(0) scale(.98); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(1,58,94,.28); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(1,58,94,.04); transform: translateY(-2px); }
.btn--light { background: var(--gold); color: var(--navy); box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(0,0,0,.45); background: #ffc24a; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-note { font-size: .92rem; color: var(--muted-soft); display: inline-flex; align-items: center; gap: 8px; }
.cta-note svg { width: 16px; height: 16px; color: var(--gold-600); }

/* ---------------- Header ---------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,250,244,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--sh-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); }
.brand img { width: 42px; height: 42px; }
.brand b { font-weight: 800; letter-spacing: -.01em; font-size: 1.12rem; }
.brand b sup { font-size: .6em; background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand small { display: block; font-size: .72rem; font-weight: 500; color: var(--muted-soft); letter-spacing: .02em; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .98rem; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--sunrise); border-radius: 2px; transition: width .28s cubic-bezier(.16,1,.3,1); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--surface); border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }

/* mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(20,48,74,.34); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; z-index: 120; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: var(--bg); z-index: 130; padding: 26px; transform: translateX(100%); transition: transform .36s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; box-shadow: var(--sh-lg); }
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.drawer-close { width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface); border-radius: 12px; display: grid; place-items: center; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer a.drawer-link { font-family: var(--font-display); font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.drawer .btn { margin-top: auto; }

/* ---------------- Reveal animation (gentle) ---------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(44px, 6vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 20px 0 0; font-size: clamp(2.1rem, 3.9vw, 3.05rem); }
.hero .lead { margin-top: 24px; }
.hero .btn-row { margin-top: 34px; }
.hero .cta-note { margin-top: 16px; }

.hero-media { position: relative; }
.hero-portrait { position: relative; z-index: 2; border-radius: 220px 220px var(--r-lg) var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 5/6; max-height: 540px; margin-inline: auto; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
/* the sunrise sun behind the portrait */
.sun {
  position: absolute; z-index: 1; width: 118%; aspect-ratio: 1; left: 50%; bottom: -22%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 60%,
     rgba(252,180,36,.95) 0%, rgba(250,137,42,.75) 26%, rgba(251,78,96,.40) 48%, rgba(251,78,96,0) 68%);
  filter: blur(6px);
  border-radius: 50%;
  animation: breathe 9s ease-in-out infinite;
}
.hero-badge {
  position: absolute; z-index: 3; left: -18px; bottom: 36px;
  background: var(--surface); border-radius: 18px; padding: 14px 18px; box-shadow: var(--sh);
  display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.hero-badge .star { color: var(--gold); display: flex; }
.hero-badge .star svg { width: 16px; height: 16px; }
.hero-badge b { font-size: 1.5rem; font-family: var(--font-display); line-height: 1; }
.hero-badge span { font-size: .82rem; color: var(--muted); line-height: 1.3; }

@keyframes breathe {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .92; }
  50%      { transform: translateX(-50%) scale(1.05); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .sun { animation: none; } }

/* faint warm wash at the very top of the page */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 78% 12%, rgba(252,180,36,.16), transparent 70%),
              radial-gradient(50% 40% at 10% 0%, rgba(251,78,96,.10), transparent 70%);
}

.trust-strip { margin-top: clamp(40px, 6vw, 70px); display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; color: var(--muted); font-size: .95rem; }
.trust-strip .chip { display: inline-flex; align-items: center; gap: 9px; }
.trust-strip svg { width: 18px; height: 18px; color: var(--gold-600); flex: none; }

/* ============================================================
   SPLIT (empathy / about)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media .ph { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); aspect-ratio: 5/6; }
.split-media .ph img { width: 100%; height: 100%; object-fit: cover; }
.split-media.is-tall .ph { aspect-ratio: 4/5; }
.split-media .accent-dot { position: absolute; width: 64%; aspect-ratio: 1; border-radius: 50%; background: var(--sunrise-soft); z-index: -1; filter: blur(8px); }
.split-media .accent-dot.tl { top: -28px; left: -28px; }
.split-media .accent-dot.br { bottom: -34px; right: -30px; background: radial-gradient(circle, rgba(252,180,36,.5), transparent 70%); }

.quote-soft { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.4; color: var(--navy); }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--navy-600); margin-top: 18px; }

/* credential chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips .chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line); font-size: .92rem; font-weight: 500; color: var(--navy);
  box-shadow: var(--sh-sm);
}
.chips .chip svg { width: 16px; height: 16px; color: var(--gold-600); }

/* ============================================================
   ANGSTFREI2 concept ("squared")
   ============================================================ */
.concept { text-align: center; }
.concept .section-head { margin-inline: auto; text-align: center; }
.concept .section-head .eyebrow { justify-content: center; }
.concept-statement { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.34; max-width: 24ch; margin: 0 auto clamp(40px,6vw,64px); }
.squared { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(18px, 3vw, 36px); align-items: stretch; text-align: left; max-width: 980px; margin-inline: auto; }
.dim-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(26px, 3.4vw, 40px); box-shadow: var(--sh-sm); position: relative; overflow: hidden; }
.dim-card::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--sunrise); }
.dim-card .dim-no { font-family: var(--font-display); font-size: 1rem; color: var(--gold-600); letter-spacing: .04em; }
.dim-card h3 { margin: 8px 0 12px; }
.dim-card p { color: var(--muted); font-size: 1rem; }
.squared-x { display: grid; place-items: center; font-family: var(--font-display); font-size: 2.4rem; color: var(--navy-300); }
.concept-note { margin-top: clamp(36px,5vw,56px); font-size: 1.05rem; color: var(--muted); max-width: 56ch; margin-inline: auto; }

/* ============================================================
   OFFERINGS (bento with rhythm)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--sh-sm); overflow: hidden; transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.offer { grid-column: span 2; padding: clamp(26px,2.6vw,34px); display: flex; flex-direction: column; background: linear-gradient(180deg, #FFFFFF 0%, #FBE7D0 100%); }
.offer .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); margin-bottom: 18px; }
.offer .ic svg { width: 26px; height: 26px; }
.offer h3 { margin-bottom: 10px; }
.offer p { color: var(--muted); font-size: .98rem; }
.offer .more { margin-top: 16px; font-weight: 600; color: var(--navy-600); font-size: .95rem; display: inline-flex; align-items: center; gap: 7px; }
.offer .more svg { width: 16px; height: 16px; transition: transform .25s ease; }
.offer:hover .more svg { transform: translateX(4px); }

/* feature row inside bento: image + methods */
.feature-wide { grid-column: span 6; display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; }
.feature-wide .fw-media { min-height: 320px; position: relative; }
.feature-wide .fw-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-wide .fw-body { padding: clamp(28px,3.4vw,46px); display: flex; flex-direction: column; justify-content: center; }
.method-list { display: grid; gap: 16px; margin-top: 22px; }
.method { display: flex; gap: 14px; align-items: flex-start; }
.method .m-ic { width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--bg-rose); display: grid; place-items: center; color: var(--coral); }
.method .m-ic svg { width: 20px; height: 20px; }
.method b { font-weight: 600; color: var(--ink); }
.method span { display: block; color: var(--muted); font-size: .95rem; }

/* ============================================================
   PROCESS (4 steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: var(--sunrise); opacity: .5; }
.step { position: relative; }
.step .n { width: 54px; height: 54px; border-radius: 50%; background: var(--bg); border: 2px solid var(--gold); color: var(--navy); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--bg); }
.step h3 { margin: 20px 0 8px; font-size: 1.25rem; }
.step p { color: var(--muted); font-size: .97rem; max-width: 30ch; }

/* ============================================================
   STIMMEN / testimonials
   ============================================================ */
.tcarousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(24px,2.6vw,32px); box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.tcard .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.tcard .stars svg { width: 17px; height: 17px; }
.tcard blockquote { font-size: 1.06rem; line-height: 1.6; color: var(--ink); }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tcard .mono { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: var(--navy-600); flex: none; }
.tcard .who b { font-weight: 600; display: block; }
.tcard .who span { font-size: .88rem; color: var(--muted); }

.proof { display: flex; flex-wrap: wrap; gap: clamp(24px,5vw,72px); align-items: center; justify-content: center; margin-top: clamp(44px,6vw,68px); padding-top: clamp(36px,5vw,52px); border-top: 1px solid var(--line); }
.proof .stat { text-align: center; }
.proof .stat b { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); color: var(--navy); display: block; line-height: 1; }
.proof .stat span { font-size: .92rem; color: var(--muted); }

/* recognition band */
.recog { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.recog .ph { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); aspect-ratio: 5/4; }
.recog .ph img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.acc { border-bottom: 1px solid var(--line); }
.acc-q { width: 100%; text-align: left; background: none; border: 0; padding: 24px 44px 24px 0; position: relative; font-family: var(--font-display); font-size: clamp(1.12rem,1.8vw,1.32rem); color: var(--ink); display: flex; }
.acc-q .pm { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; flex: none; }
.acc-q .pm::before, .acc-q .pm::after { content: ""; position: absolute; background: var(--navy-600); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.acc-q .pm::before { width: 16px; height: 2px; top: 14px; left: 7px; }
.acc-q .pm::after { width: 2px; height: 16px; top: 7px; left: 14px; }
.acc.open .pm::after { transform: rotate(90deg); opacity: 0; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.acc-a .acc-a-inner { padding: 0 44px 26px 0; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .acc-a { transition: none; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,72px); align-items: start; }
.contact-info .lead { margin-top: 18px; }
.contact-list { display: grid; gap: 18px; margin-top: 30px; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.contact-list .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); flex: none; box-shadow: var(--sh-sm); }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-weight: 600; }
.contact-list span { font-size: .9rem; color: var(--muted); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3.4vw,42px); box-shadow: var(--sh); }
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { font-weight: 600; font-size: .95rem; color: var(--ink); }
.field input, .field textarea {
  font: inherit; padding: 14px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--bg); color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-soft); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 4px rgba(1,75,121,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field--check { display: flex; gap: 12px; align-items: flex-start; }
.field--check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--navy); }
.field--check label { font-weight: 400; font-size: .9rem; color: var(--muted); }
.form-note { font-size: .88rem; color: var(--muted-soft); margin-top: 14px; text-align: center; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm); font-size: .95rem; display: none; }
.form-status.ok { display: block; background: #E9F6EC; color: #1E6B33; border: 1px solid #BFE6C8; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: #CFE0EC; padding-block: clamp(56px,7vw,84px) 32px; }
.footer a { color: #CFE0EC; }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px,5vw,64px); }
.footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .f-brand img { width: 52px; height: 52px; }
.footer .f-brand b { color: #fff; font-weight: 800; font-size: 1.2rem; }
.footer .f-brand b sup { background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: .6em; }
.footer-col h4 { font-family: var(--font-sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; padding: 6px 0; font-size: .98rem; }
.footer p.f-about { max-width: 38ch; color: #AEC6D7; font-size: .96rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; display: grid; place-items: center; transition: background-color .25s ease, transform .25s ease; }
.footer-social a:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: clamp(40px,5vw,60px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .9rem; color: #9FB8CA; }
.footer-bottom .grad-line { height: 3px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 440px; margin-inline: auto; order: -1; }
  .hero-portrait { aspect-ratio: 16/13; border-radius: var(--r-lg); }
  .hero-portrait img { object-position: 50% 22%; }
  .feature-wide { grid-template-columns: 1fr; }
  .feature-wide .fw-media { min-height: 260px; }
  .recog { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .split, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split-media { order: -1; }
  .squared { grid-template-columns: 1fr; }
  .squared-x { transform: rotate(90deg); padding: 4px 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .offer { grid-column: span 1; }
  .feature-wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .steps::before { display: none; }
  .tcarousel { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .offer, .feature-wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .hero-media { max-width: 100%; }
  .sun { width: 100%; bottom: -14%; }
  .btn { width: 100%; }
  .nav-cta .btn { display: none; }
}

/* ---------------- Legal pages ---------------- */
.legal { padding-block: clamp(56px, 8vw, 110px); }
.legal .container { max-width: 820px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-600); font-weight: 600; margin-bottom: 26px; }
.legal-back svg { width: 18px; height: 18px; }
.legal h1 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 10px; }
.legal h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin: 38px 0 12px; }
.legal h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink); max-width: none; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 12px 1.2em; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--navy-600); text-decoration: underline; }
.legal .ph-note {
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--r-sm); padding: 16px 20px; margin: 24px 0; font-size: .96rem; color: var(--muted);
}
.legal mark { background: #FFE7A8; color: var(--ink); padding: 1px 6px; border-radius: 4px; font-weight: 600; }

/* ---------------- Subpage hero ---------------- */
.page-hero { position: relative; overflow: clip; padding-block: clamp(52px, 7vw, 96px) clamp(36px, 5vw, 64px); text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 50% -5%, rgba(252,180,36,.16), transparent 70%),
              radial-gradient(40% 45% at 85% 8%, rgba(251,78,96,.10), transparent 70%); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin: 18px auto 0; max-width: 20ch; }
.page-hero .lead { margin: 20px auto 0; }

/* ---------------- Closing CTA band ---------------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding-block: clamp(56px, 8vw, 100px); position: relative; overflow: clip; }
.cta-band::before { content: ""; position: absolute; left: 50%; bottom: -45%; width: min(80%, 700px); aspect-ratio: 1; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(252,180,36,.40), rgba(251,78,96,.12) 45%, transparent 62%); pointer-events: none; }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #CFE0EC; max-width: 48ch; margin: 16px auto 30px; }

/* ---------------- Topic / event grid ---------------- */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.topic { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(24px, 2.6vw, 34px); box-shadow: var(--sh-sm); }
.topic .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); margin-bottom: 16px; }
.topic .ic svg { width: 24px; height: 24px; }
.topic h3 { margin-bottom: 10px; }
.topic p { color: var(--muted); font-size: .98rem; }

.event-row { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.event-row .when { flex: none; width: 92px; text-align: center; }
.event-row .when b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); line-height: 1; }
.event-row .when span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.event-row .what h3 { font-size: 1.2rem; margin-bottom: 6px; }
.event-row .what p { color: var(--muted); font-size: .96rem; }

/* Numbered flow list (e.g. coaching components) */
.numbered { max-width: 780px; margin-inline: auto; display: grid; gap: 26px; padding: 0; }
.numbered li { list-style: none; display: flex; gap: 20px; align-items: flex-start; }
.numbered .num { flex: none; font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-600); width: 38px; line-height: 1; }
.numbered b { display: block; margin-bottom: 4px; color: var(--ink); }
.numbered span { color: var(--muted); }

/* ---------------- Blog ---------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.post-card .pc-media { aspect-ratio: 16/10; overflow: hidden; }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card .pc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card .pc-tag { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 10px; }
.post-card h3 { font-size: 1.28rem; line-height: 1.25; margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: .96rem; flex: 1; }
.post-card .more { margin-top: 16px; font-weight: 600; color: var(--navy-600); font-size: .95rem; display: inline-flex; align-items: center; gap: 7px; }
.post-card .more svg { width: 16px; height: 16px; transition: transform .25s ease; }
.post-card:hover .more svg { transform: translateX(4px); }

/* Article body */
.post { max-width: 730px; margin-inline: auto; }
.post .post-meta { color: var(--muted-soft); font-size: .95rem; margin-bottom: 10px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.post .post-meta .pc-tag { color: var(--gold-600); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.post-figure { margin: 8px 0 36px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); aspect-ratio: 16/9; }
.post-figure img { width: 100%; height: 100%; object-fit: cover; }
.post-body p, .post-body li { font-size: 1.1rem; line-height: 1.8; color: #25323d; }
.post-body p { margin-bottom: 1.1em; max-width: none; }
.post-body h2 { margin: 40px 0 14px; }
.post-body h3 { margin: 28px 0 8px; font-size: 1.2rem; }
.post-body ul { margin: 0 0 1.2em 1.2em; }
.post-body li { margin-bottom: .5em; }
.post-body blockquote { border-left: 4px solid var(--gold); padding: 4px 0 4px 22px; margin: 28px 0; font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.45; color: var(--navy); }
.post-share { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.disclaimer { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 18px 22px; font-size: .96rem; color: var(--muted); margin-top: 32px; }

@media (max-width: 880px) {
  .topic-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT ADDITIONS - Mail-Integration 13.06.
   "Erkennst du dich", "Drei Perspektiven", Story-Timeline.
   Light CI extension: soft sky-blue surface taken straight from
   the logo ("Himmelblau" #C5DDE8) for calm sections. Gold stays
   the single accent - this only adds a quiet background tone.
   ============================================================ */
:root {
  --sky:      #C5DDE8;   /* logo sky blue */
  --bg-sky:   #ECF4F8;   /* very soft sky surface - calm sections */
  --line-sky: #D7E6EF;
}
.bg-sky { background: var(--bg-sky); }

/* generic forward arrow link (reuses the .more visual language) */
.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy-600); margin-top: 14px; }
.arrow-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* Drei Perspektiven */
.persp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(32px, 4vw, 52px); }
.persp-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(26px, 2.6vw, 36px); box-shadow: var(--sh-sm); transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.persp-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.persp-card .p-ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); margin-bottom: 18px; overflow: hidden; flex: none; }
.persp-card .p-ic svg { width: 26px; height: 26px; }
.persp-card h3 { margin-bottom: 10px; }
.persp-card p { color: var(--muted); font-size: .98rem; }

/* Erkennst du dich wieder? */
.rec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: clamp(28px, 3.5vw, 42px); }
.rec-item { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 18px 22px; box-shadow: var(--sh-sm); }
.rec-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); margin-top: 9px; flex: none; }
.rec-item p { color: var(--ink); font-size: 1rem; line-height: 1.55; margin: 0; max-width: none; }

/* Personal-story callout + career timeline (Über Lydia) */
.story-callout { border-left: 3px solid var(--gold); padding: 4px 0 4px 22px; margin: 28px 0; font-family: var(--font-display); font-style: italic; font-size: clamp(1.18rem, 2vw, 1.5rem); line-height: 1.5; color: var(--navy); }

.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 2px; background: var(--sunrise); opacity: .55; }
.tl-item { position: relative; padding: 0 0 28px 6px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -27px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--gold); }
.tl-item .tl-when { font-weight: 600; color: var(--gold-600); font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; }
.tl-item h3 { font-size: 1.2rem; margin: 5px 0 6px; }
.tl-item p { color: var(--muted); font-size: .98rem; margin: 0; }

/* Big pull quote */
.pullquote { text-align: center; max-width: 840px; margin-inline: auto; }
.pullquote .q { font-family: var(--font-display); font-style: italic; font-size: clamp(1.45rem, 3vw, 2.15rem); line-height: 1.46; color: var(--navy); }
.pullquote .by { display: block; margin-top: 22px; font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); }

@media (max-width: 880px) {
  .persp-grid { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }
}

/* Weiterlesen (cross-links between blog articles) */
.weiterlesen { padding: 56px 0 40px; }
.weiterlesen__title { font-size: 1.05rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); margin: 0 0 24px; }
.weiterlesen__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.weiterlesen__card { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; border: 1.5px solid color-mix(in srgb, var(--navy) 12%, transparent); border-radius: 10px; background: var(--bg-sky, #ECF4F8); text-decoration: none; transition: border-color .18s, box-shadow .18s; }
.weiterlesen__card:hover { border-color: var(--navy); box-shadow: 0 4px 18px rgba(1,58,94,.09); }
.weiterlesen__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); }
.weiterlesen__headline { font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.45; }
@media (max-width: 600px) { .weiterlesen__grid { grid-template-columns: 1fr; } }
