
    /* ====================================================================
       DESIGN TOKENS
       Palette pulled from her live site — extended, not replaced.
       ==================================================================== */
    :root {
      /* Colour */
      --ground:      #FFF9F5;  /* warm blush paper — dominant surface      */
      --primary:     #FFCDCD;  /* soft blush                               */
      --rose:        #F5AAAD;  /* accent                                   */
      --muted-rose:  #E69DA0;  /* secondary accent                         */
      --ink:         #1A1A1A;  /* type and dark blocks                     */
      --body:        #535353;  /* body grey                                */
      --mauve:       #644D4E;  /* mauve-brown — structural accent          */
      --mauve-soft:  #644D4E1a;/* mauve at low alpha, for rules & fills     */
      --paper-2:     #FFF3EC;  /* a half-step deeper than ground, same hue  */

      /* The punch — a brighter rose derived from her palette family.
         --punch pops as an accent; --punch-deep is the accessible
         variant that carries white text on buttons (WCAG AA). */
      --punch:       #F5697F;
      --punch-deep:  #D6335A;
      --punch-soft:  #F5697F1f;

      /* Type */
      --display: 'Rozha One', Georgia, serif;
      --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

      /* Motion — Emil Kowalski curves */
      --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
      --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
      --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

      /* Spacing scale (density 4/10 — standard) */
      --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 40px;
      --s-5: 64px; --s-6: 96px; --s-7: 140px;

      --maxw: 1180px;
      --shadow-soft: 0 1px 2px rgba(100,77,78,.04), 0 8px 24px -12px rgba(100,77,78,.18);
      --shadow-lift: 0 2px 4px rgba(100,77,78,.05), 0 22px 48px -20px rgba(100,77,78,.28);
    }

    /* ====================================================================
       RESET / BASE
       ==================================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

    body {
      font-family: var(--sans);
      background: var(--ground);
      color: var(--body);
      font-size: 17px;
      line-height: 1.6;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    h1, h2, h3 { color: var(--ink); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
    .display { font-family: var(--display); }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ::selection { background: var(--rose); color: var(--ink); }

    :focus-visible {
      outline: 2px solid var(--mauve);
      outline-offset: 3px;
      border-radius: 2px;
    }

    .wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-3); }

    /* Eyebrow / kicker — the recurring typographic signal */
    .kicker {
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--punch-deep);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .kicker::before {
      content: "";
      width: 24px; height: 2px;
      background: var(--punch);
      display: inline-block;
    }

    /* ====================================================================
       BUTTONS  (Emil: :active scale, exact-property transitions)
       ==================================================================== */
    .btn {
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
      padding: 15px 26px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform 160ms var(--ease-out),
                  background-color 200ms ease,
                  color 200ms ease,
                  border-color 200ms ease,
                  box-shadow 200ms ease;
      will-change: transform;
    }
    .btn:active { transform: scale(0.97); }
    .btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

    .btn-primary { background: var(--punch-deep); color: #fff; box-shadow: 0 8px 20px -10px var(--punch-deep); }
    .btn-primary:hover { background: var(--ink); box-shadow: var(--shadow-lift); }

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

    .btn svg { width: 16px; height: 16px; transition: transform 220ms var(--ease-out); }
    .btn:hover svg { transform: translateX(3px); }

    .arrow-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-weight: 600; color: var(--punch-deep); font-size: 15px;
      transition: gap 200ms var(--ease-out);
    }
    .arrow-link svg { width: 15px; height: 15px; }
    .arrow-link:hover { gap: 13px; }

    /* ====================================================================
       PREVIEW BANNER
       ==================================================================== */
    .preview-banner {
      background: var(--mauve);
      color: var(--ground);
      font-size: 12.5px;
      letter-spacing: 0.04em;
      text-align: center;
      padding: 9px 16px;
      font-weight: 500;
      position: relative;
      z-index: 60;
    }
    .preview-banner b { font-weight: 700; }

    /* ====================================================================
       NAV
       ==================================================================== */
    .nav {
      position: sticky; top: 0; z-index: 50;
      background: color-mix(in srgb, var(--ground) 82%, transparent);
      backdrop-filter: blur(12px) saturate(1.2);
      -webkit-backdrop-filter: blur(12px) saturate(1.2);
      border-bottom: 1px solid transparent;
      transition: border-color 300ms ease, background-color 300ms ease;
    }
    .nav.scrolled { border-bottom-color: var(--mauve-soft); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: var(--s-3); padding-block: 10px;
    }
    .brand { display: flex; align-items: center; }
    .brand-logo { display: block; width: 168px; height: auto; }

    .nav-links { display: flex; align-items: center; gap: 26px; }
    .nav-links .link {
      font-size: 14px; font-weight: 500; color: var(--ink); position: relative; white-space: nowrap;
    }
    .nav-links a.link::after {
      content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 100%;
      background: var(--punch); transform: scaleX(0); transform-origin: left;
      transition: transform 260ms var(--ease-out);
    }
    .nav-links a.link:hover::after { transform: scaleX(1); }
    /* Pages that exist in the full build but not this one-page preview */
    .nav-links .soon { opacity: 0.45; cursor: default; }

    .nav-right { display: flex; align-items: center; gap: 22px; }
    .nav-phone { font-size: 14px; font-weight: 600; color: var(--mauve); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
    .nav-phone svg { width: 14px; height: 14px; }

    /* ====================================================================
       HERO
       ==================================================================== */
    .hero { padding-top: var(--s-5); padding-bottom: var(--s-6); position: relative; overflow: hidden; }
    .hero-grid {
      display: grid; grid-template-columns: 1.02fr 0.98fr; gap: var(--s-5); align-items: center;
    }
    .hero h1.display {
      font-size: clamp(2.4rem, 4.6vw, 4rem);
      color: var(--ink);
      letter-spacing: -0.02em;
      margin-top: var(--s-3);
      max-width: 22ch;
      text-wrap: balance;
    }
    .hero h1 .em { font-style: italic; position: relative; white-space: nowrap; }
    .hero h1 .em::after {
      content: ""; position: absolute; left: -0.04em; right: -0.04em; bottom: 0.06em; height: 0.30em;
      background: var(--punch); z-index: -1; border-radius: 2px; opacity: 0.9;
    }
    .hero-lede {
      font-size: 19px; color: var(--body); max-width: 46ch; margin-top: var(--s-3);
      line-height: 1.6;
    }
    .hero-cta-row { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-4); flex-wrap: wrap; }
    .hero-byline { margin-top: var(--s-3); font-size: 14px; color: var(--body); line-height: 1.6; }
    .hero-byline b { color: var(--ink); font-weight: 600; }
    .hero-byline .sep { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--muted-rose); vertical-align: middle; margin: 0 9px; }

    /* Photographic hero — placeholder now, real portrait later (Parsley-led) */
    .hero-media { position: relative; }
    .hero-photo {
      position: relative; z-index: 2; border-radius: 18px; overflow: hidden;
      background: var(--primary);
      min-height: 500px; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
      border: 1px solid var(--mauve-soft);
    }
    .hero-photo::before { content: ""; position: absolute; top: 0; left: 0; width: 104px; height: 6px; background: var(--punch); }
    .hero-photo .cam { width: 56px; height: 56px; color: color-mix(in srgb, var(--mauve) 50%, transparent); }
    .hero-photo .ph-label {
      font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
      color: var(--mauve); max-width: 24ch; text-align: center; line-height: 1.7;
    }
    /* ====================================================================
       FLORA — motif translated from her old hero photography:
       single long-stemmed blooms, drifting. Flat SVG, her palette only
       (stems in rose/mauve like the original image). Sparse by design.
       ==================================================================== */
    .flora { position: absolute; pointer-events: none; z-index: 1; }
    .flora svg { display: block; width: 100%; height: auto; overflow: visible; }
    .flora img { display: block; width: 100%; height: auto;
      filter: drop-shadow(0 14px 22px rgba(100,77,78,.22)); }

    /* Anchoring rule: no stem may float — every cut end is either tucked
       behind the photo panel or clipped by a section edge. */
    /* Stems rise from the hero's bottom edge — cut ends clipped by the
       section boundary (overflow hidden), so both read as anchored. */
    .hero-flora-1 { bottom: -68px; right: 110px; width: 230px; transform: rotate(-4deg); z-index: 3; }
    .hero-flora-2 { display: block; bottom: -84px; left: 64px; width: 190px; transform: rotate(186deg); }
    .final-flora-1 { left: 2vw; bottom: -60px; width: 240px; transform: rotate(-6deg); opacity: .95; }
    .final-flora-2 { right: -64px; top: -56px; width: 230px; transform: rotate(38deg); opacity: .95; }

    /* Floating proof card over the photo — colour + instant credibility */
    .hero-rating {
      position: absolute; z-index: 3; left: -24px; bottom: 30px;
      background: var(--ground); border: 1px solid var(--mauve-soft); border-radius: 14px;
      box-shadow: var(--shadow-lift); padding: 15px 19px; display: flex; align-items: center; gap: 15px;
    }
    .hero-rating .rn { font-family: var(--display); font-size: 2.2rem; color: var(--ink); line-height: 1; }
    .hero-rating .stars { display: flex; gap: 3px; }
    .hero-rating .stars svg { width: 14px; height: 14px; }
    .hero-rating .rmeta { font-size: 12.5px; color: var(--body); margin-top: 5px; }
    .hero-rating .rmeta b { color: var(--ink); font-weight: 600; }

    /* ====================================================================
       SECTION SCAFFOLD
       ==================================================================== */
    section { padding-block: var(--s-6); }
    .sec-head { max-width: 62ch; margin-bottom: var(--s-4); }
    .sec-head h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3.1rem); margin-top: var(--s-2); }
    .sec-head p { margin-top: var(--s-2); font-size: 18px; color: var(--body); }

    .rule { height: 1px; background: var(--mauve-soft); border: 0; }

    /* ====================================================================
       THE PROBLEM — a short, honest list; no diagnosis, no blame.
       ==================================================================== */
    #problem { background: var(--paper-2); }
    .problem-list { margin-top: var(--s-4); display: grid; gap: 15px; max-width: 58ch; }
    .problem-list p {
      font-size: 19px; color: var(--body); padding-left: 26px; position: relative; line-height: 1.5;
    }
    .problem-list p::before {
      content: ""; position: absolute; left: 0; top: 0.7em;
      width: 14px; height: 2px; background: var(--punch);
    }
    .problem-close {
      margin-top: var(--s-4); font-family: var(--display); font-size: 1.5rem;
      color: var(--ink); max-width: 46ch; line-height: 1.35;
    }

    /* ====================================================================
       PROOF
       ==================================================================== */
    .proof { background: var(--paper-2); }
    .proof-top { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }
    .rating-block { display: flex; align-items: center; gap: var(--s-3); }
    .rating-num { font-family: var(--display); font-size: 4rem; color: var(--ink); line-height: 0.9; }
    .stars { display: flex; gap: 4px; }
    .stars svg { width: 20px; height: 20px; }
    .rating-meta { font-size: 14px; color: var(--body); margin-top: 6px; }
    .rating-meta b { color: var(--ink); font-weight: 600; }
    .rating-source { font-size: 12px; color: var(--mauve); margin-top: 4px; letter-spacing: 0.02em; }

    .reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-5); }
    .review {
      background: var(--ground); border: 1px solid var(--mauve-soft); border-radius: 14px;
      padding: var(--s-3); box-shadow: var(--shadow-soft);
      display: flex; flex-direction: column; gap: var(--s-2);
    }
    .review p { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
    .review .stars svg { width: 15px; height: 15px; }
    .review .attrib { font-size: 13px; color: var(--body); margin-top: auto; }
    .travel-line { margin-top: var(--s-4); font-size: 15px; color: var(--body); display: flex; align-items: center; gap: 10px; }
    .travel-line svg { width: 18px; height: 18px; color: var(--mauve); flex: none; }
    .travel-line i { font-style: normal; color: var(--mauve); font-weight: 600; }

    /* ====================================================================
       MEET BLAKELY
       ==================================================================== */
    /* Editorial stage — giant name behind her cutout, anchored to the
       section's bottom edge (same anchoring rule as the flora). */
    #blakely { padding-bottom: 0; overflow: hidden; }
    .blakely-stage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); align-items: end; min-height: 760px; }
    .blakely-bigname {
      position: absolute; top: 24px; left: -2%; right: 46%; z-index: 0;
      text-align: center; font-family: var(--display);
      font-size: clamp(3.6rem, 8.6vw, 7.8rem); line-height: 0.95;
      color: var(--primary); letter-spacing: -0.01em;
      user-select: none; pointer-events: none;
    }
    .blakely-figure { position: relative; z-index: 1; align-self: end; }
    .blakely-figure img {
      display: block; width: 900px; max-width: none; margin-left: -240px;
      filter: drop-shadow(0 18px 30px rgba(100,77,78,.28));
    }
    .blakely-content {
      position: relative; z-index: 2; padding-bottom: var(--s-6); padding-left: 16px;
      background: linear-gradient(90deg, rgba(255,249,245,0) 0%, var(--ground) 8%);
    }
    .blakely-content h2 { font-family: var(--display); font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-top: var(--s-2); }
    .blakely-content .intro { margin-top: var(--s-2); max-width: 46ch; }
    .blakely-approach { margin-top: var(--s-3); max-width: 46ch; font-size: 16.5px; }

    .cred-list { list-style: none; display: grid; gap: 2px; margin-top: var(--s-3); }
    .cred-list li {
      display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline;
      padding: 14px 0; border-top: 1px solid var(--mauve-soft);
      font-size: 15.5px; color: var(--ink);
    }
    .cred-list li:last-child { border-bottom: 1px solid var(--mauve-soft); }
    .cred-list .cx { color: var(--punch-deep); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; }
    .cred-list li span.detail { color: var(--body); display: block; font-size: 14px; margin-top: 2px; }

    .approach { margin-top: var(--s-4); }
    .approach h3 { font-family: var(--display); font-size: 1.6rem; margin-bottom: var(--s-2); }
    .approach p { margin-bottom: var(--s-2); font-size: 17px; color: var(--body); }

    /* ====================================================================
       CONDITIONS  (real headings, ruled editorial list — not an icon grid)
       ==================================================================== */
    .conditions { background: var(--ink); color: var(--ground); }
    .conditions .kicker { color: var(--punch); }
    .conditions .kicker::before { background: var(--punch); }
    .conditions h2 { color: var(--ground); }
    .conditions .sec-head p { color: color-mix(in srgb, var(--ground) 72%, transparent); }
    /* Index rows — full-width, ruled, serif names; no numbering */
    .cond-list { margin-top: var(--s-4); border-top: 1px solid rgba(255,249,245,0.14); }
    .cond {
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: baseline;
      padding: 26px 0; border-bottom: 1px solid rgba(255,249,245,0.14);
      transition: background-color 200ms ease;
    }
    @media (hover: hover) { .cond:hover { background: rgba(255,255,255,0.045); } }
    .cond h3 { color: var(--ground); font-family: var(--display); font-weight: 400; font-size: 1.6rem; letter-spacing: 0; }
    .cond p { color: color-mix(in srgb, var(--ground) 66%, transparent); font-size: 15px; line-height: 1.55; }
    .cond .first-step { color: var(--punch); font-size: 13px; margin-top: 8px; font-weight: 500; display: flex; gap: 7px; align-items: baseline; }
    .cond .first-step b { color: var(--ground); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 10.5px; white-space: nowrap; }

    .cond-cta {
      margin-top: var(--s-4); padding-top: var(--s-4);
      border-top: 1px solid rgba(255,249,245,0.14);
      text-align: center;
    }
    .cond-cta p { color: color-mix(in srgb, var(--ground) 78%, transparent); font-size: 17px; margin-bottom: 20px; }

    /* ====================================================================
       GALLERY — before / after comparison slider.
       clip-path driven (Emil: one of the most powerful CSS animation tools
       for comparison sliders). Transition disabled during drag so the
       handle tracks the pointer 1:1; a short snap eases keyboard/click moves.
       ==================================================================== */
    /* Right column of the How-it-works grid — label + slider + caption */
    .how-gallery { display: flex; flex-direction: column; align-items: center; }
    .how-gallery-label {
      font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
      color: var(--punch-deep); margin-bottom: 14px;
    }
    .gallery-note { font-size: 13.5px; color: var(--mauve); margin-top: var(--s-2); max-width: 38ch; text-align: center; }

    .ba-slider {
      --pos: 50%;
      position: relative; width: 100%; max-width: 300px; margin-inline: auto;
      aspect-ratio: 536 / 900; border-radius: 16px; overflow: hidden;
      border: 1px solid var(--mauve-soft); box-shadow: var(--shadow-lift);
      touch-action: none; user-select: none; cursor: ew-resize;
    }
    .ba-slider img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; display: block; pointer-events: none;
    }
    .ba-slider .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
    .ba-slider.dragging .ba-before { transition: none; }
    .ba-slider:not(.dragging) .ba-before { transition: clip-path 180ms var(--ease-out); }

    .ba-tag {
      position: absolute; top: 14px; z-index: 3;
      font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
      color: var(--mauve); background: color-mix(in srgb, var(--ground) 88%, transparent);
      padding: 5px 10px; border-radius: 6px; backdrop-filter: blur(3px);
    }
    .ba-tag.b-before { left: 14px; }
    .ba-tag.b-after { right: 14px; }

    .ba-handle {
      position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 4;
      width: 2px; background: var(--ground); transform: translateX(-50%);
      box-shadow: 0 0 0 1px var(--mauve-soft);
    }
    .ba-slider.dragging .ba-handle { transition: none; }
    .ba-slider:not(.dragging) .ba-handle { transition: left 180ms var(--ease-out); }
    .ba-grip {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--ground); border: 1.5px solid var(--mauve);
      display: flex; align-items: center; justify-content: center; gap: 2px;
      color: var(--mauve); cursor: ew-resize;
      transition: transform 160ms var(--ease-out), border-color 180ms ease, background-color 180ms ease;
    }
    .ba-grip:hover, .ba-grip:focus-visible { border-color: var(--punch-deep); color: var(--punch-deep); }
    .ba-slider.dragging .ba-grip { transform: translate(-50%, -50%) scale(0.94); }
    .ba-grip svg { width: 13px; height: 13px; }

    /* ====================================================================
       HOW IT WORKS
       ==================================================================== */
    /* Two columns: vertical steps rail (left) beside the gallery slider (right) */
    .how-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-5); align-items: center; margin-top: var(--s-4); }

    /* Vertical rail — connecting line joins the three dot centres top to bottom */
    .steps { position: relative; display: flex; flex-direction: column; gap: 38px; padding-left: 40px; }
    .steps::before {
      content: ""; position: absolute; left: 9px; top: 10px; bottom: 10px;
      width: 2px; background: var(--muted-rose);
    }
    .step { position: relative; }
    .step .dot {
      position: absolute; left: -40px; top: 2px; width: 20px; height: 20px;
      border-radius: 50%; background: var(--punch);
      border: 4px solid var(--ground); box-shadow: 0 0 0 2px var(--muted-rose);
    }
    .step .slabel { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--punch-deep); margin-bottom: 8px; }
    .step h3 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 8px; }
    .step p { font-size: 15px; color: var(--body); }

    /* ====================================================================
       CONSULTATION INTAKE  — the signature moment.
       A prescription/intake card being filled out. Typographic, restrained.
       ==================================================================== */
    .intake { background: var(--paper-2); }
    .intake-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s-5); align-items: center; }
    .intake-lede h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3.1rem); }
    .intake-lede p { margin-top: var(--s-2); font-size: 18px; color: var(--body); max-width: 42ch; }
    /* The card itself */
    .rx-card {
      background: var(--ground);
      border: 1px solid var(--mauve);
      border-radius: 16px;
      box-shadow: var(--shadow-lift);
      overflow: hidden;
      position: relative;
    }
    .rx-head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 22px; border-bottom: 1px solid var(--mauve-soft);
      background: var(--ground);
    }
    .rx-head .rx-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--mauve); }
    .rx-head .rx-count { font-family: var(--display); font-size: 15px; color: var(--ink); font-variant-numeric: tabular-nums; }

    /* progress ticks */
    .rx-progress { display: flex; gap: 5px; padding: 14px 22px 0; }
    .rx-progress .tick { height: 3px; flex: 1; background: var(--mauve-soft); border-radius: 2px; overflow: hidden; }
    .rx-progress .tick .fill {
      display: block; height: 100%; width: 100%; background: var(--mauve);
      transform: scaleX(0); transform-origin: left;
      transition: transform 420ms var(--ease-drawer);
    }
    .rx-progress .tick.done .fill { transform: scaleX(1); }
    .rx-progress .tick.active .fill { transform: scaleX(1); background: var(--punch); }

    .rx-body { padding: 22px; position: relative; }
    /* Panels crossfade with a subtle blur mask (Emil) */
    .panel { display: none; }
    .panel.active { display: block; animation: panelIn 380ms var(--ease-drawer) both; }
    @keyframes panelIn {
      from { opacity: 0; transform: translateX(10px); filter: blur(5px); }
      to   { opacity: 1; transform: translateX(0);    filter: blur(0); }
    }
    .panel .q-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mauve); font-weight: 700; }
    .panel .q { font-family: var(--display); font-size: 1.7rem; color: var(--ink); margin-top: 10px; line-height: 1.14; }

    .opts { display: grid; gap: 9px; margin-top: var(--s-3); }
    .opt {
      text-align: left; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
      background: var(--ground); border: 1px solid var(--mauve-soft); border-radius: 11px;
      padding: 15px 17px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
      transition: transform 160ms var(--ease-out), border-color 180ms ease, background-color 180ms ease;
    }
    .opt:hover { border-color: var(--muted-rose); background: var(--paper-2); }
    .opt:active { transform: scale(0.985); }
    .opt .rx-check { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--mauve-soft); flex: none; transition: all 180ms ease; position: relative; }
    .opt[aria-pressed="true"] { border-color: var(--mauve); background: var(--paper-2); }
    .opt[aria-pressed="true"] .rx-check { border-color: var(--mauve); background: var(--mauve); }
    .opt[aria-pressed="true"] .rx-check::after {
      content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--ground);
    }

    .fields { display: grid; gap: 14px; margin-top: var(--s-3); }
    .field label { font-size: 12px; letter-spacing: 0.06em; color: var(--mauve); font-weight: 600; display: block; margin-bottom: 6px; }
    .field input {
      width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
      background: var(--ground); border: 0; border-bottom: 1.5px solid var(--mauve-soft);
      padding: 9px 2px; transition: border-color 200ms ease;
    }
    .field input::placeholder { color: color-mix(in srgb, var(--body) 55%, transparent); }
    .field input:focus { outline: none; border-bottom-color: var(--mauve); }

    /* The calendar (the end state) — a real month grid + time chips */
    .cal { margin-top: var(--s-3); }
    .cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .cal-month { font-size: 1.05rem; color: var(--ink); }
    .cal-nav {
      width: 32px; height: 32px; border-radius: 50%; flex: none;
      border: 1px solid var(--mauve-soft); background: var(--ground); color: var(--mauve);
      display: flex; align-items: center; justify-content: center; cursor: pointer;
      transition: border-color 180ms ease, color 180ms ease, transform 160ms var(--ease-out);
    }
    .cal-nav svg { width: 14px; height: 14px; }
    .cal-nav:hover:not(:disabled) { border-color: var(--punch-deep); color: var(--punch-deep); }
    .cal-nav:active:not(:disabled) { transform: scale(0.94); }
    .cal-nav:disabled { opacity: 0.3; cursor: default; }
    .cal-dow {
      display: grid; grid-template-columns: repeat(7, 1fr); text-align: center;
      font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--mauve); font-weight: 600; margin-bottom: 6px;
    }
    .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
    .cal-pad { visibility: hidden; }
    .cal-day {
      aspect-ratio: 1; border-radius: 9px; border: 1px solid transparent;
      background: none; font-family: var(--sans); font-size: 14px; color: var(--ink);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms var(--ease-out);
    }
    .cal-day:hover:not(:disabled) { background: var(--paper-2); border-color: var(--muted-rose); }
    .cal-day:active:not(:disabled) { transform: scale(0.94); }
    .cal-day.is-today:not([aria-pressed="true"]) { border-color: var(--punch); font-weight: 700; }
    .cal-day[aria-pressed="true"] { background: var(--punch-deep); border-color: var(--punch-deep); color: #fff; }
    .cal-day:disabled { color: color-mix(in srgb, var(--body) 35%, transparent); cursor: default; }

    .cal-times { margin-top: var(--s-3); }
    .cal-times-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--mauve); margin-bottom: 10px; }
    .cal-times-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
    .time-chip {
      font-family: var(--sans); font-size: 13.5px; color: var(--ink); cursor: pointer;
      background: var(--ground); border: 1px solid var(--mauve-soft); border-radius: 10px; padding: 11px 4px;
      text-align: center; transition: transform 160ms var(--ease-out), border-color 180ms ease, background-color 180ms ease, color 180ms ease;
    }
    .time-chip:hover { border-color: var(--muted-rose); }
    .time-chip:active { transform: scale(0.96); }
    .time-chip[aria-pressed="true"] { background: var(--punch-deep); border-color: var(--punch-deep); color: #fff; }

    .rx-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 22px; border-top: 1px solid var(--mauve-soft); }
    .rx-back { font-size: 14px; font-weight: 600; color: var(--mauve); background: none; border: 0; cursor: pointer; padding: 8px; opacity: 1; transition: opacity 200ms ease; }
    .rx-back[hidden] { visibility: hidden; }
    .btn-sm { padding: 12px 22px; font-size: 14px; }

    /* confirmation (end) */
    .rx-done { text-align: center; padding: 8px 4px; }
    .rx-done .seal {
      width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--mauve);
      display: flex; align-items: center; justify-content: center; margin: 0 auto var(--s-2);
      color: var(--mauve);
    }
    .rx-done .seal svg { width: 24px; height: 24px; }
    .rx-done h3 { font-family: var(--display); font-size: 1.7rem; margin-bottom: 8px; }
    .rx-done p { font-size: 15px; color: var(--body); max-width: 34ch; margin: 0 auto; }
    .rx-done .held { color: var(--ink); font-weight: 600; margin-top: 12px; }
    .rx-restart { margin-top: var(--s-3); }

    /* ====================================================================
       FINAL CTA
       ==================================================================== */
    .final { text-align: center; background: var(--primary); position: relative; overflow: hidden; }
    .final .wrap { max-width: 760px; }
    .final h2 { font-family: var(--display); font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
    .final p.low { font-size: 18px; color: var(--body); margin-top: var(--s-2); }
    .final .final-cta { margin-top: var(--s-4); display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; }
    .final-meta { margin-top: var(--s-4); display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; font-size: 14.5px; color: var(--body); }
    .final-meta a, .final-meta span { display: inline-flex; align-items: center; gap: 8px; }
    .final-meta svg { width: 15px; height: 15px; color: var(--mauve); }

    /* ====================================================================
       FOOTER
       ==================================================================== */
    footer { background: var(--ink); color: color-mix(in srgb, var(--ground) 72%, transparent); padding-block: var(--s-5); }
    .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-4); }
    footer .b-name { font-family: var(--display); font-size: 20px; color: var(--ground); }
    footer .b-sub { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-rose); font-weight: 600; margin-top: 6px; }
    .foot-col h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-rose); font-weight: 600; margin-bottom: 12px; }
    .foot-col p, .foot-col a { font-size: 14.5px; line-height: 1.7; display: block; }
    .foot-col a:hover { color: var(--ground); }
    .foot-bottom { margin-top: var(--s-5); padding-top: var(--s-3); border-top: 1px solid rgba(255,249,245,0.12); font-size: 12.5px; display: flex; justify-content: space-between; gap: var(--s-2); flex-wrap: wrap; }

    /* ====================================================================
       SCROLL REVEAL  (IntersectionObserver adds .in)
       ==================================================================== */
    /* Hidden state scoped to html.js — without JS, everything renders visible. */
    html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out); }
    html.js .reveal.in { opacity: 1; transform: none; }
    .reveal[data-d="1"] { transition-delay: 60ms; }
    .reveal[data-d="2"] { transition-delay: 120ms; }
    .reveal[data-d="3"] { transition-delay: 180ms; }

    /* ====================================================================
       RESPONSIVE
       ==================================================================== */
    @media (max-width: 1120px) {
      .nav-links, .nav-phone { display: none; }
    }
    @media (max-width: 940px) {
      .hero-grid, .blakely-stage, .intake-grid { grid-template-columns: 1fr; gap: var(--s-4); }
      .blakely-stage { min-height: 0; }
      .blakely-bigname { display: none; }
      .blakely-figure { order: 3; }
      .blakely-figure img { width: 100%; max-width: 440px; margin: 0 auto; }
      .blakely-content { order: 2; padding-left: 0; padding-bottom: var(--s-4); background: none; }
      .hero h1.display { max-width: 20ch; }
      .hero-photo { min-height: 380px; }
      .cond { grid-template-columns: 1fr; gap: 10px; }
      .reviews { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr; gap: var(--s-4); }
      .how-gallery { margin-top: var(--s-2); }
      .foot-grid { grid-template-columns: 1fr; gap: var(--s-3); }
    }
    @media (max-width: 560px) {
      :root { --s-6: 64px; }
      body { font-size: 16px; }
      .wrap { padding-inline: 20px; }
      .rating-num { font-size: 3rem; }
      .cal-times-grid { grid-template-columns: repeat(2, 1fr); }
      .final-meta { flex-direction: column; gap: 12px; }
      .hero-photo { min-height: 320px; }
      .hero-rating { position: static; left: auto; bottom: auto; margin: -30px 14px 0; }
      .ba-slider { max-width: 340px; }
      .hero-flora-1 { width: 140px; right: 24px; bottom: -44px; }
      .hero-flora-2 { display: none; }
      .final-flora-1 { width: 150px; left: -24px; bottom: -40px; }
      .final-flora-2 { width: 140px; right: -44px; top: -40px; }
    }

    /* Reduced motion — keep opacity, drop movement/blur (Emil) */
    @media (prefers-reduced-motion: reduce) {
      .reveal, .panel.active, .btn, .opt, .slot, .rx-progress .tick .fill { transition: opacity 200ms ease !important; animation: none !important; transform: none !important; filter: none !important; }
      .reveal { opacity: 1; transform: none; }
      .rx-progress .tick .fill { transition: none; }
    }
    /* Touch devices — gate hover transforms (Emil) */
    @media (hover: none) {
      .btn:hover svg { transform: none; }
    }
  