/*
 * Nutri-Libera Journal — main stylesheet
 * Editorial wellness journal aesthetic. See style.css for theme metadata.
 */

/* ─────────────────────────────────────────────────────────────
       NUTRI-LIBERA — JOURNAL EDITION
       An editorial wellness journal aesthetic.
       Palette derived from the Nutri-Libera logo:
         · Sage / olive primary
         · Dusty rose / terracotta accent
         · Warm cream paper background
       Typography: Fraunces (variable serif) + Geist (sans)
    ─────────────────────────────────────────────────────────────── */

    :root {
      /* Paper & ink */
      --paper:        #F5F1E8;
      --paper-warm:   #EDE6D5;
      --paper-soft:   #FBF8F1;
      --ink:          #1F2118;
      --ink-soft:     #3D4234;
      --ink-mute:     #6B7060;
      --ink-faint:    #9CA092;
      --line:         #D8D2C2;
      --line-soft:    #E8E2D2;

      /* Sage spectrum (from logo greens) */
      --sage:         #7C8B4A;
      --sage-deep:    #4D5C28;
      --sage-darkest: #2F3B16;
      --sage-medium:  #A2AC75;
      --sage-pale:    #E0E4CC;
      --sage-mist:    #EFF1E3;

      /* Rose / terracotta spectrum (from logo reds) */
      --rose:         #C47D82;
      --rose-deep:    #9B4148;
      --rose-darkest: #6B262C;
      --rose-warm:    #E08B73;
      --rose-pale:    #F2DDDF;
      --rose-mist:    #FAEFEF;
      --terracotta:   #B85A3F;

      /* Typography */
      --ff-display: 'Fraunces', 'Times New Roman', Georgia, serif;
      --ff-body:    'Geist', system-ui, -apple-system, sans-serif;
      --ff-mono:    'Geist Mono', ui-monospace, monospace;

      /* Spacing scale */
      --sp-1: .375rem;
      --sp-2: .75rem;
      --sp-3: 1.25rem;
      --sp-4: 2rem;
      --sp-5: 3.25rem;
      --sp-6: 5.25rem;
      --sp-7: 8.5rem;

      /* Other */
      --ease:    cubic-bezier(.2, .7, .25, 1);
      --ease-io: cubic-bezier(.7, 0, .3, 1);
      --maxw:    1320px;
      --maxw-narrow: 880px;
    }

    /* ── Reset ───────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--ff-body);
      font-weight: 400;
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      font-feature-settings: "ss01", "cv11";
    }
    img, svg { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    /* ── Grain texture overlay (paper feel) ─────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 100;
      opacity: .35;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .12 0 0 0 0 .13 0 0 0 0 .09 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ── Typography ──────────────────────────────────────────── */
    h1, h2, h3, h4, h5 {
      font-family: var(--ff-display);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      line-height: 1.02;
      letter-spacing: -.02em;
      color: var(--ink);
    }
    h1 { font-size: clamp(3.4rem, 8.5vw, 8.5rem); }
    h2 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
    h3 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
    h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-variation-settings: "opsz" 36; }

    .display-italic { font-style: italic; font-weight: 300; }
    .display-soft   { color: var(--sage-deep); }
    .display-rose   { color: var(--rose-deep); }

    p { color: var(--ink-soft); }
    .lede {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-weight: 300;
      font-size: clamp(1.3rem, 2.2vw, 1.8rem);
      line-height: 1.45;
      color: var(--ink-soft);
      letter-spacing: -.01em;
    }
    .mono {
      font-family: var(--ff-mono);
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 500;
    }

    /* ── Layout helpers ──────────────────────────────────────── */
    .container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3.5rem); }
    .container--narrow { max-width: var(--maxw-narrow); }
    .section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
    .section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
    .divider-line { height: 1px; background: var(--line); border: none; margin: 0; }

    /* ── Eyebrow / section label ─────────────────────────────── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      font-family: var(--ff-mono);
      font-size: .7rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--rose-deep);
      margin-bottom: 1.25rem;
    }
    .eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--rose);
    }

    /* ─────────────────────────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      padding: 1.4rem 0;
      transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
      border-bottom: 1px solid transparent;
    }
    .nav.is-scrolled {
      background: rgba(245, 241, 232, .92);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      padding: .85rem 0;
      border-bottom-color: var(--line-soft);
    }
    .nav-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 2rem;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3.5rem);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: .85rem;
      text-decoration: none;
    }
    .brand-mark {
      width: 48px; height: 48px;
      display: grid;
      place-items: center;
      transition: transform .4s var(--ease);
      flex-shrink: 0;
    }
    .brand-mark img,
    .brand-mark svg {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .brand:hover .brand-mark { transform: rotate(-6deg) scale(1.04); }
    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .brand-name {
      font-family: var(--ff-display);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--ink);
      font-variation-settings: "opsz" 36;
      letter-spacing: -.01em;
    }
    .brand-tag {
      font-family: var(--ff-mono);
      font-size: .62rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-top: 4px;
    }
    .nav-menu {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-menu a {
      font-size: .9rem;
      color: var(--ink-soft);
      font-weight: 400;
      position: relative;
      padding: .25rem 0;
      transition: color .25s;
    }
    .nav-menu a::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 1px;
      background: var(--rose-deep);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .35s var(--ease);
    }
    .nav-menu a:hover { color: var(--ink); }
    .nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      padding: .7rem 1.4rem;
      background: var(--ink);
      color: var(--paper);
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .02em;
      border-radius: 100vw;
      transition: background .25s, transform .25s var(--ease);
    }
    .nav-cta:hover { background: var(--sage-deep); transform: translateY(-1px); }
    .nav-cta::after { content: '→'; font-size: 1rem; transition: transform .3s var(--ease); }
    .nav-cta:hover::after { transform: translateX(3px); }

    /* On desktop the collapse wrapper is transparent to the grid,
       so brand / menu / cta keep their original three-column layout. */
    .nav-collapse { display: contents; }

    .nav-toggle {
      display: none;
      position: relative;
      z-index: 70;
      width: 44px; height: 44px;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle-bars { position: relative; display: block; width: 24px; height: 16px; }
    .nav-toggle-bars span {
      position: absolute; left: 0; right: 0; height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: transform .35s var(--ease), opacity .2s var(--ease), top .35s var(--ease);
    }
    .nav-toggle-bars span:nth-child(1) { top: 0; }
    .nav-toggle-bars span:nth-child(2) { top: 7px; }
    .nav-toggle-bars span:nth-child(3) { top: 14px; }
    .nav.is-open .nav-toggle-bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
    .nav.is-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
    .nav.is-open .nav-toggle-bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

    .nav-backdrop { display: none; }
    body.nav-locked { overflow: hidden; }

    /* ─────────────────────────────────────────────────────────
       HERO — Magazine cover style
    ───────────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 90vh;
      padding-top: 10rem;
      padding-bottom: 4rem;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* Trust pills above hero */
    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: .65rem;
      margin-bottom: clamp(2rem, 4vw, 3rem);
      animation: rise .8s .1s var(--ease) both;
    }
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .45rem .9rem;
      background: var(--paper-soft);
      border: 1px solid var(--line);
      border-radius: 100vw;
      font-family: var(--ff-mono);
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }
    .hero-pill-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--sage);
      flex-shrink: 0;
    }
    .hero-pill:nth-child(2) .hero-pill-dot { background: var(--rose); }
    .hero-pill:nth-child(3) .hero-pill-dot { background: var(--terracotta); }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
      gap: clamp(2rem, 6vw, 5rem);
      align-items: end;
      flex: 1;
    }

    .hero-title {
      font-size: clamp(2.6rem, 7vw, 6.5rem);
      line-height: 1.02;
      letter-spacing: -.025em;
      font-variation-settings: "opsz" 144, "SOFT" 40;
      animation: rise 1s .2s var(--ease) both;
    }
    .hero-title .line { display: block; overflow: hidden; }
    .hero-title .line span { display: inline-block; }
    .hero-title em {
      font-style: italic;
      font-weight: 300;
      color: var(--sage-deep);
      font-variation-settings: "opsz" 144, "SOFT" 100;
    }
    .hero-title .accent {
      color: var(--rose-deep);
      font-style: italic;
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 100;
    }

    .hero-meta {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      animation: rise 1s .5s var(--ease) both;
      padding-bottom: .5rem;
    }
    .hero-meta .lede {
      max-width: 30ch;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      padding: 1rem 1.6rem;
      font-family: var(--ff-body);
      font-size: .88rem;
      font-weight: 500;
      letter-spacing: .02em;
      border-radius: 100vw;
      transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
    }
    .btn--primary {
      background: var(--ink);
      color: var(--paper);
    }
    .btn--primary:hover {
      background: var(--sage-deep);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(31, 33, 24, .18);
    }
    .btn--ghost {
      color: var(--ink);
      padding-left: .25rem;
      padding-right: .25rem;
    }
    .btn--ghost::after {
      content: '→';
      transition: transform .3s var(--ease);
    }
    .btn--ghost:hover { color: var(--rose-deep); }
    .btn--ghost:hover::after { transform: translateX(5px); }
    .btn--rose {
      background: var(--rose-deep);
      color: var(--paper);
    }
    .btn--rose:hover {
      background: var(--rose-darkest);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(155, 65, 72, .25);
    }

    /* Hero bottom rail */
    .hero-rail {
      margin-top: clamp(2.5rem, 5vw, 4rem);
      padding-top: 1.5rem;
      border-top: 1px solid var(--line);
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 2rem;
      animation: rise 1s .8s var(--ease) both;
    }
    .rail-item .mono { display: block; margin-bottom: .35rem; color: var(--ink-mute); }
    .rail-item-value {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.15rem;
      color: var(--ink);
      letter-spacing: -.01em;
    }
    .rail-item-value em { font-style: italic; color: var(--sage-deep); }

    /* Decorative leaf */
    .hero-leaf {
      position: absolute;
      right: -120px;
      top: 50%;
      transform: translateY(-50%);
      opacity: .08;
      pointer-events: none;
      width: 600px;
      animation: leafBreathe 12s ease-in-out infinite alternate;
    }
    @keyframes leafBreathe {
      from { transform: translateY(-50%) rotate(-4deg) scale(1); }
      to   { transform: translateY(-52%) rotate(4deg) scale(1.05); }
    }

    /* ─────────────────────────────────────────────────────────
       MANIFESTO / INTRO STRIP
    ───────────────────────────────────────────────────────────── */
    .manifesto {
      padding: clamp(4rem, 7vw, 6.5rem) 0;
      background: var(--paper-warm);
      position: relative;
      overflow: hidden;
    }
    .manifesto-inner {
      max-width: 980px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3.5rem);
      position: relative;
    }
    .manifesto-text {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 72, "SOFT" 60;
      font-weight: 400;
      font-size: clamp(1.6rem, 3.2vw, 2.8rem);
      line-height: 1.25;
      color: var(--ink);
      letter-spacing: -.015em;
    }
    .manifesto-text em {
      font-style: italic;
      font-weight: 300;
      color: var(--sage-deep);
    }
    .manifesto-text .pop {
      color: var(--rose-deep);
      font-style: italic;
      font-weight: 300;
    }
    .manifesto-attribution {
      margin-top: 2.25rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .signature {
      width: 110px;
      height: 1px;
      background: var(--ink-mute);
    }
    .manifesto-name {
      font-family: var(--ff-mono);
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ink-mute);
    }

    /* ─────────────────────────────────────────────────────────
       STEPS — THE EDITORIAL CENTERPIECE
    ───────────────────────────────────────────────────────────── */
    .steps {
      background: var(--paper);
      padding: clamp(6rem, 12vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
      position: relative;
    }
    .steps-header {
      max-width: var(--maxw);
      margin: 0 auto clamp(4rem, 8vw, 7rem);
      padding: 0 clamp(1.5rem, 4vw, 3.5rem);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
    }
    .steps-header h2 {
      max-width: 14ch;
      font-variation-settings: "opsz" 144, "SOFT" 50;
    }
    .steps-header h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--rose-deep);
      font-variation-settings: "opsz" 144, "SOFT" 100;
    }
    .steps-header .lede { max-width: 38ch; }

    .step {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: clamp(2rem, 6vw, 6rem);
      align-items: start;
      border-top: 1px solid var(--line);
      position: relative;
    }
    .step:last-of-type { border-bottom: 1px solid var(--line); }

    .step--reverse { direction: rtl; }
    .step--reverse > * { direction: ltr; }

    .step-numeral {
      position: relative;
      font-family: var(--ff-display);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(5rem, 12vw, 9rem);
      line-height: 1;
      letter-spacing: -.04em;
      color: var(--sage-deep);
      transition: color .6s var(--ease);
    }
    .step-numeral::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(160deg, var(--sage-deep) 0%, var(--sage) 35%, var(--rose) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      opacity: 0;
      transition: opacity .6s var(--ease);
    }
    .step:hover .step-numeral::after { opacity: 1; }

    .step-marker {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .step-marker-line { width: 36px; height: 1px; background: var(--rose); }
    .step-marker .mono { color: var(--rose-deep); margin: 0; }

    .step-content { padding-top: clamp(1.5rem, 4vw, 3rem); max-width: 50ch; }
    .step-content h3 {
      font-size: clamp(1.8rem, 3.2vw, 2.7rem);
      font-variation-settings: "opsz" 72, "SOFT" 60;
      line-height: 1.05;
      margin-bottom: 1.4rem;
      letter-spacing: -.015em;
    }
    .step-content h3 em {
      font-style: italic;
      font-weight: 300;
      color: var(--sage-deep);
    }
    .step-content p {
      font-size: 1.02rem;
      line-height: 1.7;
      color: var(--ink-soft);
      margin-bottom: 1.5rem;
    }
    .step-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px dashed var(--line);
    }
    .step-meta-item {
      display: flex;
      flex-direction: column;
      gap: .25rem;
    }
    .step-meta-label {
      font-family: var(--ff-mono);
      font-size: .66rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-faint);
    }
    .step-meta-value {
      font-family: var(--ff-display);
      font-style: italic;
      font-variation-settings: "opsz" 36;
      font-size: 1rem;
      color: var(--ink);
    }

    .steps-footer {
      max-width: var(--maxw);
      margin: clamp(3rem, 6vw, 5rem) auto 0;
      padding: 0 clamp(1.5rem, 4vw, 3.5rem);
      text-align: center;
    }
    .steps-footer .lede {
      max-width: 42ch;
      margin: 0 auto 1.75rem;
    }

    /* ─────────────────────────────────────────────────────────
       TOPICS / SERVICES — Editorial grid
    ───────────────────────────────────────────────────────────── */
    .topics {
      background: var(--sage-mist);
      position: relative;
    }
    .topics-header {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 2rem;
      margin-bottom: 4rem;
    }
    .topics-header h2 {
      max-width: 18ch;
      font-variation-settings: "opsz" 144, "SOFT" 50;
    }
    .topics-header h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--sage-deep);
    }
    .topics-count {
      font-family: var(--ff-mono);
      font-size: .75rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-mute);
      white-space: nowrap;
    }

    .topics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line-soft);
      border: 1px solid var(--line-soft);
    }
    .topic {
      background: var(--paper-soft);
      padding: 2.5rem 2rem 2rem;
      display: flex;
      flex-direction: column;
      min-height: 280px;
      position: relative;
      transition: background .35s var(--ease);
      overflow: hidden;
    }
    .topic:hover { background: var(--paper); }
    .topic-num {
      font-family: var(--ff-mono);
      font-size: .7rem;
      letter-spacing: .14em;
      color: var(--ink-faint);
      margin-bottom: 1.25rem;
    }
    .topic-icon {
      width: 44px; height: 44px;
      margin-bottom: 1.5rem;
      color: var(--sage-deep);
      transition: transform .4s var(--ease);
    }
    .topic:hover .topic-icon { transform: scale(1.1) rotate(-5deg); }
    .topic h4 {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36, "SOFT" 60;
      font-size: 1.5rem;
      line-height: 1.15;
      margin-bottom: .65rem;
      color: var(--ink);
      letter-spacing: -.01em;
    }
    .topic h4 em { font-style: italic; color: var(--sage-deep); font-weight: 300; }
    .topic p {
      font-size: .92rem;
      color: var(--ink-mute);
      line-height: 1.55;
      flex: 1;
    }
    .topic-arrow {
      align-self: flex-start;
      margin-top: 1.5rem;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      transition: background .3s var(--ease), color .3s, border-color .3s, transform .3s;
      color: var(--ink-soft);
    }
    .topic:hover .topic-arrow {
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
      transform: translate(3px, -3px);
    }

    /* ─────────────────────────────────────────────────────────
       ABOUT — Editorial portrait
    ───────────────────────────────────────────────────────────── */
    .about {
      background: var(--paper);
      padding: clamp(6rem, 11vw, 10rem) 0;
    }
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
      gap: clamp(2.5rem, 6vw, 5.5rem);
      align-items: start;
    }
    .portrait {
      position: relative;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--sage-pale) 0%, var(--rose-pale) 100%);
      overflow: hidden;
      isolation: isolate;
    }
    .portrait::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 25%, rgba(124, 139, 74, .45) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(196, 125, 130, .35) 0%, transparent 60%);
    }
    .portrait::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 .1 0 0 0 0 .1 0 0 0 0 .05 0 0 0 .25 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }
    .portrait-label {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--ff-mono);
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(31, 33, 24, .7);
      z-index: 1;
    }
    .portrait-credential {
      position: absolute;
      top: -1.5rem;
      right: -1.5rem;
      background: var(--paper);
      border: 1px solid var(--line);
      padding: 1.5rem 1.75rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: .35rem;
      z-index: 2;
    }
    .portrait-credential .badge-eyebrow {
      font-family: var(--ff-mono);
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ink-mute);
    }
    .portrait-credential .badge-value {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.65rem;
      line-height: 1;
      color: var(--ink);
      letter-spacing: -.02em;
    }
    .portrait-credential .badge-value em {
      font-style: italic;
      color: var(--sage-deep);
      font-weight: 300;
    }

    .about-content h2 {
      font-variation-settings: "opsz" 144, "SOFT" 50;
      margin-bottom: 1.5rem;
    }
    .about-content h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--rose-deep);
    }
    .about-content > p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .about-quote {
      margin: 2.25rem 0;
      padding: 1.5rem 0 1.5rem 1.75rem;
      border-left: 2px solid var(--sage);
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-style: italic;
      font-weight: 300;
      font-size: 1.2rem;
      line-height: 1.5;
      color: var(--ink);
      letter-spacing: -.005em;
    }
    .credentials {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--line);
    }
    .credentials li {
      display: flex;
      flex-direction: column;
      gap: .35rem;
    }
    .credentials-label {
      font-family: var(--ff-mono);
      font-size: .65rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--ink-faint);
    }
    .credentials-value {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.05rem;
      color: var(--ink);
      letter-spacing: -.005em;
    }

    /* ─────────────────────────────────────────────────────────
       TESTIMONIAL — Marquee + featured
    ───────────────────────────────────────────────────────────── */
    .voices {
      background: var(--paper-warm);
      padding: clamp(5rem, 9vw, 8rem) 0;
      overflow: hidden;
    }
    .voices-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .voices-header h2 { font-variation-settings: "opsz" 144, "SOFT" 50; max-width: 22ch; margin: 0 auto; }
    .voices-header h2 em { font-style: italic; font-weight: 300; color: var(--rose-deep); }

    .voices-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3.5rem);
    }
    .voice {
      background: var(--paper-soft);
      padding: 2.5rem;
      position: relative;
      border: 1px solid var(--line-soft);
    }
    .voice-quote-mark {
      position: absolute;
      top: 1rem;
      left: 1.5rem;
      font-family: var(--ff-display);
      font-style: italic;
      font-size: 5rem;
      line-height: 1;
      color: var(--rose);
      opacity: .35;
    }
    .voice blockquote {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-style: italic;
      font-weight: 300;
      font-size: 1.25rem;
      line-height: 1.5;
      color: var(--ink);
      margin: 1.5rem 0 2rem;
      letter-spacing: -.005em;
      position: relative;
      z-index: 1;
    }
    .voice-cite {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--line-soft);
    }
    .voice-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--sage), var(--sage-pale));
      display: grid;
      place-items: center;
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-style: italic;
      font-weight: 400;
      color: var(--paper);
      font-size: 1rem;
    }
    .voice-avatar.rose { background: linear-gradient(135deg, var(--rose), var(--rose-pale)); }
    .voice-name {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.02rem;
      color: var(--ink);
      letter-spacing: -.005em;
    }
    .voice-meta {
      font-family: var(--ff-mono);
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-top: 2px;
    }

    /* ─────────────────────────────────────────────────────────
       EMPATHY — Reasons people come (replaces manifesto)
    ───────────────────────────────────────────────────────────── */
    .empathy {
      padding: clamp(5rem, 9vw, 8rem) 0;
      background: var(--paper-warm);
    }
    .empathy-header {
      max-width: 720px;
      margin: 0 auto clamp(3rem, 6vw, 4.5rem);
      text-align: center;
    }
    .empathy-header h2 {
      font-variation-settings: "opsz" 144, "SOFT" 40;
      max-width: 18ch;
      margin: 0 auto;
    }
    .empathy-header h2 em { font-style: italic; font-weight: 300; color: var(--rose-deep); }
    .empathy-header .lede { margin-top: 1.5rem; max-width: 52ch; margin-left: auto; margin-right: auto; }

    .empathy-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      max-width: 1080px;
      margin: 0 auto;
    }
    .empathy-card {
      background: var(--paper-soft);
      padding: 2rem 2.25rem;
      border: 1px solid var(--line-soft);
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    }
    .empathy-card:hover {
      transform: translateY(-3px);
      border-color: var(--sage-medium);
      box-shadow: 0 12px 28px rgba(31, 33, 24, .06);
    }
    .empathy-check {
      flex-shrink: 0;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--sage-pale);
      color: var(--sage-deep);
      display: grid;
      place-items: center;
      font-family: var(--ff-display);
      font-size: 1.1rem;
      font-weight: 500;
      margin-top: 2px;
    }
    .empathy-card-text {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.1rem;
      line-height: 1.5;
      color: var(--ink);
      letter-spacing: -.005em;
    }
    .empathy-card-text em { font-style: italic; color: var(--sage-deep); font-weight: 300; }

    .empathy-footer {
      margin-top: clamp(3rem, 5vw, 4rem);
      text-align: center;
    }
    .empathy-footer p {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--ink-soft);
      max-width: 44ch;
      margin: 0 auto 1.5rem;
    }

    /* ─────────────────────────────────────────────────────────
       PRICING / INSURANCE
    ───────────────────────────────────────────────────────────── */
    .pricing {
      padding: clamp(5rem, 9vw, 8rem) 0;
      background: var(--paper);
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: start;
    }
    .pricing-intro h2 {
      font-variation-settings: "opsz" 144, "SOFT" 40;
      margin-bottom: 1.25rem;
    }
    .pricing-intro h2 em { font-style: italic; font-weight: 300; color: var(--sage-deep); }
    .pricing-intro > p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1rem; }

    .insurance-badge {
      margin-top: 2rem;
      padding: 1.5rem 1.75rem;
      background: var(--sage-mist);
      border-left: 3px solid var(--sage-deep);
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .insurance-badge-icon {
      flex-shrink: 0;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--sage-deep);
      color: var(--paper);
      display: grid;
      place-items: center;
      font-family: var(--ff-display);
      font-size: 1.3rem;
      font-weight: 500;
    }
    .insurance-badge-text strong {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-weight: 500;
      color: var(--ink);
      font-size: 1.05rem;
      display: block;
      margin-bottom: .25rem;
    }
    .insurance-badge-text p {
      font-size: .92rem;
      color: var(--ink-soft);
      margin: 0;
    }

    .pricing-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .pricing-card {
      background: var(--paper-soft);
      border: 1px solid var(--line);
      padding: 1.75rem 2rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1.5rem;
      align-items: center;
      transition: border-color .3s, transform .3s var(--ease);
    }
    .pricing-card:hover { border-color: var(--sage-medium); transform: translateX(3px); }
    .pricing-card.is-featured {
      background: var(--paper);
      border: 1.5px solid var(--rose);
      position: relative;
    }
    .pricing-card.is-featured::before {
      content: 'Beliebt';
      position: absolute;
      top: -10px;
      left: 1.75rem;
      background: var(--rose-deep);
      color: var(--paper);
      padding: .25rem .65rem;
      font-family: var(--ff-mono);
      font-size: .62rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      border-radius: 100vw;
    }
    .pricing-card-name {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.2rem;
      color: var(--ink);
      letter-spacing: -.005em;
      margin-bottom: .25rem;
    }
    .pricing-card-meta {
      font-size: .88rem;
      color: var(--ink-mute);
      line-height: 1.5;
    }
    .pricing-card-price {
      text-align: right;
      flex-shrink: 0;
    }
    .pricing-card-price strong {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.65rem;
      color: var(--ink);
      letter-spacing: -.02em;
      line-height: 1;
      font-weight: 500;
      display: block;
    }
    .pricing-card-price span {
      font-family: var(--ff-mono);
      font-size: .65rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-top: .35rem;
      display: block;
    }

    /* ─────────────────────────────────────────────────────────
       FAQ
    ───────────────────────────────────────────────────────────── */
    .faq {
      padding: clamp(5rem, 9vw, 8rem) 0;
      background: var(--paper-warm);
    }
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: start;
    }
    .faq-intro h2 {
      font-variation-settings: "opsz" 144, "SOFT" 40;
      margin-bottom: 1.25rem;
    }
    .faq-intro h2 em { font-style: italic; font-weight: 300; color: var(--rose-deep); }
    .faq-intro p { font-size: 1rem; line-height: 1.7; max-width: 30ch; }
    .faq-intro .contact-note {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--line);
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-style: italic;
      font-size: 1.05rem;
      color: var(--ink-soft);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
    }
    details.faq-item {
      border-bottom: 1px solid var(--line);
      padding: 1.5rem 0;
    }
    details.faq-item:first-child { border-top: 1px solid var(--line); }
    details.faq-item summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -.005em;
      transition: color .25s;
    }
    details.faq-item summary::-webkit-details-marker { display: none; }
    details.faq-item summary::after {
      content: '+';
      flex-shrink: 0;
      width: 28px; height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid var(--line);
      font-family: var(--ff-body);
      font-size: 1rem;
      color: var(--ink-soft);
      transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s;
    }
    details.faq-item[open] summary::after {
      content: '×';
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
    }
    details.faq-item summary:hover { color: var(--sage-deep); }
    details.faq-item-body {
      margin-top: 1rem;
      max-width: 60ch;
      font-size: .98rem;
      line-height: 1.7;
      color: var(--ink-soft);
    }

    /* ─────────────────────────────────────────────────────────
       JOURNAL — Recent blog posts
    ───────────────────────────────────────────────────────────── */
    .journal {
      background: var(--paper);
      padding: clamp(5rem, 9vw, 8rem) 0;
    }
    .journal-header {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 2rem;
      margin-bottom: 3.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--line);
    }
    .journal-header h2 {
      font-variation-settings: "opsz" 144, "SOFT" 50;
    }
    .journal-header h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--sage-deep);
    }
    .journal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
    .article {
      display: flex;
      flex-direction: column;
      group: link;
    }
    .article-image {
      aspect-ratio: 4/3;
      background: var(--sage-mist);
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
    }
    .article-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--sage-pale), var(--rose-pale));
      transition: transform .8s var(--ease);
    }
    .article:nth-child(2) .article-image::before { background: linear-gradient(135deg, var(--rose-pale), var(--sage-pale)); }
    .article:nth-child(3) .article-image::before { background: linear-gradient(135deg, var(--paper-warm), var(--sage-pale)); }
    .article:hover .article-image::before { transform: scale(1.06); }
    .article-image-label {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      background: var(--paper);
      padding: .4rem .85rem;
      font-family: var(--ff-mono);
      font-size: .62rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-soft);
      z-index: 1;
    }
    .article-meta {
      display: flex;
      gap: 1.25rem;
      font-family: var(--ff-mono);
      font-size: .68rem;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-bottom: .85rem;
    }
    .article-cat { color: var(--rose-deep); }
    .article h4 {
      font-size: 1.45rem;
      line-height: 1.2;
      margin-bottom: .65rem;
      font-variation-settings: "opsz" 36, "SOFT" 60;
      color: var(--ink);
      transition: color .25s;
      letter-spacing: -.01em;
    }
    .article:hover h4 { color: var(--sage-deep); }
    .article h4 em { font-style: italic; font-weight: 300; color: var(--sage-deep); }
    .article p {
      font-size: .94rem;
      color: var(--ink-mute);
      line-height: 1.6;
    }

    /* ─────────────────────────────────────────────────────────
       CTA / CONTACT
    ───────────────────────────────────────────────────────────── */
    .cta {
      background: var(--sage-darkest);
      color: var(--paper);
      padding: clamp(5rem, 10vw, 9rem) 0;
      position: relative;
      overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(196, 125, 130, .15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 139, 74, .25) 0%, transparent 50%);
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: end;
    }
    .cta h2 {
      color: var(--paper);
      font-variation-settings: "opsz" 144, "SOFT" 50;
      line-height: 1;
    }
    .cta h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--rose-warm);
    }
    .cta .eyebrow {
      color: var(--rose-warm);
    }
    .cta .eyebrow::before {
      background: var(--rose-warm);
    }
    .cta-meta {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .cta-detail {
      display: flex;
      flex-direction: column;
      gap: .35rem;
    }
    .cta-detail-label {
      font-family: var(--ff-mono);
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(245, 241, 232, .55);
    }
    .cta-detail-value {
      font-family: var(--ff-display);
      font-variation-settings: "opsz" 36;
      font-size: 1.2rem;
      color: var(--paper);
      letter-spacing: -.005em;
    }
    .cta-detail-value em { font-style: italic; color: var(--rose-warm); font-weight: 300; }
    .cta-detail-value a:hover { color: var(--rose-warm); }
    .cta-actions {
      grid-column: 1 / -1;
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 2rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(245, 241, 232, .15);
    }
    .cta .btn--primary {
      background: var(--paper);
      color: var(--ink);
    }
    .cta .btn--primary:hover {
      background: var(--rose-warm);
      color: var(--ink);
    }
    .cta .btn--ghost {
      color: var(--paper);
    }
    .cta .btn--ghost:hover { color: var(--rose-warm); }

    /* ─────────────────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────────────────────── */
    .footer {
      background: var(--ink);
      color: rgba(245, 241, 232, .7);
      padding: 4rem 0 2.5rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(245, 241, 232, .1);
    }
    .footer-brand-name {
      font-family: var(--ff-display);
      font-size: 1.7rem;
      color: var(--paper);
      font-variation-settings: "opsz" 36;
      letter-spacing: -.01em;
      margin-bottom: .25rem;
    }
    .footer-brand-tag {
      font-family: var(--ff-mono);
      font-size: .62rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(245, 241, 232, .5);
      margin-bottom: 1.5rem;
    }
    .footer-brand p {
      font-size: .9rem;
      color: rgba(245, 241, 232, .55);
      max-width: 32ch;
      line-height: 1.6;
    }
    .footer-col h5 {
      font-family: var(--ff-mono);
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--paper);
      margin-bottom: 1.25rem;
      font-weight: 500;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: .65rem; }
    .footer-col a {
      font-size: .9rem;
      color: rgba(245, 241, 232, .6);
      transition: color .25s;
    }
    .footer-col a:hover { color: var(--rose-warm); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 2rem;
      font-family: var(--ff-mono);
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(245, 241, 232, .4);
    }

    /* ─────────────────────────────────────────────────────────
       ANIMATIONS & REVEAL
    ───────────────────────────────────────────────────────────── */
    @keyframes rise {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity .9s var(--ease), transform 1s var(--ease);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .reveal-stagger.is-visible > * {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
    .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
    .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
    .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
    .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
    .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
    }

    /* ─────────────────────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
      .hero-meta { padding-bottom: 0; }
      .hero-rail { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .steps-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .step { grid-template-columns: 1fr; gap: 1rem; padding: 3rem 1.5rem; }
      .step-numeral { font-size: clamp(4rem, 16vw, 7rem); }
      .topics-grid { grid-template-columns: repeat(2, 1fr); }
      .empathy-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
      .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .voices-grid { grid-template-columns: 1fr; }
      .journal-grid { grid-template-columns: 1fr; gap: 3rem; }
      .cta-inner { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    }
    @media (max-width: 720px) {
      .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
      .nav-toggle { display: inline-flex; }

      /* Drop backdrop-filter on mobile: a filtered ancestor becomes the
         containing block for its fixed children, which would otherwise
         collapse the drawer onto the header bar once the nav is scrolled. */
      .nav.is-scrolled {
        background: rgba(245, 241, 232, .97);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }

      /* Slide-in drawer, hidden off-canvas until toggled open */
      .nav-collapse {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(82vw, 340px);
        padding: 5.5rem 1.75rem 2rem;
        background: var(--paper-soft);
        border-left: 1px solid var(--line-soft);
        box-shadow: -24px 0 50px rgba(31, 33, 24, .12);
        transform: translateX(100%);
        transition: transform .42s var(--ease);
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 60;
      }
      .nav.is-open .nav-collapse { transform: translateX(0); }

      .nav-menu { flex-direction: column; gap: 0; }
      .nav-menu a {
        display: block;
        font-size: 1.05rem;
        padding: .95rem 0;
        border-bottom: 1px solid var(--line-soft);
      }
      .nav-menu a::after { display: none; }

      .nav-cta { align-self: flex-start; margin-top: 1.75rem; }

      .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(31, 33, 24, .38);
        opacity: 0;
        visibility: hidden;
        transition: opacity .42s var(--ease), visibility .42s var(--ease);
        z-index: 55;
      }
      .nav.is-open .nav-backdrop { opacity: 1; visibility: visible; }

      .topics-grid { grid-template-columns: 1fr; }
      .credentials { grid-template-columns: 1fr; gap: 1rem; }
      .topics-header { grid-template-columns: 1fr; }
      .journal-header { grid-template-columns: 1fr; gap: 1rem; }
      .pricing-card { grid-template-columns: 1fr; gap: .75rem; }
      .pricing-card-price { text-align: left; }
      .pricing-card.is-featured::before { left: 1.5rem; }
      .footer-grid { grid-template-columns: 1fr; }

      /* Credential badge: on mobile the portrait is full-width, so the
         large top-right badge covered the face/hair. Hang it off the
         bottom-right edge instead, smaller, clearing the whole portrait. */
      .about-img-wrap { padding-bottom: 1.5rem; }
      .portrait-credential {
        top: auto;
        bottom: 0;
        right: 0;
        padding: .85rem 1.15rem;
        gap: .2rem;
        box-shadow: 0 6px 20px rgba(31, 33, 24, .08);
      }
      .portrait-credential .badge-value { font-size: 1.2rem; }
      .portrait-credential .badge-eyebrow { font-size: .55rem; }
      .portrait-label { bottom: 2.4rem; }
    }

    /* ─────────────────────────────────────────────────────────
       RECHTLICHE SEITEN — Impressum · AGB · Datenschutz
    ───────────────────────────────────────────────────────────── */
    .legal-page {
      padding-top: clamp(7rem, 12vw, 9.5rem);
      padding-bottom: clamp(4rem, 8vw, 6rem);
    }
    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-family: var(--ff-mono);
      font-size: .76rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--sage-deep);
      text-decoration: none;
      margin-bottom: 2.2rem;
      transition: color .25s var(--ease);
    }
    .legal-back:hover { color: var(--rose-deep); }
    .legal-head { margin-bottom: 2.4rem; }
    .legal-head h1 {
      font-family: var(--ff-display);
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      line-height: 1.02;
      letter-spacing: -.025em;
      color: var(--ink);
      margin: .5rem 0 0;
    }
    .legal-meta {
      font-family: var(--ff-mono);
      font-size: .78rem;
      letter-spacing: .04em;
      color: var(--ink-mute);
      margin: 1rem 0 0;
    }
    .legal-content { font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); }
    .legal-content > h2 {
      font-family: var(--ff-display);
      font-size: clamp(1.4rem, 2.6vw, 1.9rem);
      line-height: 1.18;
      color: var(--ink);
      margin: 2.9rem 0 .8rem;
    }
    .legal-content h3 {
      font-family: var(--ff-body);
      font-weight: 600;
      font-size: 1.08rem;
      color: var(--ink);
      margin: 1.9rem 0 .5rem;
    }
    .legal-content p { margin: 0 0 1rem; }
    .legal-content ul { margin: 0 0 1.2rem; padding-left: 1.3rem; list-style: none; }
    .legal-content ul li {
      position: relative;
      margin-bottom: .5rem;
      line-height: 1.65;
    }
    .legal-content ul li::before {
      content: "";
      position: absolute;
      left: -1.1rem;
      top: .62em;
      width: .4rem;
      height: .4rem;
      border-radius: 50%;
      background: var(--sage);
    }
    .legal-content a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 2px; }
    .legal-content a:hover { color: var(--rose-darkest); }
    .legal-content strong { font-weight: 600; color: var(--ink); }
    .legal-content .muted { color: var(--ink-mute); font-size: .9rem; }
    .legal-address {
      font-style: normal;
      line-height: 1.7;
      padding: 1.1rem 1.3rem;
      background: var(--paper-soft);
      border: 1px solid var(--line);
      border-radius: .5rem;
      margin: 0 0 1.2rem;
    }
    .legal-note {
      background: var(--sage-mist);
      border-left: 3px solid var(--sage);
      padding: 1rem 1.25rem;
      border-radius: .4rem;
      font-size: .95rem;
      margin: 1.6rem 0;
      color: var(--ink-soft);
    }
    .legal-note--rose { background: var(--rose-mist); border-left-color: var(--rose-deep); }
    .legal-divider {
      height: 1px;
      background: var(--line);
      border: none;
      margin: 3.5rem 0;
    }
    /* Einwilligungs- / Formularblöcke */
    .legal-section { margin-top: 3.5rem; }
    .legal-check {
      list-style: none;
      padding: 0;
      margin: 1.4rem 0;
    }
    .legal-check li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 1.4rem;
      line-height: 1.6;
    }
    .legal-check li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .15em;
      width: 1.15rem;
      height: 1.15rem;
      border: 1.5px solid var(--sage-deep);
      border-radius: .25rem;
      background: var(--paper-soft);
    }
    .legal-check li strong { display: block; margin-bottom: .25rem; }
    .legal-field {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      align-items: baseline;
      margin-bottom: 1rem;
    }
    .legal-field-label { font-weight: 600; color: var(--ink); min-width: 13rem; }
    .legal-field-line { flex: 1; min-width: 8rem; border-bottom: 1px solid var(--ink-faint); height: 1.4rem; }
    .legal-sign {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      margin-top: 2.5rem;
    }
    .legal-sign > div { flex: 1; min-width: 12rem; }
    .legal-sign .line { border-top: 1px solid var(--ink-faint); padding-top: .4rem; margin-top: 2.5rem; font-size: .85rem; color: var(--ink-mute); }
    @media (max-width: 720px) {
      .legal-field-label { min-width: 100%; }
    }

    /* ─────────────────────────────────────────────────────────
       DGE-MITGLIEDSCHAFT (Über mich)
    ───────────────────────────────────────────────────────────── */
    .about-dge {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-top: 2rem;
      padding-top: 1.75rem;
      border-top: 1px solid var(--line);
    }
    .about-dge img { width: 116px; height: auto; flex-shrink: 0; }
    .about-dge span {
      font-family: var(--ff-mono);
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-mute);
      line-height: 1.6;
      max-width: 22ch;
    }

    /* ─────────────────────────────────────────────────────────
       KONTAKTFORMULAR (dunkler CTA-Bereich)
    ───────────────────────────────────────────────────────────── */
    .cta-form {
      grid-column: 1 / -1;
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(245, 241, 232, .15);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem 1.25rem;
    }
    .cta-form .field--full { grid-column: 1 / -1; }
    .cta-form label {
      display: block;
      font-family: var(--ff-mono);
      font-size: .62rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(245, 241, 232, .55);
      margin-bottom: .55rem;
    }
    .cta-form input,
    .cta-form textarea {
      width: 100%;
      font-family: var(--ff-body);
      font-size: .95rem;
      color: var(--paper);
      background: rgba(245, 241, 232, .06);
      border: 1px solid rgba(245, 241, 232, .2);
      border-radius: .55rem;
      padding: .85rem 1rem;
      transition: border-color .25s, background .25s;
    }
    .cta-form input::placeholder,
    .cta-form textarea::placeholder { color: rgba(245, 241, 232, .35); }
    .cta-form input:focus,
    .cta-form textarea:focus {
      outline: none;
      border-color: var(--rose-warm);
      background: rgba(245, 241, 232, .1);
    }
    .cta-form textarea { resize: vertical; min-height: 130px; }
    .cta-form .form-submit {
      grid-column: 1 / -1;
      display: flex;
      gap: 1.25rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .cta-form-note {
      grid-column: 1 / -1;
      font-size: .82rem;
      color: rgba(245, 241, 232, .5);
      line-height: 1.6;
      margin: 0;
    }
    /* Honeypot — für Menschen unsichtbar, Bots tappen hinein */
    .nlj-hp {
      position: absolute !important;
      left: -9999px !important;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    /* Status-Meldungen nach dem Absenden */
    .cta-form-status {
      grid-column: 1 / -1;
      margin: 0 0 .5rem;
      padding: 1rem 1.25rem;
      border-radius: .55rem;
      font-size: .95rem;
      line-height: 1.6;
    }
    .cta-form-status--ok {
      background: rgba(124, 139, 74, .22);
      border: 1px solid var(--sage-medium);
      color: var(--paper);
    }
    .cta-form-status--err {
      background: rgba(155, 65, 72, .22);
      border: 1px solid var(--rose);
      color: var(--paper);
    }
    @media (max-width: 640px) { .cta-form { grid-template-columns: 1fr; } }

    /* ─────────────────────────────────────────────────────────
       SILBENTRENNUNG
       Ersetzt die früheren &shy;-Marken im Markup. Greift dank
       lang="de" am <html>-Element mit deutschen Trennregeln.
       overflow-wrap dient als Fallback, falls ein Browser keine
       Trennmuster mitbringt — sonst laufen lange Komposita wie
       "Ernährungswissenschaften" auf schmalen Displays über.
       ───────────────────────────────────────────────────────── */
    h1, h2, h3, h4, p,
    .rail-item-value,
    .badge-value,
    .credentials-value {
      -webkit-hyphens: auto;
      hyphens: auto;
      overflow-wrap: break-word;
    }

    /* ─────────────────────────────────────────────────────────
       THEMENSEITEN
       Beratungsschwerpunkte als eigenständige Seiten. Typografie
       kommt aus .legal-content, hier nur Kopf, Abschluss und der
       Redaktionshinweis.
       ───────────────────────────────────────────────────────── */
    .topic-page {
      padding-top: clamp(7rem, 12vw, 9.5rem);
      padding-bottom: clamp(4rem, 8vw, 6rem);
    }
    .topic-page-head { margin-bottom: 2.4rem; }
    .topic-page-head h1 {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 5vw, 3.1rem);
      line-height: 1.12;
      margin: .8rem 0 0;
    }
    .topic-page-lead {
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      line-height: 1.65;
      color: var(--ink-soft);
      margin: 1.2rem 0 0;
      max-width: 46ch;
    }
    .topic-page-content { margin-bottom: 3.5rem; }

    /* Nur für angemeldete Bearbeiterinnen sichtbar — siehe nlj_review_note(). */
    .review-note {
      display: block;
      margin: 1.8rem 0;
      padding: 1.1rem 1.3rem;
      background: var(--rose-pale);
      border-left: 3px solid var(--rose-deep);
      font-size: .94rem;
      line-height: 1.6;
      color: var(--ink);
    }
    .review-note strong {
      display: block;
      font-family: var(--ff-mono);
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--rose-deep);
      margin-bottom: .45rem;
    }

    .topic-page-cost {
      padding: 1.6rem 1.8rem;
      background: var(--sage-mist);
      margin-bottom: 2.5rem;
    }
    .topic-page-cost h2 {
      font-family: var(--ff-display);
      font-size: 1.25rem;
      margin: 0 0 .6rem;
    }
    .topic-page-cost p { margin: 0; color: var(--ink-soft); line-height: 1.7; }

    .topic-page-cta {
      padding: 2.2rem 1.8rem;
      background: var(--paper-soft);
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .topic-page-cta h2 {
      font-family: var(--ff-display);
      font-size: clamp(1.4rem, 3vw, 1.9rem);
      margin: 0 0 .8rem;
    }
    .topic-page-cta p {
      color: var(--ink-soft);
      line-height: 1.7;
      margin: 0 auto 1.6rem;
      max-width: 48ch;
    }

    .topic-page-related h2 {
      font-family: var(--ff-mono);
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin: 0 0 .9rem;
    }
    .topic-page-related ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
    }
    .topic-page-related a {
      display: inline-block;
      padding: .5rem 1rem;
      border: 1px solid var(--line);
      color: var(--ink-soft);
      text-decoration: none;
      transition: border-color .3s var(--ease), color .3s;
    }
    .topic-page-related a:hover { border-color: var(--sage-deep); color: var(--sage-deep); }

    /* Nummerierte Schritte in Fließtextseiten.
       NICHT .steps nennen — die Klasse gehört dem Ablauf-Bereich der Startseite
       und bringt dort clamp(6rem, 12vw, 11rem) Innenabstand mit. */
    .legal-content ol.step-list {
      margin: 0 0 1.4rem;
      padding: 0;
      list-style: none;
      counter-reset: step;
    }
    .legal-content ol.step-list li {
      position: relative;
      counter-increment: step;
      padding-left: 3rem;
      margin-bottom: 1rem;
      line-height: 1.65;
    }
    .legal-content ol.step-list li::before {
      content: counter(step);
      position: absolute;
      left: 0;
      top: .05em;
      width: 1.9rem;
      height: 1.9rem;
      border-radius: 50%;
      /* Ring statt Fläche: var(--sage-mist) war auf dem Papierton fast
         unsichtbar. Greift die Gestaltung von .topic-arrow auf. */
      border: 1px solid var(--line);
      background: transparent;
      color: var(--sage-deep);
      font-family: var(--ff-mono);
      font-size: .78rem;
      display: grid;
      place-items: center;
    }

    /* ─────────────────────────────────────────────────────────
       DIGITALE VISITENKARTE
       ───────────────────────────────────────────────────────── */
    .vcard {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 2.5rem;
      align-items: start;
      margin: 2rem 0 3rem;
    }
    .vcard-portrait {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
      background: var(--sage-mist);
    }
    .vcard-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .vcard-body h1 {
      font-family: var(--ff-display);
      font-size: clamp(1.9rem, 4vw, 2.6rem);
      line-height: 1.15;
      margin: .7rem 0 .3rem;
    }
    .vcard-role {
      font-size: 1.05rem;
      color: var(--sage-deep);
      margin: 0 0 .9rem;
    }
    .vcard-org { color: var(--ink-soft); line-height: 1.6; margin: 0 0 1.6rem; }
    .vcard-org .muted { color: var(--ink-mute); font-size: .9rem; }

    .vcard-contact { list-style: none; margin: 0 0 1.8rem; padding: 0; }
    .vcard-contact li {
      display: flex;
      gap: 1rem;
      padding: .55rem 0;
      border-bottom: 1px solid var(--line-soft);
      line-height: 1.5;
    }
    .vcard-label {
      flex: 0 0 6.5rem;
      font-family: var(--ff-mono);
      font-size: .7rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-mute);
      padding-top: .2em;
    }
    .vcard-contact a { color: var(--rose-deep); text-decoration: none; }
    .vcard-contact a:hover { text-decoration: underline; text-underline-offset: 2px; }

    .vcard-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
    .vcard-hint { margin: .9rem 0 0; font-size: .85rem; color: var(--ink-mute); }

    .vcard-qr {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.5rem;
      background: var(--paper-soft);
    }
    .vcard-qr img { width: 140px; height: 140px; flex-shrink: 0; }
    .vcard-qr p { margin: 0; font-size: .9rem; line-height: 1.6; }

    .vcard-topics { margin-top: 2.5rem; }
    .vcard-topics h2 {
      font-family: var(--ff-mono);
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin: 0 0 .9rem;
    }

    @media (max-width: 720px) {
      .vcard { grid-template-columns: 1fr; gap: 1.6rem; }
      .vcard-portrait { max-width: 200px; }
      .vcard-qr { flex-direction: column; text-align: center; }
      .vcard-contact li { flex-direction: column; gap: .1rem; }
      .vcard-label { flex: none; }
    }
