/* =========================================================================
   Sandra Stenzel — Bewusstseinscoaching
   Warm earth palette sampled from her hand-painted brand card.
   Multi-page site, structure & feel oriented on kathrin-meinl.de.
   ========================================================================= */

/* self-hosted (no Google Fonts request at runtime, no third-party IP
   transfer to Google — see datenschutz.html); variable fonts, latin
   subset only (site is German-only, no need for latin-ext/cyrillic/etc) */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/fonts/bricolage-grotesque-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/fonts/caveat-variable.woff2") format("woff2");
}

:root {
  --bone:        #F4EEE3;
  --bone-2:      #ECE3D2;
  --bone-3:      #E3D6C0;
  --ink:         #2B2620;
  --ink-soft:    #5C5247;
  --line:        #D7C8B1;

  --clay:        #B2543C;
  --clay-deep:   #8F3F2C;
  --sage:        #6E7A56;
  --ochre:       #C68A33;
  --wild:        #2E5D6B;

  --display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --hand:    "Caveat", "Bricolage Grotesque", cursive;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --r: 4px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 10px); overflow-x: clip; }

body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.62;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}
body.nav-locked { overflow: hidden; }

body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.018em; }
::selection { background: var(--clay); color: var(--bone); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--ink); color: var(--bone); padding: .7rem 1.1rem; }
.skip-link:focus { left: 0; }

/* shared bits ---------------------------------------------------------- */
.eyebrow {
  font-family: var(--body); font-weight: 600; font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 1.9rem; height: 2px; background: var(--clay); display: inline-block; }
.eyebrow--center { justify-content: center; }
.u-clay { color: var(--clay); }
.u-sage { color: var(--sage); }

.section-head { max-width: 760px; margin: 0 auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); margin-bottom: 1rem; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); display: inline-block; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem; font-family: var(--body);
  font-weight: 600; font-size: .98rem; padding: .92em 1.5em; border-radius: 100px;
  cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  border: 1.5px solid transparent; line-height: 1; text-align: center;
}
.btn--clay { background: var(--clay); color: var(--bone); box-shadow: 0 10px 24px -14px rgba(143,63,44,.8); }
.btn--clay:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--bone); }
.btn--ink:hover { background: #000; transform: translateY(-2px); }
.btn--lg { padding: 1.05em 1.7em; font-size: 1.02rem; }
.btn--sm { padding: .62em 1.05em; font-size: .9rem; }

.arrowlink { font-weight: 600; color: var(--clay); display: inline-flex; align-items: center; gap: .4rem; }
.arrowlink::after { content: "→"; transition: transform .2s ease; }
.arrowlink:hover::after { transform: translateX(4px); }

/* =========================================================================
   header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50; min-height: var(--header-h);
  display: flex; align-items: center; gap: 1.3rem; padding: .7rem var(--pad);
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -20px rgba(43,38,32,.6); }

.wordmark { display: flex; align-items: center; gap: .7rem; margin-right: auto; color: var(--ink); }
.wordmark__mark { width: 36px; height: 32px; color: var(--clay); flex: none; }
.wordmark__text { font-family: var(--display); font-weight: 700; font-size: 1.18rem; line-height: 1; display: flex; flex-direction: column; gap: 3px; letter-spacing: -0.01em; }
.wordmark__sub { font-family: var(--body); font-weight: 500; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

.nav__list { list-style: none; display: flex; gap: .3rem; padding: 0; align-items: center; }
.nav__item { position: relative; }
.nav__top {
  display: inline-flex; align-items: center; gap: .25rem; font-weight: 500; font-size: .95rem;
  color: var(--ink-soft); padding: .55rem .7rem; border-radius: 100px; transition: color .2s ease, background .2s ease;
}
.nav__top:hover, .nav__item.is-active > .nav__top { color: var(--ink); }
.nav__top[aria-current="page"] { color: var(--clay); }
.nav__chev { transition: transform .25s ease; opacity: .7; }

.nav__sub {
  list-style: none; padding: .5rem; margin: 0; position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--bone); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 24px 44px -24px rgba(43,38,32,.5);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(6px); }
.nav__item--has-sub:hover .nav__chev { transform: rotate(180deg); }
.nav__sub li a { display: block; padding: .6rem .8rem; border-radius: 6px; font-size: .92rem; color: var(--ink-soft); transition: background .15s ease, color .15s ease; }
.nav__sub li a:hover, .nav__sub li a[aria-current="page"] { background: var(--bone-2); color: var(--clay); }

.header__actions { display: flex; align-items: center; gap: .7rem; }
.phone-pill { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; padding: .55rem .9rem; border: 1.5px solid var(--line); border-radius: 100px; transition: border-color .2s ease, color .2s ease; white-space: nowrap; }
.phone-pill:hover { border-color: var(--clay); color: var(--clay); }
.phone-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(110,122,86,.5);} 70%{ box-shadow: 0 0 0 7px rgba(110,122,86,0);} 100%{box-shadow:0 0 0 0 rgba(110,122,86,0);} }

.nav-toggle { display: none; }

/* =========================================================================
   hero
   ========================================================================= */
.hero { position: relative; padding: clamp(2.5rem, 4vw, 5rem) var(--pad) clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero__wash {
  position: absolute; z-index: 0; inset: -12% -5% auto auto; width: min(60vw, 760px); height: min(60vw, 760px);
  background:
    radial-gradient(38% 42% at 70% 30%, color-mix(in srgb, var(--ochre) 55%, transparent), transparent 70%),
    radial-gradient(40% 40% at 35% 45%, color-mix(in srgb, var(--sage) 50%, transparent), transparent 72%),
    radial-gradient(44% 46% at 60% 70%, color-mix(in srgb, var(--clay) 48%, transparent), transparent 70%),
    radial-gradient(30% 34% at 85% 60%, color-mix(in srgb, var(--wild) 42%, transparent), transparent 72%);
  filter: blur(34px) saturate(108%); opacity: .55; border-radius: 50% 42% 55% 48%;
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate(0,0) rotate(0deg);} to { transform: translate(-3%, 3%) rotate(8deg);} }

.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__copy { max-width: 640px; }
.hero__title { font-size: clamp(2.4rem, 1.5rem + 4.4vw, 4.4rem); font-weight: 600; margin-bottom: 1.4rem; }
.hero__title em { font-style: normal; color: var(--sage); }
.hero__prefix { display: block; opacity: 1; transition: opacity .25s ease; }
.hero__prefix.is-hidden { opacity: 0; }
.type-wrap { display: block; min-height: 1.1em; }
.type { color: var(--clay); border-right: 3px solid var(--clay); padding-right: 3px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { border-color: transparent; } }
.hero__lead { color: var(--ink-soft); font-size: 1.13rem; max-width: 34em; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero__meta { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--ink-soft); }

.hero__portrait { position: relative; justify-self: end; max-width: 420px; width: 100%; }
.portrait-frame { position: relative; background: var(--bone-3); padding: 12px; border-radius: 230px 230px 14px 14px; box-shadow: 0 30px 60px -34px rgba(43,38,32,.55); }
.portrait-frame::after { content: ""; position: absolute; inset: 12px; border-radius: 220px 220px 8px 8px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); pointer-events: none; }
.portrait-frame img { border-radius: 220px 220px 8px 8px; width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(102%) contrast(101%); }
.portrait-frame__tag { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); background: color-mix(in srgb, var(--ink) 84%, transparent); color: var(--bone); font-size: .68rem; letter-spacing: .04em; padding: .35rem .7rem; border-radius: 100px; white-space: nowrap; }
.hero__cap { margin-top: 1.4rem; display: flex; align-items: center; gap: .7rem; font-size: .86rem; color: var(--ink-soft); max-width: 320px; }
.hero__cap-line { flex: none; width: 2rem; height: 1px; background: var(--clay); }

/* -- PREVIEW: full-bleed photo hero, kathrin-meinl.de-style -------------- */
/* full-bleed photo at every breakpoint, strong even scrim so text stays
   legible top-to-bottom regardless of how tall the typewriter phrase is */
.hero--photo { padding: 0; min-height: min(92vh, 920px); display: flex; align-items: flex-end; }
.hero--photo .hero__wash { display: none; }
.hero--photo .hero__photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero--photo .hero__photo::before {
  content: ""; position: absolute; inset: -30px; z-index: 0;
  background-image: url(/images/sandra-lifestyle-walk.jpg);
  background-size: cover; background-position: 50% 20%;
  filter: blur(46px) brightness(.7) saturate(105%);
  transform: scale(1.06);
}
.hero--photo .hero__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: 50% 50%; }
.hero--photo .hero__photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(15,12,8,.62) 0%,
    rgba(15,12,8,.5) 28%,
    rgba(15,12,8,.34) 55%,
    rgba(15,12,8,.18) 78%,
    rgba(15,12,8,.08) 100%);
}
.hero--photo .hero__inner { grid-template-columns: 1fr; padding: 0 var(--pad) clamp(2.5rem, 6vw, 5rem); width: 100%; }
.hero--photo .hero__copy { max-width: 680px; }
.hero--photo .eyebrow { display: none; }
.hero--photo .hero__title, .hero--photo .hero__title .hero__prefix { color: var(--bone); }
.hero--photo .type { color: #e8a37e; border-color: #e8a37e; }
.hero--photo .hero__lead { color: rgba(250, 246, 240, .92); }
.hero--photo .hero__meta { color: rgba(250, 246, 240, .88); }
.hero--photo .hero__meta .dot { background: var(--sage); }
.hero--photo .hero__portrait { display: none; }
.hero--photo .btn--ghost { border-color: rgba(250, 246, 240, .55); color: var(--bone); }
.hero--photo .btn--ghost:hover { background: var(--bone); color: var(--ink); }
@media (max-width: 960px) {
  /* the full, uncropped photo needs its own space (no text overlay — she's
     shown head to bare feet now, and overlaying would cover her again) —
     photo sits in normal flow, headline and everything else follow right
     after on the plain page background. No sticky, nothing scroll-linked. */
  .hero--photo { display: block; min-height: 0; }
  .hero--photo .hero__photo {
    position: relative; inset: auto;
    height: min(58vh, 480px); height: min(58dvh, 480px);
  }
  .hero--photo .hero__inner { position: static; margin-top: 0; padding: 0 var(--pad) 2.5rem; }
  /* a CSS transform on any ancestor becomes the containing block for an
     absolutely positioned descendant, so skip the reveal transform here —
     it's above the fold and visible immediately anyway */
  .hero--photo .hero__copy { display: flex; flex-direction: column; opacity: 1; transform: none; transition: none; }
  /* title now sits in normal flow below the photo, on the plain page
     background — needs the normal dark ink colors, not the
     light-on-photo ones from the base .hero--photo rules above */
  .hero--photo .hero__title, .hero--photo .hero__title .hero__prefix { margin-top: 1.7rem; color: var(--ink); }
  .hero--photo .type { color: var(--clay); border-color: var(--clay); }
  .hero--photo .hero__lead { order: 3; font-size: 1rem; margin-top: 1.6rem; color: var(--ink-soft); }
  /* meta line just repeats what the trustbar says right below it on mobile */
  .hero--photo .hero__meta { display: none; }
  .hero--photo .hero__actions { order: 2; align-items: flex-start; margin-top: 1.5rem; }
  .hero--photo .hero__actions .btn--ghost {
    width: auto; border: none; padding: .3rem 0; background: none;
    color: var(--ink); text-decoration: underline; text-underline-offset: 3px;
  }
  .hero--photo .hero__actions .btn--ghost:hover { background: none; color: var(--clay); transform: none; }
}
@media (min-width: 961px) {
  .hero--photo { min-height: min(88vh, 820px); }
  .hero--photo .hero__inner { padding-bottom: clamp(3rem, 7vw, 6rem); }
  /* shift the sharp subject further right so she doesn't run into the
     typewriter headline, which sits in the left column */
  .hero--photo .hero__photo img { object-position: 82% 6%; }
}

/* =========================================================================
   trust bar
   ========================================================================= */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bone-2); }
.trustbar__inner { max-width: var(--maxw); margin: 0 auto; padding: 1.1rem var(--pad); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.2rem; }
.trustbar__item { display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.trustbar__item svg { color: var(--clay); flex: none; }
.trustbar__sep { width: 1px; height: 1.2rem; background: var(--line); }

/* =========================================================================
   stats / counters
   ========================================================================= */
.stats { background: var(--ink); color: var(--bone); padding: clamp(3rem, 5vw, 5rem) var(--pad); }
.stats__inner { max-width: var(--maxw); margin: 0 auto; }
.stats__head { text-align: center; max-width: 620px; margin: 0 auto clamp(2rem,4vw,3rem); }
.stats__head .eyebrow { color: var(--ochre); }
.stats__head .eyebrow::before { background: var(--ochre); }
.stats__head h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.stat { padding: 1rem .5rem; border-top: 2px solid color-mix(in srgb, var(--bone) 22%, transparent); }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); line-height: 1; color: var(--bone); display: block; }
.stat__num .u { color: var(--ochre); }
.stat__label { display: block; margin-top: .6rem; font-size: .92rem; color: color-mix(in srgb, var(--bone) 78%, transparent); }

/* =========================================================================
   about teaser
   ========================================================================= */
.about { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 6vw, 7rem) var(--pad); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__media { position: relative; max-width: 400px; }
.portrait-frame--alt { border-radius: 14px; }
.portrait-frame--alt img { border-radius: 8px; aspect-ratio: 4/5; }
.portrait-frame--alt::after { border-radius: 8px; }
.about__title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); margin-bottom: 1.3rem; }
.about__text { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 40em; }
.about__sign { margin-top: 1.7rem; display: flex; flex-direction: column; }
.about__sign-name { font-family: var(--hand); font-size: 2.1rem; font-weight: 700; color: var(--ink); line-height: 1; }
.about__sign-role { font-size: .85rem; color: var(--ink-soft); margin-top: .25rem; }

.personal-note { max-width: 620px; margin: 0 auto; }
.personal-note p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 1.1rem; }
.personal-note p:last-of-type { margin-bottom: 0; }
.personal-signature { margin-top: 2.2rem; }
.personal-signature__lead { font-size: .95rem; color: var(--ink-soft); margin-bottom: .3rem; }
.personal-signature__name { font-family: var(--hand); font-weight: 700; font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3rem); color: var(--clay); line-height: 1; margin-bottom: 1rem; }
.personal-signature__tagline { font-family: var(--hand); font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); color: var(--ink); line-height: 1.35; max-width: 34em; margin: 0 auto; }

/* =========================================================================
   offers
   ========================================================================= */
.offers { padding: clamp(3.5rem, 6vw, 6.5rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.offers--alt { background: var(--bone-2); max-width: none; }
.offers--alt .offers__grid, .offers--alt .section-head, .offers--alt .offers__note { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.offers__grid { margin-top: clamp(2.2rem, 4vw, 3.5rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.offer {
  position: relative; background: var(--bone); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.offer:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -30px rgba(43,38,32,.6); border-color: transparent; }
.offer__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bone-3); }
.offer__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.offer:hover .offer__media img { transform: scale(1.05); }
.offer__index { position: absolute; left: 12px; top: 12px; width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--ink) 78%, transparent); color: var(--bone); font-family: var(--display); font-weight: 700; font-size: .95rem; }
.offer__body-wrap { padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; border-top: 4px solid var(--sage); }
.offer:nth-child(2) .offer__body-wrap { border-top-color: var(--clay); }
.offer:nth-child(3) .offer__body-wrap { border-top-color: var(--ochre); }
.offer__title { font-size: 1.4rem; margin-bottom: .5rem; }
.offer__tagline { font-weight: 600; color: var(--clay); font-size: .95rem; margin-bottom: .8rem; }
.offer__body { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: .98rem; }
.offer__foot { margin-top: auto; }
.offers__note { text-align: center; margin-top: 2.6rem; color: var(--ink-soft); font-size: 1.05rem; }
.offers__note a { color: var(--clay); font-weight: 600; border-bottom: 1.5px solid currentColor; }

/* =========================================================================
   process / steps
   ========================================================================= */
.process { background: var(--bone-2); padding: clamp(3.5rem, 6vw, 6.5rem) var(--pad); }
.process--plain { background: var(--bone); }
.steps { list-style: none; padding: 0; max-width: var(--maxw); margin: clamp(2.4rem, 4vw, 3.6rem) auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.step { position: relative; padding: 1.9rem 1.5rem; background: var(--bone); border-radius: 10px; border: 1px solid var(--line); }
.process--plain .step { background: var(--bone-2); }
.step__num { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--clay); color: var(--bone); font-family: var(--display); font-weight: 700; font-size: 1.3rem; margin-bottom: 1.1rem; }
.step__title { font-size: 1.25rem; margin-bottom: .55rem; }
.step__body { color: var(--ink-soft); font-size: .98rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 3.4rem; right: -.95rem; width: .9rem; height: 2px; background-image: linear-gradient(90deg, var(--line) 50%, transparent 0); background-size: 7px 2px; }

/* =========================================================================
   testimonials carousel
   ========================================================================= */
.voices { padding: clamp(3.5rem, 6vw, 6.5rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.carousel { position: relative; margin-top: clamp(2rem, 4vw, 3rem); overflow: hidden; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.tcard { flex: 0 0 100%; padding: 0 clamp(.5rem, 4vw, 3.5rem); }
.tcard__quote { font-family: var(--display); font-weight: 600; font-size: clamp(1.25rem, 1rem + 1.4vw, 1.9rem); line-height: 1.35; text-align: center; max-width: 760px; margin: 0 auto 1.6rem; letter-spacing: -0.01em; }
.tcard__quote::before { content: "„"; color: var(--clay); }
.tcard__quote::after { content: "“"; color: var(--clay); }
.tcard__meta { display: flex; align-items: center; justify-content: center; gap: .8rem; }
.tcard__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--sage); color: var(--bone); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.tcard:nth-child(2) .tcard__avatar { background: var(--clay); }
.tcard:nth-child(3) .tcard__avatar { background: var(--ochre); }
.tcard:nth-child(4) .tcard__avatar { background: var(--wild); }
.tcard__who { text-align: left; }
.tcard__name { font-weight: 700; }
.tcard__role { font-size: .85rem; color: var(--ink-soft); }
.carousel__btn { position: absolute; top: 38%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--bone); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; z-index: 3; }
.carousel__btn:hover { background: var(--clay); color: var(--bone); border-color: var(--clay); }
.carousel__btn--prev { left: 0; } .carousel__btn--next { right: 0; }
.carousel__dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1.8rem; }
.carousel__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease; }
.carousel__dots button.is-active { background: var(--clay); transform: scale(1.3); }
.voices__note { text-align: center; margin-top: 1.6rem; font-size: .82rem; color: var(--ink-soft); font-style: italic; }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta { position: relative; padding: clamp(3.5rem, 6vw, 7rem) var(--pad); overflow: hidden; text-align: center; }
.cta__wash { position: absolute; inset: auto 50% -40% auto; transform: translateX(50%); width: min(90vw, 900px); height: 560px;
  background: radial-gradient(40% 50% at 30% 50%, color-mix(in srgb, var(--sage) 45%, transparent), transparent 70%),
    radial-gradient(40% 50% at 65% 45%, color-mix(in srgb, var(--clay) 42%, transparent), transparent 70%),
    radial-gradient(30% 40% at 50% 70%, color-mix(in srgb, var(--ochre) 40%, transparent), transparent 72%);
  filter: blur(40px); opacity: .5; z-index: 0; }
.cta__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta__title { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); margin-bottom: 1.1rem; }
.cta__text { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta__signoff { margin-top: 2rem; font-family: var(--hand); font-size: 1.9rem; color: var(--clay); }

/* =========================================================================
   sub-page hero (band)
   ========================================================================= */
.page-hero { position: relative; padding: clamp(2.5rem, 5vw, 4.5rem) var(--pad) clamp(2rem, 4vw, 3.5rem); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero__wash { position: absolute; inset: -30% -10% auto auto; width: min(50vw, 560px); height: min(50vw, 560px);
  background: radial-gradient(40% 42% at 60% 40%, color-mix(in srgb, var(--ochre) 50%, transparent), transparent 70%),
    radial-gradient(42% 44% at 40% 55%, color-mix(in srgb, var(--clay) 45%, transparent), transparent 72%),
    radial-gradient(34% 36% at 70% 65%, color-mix(in srgb, var(--sage) 45%, transparent), transparent 72%);
  filter: blur(36px); opacity: .45; border-radius: 50%; z-index: 0; }
.page-hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.breadcrumb { font-size: .82rem; color: var(--ink-soft); margin-bottom: 1rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--clay); }
.breadcrumb span { color: var(--clay); }
.page-hero__title { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.6rem); max-width: 16em; margin-bottom: 1rem; }
.page-hero__lead { color: var(--ink-soft); font-size: 1.13rem; max-width: 42em; }
.page-hero__quote { font-family: var(--hand); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); color: var(--clay); margin-top: 1.2rem; }

/* =========================================================================
   prose / content sections
   ========================================================================= */
.section { padding: clamp(3rem, 5vw, 5.5rem) var(--pad); }
.section--alt { background: var(--bone-2); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap--narrow { max-width: 780px; margin: 0 auto; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--media-right > .split__media { order: 2; }
.split__media img { border-radius: 12px; box-shadow: 0 26px 50px -30px rgba(43,38,32,.55); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media { position: relative; }
.kicker { font-family: var(--body); font-weight: 600; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); margin-bottom: .9rem; }
.h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.7rem); margin-bottom: 1.1rem; }
.h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.lead { font-size: 1.15rem; color: var(--ink); margin-bottom: 1.2rem; }
.prose p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 40em; }
.prose p:last-child { margin-bottom: 0; }
.pull { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 1.05rem + 1.4vw, 2rem); line-height: 1.3; color: var(--ink); border-left: 4px solid var(--clay); padding-left: 1.2rem; margin: 2rem 0; max-width: 24em; }

.topic-list { list-style: none; padding: 0; display: grid; gap: .8rem; margin: 1.4rem 0; }
.topic-list li { position: relative; padding-left: 2.1rem; color: var(--ink-soft); }
.topic-list li::before { content: ""; position: absolute; left: 0; top: .15rem; width: 1.4rem; height: 1.4rem; border-radius: 50%; background: color-mix(in srgb, var(--sage) 22%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='%236E7A56' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 1rem; background-repeat: no-repeat; background-position: center; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: clamp(1.8rem,3vw,2.6rem); }
.feature { background: var(--bone); border: 1px solid var(--line); border-radius: 10px; padding: 1.7rem 1.5rem; }
.section--alt .feature { background: var(--bone); }
.feature__icon { width: 2.6rem; height: 2.6rem; border-radius: 10px; background: color-mix(in srgb, var(--clay) 14%, transparent); color: var(--clay); display: grid; place-items: center; margin-bottom: 1rem; }
.feature h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.feature p { color: var(--ink-soft); font-size: .96rem; }

.faq { max-width: 820px; margin: clamp(1.8rem,3vw,2.6rem) auto 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary { font-family: var(--display); font-weight: 600; font-size: 1.12rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--clay); font-size: 1.5rem; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--ink-soft); margin-top: .9rem; max-width: 46em; }

/* =========================================================================
   contact
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-card { background: var(--bone-2); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.6rem, 3vw, 2.4rem); }
.contact-list { list-style: none; padding: 0; display: grid; gap: 0; }
.contact-list li { display: flex; flex-direction: column; gap: .15rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: none; }
.contact-list .lbl { font-weight: 600; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.contact-list a { font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--clay); }

.form { display: grid; gap: 1rem; }
.form label { font-weight: 600; font-size: .88rem; display: grid; gap: .4rem; }
.form input, .form textarea { font-family: var(--body); font-size: 1rem; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 8px; background: var(--bone); color: var(--ink); width: 100%; transition: border-color .2s ease; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--clay); }
.form textarea { min-height: 140px; resize: vertical; }
.form__note { font-size: .82rem; color: var(--ink-soft); }
.form__privacy { font-size: .8rem; color: var(--ink-soft); }
.form__privacy a { color: var(--clay); border-bottom: 1px solid currentColor; }

/* =========================================================================
   footer
   ========================================================================= */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--bone) 82%, transparent); padding: clamp(2.8rem, 5vw, 4.5rem) var(--pad) 2rem; position: relative; z-index: 2; }
.site-footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid color-mix(in srgb, var(--bone) 18%, transparent); }
.wordmark__text--footer { color: var(--bone); }
.wordmark__text--footer .wordmark__sub { color: var(--ochre); }
.site-footer__tag { margin-top: .9rem; max-width: 28em; font-size: .95rem; }
.site-footer__contact { margin-top: .9rem; font-size: .92rem; }
.site-footer__contact a { border-bottom: 1px solid color-mix(in srgb, var(--bone) 30%, transparent); }
.site-footer__contact a:hover { color: var(--bone); }
.site-footer__nav { display: flex; flex-direction: column; gap: .55rem; }
.site-footer__nav h3 { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ochre); margin-bottom: .3rem; font-family: var(--body); font-weight: 700; }
.site-footer__nav a { font-size: .94rem; transition: color .2s ease; }
.site-footer__nav a:hover { color: var(--bone); }
.site-footer__method { max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.8rem; border-top: 1px solid color-mix(in srgb, var(--bone) 16%, transparent); display: flex; gap: 1.8rem; align-items: flex-start; flex-wrap: wrap; }
.site-footer__method-logo { width: 130px; flex: none; height: auto; }
.site-footer__method p { flex: 1 1 40em; min-width: 260px; margin: 0; font-size: .88rem; line-height: 1.65; color: color-mix(in srgb, var(--bone) 72%, transparent); }
.site-footer__method a { color: var(--ochre); text-decoration: underline; text-underline-offset: 2px; }
.site-footer__method a:hover { color: var(--bone); }
.disclaimer { max-width: var(--maxw); margin: 1.8rem auto 0; font-size: .82rem; line-height: 1.6; color: color-mix(in srgb, var(--bone) 64%, transparent); background: color-mix(in srgb, var(--bone) 7%, transparent); border-left: 3px solid var(--clay); padding: 1rem 1.2rem; border-radius: 0 var(--r) var(--r) 0; }
.disclaimer strong { color: var(--bone); }
.site-footer__bottom { max-width: var(--maxw); margin: 1.8rem auto 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .85rem; color: color-mix(in srgb, var(--bone) 60%, transparent); }
.site-footer__legal a:hover { color: var(--bone); }

/* =========================================================================
   reveal + legal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.legal { max-width: 820px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4.5rem) var(--pad); }
.legal h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); margin-bottom: 1.6rem; }
.legal h2 { font-size: 1.35rem; margin: 2.2rem 0 .7rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: .8rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--clay); border-bottom: 1px solid currentColor; }
.legal .placeholder { background: var(--bone-2); border: 1px dashed var(--clay); border-radius: var(--r); padding: .15rem .5rem; color: var(--clay); font-weight: 600; font-size: .92em; }
.legal__back { display: inline-block; margin-bottom: 2rem; font-weight: 600; color: var(--ink); }
.legal__back:hover { color: var(--clay); }

/* =========================================================================
   responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .stats__grid { gap: 1.2rem 1rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2n)::after { display: none; }
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__portrait { justify-self: start; max-width: 400px; order: -1; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 340px; }
  .offers__grid, .feature-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--media-right > .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1000px) {
  /* narrow panel anchored to the right, not a full-width takeover — a
     strip of the page (photo included) stays visible alongside it, and
     height still follows content, capped to the viewport with scroll */
  .nav {
    position: fixed; top: var(--header-h); right: 0; left: auto;
    width: min(84vw, 380px);
    max-height: calc(100vh - var(--header-h)); background: var(--bone);
    opacity: 0; visibility: hidden; transform: translate(12px, -4px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    padding: .4rem var(--pad) 1rem;
    overflow-y: auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
    box-shadow: -18px 24px 40px -28px rgba(43,38,32,.45);
  }
  .nav.is-open {
    opacity: 1; visibility: visible; transform: translate(0, 0);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__top { padding: .95rem .2rem; font-size: 1.08rem; justify-content: space-between; }
  .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; min-width: 0; max-height: 0; overflow: hidden; padding: 0 0 0 .6rem; transition: max-height .3s ease; }
  .nav__item--has-sub.is-expanded .nav__sub { max-height: 400px; padding-bottom: .6rem; }
  .nav__item--has-sub.is-expanded .nav__chev { transform: rotate(180deg); }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; justify-content: center; width: 44px; height: 40px; background: none; border: 1px solid var(--line); border-radius: var(--r); cursor: pointer; padding: 0 10px; order: 3; }
  .nav-toggle span { height: 2px; width: 100%; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .header__actions .phone-pill { display: none; }
  .header__actions > .btn { display: none; }
}
@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; justify-content: center; }
  .tcard { padding: 0 2.6rem; }
  .carousel__btn { width: 36px; height: 36px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } }
