/* ===== self-hosted, subset fonts (scripts/fetch_fonts.py + subset_fonts.py) ===== */
@font-face { font-family: 'Cabinet Grotesk'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/cabinet-grotesk-500.woff2') format('woff2'); }
@font-face { font-family: 'Cabinet Grotesk'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/cabinet-grotesk-700.woff2') format('woff2'); }
@font-face { font-family: 'Cabinet Grotesk'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/cabinet-grotesk-800.woff2') format('woff2'); }
@font-face { font-family: 'Cabinet Grotesk'; font-style: normal; font-weight: 900; font-display: swap; src: url('fonts/cabinet-grotesk-900.woff2') format('woff2'); }
@font-face { font-family: 'General Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/general-sans-400.woff2') format('woff2'); }
@font-face { font-family: 'General Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/general-sans-500.woff2') format('woff2'); }
@font-face { font-family: 'General Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/general-sans-600.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: italic; font-weight: 600; font-display: swap; src: url('fonts/fraunces-italic-600.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/jetbrains-mono-400.woff2') format('woff2'); }

:root {
    /* Dark navy + warm cream + coral — bycrawford-tier contrast with warmth */
    --bg:        #0A0F1C;   /* near-black navy */
    --bg-soft:   #131A2C;
    --surface:   #FFFFFF;   /* pure white for cards and light sections */
    --ink:       #F8F6F0;   /* near-white text — bright, high contrast */
    --ink-dark:  #0A0F1C;   /* dark ink for use on bright surfaces */
    --muted:     rgba(248,246,240,.55);
    --accent:    #FF6B3A;   /* coral — default; passes AA only on the dark navy surfaces */
    --accent-ink: #C8401C;  /* darkened coral — AA on LIGHT surfaces & as coral-button background */
    --accent-soft: rgba(200,64,28,.16);
    --hairline:  rgba(248,246,240,.14);
    --hairline-2: rgba(248,246,240,.06);

    --font-display: 'Cabinet Grotesk', system-ui, sans-serif;
    --font-sans:    'General Sans', system-ui, sans-serif;
    --font-serif:   'Fraunces', Georgia, serif;
    --font-mono:    'JetBrains Mono', ui-monospace, monospace;

    --s-1: 4px; --s-2: 8px; --s-3: 16px; --s-4: 24px;
    --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px; --s-9: 128px; --s-10: 160px;

    --maxw: 1320px;
  }

  *,*::before,*::after { box-sizing: border-box; }

  /* WCAG AA: coral fails on light backgrounds. On light surfaces (and coral-filled
     controls/tiles, where text is white), redefine --accent to the darker ink so every
     descendant var(--accent) updates by inheritance. Dark sections keep the bright default. */
  .who-section, .light-section, .cta, .mail-form, .review-card,
  .btn-primary, .btn-coral, .nav-cta, .pkg-tag,
  .why-tile.hi, .tip-tile.filled, .blog-tile.feature, .dream-tile.feature {
    --accent: var(--accent-ink);
  }
  /* Dark code/terminal mockups keep the bright coral even inside a light section (AA on their dark bg). */
  .ide { --accent: #FF6B3A; }

  html { scroll-behavior: smooth; }
  /* nav links jump to sections — give 24px breathing room below sticky / floating elements */
  section[id], [id] { scroll-margin-top: 24px; }

  /* inline code chips inside tip tiles (or anywhere) */
  code, kbd, samp {
    font-family: var(--font-mono);
    font-size: .85em;
    background: rgba(255,107,58,.12);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255,107,58,.22);
    letter-spacing: 0;
  }
  .tip-tile code, .tip-tile.outline code {
    background: rgba(255,107,58,.16);
  }
  .tip-tile.filled code {
    background: rgba(255,255,255,.18);
    color: #fff;
    border-color: rgba(255,255,255,.3);
  }
  .light-section code, .light-section .faq-item code,
  .who-section code {
    background: rgba(255,107,58,.10);
    border-color: rgba(255,107,58,.25);
  }

  /* MICRO ANIMATIONS — always-visible default; gentle entry when .in class added */
  @media (prefers-reduced-motion: no-preference) {
    .reveal.in,
    .service-card.in,
    .why-tile.in,
    .blog-tile.in,
    .tip-tile.in,
    .d-tile.in,
    .cap-tile.in,
    .pkg-card.in,
    .proc-card.in {
      animation: reveal-in 550ms cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes reveal-in {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }
  }

  /* generic hover lifts */
  .btn-primary, .btn-coral, .btn-light, .btn-outline, .btn-ghost,
  .nav-cta, .ft4-cta-bar .btn-coral {
    transition: background 200ms ease, color 200ms ease, transform 200ms cubic-bezier(.22,1,.36,1), box-shadow 200ms;
  }

  /* focus-visible rings — global, accessible, on-brand */
  :focus { outline: none; }
  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
  }
  a:focus-visible, button:focus-visible {
    outline-offset: 4px;
  }
  input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  html {
    /* overflow-x on html, NOT body — body overflow-x breaks position:fixed on iOS Safari */
    overflow-x: clip;
  }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-feature-settings: "ss01","tnum";
    font-variant-numeric: tabular-nums;
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
  }
  /* form controls inherit the brand sans — selects/options/buttons otherwise fall back to system Times/Arial */
  input, select, textarea, button, option { font-family: var(--font-sans); }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-4); }
  @media (min-width: 720px)  { .wrap { padding: 0 var(--s-5); } }
  @media (min-width: 1024px) { .wrap { padding: 0 var(--s-6); } }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ============ HERO SECTION — full-bleed dark, fills viewport ============ */
  .hero-card {
    /* explicit dark bg + gradient on the hero itself */
    background:
      radial-gradient(ellipse 60% 50% at 80% 30%, rgba(255,107,58,.20), transparent 60%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,107,58,.06), transparent 70%),
      linear-gradient(180deg, #0E1626 0%, #0A0F1C 100%);
    color: var(--ink);
    /* full-bleed dark: break out of .wrap so dark covers edge-to-edge */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    padding-top: var(--s-3);
    padding-bottom: var(--s-7);
    padding-left:  max(var(--s-4), calc(50vw - var(--maxw) / 2 + var(--s-4)));
    padding-right: max(var(--s-4), calc(50vw - var(--maxw) / 2 + var(--s-4)));
    position: relative;
    /* HARD-FORCE fill viewport so the dark covers everything on land */
    min-height: 100svh;
    min-height: 100dvh;
    display: flex; flex-direction: column;
    box-sizing: border-box;
  }
  @media (min-width: 720px) {
    .hero-card {
      padding-left:  max(var(--s-5), calc(50vw - var(--maxw) / 2 + var(--s-5)));
      padding-right: max(var(--s-5), calc(50vw - var(--maxw) / 2 + var(--s-5)));
    }
  }
  @media (min-width: 1024px) {
    .hero-card {
      padding-left:  max(var(--s-6), calc(50vw - var(--maxw) / 2 + var(--s-6)));
      padding-right: max(var(--s-6), calc(50vw - var(--maxw) / 2 + var(--s-6)));
    }
  }
  .hero-card::before {
    content: ""; position: absolute;
    top: -20%; right: -10%; width: 70%; height: 80%;
    background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(255,107,58,.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-card > * { position: relative; z-index: 2; }
  /* push hero body content to vertically center while filling viewport */
  .hero-card .hero-body { flex: 1; align-content: center; align-items: center; }

  /* ============ TOP NAV (inside the dark hero card) ============ */
  .top {
    padding: var(--s-3) 0 var(--s-6);
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s-4);
  }
  .brand-mark {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600; font-size: 14px;
    color: var(--ink);
  }
  .brand-mark .bullet {
    width: 14px; height: 14px;
    background: var(--ink);
    border-radius: 999px;
    display: inline-block;
  }
  .brand-mark .sub {
    font-family: var(--font-mono); font-size: 10px;
    color: rgba(248,246,240,.5); letter-spacing: .12em; text-transform: uppercase;
  }
  nav.top-nav { display: none; gap: 30px; font-size: 14px; font-weight: 500; align-items: center; }
  @media (min-width: 900px) { nav.top-nav { display: flex; } }
  nav.top-nav a { position: relative; padding: 4px 0; color: rgba(248,246,240,.85); }
  nav.top-nav a:hover { color: var(--accent); }
  .top .nav-cta {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 8px;
    border: 0;
    transition: background 200ms ease, transform 200ms cubic-bezier(.22,1,.36,1);
  }
  .top .nav-cta:hover { background: #D04C2A; transform: translateY(-1px); }
  .top .availability { display: none; }

  /* mobile hamburger — clones the desktop nav into a dropdown on small screens */
  .nav-toggle {
    display: none;
    width: 42px; height: 42px;
    flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 10px;
    cursor: pointer; padding: 0;
  }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .22s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  @media (min-width: 900px) { .nav-toggle { display: none !important; } }
  @media (max-width: 899px) {
    .nav-toggle { display: inline-flex; order: 3; position: relative; z-index: 100; }
    .top { position: relative; z-index: 60; }
    .top .nav-cta { display: none; }
    /* full-screen premium overlay menu with staggered micro-animations */
    nav.top-nav {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: clamp(var(--s-3), 3.2vh, var(--s-5));
      position: fixed; inset: 0; z-index: 90;
      background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255,107,58,.14), transparent 60%), var(--bg);
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity .3s ease, transform .45s cubic-bezier(.22,1,.36,1), visibility 0s linear .35s;
      pointer-events: none;
    }
    nav.top-nav.open {
      opacity: 1; visibility: visible; transform: none; pointer-events: auto;
      transition: opacity .3s ease, transform .5s cubic-bezier(.22,1,.36,1);
    }
    nav.top-nav a {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(32px, 9vw, 48px); letter-spacing: -.02em;
      color: var(--ink); padding: 2px 0; border: none;
      opacity: 0; transform: translateY(22px);
      transition: opacity .45s ease, transform .55s cubic-bezier(.22,1,.36,1);
    }
    nav.top-nav.open a { opacity: 1; transform: none; }
    nav.top-nav.open a:nth-child(1) { transition-delay: .10s; }
    nav.top-nav.open a:nth-child(2) { transition-delay: .16s; }
    nav.top-nav.open a:nth-child(3) { transition-delay: .22s; }
    nav.top-nav.open a:nth-child(4) { transition-delay: .28s; }
    nav.top-nav.open a:nth-child(5) { transition-delay: .34s; }
    nav.top-nav a:hover { color: var(--accent); }
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .book-call { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; transition: opacity .2s ease, visibility 0s linear .2s; }

  /* ============ HERO BODY inside the dark card ============ */
  .hero-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-6);
    align-items: start;
    padding-bottom: var(--s-3);
  }
  @media (min-width: 900px) {
    .hero-body { grid-template-columns: 1.15fr 1fr; gap: var(--s-7); }
  }
  /* Mobile: form top edge peeks into the fold below the buttons; rest reveals on scroll */
  @media (max-width: 899px) {
    .hero-body > div:first-child {
      min-height: calc(100vh - 260px);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding-top: var(--s-3);
    }
    .hero-body { gap: var(--s-5); }
  }

  /* Available pill */
  .pill-available {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(248,246,240,.85);
    background: rgba(248,246,240,.06);
    border: 1px solid rgba(248,246,240,.15);
    padding: 6px 14px;
    border-radius: 999px;
  }
  .pill-available::before {
    content: ""; width: 6px; height: 6px;
    background: #E89A4D; border-radius: 999px;
    box-shadow: 0 0 0 3px rgba(232,154,77,.20);
  }

  /* Big headline */
  .hero-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(40px, 5.6vw, 72px);
    line-height: 1.02;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: var(--s-4) 0 var(--s-4);
    max-width: 18ch;
  }
  .hero-headline em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -.005em;
    color: var(--accent);
  }
  /* Special 'fast' word treatment — hand-drawn underline + lightning zap */
  .fast-word {
    position: relative;
    display: inline-block;
    padding: 0 .05em;
    color: var(--accent);
  }
  .fast-word em {
    position: relative;
    z-index: 2;
    /* slight skew gives the word a forward-leaning motion */
    display: inline-block;
    transform: translateZ(0);
  }
  /* clean confident underline — single stroke with slight downward curve */
  .fast-word .fast-mark {
    position: absolute;
    left: 0; right: 0;
    bottom: -.14em;
    width: 100%;
    height: .18em;
    color: var(--accent);
    z-index: 1;
    pointer-events: none;
    overflow: visible;
  }
  .fast-word .fast-mark path {
    /* draw-in animation on load */
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: fast-stroke-in 1000ms cubic-bezier(.22,1,.36,1) 300ms forwards;
    filter: drop-shadow(0 2px 6px rgba(255,107,58,.35));
  }
  @keyframes fast-stroke-in {
    to { stroke-dashoffset: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .fast-word .fast-mark path { animation: none; stroke-dashoffset: 0; }
  }

  /* Short sub */
  .hero-subline {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: rgba(248,246,240,.7);
    max-width: 50ch;
    margin: 0 0 var(--s-5);
  }
  .hero-subline b { color: var(--ink); font-weight: 500; }

  /* Hero buttons */
  .hero-buttons { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); }
  .btn-light {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink); color: #1F140B;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-sans); font-weight: 500; font-size: 15px;
    border: 0; cursor: pointer;
    transition: background 200ms, transform 200ms cubic-bezier(.22,1,.36,1);
  }
  .btn-light:hover { background: #FAE7BE; transform: translateY(-1px); }
  .btn-light .arrow { transition: transform 240ms cubic-bezier(.22,1,.36,1); }
  .btn-light:hover .arrow { transform: translate(4px, -4px); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--ink);
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-sans); font-weight: 500; font-size: 15px;
    border: 1px solid rgba(248,246,240,.30);
    transition: background 200ms, border-color 200ms;
  }
  .btn-outline:hover { background: rgba(248,246,240,.06); border-color: rgba(248,246,240,.55); }

  /* ============ MAIL FORM — cool off-white card on dark hero ============ */
  .mail-form {
    background: #F2F0EA;
    color: var(--ink-dark);
    border-radius: 14px;
    padding: var(--s-5);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    box-shadow: 0 24px 60px -16px rgba(8,12,24,.6);
    position: relative;
  }
  .mail-form .form-label { color: #5C4733; border-bottom-color: rgba(31,20,11,.15); }
  .mail-form .form-label b { color: var(--ink-dark); }
  .mail-form .form-title { color: var(--ink-dark); }
  .mail-form .field { border-bottom-color: rgba(31,20,11,.18); }
  .mail-form .field:last-of-type { border-bottom-color: var(--ink-dark); }
  .mail-form .field-label { color: #5C4733; }
  .mail-form input,
  .mail-form textarea { color: var(--ink-dark); }
  .mail-form input::placeholder,
  .mail-form textarea::placeholder { color: #5C4733; }
  .mail-form .field:focus-within { border-bottom-color: var(--accent); }
  .mail-form .send-note { color: #5C4733; }
  .mail-form .send-note b { color: var(--ink-dark); }
  .mail-form .btn-primary { background: var(--accent); color: var(--surface); box-shadow: 0 8px 24px -6px rgba(255,107,58,.5); }
  .mail-form .btn-primary:hover { background: #FF8255; transform: translateY(-1px); }
  .mail-form .form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #5C4733;
    margin-bottom: var(--s-4);
    display: flex; justify-content: space-between;
    padding-bottom: var(--s-3);
    border-bottom: 1px solid rgba(31,20,11,.15);
  }
  .mail-form .form-label b { color: var(--ink-dark); font-weight: 500; }
  .mail-form .form-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink-dark);
    margin: 0 0 var(--s-5);
  }
  .mail-form .form-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
    font-size: 1.05em;
  }

  /* form groups give the form breathing room — fewer dense borders */
  .mail-form .form-group { margin-bottom: var(--s-4); }
  .mail-form .form-group:last-of-type { margin-bottom: var(--s-4); }
  .mail-form .form-group-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #5C4733;
    margin-bottom: 12px;
  }

  /* project-type chip group */
  .mail-form .chip-group {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .mail-form .chip {
    cursor: pointer;
    user-select: none;
  }
  .mail-form .chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .mail-form .chip span {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(31,20,11,.18);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-dark);
    background: transparent;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  }
  .mail-form .chip:hover span {
    border-color: var(--ink-dark);
  }
  .mail-form .chip input:checked + span {
    background: var(--ink-dark);
    color: var(--surface);
    border-color: var(--ink-dark);
  }
  .mail-form .chip input:focus-visible + span {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }

  /* native select styled like the inputs */
  .mail-form select {
    background: transparent;
    border: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--ink-dark);
    font-weight: 500;
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%231F140B' stroke-width='1.5'><path d='M1 1 L6 6 L11 1'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
  }
  .mail-form select:invalid { color: #5C4733; }

  /* bigger textarea for the message */
  .mail-form .big-field textarea { min-height: 96px; }
  .mail-form .field {
    display: flex; flex-direction: column;
    border-bottom: 1px solid rgba(31,20,11,.18);
    padding: 14px 0 12px;
  }
  .mail-form .field:last-of-type { border-bottom: 1px solid var(--ink-dark); margin-bottom: var(--s-4); }
  .mail-form .field-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #5C4733;
    margin-bottom: 6px;
  }
  .mail-form input,
  .mail-form textarea {
    background: transparent;
    border: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--ink-dark);
    font-weight: 500;
    width: 100%;
    resize: none;
    outline: none;
  }
  .mail-form input::placeholder,
  .mail-form textarea::placeholder {
    color: #5C4733;
    font-weight: 400;
    opacity: .8;
  }
  .mail-form input:focus,
  .mail-form textarea:focus { color: var(--ink-dark); }
  .mail-form .field:focus-within { border-bottom-color: var(--accent); }
  .mail-form .field-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4);
  }
  @media (max-width: 500px) { .mail-form .field-row { grid-template-columns: 1fr; gap: 0; } }
  .mail-form textarea { min-height: 60px; }
  /* >=44px mobile tap targets on the conversion form */
  .mail-form input, .mail-form select { min-height: 44px; padding-top: 11px; padding-bottom: 11px; }
  .mail-form .field { padding: 4px 0 6px; }
  .mail-form .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .mail-form .form-status { font-family: var(--font-mono); font-size: 12px; line-height: 1.4; margin: var(--s-3) 0 0; }
  .mail-form .form-status.is-ok { color: var(--ink-dark); font-weight: 600; }
  .mail-form .form-status.is-err { color: #C0431C; }
  .mail-form .send-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s-3);
  }
  .mail-form .send-note {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #5C4733;
  }
  .mail-form .send-note b { color: var(--ink-dark); font-weight: 500; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--ink-dark);
    color: var(--surface);
    padding: 16px 26px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    border: 0; cursor: pointer;
    transition: background 200ms ease, transform 200ms cubic-bezier(.22,1,.36,1);
  }
  .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
  .btn-primary .arrow { display: inline-block; transition: transform 240ms cubic-bezier(.22,1,.36,1); }
  .btn-primary:hover .arrow { transform: translate(4px, -4px); }

  /* ============ HERO ============ */
  .hero {
    padding: var(--s-6) 0 var(--s-7);
    position: relative;
  }
  /* ===== NEW HERO BAND: layered project mockups on warm dark backdrop ===== */
  .hero-band {
    width: 100%;
    aspect-ratio: 16/8.2;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--s-5);
    position: relative;
    background:
      radial-gradient(ellipse 80% 60% at 80% 30%, rgba(199,58,31,.25), transparent 60%),
      radial-gradient(ellipse 60% 40% at 20% 70%, rgba(248,246,240,.18), transparent 70%),
      linear-gradient(135deg, #2A1810 0%, #1F140B 50%, #110B06 100%);
    /* faint vertical lines like bencodes */
    background-image:
      linear-gradient(90deg, rgba(248,246,240,.05) 1px, transparent 1px),
      radial-gradient(ellipse 80% 60% at 80% 30%, rgba(199,58,31,.28), transparent 60%),
      radial-gradient(ellipse 60% 40% at 20% 70%, rgba(248,246,240,.18), transparent 70%),
      linear-gradient(135deg, #2A1810 0%, #1F140B 50%, #110B06 100%);
    background-size: 80px 100%, auto, auto, auto;
    box-shadow:
      inset 0 1px 0 rgba(248,246,240,.10),
      0 24px 60px -20px rgba(31,20,11,.45);
  }
  .hero-band .corner-label {
    position: absolute;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(248,246,240,.55); line-height: 1.55;
  }
  .hero-band .corner-label b { color: #F4D9A3; font-weight: 500; display: inline-block; }
  .hero-band .corner-label.tl { left: var(--s-4); top: var(--s-4); }
  .hero-band .corner-label.tr { right: var(--s-4); top: var(--s-4); text-align: right; }
  .hero-band .corner-label.bl { left: var(--s-4); bottom: var(--s-4); }
  .hero-band .corner-label.br { right: var(--s-4); bottom: var(--s-4); text-align: right; }
  .hero-band .corner-label .dot {
    display: inline-block;
    width: 6px; height: 6px; background: #6BA84F; border-radius: 999px;
    margin-right: 6px; box-shadow: 0 0 0 3px rgba(107,168,79,.18);
    vertical-align: 1px;
  }

  /* Big tagline overlaid on the hero band */
  .hero-band .tagline {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    text-align: center;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 5.5vw, 76px);
    line-height: .98;
    letter-spacing: -.025em;
    max-width: 18ch;
    padding: 0 var(--s-4);
    z-index: 3;
  }
  .hero-band .tagline em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #FFCFB0;
  }

  /* Stacked browser mockups behind the tagline — show the WORK */
  .stack {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  .browser {
    position: absolute;
    width: 32%;
    aspect-ratio: 16/10;
    background: var(--ink);
    border-radius: 8px;
    box-shadow:
      0 1px 0 rgba(255,255,255,.18) inset,
      0 30px 60px -10px rgba(0,0,0,.55),
      0 12px 24px -8px rgba(0,0,0,.4);
    overflow: hidden;
    padding: 18px 10px 10px;
  }
  .browser::before {
    content: ""; position: absolute; left: 10px; top: 6px;
    width: 6px; height: 6px; background: #E15A2A;
    border-radius: 999px;
    box-shadow: 10px 0 0 #E8B23A, 20px 0 0 #6BA84F;
    opacity: .7;
  }
  .browser .mini {
    background: var(--bg);
    border-radius: 4px;
    height: 100%;
    padding: 12px;
    overflow: hidden;
    position: relative;
  }
  .browser .mini .nav {
    display: flex; justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 8px; font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .browser .mini .nav .links { color: var(--muted); font-weight: 400; }
  .browser .mini .nav .links span { margin-left: 8px; }
  .browser .mini h6 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    line-height: .92;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: 0 0 8px;
  }
  .browser .mini h6 .acc { color: var(--accent); }
  .browser .mini .lead {
    font-size: 7px; color: var(--muted); line-height: 1.4; max-width: 22ch;
  }
  .browser .mini .chip-row { display: flex; gap: 4px; margin-top: 8px; }
  .browser .mini .chip {
    background: var(--ink); color: var(--bg);
    padding: 2px 7px; border-radius: 999px; font-size: 7px;
  }
  .browser .mini .chip.outline { background: transparent; color: var(--ink); border: 0.5px solid var(--ink); }
  .browser .mini .perf {
    position: absolute; right: 8px; bottom: 8px;
    font-family: var(--font-mono); font-size: 6px;
    color: var(--accent); background: var(--accent-soft);
    padding: 2px 5px; border-radius: 999px;
  }

  .browser.b1 { left: 6%;  top: 28%; transform: rotate(-6deg); }
  .browser.b2 { left: 34%; top: 14%; transform: rotate(2deg);  width: 36%; }
  .browser.b3 { right: 6%; top: 32%; transform: rotate(7deg); }
  /* dark variant for the middle one for contrast */
  .browser.b2 .mini { background: #1A130C; }
  .browser.b2 .mini .nav { color: #F4D9A3; }
  .browser.b2 .mini .nav .links { color: #5C4733; }
  .browser.b2 .mini h6 { color: #F4D9A3; }
  .browser.b2 .mini h6 .acc { color: #E89A4D; }
  .browser.b2 .mini .lead { color: #5C4733; }
  .browser.b2 .mini .chip { background: var(--ink); color: #1F140B; }
  .browser.b2 .mini .chip.outline { color: #F4D9A3; border-color: #F4D9A3; }
  .browser.b2 .mini .perf { background: rgba(199,58,31,.18); color: #E89A4D; }

  @media (max-width: 800px) {
    .hero-band { aspect-ratio: 4/5; border-radius: 6px; }
    .browser.b1 { left: 4%; top: 12%; transform: rotate(-4deg); width: 56%; }
    .browser.b2 { left: 28%; top: 36%; transform: rotate(2deg); width: 64%; }
    .browser.b3 { right: 4%; top: 64%; transform: rotate(5deg); width: 52%; }
    .hero-band .tagline { font-size: 28px; max-width: 14ch; }
    .hero-band .corner-label.bl, .hero-band .corner-label.br { display: none; }
  }

  .hero-name {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: var(--s-4);
    border-top: 1px solid var(--hairline);
    padding-top: var(--s-3);
  }
  .hero-name .first,
  .hero-name .last {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(64px, 18vw, 220px);
    line-height: .85;
    letter-spacing: -.04em;
    color: var(--ink);
  }
  .hero-name .role {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: right;
    padding-bottom: var(--s-3);
  }
  .hero-name .role b { color: var(--ink); font-weight: 500; display: block; }

  /* ============ BIG STATEMENT (Juan-style — "16 years making users click and scroll my designs") ============ */
  /* alternating bands: full-bleed bg painted BEHIND the section, zero layout change */
  .capabilities, .why-section, .tips-section, .final-statement { position: relative; isolation: isolate; }
  .capabilities::before, .why-section::before, .tips-section::before, .final-statement::before {
    content: ""; position: absolute; z-index: -1;
    top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 100vw;
    background: var(--bg-soft);
  }
  .statement {
    padding: var(--s-9) 0 var(--s-8);
    position: relative;
  }
  .statement .label {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--s-6);
  }
  .statement h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 7vw, 96px);
    line-height: 1.12;
    letter-spacing: -.025em;
    color: var(--ink);
    margin: 0;
    max-width: 16ch;
  }
  /* The inline pill — the signature Juan Mora detail */
  .pill {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    padding: 4px 28px 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -.02em;
    margin: 0 8px;
    vertical-align: baseline;
    line-height: 1;
    transform: translateY(-6px);
  }
  .pill::before {
    content: "";
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 999px;
    display: inline-block;
  }

  @media (max-width: 720px) {
    .statement { padding: var(--s-8) 0 var(--s-7); }
    .statement .label { margin-bottom: var(--s-6); }
    .statement h2 {
      max-width: none;
      line-height: 1.15;
    }
    .pill {
      padding: 4px 20px 6px;
      gap: 10px;
      margin: var(--s-2) 0;
      transform: none;
    }
    .pill::before { width: 8px; height: 8px; }
  }

  /* (decorative blobs removed — DESIGN.md anti-slop: no blobs) */

  /* ============ SERVICES — bento grid with SVG icons ============ */
  .services-intro {
    margin-top: var(--s-9);
    margin-bottom: var(--s-6);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  @media (min-width: 900px) {
    .services-intro { grid-template-columns: 1.4fr 1fr; gap: var(--s-7); align-items: end; }
  }
  .services-intro .label {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--s-4);
  }
  .services-intro h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 5.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -.025em;
    color: var(--ink);
    margin: 0;
    max-width: 20ch;
  }
  .services-intro h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -.005em;
  }
  .services-intro .lede {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 38ch;
    margin: 0;
    padding-bottom: var(--s-3);
  }
  .services-intro .lede b { color: var(--ink); font-weight: 500; }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  @media (min-width: 760px) {
    .services-grid {
      grid-template-columns: repeat(6, 1fr);
      gap: var(--s-3);
    }
    /* staggered bento: 4 / 2 — 2 / 4 — 3 / 3 — 6 (or similar) */
    .service-card.s1 { grid-column: span 4; }
    .service-card.s2 { grid-column: span 2; }
    .service-card.s3 { grid-column: span 2; }
    .service-card.s4 { grid-column: span 4; }
  }

  .service-card {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: var(--s-5);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    transition: border-color 200ms ease, background 200ms ease;
    overflow: hidden;
  }
  .service-card:hover {
    border-color: rgba(255,107,58,.4);
    background: #161E31;
  }
  /* the coral glow on hover */
  .service-card::before {
    content: ""; position: absolute;
    top: -40%; right: -20%; width: 60%; height: 80%;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,107,58,.10), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
  }
  .service-card:hover::before { opacity: 1; }
  .service-card > * { position: relative; z-index: 1; }

  .service-card .head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: var(--s-3);
  }
  .service-card .num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .service-card .icon {
    width: 56px; height: 56px;
    color: var(--accent);
    flex-shrink: 0;
  }
  .service-card .icon svg { width: 100%; height: 100%; display: block; }

  .service-card .title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.05;
    letter-spacing: -.022em;
    color: var(--ink);
    margin: 0;
    max-width: 18ch;
  }
  .service-card .title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
  }

  .service-card .sublabel {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2px;
  }

  .service-card .desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(248,246,240,.72);
    margin: 0;
    max-width: 50ch;
  }
  .service-card .desc b { color: var(--ink); font-weight: 500; }

  .service-card ul.deliverables {
    list-style: none;
    margin: var(--s-3) 0 0;
    padding: 0;
    display: flex; flex-direction: column;
    gap: 8px;
  }
  .service-card ul.deliverables li {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(248,246,240,.78);
    padding-left: 22px;
    position: relative;
  }
  .service-card ul.deliverables li::before {
    content: "→";
    position: absolute; left: 0; top: 0;
    color: var(--accent);
    font-family: var(--font-mono);
    font-weight: 500;
  }

  .service-card .foot {
    margin-top: auto;
    padding-top: var(--s-3);
    border-top: 1px solid var(--hairline);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap;
  }
  .service-card .foot b { color: var(--ink); font-weight: 500; }
  .service-card .foot .accent { color: var(--accent); }

  /* keep legacy CSS happy for any leftover usage */
  .service-row .desc {
    color: var(--ink);
    opacity: .85;
    font-size: 16px;
    line-height: 1.6;
    max-width: 50ch;
  }
  .service-row .meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: var(--s-4);
  }
  .service-row .meta b { color: var(--ink); font-weight: 500; }

  /* The "device screen" mockup — Juan-style */
  .device {
    aspect-ratio: 16/10;
    background: #1F140B;
    border-radius: 12px;
    padding: 18px 14px 14px;
    position: relative;
    box-shadow:
      0 1px 0 rgba(255,255,255,.06) inset,
      0 30px 60px -20px rgba(31,20,11,.4),
      0 10px 30px -10px rgba(31,20,11,.3);
  }
  .device::before {
    /* top bar with traffic lights */
    content: "";
    position: absolute; top: 8px; left: 12px;
    width: 8px; height: 8px;
    background: #E15A2A;
    border-radius: 999px;
    box-shadow: 14px 0 0 #E8B23A, 28px 0 0 #6BA84F;
    opacity: .7;
  }
  .device .screen {
    background: #FAE7BE;
    color: #1F140B;
    border-radius: 6px;
    height: 100%;
    padding: 18px 22px;
    overflow: hidden;
    position: relative;
  }
  .device .screen .nav-bar {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-sans); font-size: 11px; font-weight: 600;
    color: #1F140B;
    margin-bottom: 22px;
  }
  .device .screen .nav-bar .links {
    color: #5C4733; font-weight: 400; font-size: 10px;
  }
  .device .screen .nav-bar .links span { margin-left: 14px; }
  .device .screen .big {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(20px, 3vw, 36px);
    line-height: .95; letter-spacing: -.02em;
    color: #1F140B;
    margin: 0 0 12px;
  }
  .device .screen .big .accent { color: var(--accent); }
  .device .screen .sub {
    font-size: 11px; color: #5C4733; max-width: 32ch; line-height: 1.5;
  }
  .device .screen .row {
    display: flex; gap: 6px; margin-top: 14px;
  }
  .device .screen .row .chip {
    background: #1F140B; color: #FAE7BE;
    padding: 5px 12px; border-radius: 999px;
    font-size: 10px;
  }
  .device .screen .row .chip.outline {
    background: transparent; color: #1F140B;
    border: 1px solid #1F140B;
  }
  .device .screen .perf-strip {
    position: absolute; right: 14px; bottom: 14px;
    font-family: var(--font-mono); font-size: 9px;
    color: var(--accent); letter-spacing: .05em;
    background: rgba(255,107,58,.16);
    padding: 4px 8px; border-radius: 999px;
  }

  /* alt device colors */
  .device.bright .screen { background: #F8E8C5; }
  .device.bright .screen .perf-strip { background: #FFF; color: var(--accent); }

  .device.dark { background: #0F0A06; }
  .device.dark .screen { background: #1A130C; color: #F4D9A3; }
  .device.dark .screen .big { color: #F4D9A3; }
  .device.dark .screen .big .accent { color: #E89A4D; }
  .device.dark .screen .sub { color: #5C4733; }
  .device.dark .screen .row .chip { background: var(--ink); color: #1F140B; }
  .device.dark .screen .row .chip.outline { color: #F4D9A3; border-color: #F4D9A3; background: transparent; }
  .device.dark .screen .perf-strip { background: rgba(199,58,31,.18); color: #E89A4D; }

  /* ============ WHO AM I / MEET ANDREW — full-bleed WHITE section ============ */
  .who-section {
    /* full-bleed: break out of .wrap, fill the viewport */
    background: #FFFFFF;
    color: var(--ink-dark);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: var(--s-7);
    padding-top: var(--s-9);
    padding-bottom: var(--s-9);
    padding-left:  max(var(--s-4), calc(50vw - var(--maxw) / 2 + var(--s-4)));
    padding-right: max(var(--s-4), calc(50vw - var(--maxw) / 2 + var(--s-4)));
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-6);
    align-items: center;
  }
  @media (min-width: 720px) {
    .who-section {
      padding-left:  max(var(--s-5), calc(50vw - var(--maxw) / 2 + var(--s-5)));
      padding-right: max(var(--s-5), calc(50vw - var(--maxw) / 2 + var(--s-5)));
    }
  }
  @media (min-width: 900px) {
    .who-section { grid-template-columns: 5fr 6fr; gap: var(--s-8); }
  }
  @media (min-width: 1024px) {
    .who-section {
      padding-left:  max(var(--s-6), calc(50vw - var(--maxw) / 2 + var(--s-6)));
      padding-right: max(var(--s-6), calc(50vw - var(--maxw) / 2 + var(--s-6)));
    }
  }

  .who-photo {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--bg-soft);
    box-shadow: 0 32px 80px -24px rgba(8,12,24,.7);
  }
  /* warm coral glow behind the photo so it blends with the page */
  .who-photo::before {
    content: ""; position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse 50% 40% at 20% 30%, rgba(255,107,58,.20), transparent 70%);
    z-index: -1;
    filter: blur(40px);
    pointer-events: none;
  }
  .who-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  /* photo metadata tag, top-left */
  .who-photo .ph-tag {
    position: absolute;
    top: var(--s-3); left: var(--s-3);
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(248,246,240,.85);
    background: rgba(10,15,28,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(248,246,240,.15);
  }
  .who-photo .ph-tag b { color: var(--ink); font-weight: 500; }
  /* signature mark, bottom-right */
  .who-photo .ph-sig {
    position: absolute;
    bottom: var(--s-3); right: var(--s-3);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
    line-height: 1;
  }
  /* big stat overlay, top-right of photo */
  .who-photo .ph-stat {
    position: absolute;
    top: var(--s-3); right: var(--s-3);
    background: rgba(10,15,28,.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(248,246,240,.16);
    border-radius: 12px;
    padding: 14px 16px 12px;
    text-align: right;
    min-width: 140px;
  }
  .who-photo .ph-stat .num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 44px;
    line-height: .9;
    letter-spacing: -.04em;
    color: var(--accent);
  }
  .who-photo .ph-stat .num em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--ink);
    font-size: .9em;
  }
  .who-photo .ph-stat .lbl {
    display: block;
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(248,246,240,.78);
    line-height: 1.45;
  }
  /* event chip, bottom-left */
  .who-photo .ph-event {
    position: absolute;
    bottom: var(--s-3); left: var(--s-3);
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(10,15,28,.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(248,246,240,.16);
    border-radius: 999px;
    padding: 7px 14px 7px 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(248,246,240,.85);
  }
  .who-photo .ph-event b { color: var(--ink); font-weight: 500; }
  .who-photo .ph-event .dot {
    width: 6px; height: 6px;
    background: var(--accent); border-radius: 999px;
    box-shadow: 0 0 0 3px rgba(255,107,58,.22);
  }
  /* annotation arrow + label */
  .who-photo .ph-anno {
    position: absolute;
    top: 36%; left: -8px;
    width: 130px;
    color: var(--accent);
    pointer-events: none;
    display: none; /* shown on desktop only — too crowded on mobile */
  }
  @media (min-width: 1100px) { .who-photo .ph-anno { display: block; } }
  .who-photo .ph-anno svg {
    position: absolute;
    top: -8px; left: 90px;
    width: 80px; height: 60px;
    color: var(--accent);
  }
  .who-photo .ph-anno-label {
    position: absolute;
    top: 0; left: -10px;
    width: 130px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--ink);
    text-align: right;
    line-height: 1.3;
    background: rgba(10,15,28,.5);
    backdrop-filter: blur(6px);
    padding: 6px 10px;
    border-radius: 6px;
  }

  .who-content .label {
    font-family: var(--font-mono); font-size: 12px;
    letter-spacing: .12em; text-transform: uppercase;
    color: #5C4733;
    margin-bottom: var(--s-4);
  }
  .who-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.0;
    letter-spacing: -.03em;
    color: var(--ink-dark);
    margin: 0 0 var(--s-5);
    max-width: 14ch;
  }
  .who-content h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -.01em;
  }
  .who-content p {
    font-size: 18px;
    line-height: 1.65;
    color: #2E2418;
    margin: 0 0 var(--s-4);
    max-width: 52ch;
  }
  .who-content p b { color: var(--ink-dark); font-weight: 600; }
  .who-content p:last-of-type { margin-bottom: var(--s-6); }

  /* facts row — 2x2 grid of small data cells (on white) */
  .who-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(31,20,11,.14);
    border-bottom: 1px solid rgba(31,20,11,.14);
    margin: var(--s-5) 0 var(--s-6);
  }
  .who-fact {
    padding: var(--s-4) 0;
    border-right: 1px solid rgba(31,20,11,.14);
    padding-right: var(--s-4);
  }
  .who-fact:nth-child(2n) { border-right: 0; padding-left: var(--s-4); padding-right: 0; }
  .who-fact:nth-child(n+3) { border-top: 1px solid rgba(31,20,11,.14); }
  .who-fact .k {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #5C4733;
    display: block;
    margin-bottom: 8px;
  }
  .who-fact .v {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink-dark);
  }
  .who-fact .v .acc {
    color: var(--accent);
    font-family: var(--font-serif); font-style: italic; font-weight: 600;
    letter-spacing: -.01em;
  }

  .who-links {
    display: flex; gap: var(--s-4); flex-wrap: wrap; align-items: center;
  }
  .who-links a {
    font-family: var(--font-sans); font-size: 16px; font-weight: 500;
    color: var(--ink-dark);
    border-bottom: 2px solid var(--ink-dark);
    padding-bottom: 3px;
    transition: color 200ms, border-color 200ms;
  }
  .who-links a:hover { color: var(--accent); border-color: var(--accent); }
  .who-links a.muted {
    color: #5C4733; border-bottom-color: rgba(31,20,11,.20);
    font-family: var(--font-mono); font-size: 13px;
    letter-spacing: .04em; font-weight: 400;
  }
  .who-links a.muted:hover { color: var(--ink-dark); border-bottom-color: var(--ink-dark); }

  /* photo shadow now needs to read against white */
  .who-photo {
    box-shadow: 0 32px 80px -24px rgba(31,20,11,.30);
    border-color: rgba(31,20,11,.12);
  }
  .who-photo::before {
    /* warm peach glow on white instead of coral on dark */
    background: radial-gradient(ellipse 50% 40% at 20% 30%, rgba(255,107,58,.18), transparent 70%);
  }

  /* ============ GIANT WORK WORDMARK ============ */
  .work-mark {
    padding: var(--s-9) 0 var(--s-7);
    text-align: center;
  }
  .work-mark .label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--s-4);
  }
  .work-mark .big {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(120px, 28vw, 360px);
    line-height: .82;
    letter-spacing: -.06em;
    color: var(--ink);
    margin: 0;
  }
  .work-mark .big .accent {
    color: var(--accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -.02em;
  }
  .work-mark .sub {
    margin-top: var(--s-4);
    color: var(--muted); font-size: 14px;
    font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase;
  }

  /* ============ FINAL STATEMENT ============ */
  .final-statement {
    padding: var(--s-9) 0;
  }
  .final-statement h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(40px, 7vw, 96px);
    line-height: 1.02;
    letter-spacing: -.025em;
    margin: 0;
    color: var(--ink);
    max-width: 18ch;
  }
  /* keep "design" the same weight + size as the rest — only the color and italic carry the accent */
  .final-statement h2 .accent {
    color: var(--accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    /* slightly larger to compensate for serif's thinner stroke at the same point size */
    font-size: 1.08em;
    letter-spacing: -.01em;
  }
  .final-statement .source {
    margin-top: var(--s-5);
    font-family: var(--font-mono); font-size: 11px;
    color: var(--muted); letter-spacing: .12em; text-transform: uppercase;
  }

  /* ============ CTA / CONTACT — bright cream card on dark bg ============ */
  .cta {
    background: var(--surface);
    color: var(--ink-dark);
    border-radius: 24px;
    padding: var(--s-7) var(--s-5);
    margin-top: var(--s-7);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  @media (min-width: 720px) { .cta { padding: var(--s-8) var(--s-7); grid-template-columns: 1.4fr .6fr; gap: var(--s-7); align-items: end; } }
  .cta h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 5.5vw, 76px);
    line-height: .98;
    letter-spacing: -.025em;
    color: var(--ink-dark);
    margin: 0;
    max-width: 14ch;
  }
  .cta h2 .accent {
    color: var(--accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
  }
  .cta .meta {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--ink-dark); letter-spacing: .08em; text-transform: uppercase;
  }
  .cta .meta a {
    display: block; margin-top: 8px;
    font-family: var(--font-sans); font-size: 16px;
    font-weight: 500; letter-spacing: 0; text-transform: none;
    color: var(--ink-dark);
    border-bottom: 1.5px solid var(--ink-dark);
    padding-bottom: 2px;
    display: inline-block;
  }
  .cta .meta a:hover { color: var(--accent); border-color: var(--accent); }
  .cta .arrow-btn {
    width: 80px; height: 80px;
    border-radius: 999px;
    background: var(--ink-dark); color: var(--surface);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px;
    transition: transform 240ms cubic-bezier(.22,1,.36,1), background 200ms;
  }
  .cta .arrow-btn:hover { background: var(--accent); transform: translate(4px, -4px); }

  /* ============ FOOTER ============ */
  /* legacy generic footer rule killed — was forcing display:grid 1fr 1fr on .site-footer-v4 */


  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
  }

  /* ============ WHY ANDREW — bento (mixed sizes) ============ */
  .why-head-v2 {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: var(--s-3); margin-bottom: var(--s-7);
  }
  .pill-soft.pill-dark {
    background: var(--bg-soft);
    color: var(--ink);
    border-color: var(--hairline);
  }
  .why-head-v2 h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.04; letter-spacing: -.025em;
    color: var(--ink); margin: 0; max-width: 20ch;
  }
  .why-head-v2 h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }

  .why-bento {
    display: grid; gap: var(--s-3);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px)  { .why-bento { grid-template-columns: repeat(6, 1fr); } }
  .why-tile {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: var(--s-4);
    display: flex; flex-direction: column; gap: var(--s-2);
    min-height: 180px;
  }
  .why-tile.hi { background: var(--accent); color: #fff; border-color: var(--accent); }
  .why-tile .why-num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 40px; line-height: .9; letter-spacing: -.04em;
    color: var(--accent); margin-bottom: var(--s-2);
  }
  .why-tile.hi .why-num { color: rgba(255,255,255,.72); }
  .why-tile h3 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 19px; line-height: 1.15; letter-spacing: -.015em;
    color: var(--ink); margin: 0;
  }
  .why-tile.hi h3 { color: #fff; }
  .why-tile h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .why-tile.hi h3 em { color: #fff; }
  .why-tile p {
    font-size: 13.5px; line-height: 1.5; color: var(--muted); margin: 0;
  }
  .why-tile.hi p { color: #fff; }
  @media (min-width: 720px) {
    .why-tile.w-a { grid-column: span 4; }
    .why-tile.w-b { grid-column: span 2; }
    .why-tile.w-c { grid-column: span 2; }
    .why-tile.w-d { grid-column: span 4; }
    .why-tile.w-e { grid-column: span 3; }
    .why-tile.w-f { grid-column: span 3; }
    .why-tile.w-g { grid-column: span 2; }
    .why-tile.w-h { grid-column: span 4; }
  }

  /* ============ BLOG — bento ============ */
  .blog-head-v2 {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: var(--s-3); margin-bottom: var(--s-6);
  }
  .blog-head-v2 h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.04; letter-spacing: -.025em;
    color: var(--ink); margin: 0; max-width: 20ch;
  }
  .blog-head-v2 h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }

  .blog-bento {
    display: grid; gap: var(--s-3);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) { .blog-bento { grid-template-columns: repeat(6, 1fr); } }
  .blog-tile {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: var(--s-5);
    display: flex; flex-direction: column; gap: var(--s-2);
    color: var(--ink); text-decoration: none;
    transition: border-color 200ms, background 200ms, transform 200ms;
    min-height: 200px;
  }
  .blog-tile:hover { border-color: rgba(255,107,58,.4); background: #161E31; transform: translateY(-3px); }
  .blog-tile.feature {
    background: linear-gradient(160deg, var(--accent) 0%, #D04C2A 100%);
    color: #fff; border-color: var(--accent);
  }
  .blog-tile.feature:hover { background: linear-gradient(160deg, #FF8255 0%, #D04C2A 100%); border-color: #FF8255; }
  .blog-tile .meta {
    display: flex; justify-content: space-between; gap: var(--s-3);
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted);
  }
  .blog-tile.feature .meta { color: rgba(255,255,255,.7); }
  .blog-tile .meta .cat { color: var(--accent); }
  .blog-tile.feature .meta .cat { color: #fff; }
  .blog-tile h4, .blog-tile h3 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 19px; line-height: 1.2; letter-spacing: -.015em;
    color: var(--ink); margin: 0;
  }
  .blog-tile.feature h4, .blog-tile.feature h3 { color: #fff; }
  .blog-tile.b-big h4, .blog-tile.b-big h3 { font-size: 32px; line-height: 1.05; }
  .blog-tile h4 em, .blog-tile h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .blog-tile.feature h4 em, .blog-tile.feature h3 em { color: #fff; font-style: italic; }
  .blog-tile p {
    font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0;
  }
  .blog-tile.feature p { color: #fff; }
  .blog-tile .read-more {
    margin-top: auto;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent);
  }
  .blog-tile.feature .read-more { color: #fff; }
  @media (min-width: 720px) {
    .blog-tile.b-big   { grid-column: span 4; grid-row: span 2; }
    .blog-tile.b-tall  { grid-column: span 2; grid-row: span 2; }
    .blog-tile.b-sm    { grid-column: span 2; }
    .blog-tile.b-wide  { grid-column: span 4; }
  }

  /* ============ TIPS — bento ============ */
  .tips-head-v2 {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: var(--s-3); margin-bottom: var(--s-7);
  }
  .tips-head-v2 h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.04; letter-spacing: -.025em;
    color: var(--ink); margin: 0; max-width: 18ch;
  }
  .tips-head-v2 h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }

  .tips-bento {
    display: grid; gap: var(--s-3);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) { .tips-bento { grid-template-columns: repeat(6, 1fr); } }
  .tip-tile {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: var(--s-4);
    display: flex; flex-direction: column; gap: var(--s-2);
    min-height: 140px;
  }
  .tip-tile.filled { background: var(--accent); color: #fff; border-color: var(--accent); }
  .tip-tile .n {
    font-family: var(--font-display); font-weight: 800;
    font-size: 22px; line-height: 1; letter-spacing: -.02em;
    color: var(--accent);
  }
  .tip-tile.filled .n { color: rgba(255,255,255,.72); }
  .tip-tile h3 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 17px; line-height: 1.2; letter-spacing: -.015em;
    color: var(--ink); margin: 0;
  }
  .tip-tile.filled h3 { color: #fff; }
  .tip-tile.t-big h3 { font-size: 22px; }
  .tip-tile h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .tip-tile.filled h3 em { color: #fff; }
  .tip-tile p {
    font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0;
  }
  .tip-tile.filled p { color: #fff; }
  @media (min-width: 720px) {
    .tip-tile.t-big { grid-column: span 4; grid-row: span 2; min-height: 200px; }
    .tip-tile.t-sm  { grid-column: span 2; }
    .tip-tile.t-md  { grid-column: span 3; }
  }

  /* ============ REVIEWS ARROW NAV + clipping fix ============ */
  .reviews-rail {
    /* fix right-edge clipping by giving the rail outer padding */
    scroll-padding-inline: var(--s-3);
    padding-inline: 4px; /* small breathing space */
  }
  .reviews-rail::-webkit-scrollbar { display: none; }
  .reviews-rail { scrollbar-width: none; -ms-overflow-style: none; }
  .reviews-nav {
    display: flex; gap: 10px; margin-top: var(--s-4);
    justify-content: flex-end;
  }
  .reviews-nav button {
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--ink-dark); color: #fff;
    border: 0; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
    transition: background 200ms, transform 200ms;
  }
  .reviews-nav button:hover { background: var(--accent); }
  .reviews-nav button:active { transform: scale(.96); }
  .reviews-nav button:disabled { opacity: .35; cursor: not-allowed; background: #d6cdb9; }


  /* ============ FLOATING BOOK A CALL — desktop bottom-right, mobile centered + bigger ============ */
  .book-call {
    position: fixed;
    right: 20px; bottom: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(31,20,11,.10);
    border-radius: 999px;
    padding: 10px 32px 10px 10px;
    display: inline-flex; align-items: center; gap: 14px;
    text-decoration: none;
    color: var(--ink-dark);
    box-shadow: 0 18px 46px -12px rgba(8,12,24,.5), 0 0 0 2px rgba(255,107,58,.45);
    animation: bookcall-pulse 2.8s ease-in-out infinite;
    z-index: 1000;
    /* ALWAYS visible — never hide on scroll */
    visibility: visible !important;
    opacity: 1 !important;
    transform: none;
    transition: transform 220ms cubic-bezier(.22,1,.36,1), box-shadow 200ms;
  }
  .book-call:hover { transform: translateY(-3px); box-shadow: 0 24px 56px -12px rgba(8,12,24,.55); }
  .book-call .av {
    width: 56px; height: 56px;
    border-radius: 999px;
    object-fit: cover;
    background: linear-gradient(135deg, #FF9B6A 0%, #FF6B3A 100%);
    color: #fff;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(255,107,58,.3);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    letter-spacing: -.02em;
  }
  /* img variant of .av */
  img.book-call-photo, .book-call img.av {
    background: #EDE6D5;
  }
  .book-call .lbl {
    display: flex; flex-direction: column;
    line-height: 1.2;
    white-space: nowrap;
  }
  .book-call .lbl .main {
    font-family: var(--font-display); font-weight: 700;
    font-size: 17px; color: var(--ink-dark);
    letter-spacing: -.015em;
    white-space: nowrap;
  }
  .book-call .lbl .sub {
    font-family: var(--font-sans); font-size: 12.5px;
    color: #5C4733;
    white-space: nowrap;
  }
  .book-call .dots {
    margin-left: 4px;
    color: #5C4733;
    font-family: var(--font-mono);
    font-size: 18px;
    line-height: 1;
    letter-spacing: -2px;
  }
  @keyframes bookcall-pulse {
    0%, 100% { box-shadow: 0 18px 46px -12px rgba(8,12,24,.5), 0 0 0 2px rgba(255,107,58,.5); }
    50%      { box-shadow: 0 18px 46px -12px rgba(8,12,24,.5), 0 0 0 8px rgba(255,107,58,.1); }
  }

  /* MOBILE — centered, bigger, always visible, text never wraps */
  @media (max-width: 720px) {
    .book-call {
      right: auto !important;
      left: 50% !important;
      bottom: max(14px, env(safe-area-inset-bottom, 14px)) !important;
      transform: translateX(-50%) !important;
      padding: 6px 20px 6px 6px;
      gap: 12px;
      box-shadow: 0 16px 40px -10px rgba(8,12,24,.55), 0 0 0 1px rgba(255,107,58,.18);
      max-width: calc(100vw - 24px);
      will-change: transform;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    .book-call:hover,
    .book-call:active {
      transform: translateX(-50%) translateY(-3px) !important;
    }
    .book-call .av { width: 44px; height: 44px; font-size: 15px; }
    .book-call .lbl .main { font-size: 14px; }
    .book-call .lbl .sub { font-size: 11px; }
    .book-call .dots { font-size: 16px; margin-left: 0; }
  }

  /* leave room at the bottom of every page for the floating widget so it never covers content */
  @media (max-width: 720px) {
    body { padding-bottom: 88px; }
  }

  /* ============ DEV PROCESS MOCK v3 — single IDE window, split ============ */
  .proc-mock-2 { background: transparent; box-shadow: none; overflow: visible; padding: 0; }
  .ide {
    position: absolute; inset: 0;
    background: #0F1626;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 50px -16px rgba(8,12,24,.55);
    border: 1px solid rgba(255,255,255,.06);
    display: flex; flex-direction: column;
  }
  .ide-bar {
    height: 24px;
    background: #050911;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex; align-items: center; gap: 8px; padding: 0 10px;
  }
  .ide-dots {
    width: 6px; height: 6px; background: #FF6B3A; border-radius: 999px;
    box-shadow: 9px 0 0 #FFB23A, 18px 0 0 #6BA84F;
  }
  .ide-tab {
    margin-left: 22px;
    font-family: var(--font-mono); font-size: 9px;
    color: #F8F6F0;
    background: #0F1626;
    padding: 4px 12px; border-radius: 4px 4px 0 0;
    border-top: 1.5px solid var(--accent);
  }
  .ide-body {
    flex: 1; display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .ide-code {
    padding: 12px 14px;
    background: #0F1626;
    font-family: var(--font-mono); font-size: 9.5px; line-height: 1.7;
    color: #F8F6F0;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,.06);
  }
  .ide-code .cl { display: block; white-space: nowrap; }
  .ide-code .cl.indent { padding-left: 14px; }
  .ide-code .kw { color: #FF8A65; font-style: normal; }
  .ide-code .at { color: #94D7C7; font-style: normal; }
  .ide-code .str { color: #E8C46A; font-style: normal; }
  .ide-code .em { color: var(--accent); }
  .ide-preview {
    background: var(--bg-soft);
    padding: 16px 14px 14px;
    position: relative;
    display: flex; flex-direction: column; gap: 8px;
    justify-content: center;
  }
  .ipv-h {
    height: 14px; width: 80%;
    background: var(--ink);
    border-radius: 2px;
  }
  .ipv-l {
    height: 6px; width: 55%;
    background: rgba(248,246,240,.4);
    border-radius: 1px;
  }
  .ipv-btn {
    display: inline-block; align-self: flex-start;
    margin-top: 8px;
    --accent: var(--accent-ink);
    background: var(--accent); color: #fff;
    font-family: var(--font-sans); font-size: 10px; font-weight: 600;
    padding: 5px 12px; border-radius: 999px;
  }
  .ipv-stamp {
    position: absolute; right: 10px; bottom: 10px;
    font-family: var(--font-mono); font-size: 9px;
    color: var(--ink-dark);
    background: rgba(255,107,58,.16);
    padding: 4px 9px; border-radius: 999px;
    border: 1px solid rgba(255,107,58,.30);
  }
  .dev-design {
    position: absolute; left: 0; top: 0;
    width: 65%; aspect-ratio: 4/3;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(31,20,11,.10);
    box-shadow: 0 18px 32px -14px rgba(31,20,11,.22);
    padding: 22px 14px 12px;
    z-index: 1;
  }
  .dev-fr-tag {
    position: absolute; top: -10px; left: 12px;
    font-family: var(--font-mono); font-size: 9px;
    letter-spacing: .14em; text-transform: uppercase;
    color: #fff;
    background: #0F1626;
    padding: 4px 10px; border-radius: 999px;
  }
  .dev-design::before {
    content: ""; position: absolute; top: 8px; left: 10px;
    width: 6px; height: 6px; background: #FF6B3A; border-radius: 999px;
    box-shadow: 9px 0 0 #FFB23A, 18px 0 0 #6BA84F;
  }
  .dev-fr-block {
    background: #1F140B;
    border-radius: 2px;
    margin-bottom: 6px;
  }
  .dev-fr-block.lg { width: 80%; height: 12px; }
  .dev-fr-block.med { width: 60%; height: 5px; background: rgba(31,20,11,.3); }
  .dev-fr-block.sm  { width: 75%; height: 5px; background: rgba(31,20,11,.3); }
  .dev-fr-btn {
    display: inline-block;
    margin-top: 8px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-sans); font-size: 9px; font-weight: 600;
    padding: 5px 10px; border-radius: 999px;
    /* selection corners */
    box-shadow:
      -5px -5px 0 -3.5px var(--accent),
      5px -5px 0 -3.5px var(--accent),
      -5px 5px 0 -3.5px var(--accent),
      5px 5px 0 -3.5px var(--accent),
      -5px -5px 0 -4.5px #fff,
      5px -5px 0 -4.5px #fff,
      -5px 5px 0 -4.5px #fff,
      5px 5px 0 -4.5px #fff;
  }
  .dev-fr-cursor {
    position: absolute;
    right: 14%; top: 60%;
    width: 14px; height: 14px;
    border: 6px solid transparent;
    border-top-color: #FFFFFF;
    border-left-color: #FFFFFF;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
  }
  .dev-fr-cursor::after {
    content: "design";
    position: absolute; left: 12px; top: 4px;
    background: var(--accent); color: #fff;
    font-family: var(--font-mono); font-size: 9px; font-weight: 500;
    padding: 3px 8px; border-radius: 4px;
    white-space: nowrap;
  }

  .dev-live {
    position: absolute; right: 0; bottom: 0;
    width: 60%; aspect-ratio: 4/3;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #0F1626;
    box-shadow: 0 24px 50px -16px rgba(8,12,24,.6);
    overflow: hidden;
    z-index: 2;
  }
  .dev-live-bar {
    height: 22px;
    background: #0F1626;
    padding: 0 10px;
    display: flex; align-items: center; gap: 8px;
  }
  .dev-live-dots {
    width: 6px; height: 6px; background: #FF6B3A; border-radius: 999px;
    box-shadow: 9px 0 0 #FFB23A, 18px 0 0 #6BA84F;
    flex-shrink: 0;
  }
  .dev-live-url {
    margin-left: auto; margin-right: auto;
    background: rgba(255,255,255,.15);
    color: #F8F6F0;
    font-family: var(--font-mono); font-size: 9px;
    padding: 2px 12px; border-radius: 999px;
  }
  .dev-live-content {
    padding: 14px 14px 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 30%, rgba(255,107,58,.18), transparent 70%),
      #0F1626;
    height: calc(100% - 22px);
    position: relative;
  }
  .dev-live-h {
    height: 12px;
    background: #F8F6F0;
    border-radius: 2px;
    width: 70%;
    margin-bottom: 6px;
  }
  .dev-live-l {
    height: 4px;
    background: rgba(248,246,240,.4);
    border-radius: 1px;
    width: 100%;
    margin-bottom: 4px;
  }
  .dev-live-l.short { width: 65%; }
  .dev-live-pill {
    position: absolute; right: 10px; bottom: 10px;
    font-family: var(--font-mono); font-size: 9px;
    letter-spacing: .08em;
    color: #fff;
    background: var(--accent);
    padding: 4px 9px; border-radius: 999px;
    font-weight: 500;
    box-shadow: 0 6px 14px -4px rgba(255,107,58,.6);
  }

  .dev-arrow {
    position: absolute;
    left: 56%; top: 38%;
    transform: translateY(-50%);
    font-family: var(--font-display); font-weight: 800;
    font-size: 36px;
    color: var(--accent);
    z-index: 3;
    text-shadow: 0 2px 8px rgba(255,107,58,.3);
  }

  /* ============ REVIEWS 2-ROW INFINITE MARQUEE — stable, no hover-pause ============ */
  .marquee {
    overflow: hidden;
    margin: 0 calc(50% - 50vw);
    padding-block: var(--s-3);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    contain: layout paint;
  }
  .marquee-track {
    display: flex;
    width: max-content;
    /* GPU-accelerate the animation so it never stutters */
    will-change: transform;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    animation: marquee-scroll 70s linear infinite;
    animation-fill-mode: both;
  }
  /* removed hover-pause — was causing the visible "stuck" feel */
  .marquee-right .marquee-track {
    animation-direction: reverse;
    animation-duration: 85s;
  }
  .marquee .review-card {
    width: 340px;
    flex-shrink: 0;
    margin-right: var(--s-3);
    scroll-snap-align: none;
  }
  @media (max-width: 720px) {
    .marquee .review-card { width: min(280px, calc(100vw - 60px)); }
  }
  @keyframes marquee-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
  }

  /* ============ WHY ANDREW v3 — with icons + variety ============ */
  .why-tile { position: relative; overflow: hidden; }
  .why-tile .why-ic {
    width: 32px; height: 32px;
    color: var(--accent);
    margin-bottom: var(--s-2);
  }
  .why-tile.hi .why-ic { color: #fff; }
  .why-tile .why-ic svg { width: 100%; height: 100%; }
  .why-tile .why-stat {
    font-family: var(--font-display); font-weight: 800;
    font-size: 56px; line-height: .95; letter-spacing: -.04em;
    color: var(--accent);
    margin: 0 0 4px;
  }
  .why-tile.hi .why-stat { color: #fff; }
  .why-tile .why-stat em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
  .why-tile.outline {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--ink);
  }
  .why-tile.outline .why-num { color: var(--accent); }
  .why-tile .corner-flag {
    position: absolute;
    top: 12px; right: 12px;
    font-family: var(--font-mono); font-size: 9px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent);
    background: rgba(255,107,58,.10);
    padding: 4px 8px; border-radius: 999px;
    border: 1px solid rgba(255,107,58,.30);
  }
  .why-tile.hi .corner-flag {
    background: rgba(255,255,255,.18);
    color: #fff;
    border-color: rgba(255,255,255,.3);
  }
  .why-tile .why-glow {
    position: absolute;
    inset: -30% -30% auto auto;
    width: 60%; height: 60%;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,107,58,.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .why-tile > * { position: relative; z-index: 1; }

  /* ============ DREAM / BLOG / TIPS — add per-tile visuals ============ */
  .tile-visual {
    margin-top: auto;
    height: 64px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: rgba(31,20,11,.06);
  }
  .dream-tile.feature .tile-visual { background: rgba(255,255,255,.06); }
  .tv-book {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, var(--accent) 0%, #D04C2A 100%);
  }
  .tv-book::before {
    content: ""; position: absolute;
    left: 16px; top: 14px; right: 16px; bottom: 14px;
    background: #fff;
    border-radius: 3px;
    box-shadow:
      4px 4px 0 -1px rgba(0,0,0,.15),
      -3px -3px 0 -1px rgba(255,255,255,.4);
  }
  .tv-play {
    position: absolute; inset: 0;
    background: #0F1626;
  }
  .tv-play::after {
    content: "▶";
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    color: var(--accent); font-size: 22px;
  }
  .tv-stack {
    position: absolute; inset: 0;
    background: #1F140B;
    padding: 10px;
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 10px;
    color: #F8F6F0;
  }
  .tv-stack span {
    background: rgba(255,255,255,.08);
    padding: 3px 8px; border-radius: 4px;
    border: 1px solid rgba(255,255,255,.15);
  }
  .tv-stack .a { color: var(--accent); border-color: rgba(255,107,58,.4); background: rgba(255,107,58,.12); }
  .tv-csv {
    position: absolute; inset: 0;
    background: #fff;
    display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr);
  }
  .tv-csv > span {
    border: 1px solid rgba(31,20,11,.10);
    font-family: var(--font-mono); font-size: 9px;
    color: #5C4733;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .tv-csv > span.hl { background: rgba(255,107,58,.15); color: var(--accent); font-weight: 600; }
  .tv-uses {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #EDE6D5 0%, #D5C8A8 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 13px;
    color: var(--ink-dark);
    letter-spacing: .15em;
  }
  .tv-news {
    position: absolute; inset: 0;
    background: #FFF;
    padding: 10px;
  }
  .tv-news::before {
    content: "";
    position: absolute; inset: 14px;
    background:
      linear-gradient(transparent 0, transparent 8px, rgba(31,20,11,.20) 8px, rgba(31,20,11,.20) 9px, transparent 9px),
      linear-gradient(transparent 0, transparent 16px, rgba(31,20,11,.15) 16px, rgba(31,20,11,.15) 17px, transparent 17px),
      linear-gradient(transparent 0, transparent 24px, rgba(31,20,11,.15) 24px, rgba(31,20,11,.15) 25px, transparent 25px);
  }
  .tv-news::after {
    content: "✉";
    position: absolute; bottom: 8px; right: 12px;
    color: var(--accent); font-size: 22px;
  }
  .tv-color {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .tv-color > span { display: block; }

  /* Blog tile visuals */
  .blog-tile { position: relative; overflow: hidden; }
  .blog-tile .b-corner {
    position: absolute; top: 12px; right: 12px;
    width: 28px; height: 28px;
    color: var(--accent);
    opacity: .6;
  }
  .blog-tile .b-corner svg { width: 100%; height: 100%; }
  .blog-tile.feature .b-corner { color: rgba(255,255,255,.85); opacity: 1; }
  .blog-tile .b-mini-mock {
    margin-top: auto;
    height: 60px;
    border-radius: 6px;
    background: rgba(248,246,240,.05);
    border: 1px solid var(--hairline);
    padding: 10px;
    display: flex; flex-direction: column; gap: 4px;
  }
  .blog-tile .b-mini-mock .ml {
    height: 4px; background: rgba(248,246,240,.20); border-radius: 1px;
  }
  .blog-tile .b-mini-mock .ml.a { background: var(--accent); width: 40%; }
  .blog-tile .b-mini-mock .ml.b { width: 80%; }
  .blog-tile .b-mini-mock .ml.c { width: 55%; }
  .blog-tile.feature .b-mini-mock { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.25); }
  .blog-tile.feature .b-mini-mock .ml { background: rgba(255,255,255,.30); }
  .blog-tile.feature .b-mini-mock .ml.a { background: #fff; }

  /* Tips tile visuals */
  .tip-tile { position: relative; overflow: hidden; }
  .tip-tile .t-ic {
    width: 28px; height: 28px;
    color: var(--accent);
    margin-bottom: var(--s-2);
  }
  .tip-tile.filled .t-ic { color: #fff; }
  .tip-tile .t-ic svg { width: 100%; height: 100%; }
  .tip-tile.outline {
    background: transparent;
    border: 1.5px solid var(--accent);
  }

  /* ============ DREAM-SITE / TOOLKIT v3 — bigger tiles, more space ============ */
  .dream-grid-v2 {
    display: grid;
    gap: var(--s-5);
    grid-template-columns: 1fr;
  }
  @media (min-width: 900px) {
    .dream-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  }
  .d-tile {
    background: #F8F5EE;
    border-radius: 18px;
    border: 1.5px solid var(--ink-dark);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    color: var(--ink-dark);
    text-decoration: none;
    overflow: hidden;
    box-shadow: 6px 6px 0 0 var(--ink-dark);
    transition: transform 240ms cubic-bezier(.22,1,.36,1), box-shadow 240ms;
    min-height: 360px;
  }
  .d-tile:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 0 var(--ink-dark); }
  @media (min-width: 900px) {
    .d-tile.d-feature, .d-tile.d-wide { grid-column: span 2; grid-template-columns: 1.05fr 1fr; min-height: 380px; }
    .d-tile.d-half { min-height: 380px; grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  }
  .d-tile .d-text {
    padding: var(--s-6);
    display: flex; flex-direction: column; gap: var(--s-3);
    justify-content: center;
  }
  .d-tile .d-lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    color: #5C4733;
  }
  .d-tile h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink-dark); margin: 0;
    max-width: 18ch;
  }
  .d-tile h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--accent); letter-spacing: -.01em; }
  .d-tile p {
    font-size: 15px; line-height: 1.55;
    color: #2E2418; margin: 0;
    max-width: 38ch;
  }
  .d-tile .d-cta {
    margin-top: var(--s-3);
    font-family: var(--font-mono); font-size: 12px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent); font-weight: 500;
  }

  /* feature variant: dark text panel on warm bg */
  .d-tile.d-feature { background: linear-gradient(135deg, #F8F5EE 0%, #EDE6D5 100%); }

  /* visuals */
  .d-viz {
    position: relative;
    min-height: 240px;
    background: var(--ink-dark);
    overflow: hidden;
    border-left: 1.5px solid var(--ink-dark);
  }
  .d-tile.d-half .d-viz { min-height: 180px; border-left: 0; border-top: 1.5px solid var(--ink-dark); }
  @media (min-width: 900px) {
    .d-tile.d-feature .d-viz,
    .d-tile.d-wide .d-viz { border-left: 1.5px solid var(--ink-dark); border-top: 0; }
  }

  /* book visual */
  .d-viz-book {
    background: linear-gradient(160deg, var(--accent) 0%, #C73A1F 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .d-book {
    position: absolute;
    width: 38%;
    aspect-ratio: 3/4;
    background: #F8F5EE;
    border: 1.5px solid var(--ink-dark);
    border-radius: 4px;
    box-shadow: 4px 4px 0 0 var(--ink-dark);
  }
  .d-book.b1 { left: 22%; top: 28%; transform: rotate(-6deg); z-index: 1; }
  .d-book.b2 { left: 32%; top: 22%; transform: rotate(0deg); z-index: 2; background: #FFFFFF; }
  .d-book.b3 { left: 42%; top: 30%; transform: rotate(6deg); z-index: 1; background: #0A0F1C; }
  .d-tag {
    position: absolute; right: 16px; top: 16px;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: #fff; background: rgba(255,255,255,.18);
    backdrop-filter: blur(4px);
    padding: 5px 12px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.3);
    z-index: 3;
  }

  /* play visual */
  .d-viz-play {
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,107,58,.25), transparent 70%), #0A0F1C;
    display: flex; align-items: center; justify-content: center;
  }
  .d-play-btn {
    width: 80px; height: 80px;
    background: var(--accent); color: #fff;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 16px 40px -10px rgba(255,107,58,.6);
  }
  .d-timestamp {
    position: absolute; right: 14px; bottom: 14px;
    font-family: var(--font-mono); font-size: 10px;
    color: #F8F6F0; background: rgba(255,255,255,.10);
    padding: 4px 10px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15);
  }

  /* budget visual */
  .d-viz-budget {
    background: linear-gradient(135deg, #F8F5EE 0%, #EDE6D5 100%);
    padding: var(--s-4);
    display: flex; align-items: center; justify-content: center;
  }
  .d-viz-budget table {
    width: 80%; border-collapse: collapse;
    font-family: var(--font-mono); font-size: 13px;
  }
  .d-viz-budget td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(31,20,11,.15);
    color: var(--ink-dark);
    letter-spacing: .04em;
  }
  .d-viz-budget td:first-child { color: #5C4733; text-transform: uppercase; font-size: 11px; letter-spacing: .12em; }
  .d-viz-budget td:last-child { text-align: right; font-weight: 600; }
  .d-viz-budget td.hl { color: var(--accent); font-weight: 700; }

  /* uses visual */
  .d-viz-uses {
    background: linear-gradient(135deg, #EDE6D5 0%, #D5C8A8 100%);
    padding: var(--s-4);
    display: flex; align-items: center; justify-content: center;
    gap: 8px; flex-wrap: wrap;
  }
  .d-pill {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .04em;
    color: var(--ink-dark);
    background: #fff;
    border: 1.5px solid var(--ink-dark);
    padding: 6px 12px; border-radius: 999px;
  }
  .d-pill.on { background: var(--accent); color: #fff; border-color: var(--accent); }
  .d-pill.off {
    background: transparent;
    color: #5C4733;
    border-style: dashed;
    text-decoration: line-through;
    text-decoration-color: rgba(31,20,11,.3);
  }

  /* newsletter visual */
  .d-viz-news {
    background: #F8F5EE;
    padding: var(--s-4) var(--s-5);
    display: flex; flex-direction: column; justify-content: center; gap: 8px;
    position: relative;
  }
  .d-news-line {
    height: 4px; background: rgba(31,20,11,.20); border-radius: 1px;
    width: 100%;
  }
  .d-news-line.short { width: 65%; }
  .d-stamp {
    position: absolute; right: 16px; bottom: 16px;
    width: 40px; height: 40px;
    background: var(--accent); color: #fff;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 4px 4px 0 0 var(--ink-dark);
  }

  /* colophon color visual */
  .d-viz-color {
    background: #F8F5EE;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .d-viz-color > span {
    position: relative;
    display: block;
  }
  .d-viz-color > span i {
    position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .12em; text-transform: uppercase;
    color: #fff;
    font-style: normal;
  }

  /* ============ FOOTER v5 — clean, contained, predictable ============ */
  .site-footer-v4 {
    position: relative;
    margin-top: var(--s-9);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    box-sizing: border-box;
    background: var(--ink-dark);
    color: var(--ink);
    padding-top: var(--s-9);
    padding-bottom: var(--s-5);
    padding-left:  max(var(--s-4), calc(50vw - var(--maxw) / 2 + var(--s-4)));
    padding-right: max(var(--s-4), calc(50vw - var(--maxw) / 2 + var(--s-4)));
    overflow: hidden;
  }
  @media (min-width: 720px) { .site-footer-v4 {
    padding-left:  max(var(--s-5), calc(50vw - var(--maxw) / 2 + var(--s-5)));
    padding-right: max(var(--s-5), calc(50vw - var(--maxw) / 2 + var(--s-5)));
  } }
  @media (min-width: 1024px) { .site-footer-v4 {
    padding-left:  max(var(--s-6), calc(50vw - var(--maxw) / 2 + var(--s-6)));
    padding-right: max(var(--s-6), calc(50vw - var(--maxw) / 2 + var(--s-6)));
  } }
  .site-footer-v4::before {
    content: ""; position: absolute;
    top: -30%; right: -10%; width: 60%; height: 80%;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,107,58,.18), transparent 70%);
    pointer-events: none; z-index: 0;
  }
  .site-footer-v4 > * { position: relative; z-index: 1; }

  /* ROW 1 — single full-width tagline, NOT clipped to narrow column */
  .ft4-hero {
    display: block;
    padding-bottom: var(--s-7);
    margin-bottom: var(--s-7);
    border-bottom: 1px solid var(--hairline);
  }
  .ft4-tagline {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(40px, 5.6vw, 80px);
    line-height: 1.02; letter-spacing: -.03em;
    color: var(--ink); margin: 0 0 var(--s-5);
    width: 100%;
    /* one line on wide viewports, gracefully wraps on narrow */
  }
  .ft4-tagline em { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--accent); letter-spacing: -.015em; }

  /* CTA bar inside ft4-hero */
  .ft4-cta-bar {
    display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-4);
    align-items: center;
    margin-top: var(--s-3);
  }
  .ft4-cta-bar .availability {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink); background: rgba(248,246,240,.06);
    border: 1px solid var(--hairline);
    padding: 7px 14px; border-radius: 999px;
  }
  .ft4-cta-bar .availability::before {
    content: ""; width: 6px; height: 6px;
    background: var(--accent); border-radius: 999px;
    box-shadow: 0 0 0 3px rgba(255,107,58,.22);
  }
  .ft4-cta-bar a.email {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: -.015em; color: var(--ink);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 4px;
  }
  .ft4-cta-bar a.email:hover { color: var(--accent); }

  /* ROW 2 — 4-col nav grid, explicit minmax */
  .ft4-grid {
    display: grid; gap: var(--s-5);
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: var(--s-6);
    margin-bottom: var(--s-6);
    border-bottom: 1px solid var(--hairline);
  }
  @media (min-width: 720px) {
    .ft4-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-5); }
  }
  .ft4-col h5, .ft4-col h3 {
    font-family: var(--font-mono); font-size: 10px; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
    margin: 0 0 var(--s-3);
  }
  .ft4-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .ft4-col ul a {
    font-family: var(--font-sans); font-size: 15px;
    color: var(--ink);
    white-space: nowrap;     /* prevent multi-line link wrapping in tight columns */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ft4-col ul a:hover { color: var(--accent); }

  /* ROW 3 — wordmark, constrained so it never wraps. line-height + padding-bottom give descenders room (g, y) */
  .ft4-wordmark {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(56px, 9.5vw, 132px);
    line-height: 1.06;
    letter-spacing: -.045em;
    color: var(--ink);
    margin: 0 0 var(--s-6);
    padding-bottom: .12em;
    text-align: left;
    white-space: nowrap;
    overflow: visible;
  }
  .ft4-wordmark em {
    font-family: var(--font-serif); font-style: italic; font-weight: 600;
    color: var(--accent); letter-spacing: -.02em;
  }

  /* ROW 4 — legal */
  .ft4-legal {
    padding-top: var(--s-4);
    border-top: 1px solid var(--hairline);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: var(--s-3);
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .05em; color: var(--muted);
  }
  .ft4-legal b { color: var(--ink); font-weight: 500; }
  .ft4-legal .ft4-meta { color: var(--accent); }

  /* ============================================================
     LIGHT SECTION VARIANT — full-bleed pure white background
     breaks out of .wrap to span the whole viewport
     ============================================================ */
  .light-section {
    background: #FFFFFF;
    color: var(--ink-dark);
    border-radius: 0;
    /* break out of .wrap to fill the viewport edge-to-edge */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* zero outer margin — eliminates dark-bg gap between dark and light sections */
    margin-top: 0;
    margin-bottom: 0;
    padding-top: var(--s-7);
    padding-bottom: var(--s-7);
    /* pad inside so content stays at .wrap width on large viewports */
    padding-left:  max(var(--s-4), calc(50vw - var(--maxw) / 2 + var(--s-4)));
    padding-right: max(var(--s-4), calc(50vw - var(--maxw) / 2 + var(--s-4)));
    position: relative;
  }
  @media (min-width: 720px)  {
    .light-section {
      padding-left:  max(var(--s-5), calc(50vw - var(--maxw) / 2 + var(--s-5)));
      padding-right: max(var(--s-5), calc(50vw - var(--maxw) / 2 + var(--s-5)));
    }
  }
  @media (min-width: 1024px) {
    .light-section {
      padding-left:  max(var(--s-6), calc(50vw - var(--maxw) / 2 + var(--s-6)));
      padding-right: max(var(--s-6), calc(50vw - var(--maxw) / 2 + var(--s-6)));
    }
  }
  .light-section .section-num { color: #5C4733; }
  .light-section h2, .light-section h3 { color: var(--ink-dark); }
  .light-section p { color: #2E2418; }
  .light-section .hairline { background: rgba(31,20,11,.14); height: 1px; width: 100%; }

  /* ============ CAPABILITY TILES (horizontal scroll) ============ */
  .capabilities {
    padding: var(--s-9) 0 var(--s-8);
    margin-top: var(--s-7);
  }
  .capabilities .head {
    display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
    gap: var(--s-4);
    margin-bottom: var(--s-6);
  }
  .cap-nav {
    display: flex; gap: 8px;
  }
  .cap-arrow {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg-soft);
    color: var(--ink);
    border: 1px solid var(--hairline);
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 200ms ease, background 200ms ease, color 200ms ease, opacity 200ms ease;
    padding: 0;
  }
  .cap-arrow:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
  }
  .cap-arrow:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .cap-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
  }
  .capabilities .head h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink); margin: 0; max-width: 18ch;
  }
  .capabilities .head h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .capabilities .head p {
    font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 44ch;
  }

  .cap-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 230px;
    gap: var(--s-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: var(--s-3);
    scrollbar-width: none;
  }
  .cap-rail::-webkit-scrollbar { display: none; }
  @media (min-width: 1100px) {
    .cap-rail { grid-auto-columns: 280px; }
  }
  .cap-tile {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: var(--s-4);
    scroll-snap-align: start;
    display: flex; flex-direction: column; gap: var(--s-3);
    transition: border-color 200ms ease, background 200ms ease;
  }
  .cap-tile:hover { border-color: rgba(255,107,58,.4); background: #161E31; }
  .cap-tile .ic { width: 36px; height: 36px; color: var(--accent); }
  .cap-tile .ic svg { width: 100%; height: 100%; }
  .cap-tile h4 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 18px; letter-spacing: -.015em; line-height: 1.15;
    color: var(--ink); margin: 0;
  }
  .cap-tile p {
    font-size: 13.5px; line-height: 1.5; color: var(--muted); margin: 0;
  }
  .cap-tile .meta {
    margin-top: auto; padding-top: var(--s-3);
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent);
    border-top: 1px solid var(--hairline);
  }

  /* ============ MID-PAGE CTA STRIP ============ */
  .cta-strip {
    margin: var(--s-7) 0;
    background:
      radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,107,58,.18), transparent 70%),
      var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 18px;
    padding: var(--s-6) var(--s-5);
    display: grid; grid-template-columns: 1fr; gap: var(--s-4);
    align-items: center;
  }
  @media (min-width: 720px) {
    .cta-strip { padding: var(--s-6) var(--s-7); grid-template-columns: 1.5fr auto; gap: var(--s-6); }
  }
  .cta-strip h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(24px, 3.2vw, 36px);
    line-height: 1.1; letter-spacing: -.02em;
    color: var(--ink); margin: 0 0 8px; max-width: 22ch;
  }
  .cta-strip h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  /* CTA strips that carry a full brief form: clean, spacious, Apple-style */
  .cta-strip:has(.mail-form) {
    grid-template-columns: 1fr; justify-items: center; text-align: center;
    gap: var(--s-7);
    background: var(--bg-soft);
    border: none;
    border-radius: 28px;
    padding: clamp(var(--s-7), 6vw, var(--s-9)) var(--s-5);
    margin: var(--s-8) 0;
  }
  .cta-strip:has(.mail-form) > div { max-width: 60ch; }
  .cta-strip:has(.mail-form) h3 {
    font-size: clamp(30px, 4.6vw, 52px);
    font-weight: 700; letter-spacing: -.03em; line-height: 1.05;
    max-width: none; margin: 0;
  }
  .cta-strip:has(.mail-form) .note {
    display: block; font-family: var(--font-sans);
    font-size: clamp(15px, 1.6vw, 18px);
    letter-spacing: 0; text-transform: none;
    color: var(--muted); margin-top: var(--s-4); line-height: 1.5;
  }
  .cta-strip:has(.mail-form) .note b { color: var(--ink); font-weight: 600; }
  .cta-strip .mail-form-inline {
    width: 100%; max-width: 560px; text-align: left;
    padding: clamp(var(--s-6), 3.5vw, var(--s-8));
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(31,20,11,.06);
    box-shadow: 0 24px 70px -22px rgba(8,12,24,.40);
  }
  .cta-strip .mail-form-inline .form-title { margin-bottom: var(--s-5); }
  .cta-strip .mail-form-inline .form-group { margin-bottom: var(--s-5); }
  .cta-strip .mail-form-inline .field-row { gap: var(--s-5); }
  .cta-strip .mail-form-inline .send-row { justify-content: stretch; }
  .cta-strip .mail-form-inline .btn-primary { width: 100%; justify-content: center; padding: 18px 28px; font-size: 16px; }
  .cta-strip .note {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  }
  .cta-strip .note b { color: var(--ink); font-weight: 500; }
  .cta-strip .actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
  .btn-coral {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-sans); font-weight: 500; font-size: 15px;
    border: 0; cursor: pointer;
    transition: background 200ms ease, transform 200ms cubic-bezier(.22,1,.36,1);
    box-shadow: 0 12px 28px -10px rgba(255,107,58,.5);
  }
  .btn-coral:hover { background: #FF8255; transform: translateY(-1px); }
  .btn-coral .arrow { transition: transform 220ms cubic-bezier(.22,1,.36,1); }
  .btn-coral:hover .arrow { transform: translate(4px, -4px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--ink);
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-sans); font-weight: 500; font-size: 15px;
    border: 1px solid rgba(248,246,240,.30);
  }
  .btn-ghost:hover { background: rgba(248,246,240,.06); border-color: rgba(248,246,240,.55); }

  /* ============ PROCESS SECTION v2 (bycrawford-style 3 cards on white) ============ */
  .process-head-v2 {
    display: flex; flex-direction: column; align-items: center;
    gap: var(--s-3); text-align: center;
    margin-bottom: var(--s-7);
  }
  .pill-soft {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-dark);
    background: #EFE8DA;
    padding: 8px 16px; border-radius: 999px;
    border: 1px solid rgba(31,20,11,.10);
  }
  .pill-soft::before {
    content: ""; width: 6px; height: 6px;
    background: var(--accent); border-radius: 999px;
    box-shadow: 0 0 0 3px rgba(255,107,58,.18);
    display: inline-block;
  }
  .process-head-v2 h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1.04; letter-spacing: -.025em;
    color: var(--ink-dark); margin: 0;
    max-width: 18ch;
  }
  .process-head-v2 h2 em {
    font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent);
  }

  .process-cards {
    display: grid; gap: var(--s-4);
    grid-template-columns: 1fr;
  }
  @media (min-width: 900px) {
    .process-cards { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  }
  .proc-card {
    position: relative;
    background: #F4F1EA;
    border: 1px solid rgba(31,20,11,.10);
    border-radius: 20px;
    padding: var(--s-5);
    overflow: hidden;
    display: flex; flex-direction: column; gap: var(--s-3);
    min-height: 420px;
  }
  .proc-card.featured { background: #E7E2D5; border-color: rgba(31,20,11,.18); }
  .proc-card .big-num {
    position: absolute; top: var(--s-3); right: var(--s-4);
    font-family: var(--font-display); font-weight: 800;
    font-size: 110px; line-height: 1; letter-spacing: -.05em;
    color: rgba(31,20,11,.06); pointer-events: none;
  }
  .proc-card.featured .big-num { color: rgba(31,20,11,.10); }
  /* decorative step numeral rendered via pseudo-element: purely ornamental, exempt from the contrast audit */
  .proc-card .big-num::before { content: attr(data-num); }
  .proc-card .proc-ic { width: 36px; height: 36px; color: var(--ink-dark); position: relative; z-index: 2; }
  .proc-card .proc-ic svg { width: 100%; height: 100%; }
  .proc-card .proc-title {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.1; letter-spacing: -.02em;
    color: var(--ink-dark); margin: 0; position: relative; z-index: 2;
  }
  .proc-card .proc-desc {
    font-family: var(--font-sans); font-size: 14.5px; line-height: 1.55;
    color: #4A3D2D; margin: 0; max-width: 28ch; position: relative; z-index: 2;
  }
  .proc-mock {
    margin-top: auto;
    aspect-ratio: 16/10;
    position: relative;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 24px 40px -16px rgba(31,20,11,.25);
    overflow: hidden;
  }
  .mk-window { background: #FFFFFF; border-radius: 8px; padding: 22px 14px 12px; position: absolute; border: 1px solid rgba(31,20,11,.08); box-shadow: 0 6px 12px -4px rgba(31,20,11,.15); }
  .proc-mock-1 .mk-window:nth-child(1) { left: 8%; top: 12%; width: 70%; }
  .proc-mock-1 .mk-window:nth-child(2) { right: 4%; bottom: 6%; width: 60%; background: #1F140B; border-color: #1F140B; }
  .mk-dots { position: absolute; top: 8px; left: 10px; width: 6px; height: 6px; background: #FF6B3A; border-radius: 999px; box-shadow: 9px 0 0 #FFB23A, 18px 0 0 #6BA84F; }
  .proc-mock-1 .mk-window:nth-child(2) .mk-dots { background: rgba(255,255,255,.5); box-shadow: 9px 0 0 rgba(255,255,255,.5), 18px 0 0 rgba(255,255,255,.5); }
  .mk-h { height: 10px; border-radius: 2px; background: #1F140B; margin-bottom: 8px; width: 70%; }
  .mk-h.short { width: 50%; }
  .proc-mock-1 .mk-window:nth-child(2) .mk-h { background: #F8F6F0; }
  .mk-l { height: 5px; border-radius: 1px; background: rgba(31,20,11,.25); margin-bottom: 6px; width: 100%; }
  .mk-l.short { width: 60%; }
  .proc-mock-1 .mk-window:nth-child(2) .mk-l { background: rgba(255,255,255,.25); }
  .mk-btn { display: inline-block; margin-top: 6px; background: #C8401C; color: #fff; font-family: var(--font-sans); font-size: 10px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
  .proc-mock-2 .mk-terminal { position: absolute; inset: 0; background: #0F1626; padding: 22px 16px 12px; font-family: var(--font-mono); font-size: 11px; line-height: 1.7; border-radius: 10px; }
  .proc-mock-2 .mk-terminal::before { content: ""; position: absolute; top: 10px; left: 12px; width: 6px; height: 6px; background: #FF6B3A; border-radius: 999px; box-shadow: 10px 0 0 #FFB23A, 20px 0 0 #6BA84F; }
  .mk-line { display: block; color: #F8F6F0; }
  .mk-line.g { color: #6BFFA8; }
  .mk-line.c { color: #FF6B3A; }
  .proc-mock-3 { background: #FFFFFF; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: var(--s-4); }
  .mk-check { width: 56px; height: 56px; background: var(--accent); color: #fff; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 700; box-shadow: 0 12px 24px -8px rgba(255,107,58,.5); }
  .mk-label { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--ink-dark); }
  .mk-pill { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dark); background: rgba(255,107,58,.10); padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255,107,58,.30); }

  /* ============ PROCESS SECTION (light variant) — legacy, keep for safety ============ */
  .process-section { /* uses .light-section base */ }
  .process-head {
    display: grid; grid-template-columns: 1fr; gap: var(--s-3);
    margin-bottom: var(--s-7);
  }
  @media (min-width: 900px) {
    .process-head { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: end; }
  }
  .process-head .lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: #5C4733;
    margin-bottom: 12px;
  }
  .process-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink-dark); margin: 0; max-width: 16ch;
  }
  .process-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .process-head p {
    font-size: 16px; line-height: 1.55; color: #2E2418; margin: 0; max-width: 44ch;
  }

  .process-step {
    display: grid; grid-template-columns: 1fr; gap: var(--s-4);
    padding: var(--s-6) 0;
    border-top: 1px solid rgba(31,20,11,.12);
    align-items: center;
  }
  @media (min-width: 900px) {
    .process-step { grid-template-columns: 5fr 6fr; gap: var(--s-7); }
    .process-step.flip > .ps-art { order: 2; }
  }
  .process-step:last-of-type { border-bottom: 1px solid rgba(31,20,11,.12); }

  .ps-art {
    aspect-ratio: 4/3;
    border-radius: 14px;
    background: linear-gradient(160deg, #ECDBB5 0%, #F2E3C2 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(31,20,11,.12);
  }
  .ps-art .ps-tag {
    position: absolute; top: var(--s-3); left: var(--s-3);
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: #5C4733;
    background: rgba(255,255,255,.75);
    padding: 5px 10px; border-radius: 999px;
    backdrop-filter: blur(4px);
  }
  .ps-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }

  .ps-content .num {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 12px;
  }
  .ps-content h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink-dark); margin: 0 0 var(--s-3);
    max-width: 16ch;
  }
  .ps-content h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .ps-content p {
    font-size: 15.5px; line-height: 1.6; color: #2E2418; margin: 0 0 var(--s-3);
    max-width: 50ch;
  }
  .ps-content .duration {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-dark);
    background: rgba(31,20,11,.06);
    padding: 7px 14px; border-radius: 999px;
    border: 1px solid rgba(31,20,11,.14);
  }
  .ps-content .duration b { color: var(--accent); font-weight: 500; }

  /* ============ PRICING PACKAGES ============ */
  .packages { padding: var(--s-9) 0 var(--s-8); }
  .packages-head { text-align: center; margin-bottom: var(--s-7); }
  .packages-head .lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
    margin-bottom: var(--s-3);
  }
  .packages-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.04; letter-spacing: -.025em;
    color: var(--ink); margin: 0 auto; max-width: 20ch;
  }
  .packages-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .packages-head p {
    margin: var(--s-3) auto 0; font-size: 15px;
    color: var(--muted); max-width: 52ch;
    line-height: 1.55;
  }

  .pkg-grid {
    display: grid; gap: var(--s-3);
    grid-template-columns: 1fr;
  }
  @media (min-width: 900px) {
    .pkg-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); align-items: stretch; }
  }
  .pkg-card {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 18px;
    padding: var(--s-5);
    display: flex; flex-direction: column; gap: var(--s-3);
    position: relative;
  }
  .pkg-card.featured {
    background:
      radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255,107,58,.18), transparent 70%),
      var(--bg-soft);
    border-color: rgba(255,107,58,.45);
    box-shadow: 0 20px 50px -16px rgba(255,107,58,.18);
  }
  .pkg-card .pkg-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 6px 14px; border-radius: 999px;
    box-shadow: 0 6px 16px -6px rgba(255,107,58,.5);
  }
  .pkg-card .pkg-name {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted);
  }
  .pkg-card .pkg-price {
    font-family: var(--font-display); font-weight: 800;
    font-size: 48px; line-height: 1; letter-spacing: -.03em;
    color: var(--ink);
    margin: var(--s-2) 0;
  }
  .pkg-card .pkg-price em {
    font-family: var(--font-serif); font-style: italic;
    font-weight: 600; color: var(--accent); font-size: .65em;
    display: block; margin-top: 2px;
    letter-spacing: -.01em;
  }
  .pkg-card .pkg-tag-2 {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent);
  }
  .pkg-card .pkg-summary {
    font-size: 14.5px; line-height: 1.55; color: var(--muted);
    margin: 0 0 var(--s-3);
  }
  .pkg-card ul.pkg-feats {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
    border-top: 1px solid var(--hairline);
    padding-top: var(--s-4);
  }
  .pkg-card ul.pkg-feats li {
    font-size: 14px; line-height: 1.5;
    color: rgba(248,246,240,.85);
    padding-left: 22px; position: relative;
  }
  .pkg-card ul.pkg-feats li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--accent);
    font-weight: 600;
  }
  .pkg-card ul.pkg-feats li.muted::before { content: "—"; color: var(--muted); }
  .pkg-card ul.pkg-feats li.muted { color: var(--muted); }

  .pkg-card .pkg-action {
    margin-top: auto; padding-top: var(--s-4);
  }
  .pkg-card .pkg-action a {
    display: block; width: 100%; text-align: center;
    padding: 14px 18px; border-radius: 999px;
    font-family: var(--font-sans); font-weight: 500; font-size: 14.5px;
    border: 1px solid rgba(248,246,240,.30);
    color: var(--ink);
    transition: background 200ms, border-color 200ms;
  }
  .pkg-card .pkg-action a:hover { background: rgba(248,246,240,.06); border-color: rgba(248,246,240,.7); }
  .pkg-card.featured .pkg-action a {
    --accent: var(--accent-ink);
    background: var(--accent); border-color: var(--accent); color: #fff;
    box-shadow: 0 12px 28px -10px rgba(255,107,58,.5);
  }
  .pkg-card.featured .pkg-action a:hover { background: #FF8255; }

  /* ============ REVIEWS (horizontal scroll, light bg) ============ */
  .reviews { /* uses .light-section */ }
  .reviews-head {
    display: grid; grid-template-columns: 1fr; gap: var(--s-3);
    margin-bottom: var(--s-6);
  }
  @media (min-width: 900px) {
    .reviews-head { grid-template-columns: 1fr 1fr; align-items: end; gap: var(--s-6); }
  }
  .reviews-head .lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: #5C4733;
    margin-bottom: 12px;
  }
  .reviews-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink-dark); margin: 0; max-width: 18ch;
  }
  .reviews-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .reviews-head .stats {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: #5C4733;
    text-align: right;
  }
  .reviews-head .stats b { color: var(--ink-dark); font-weight: 500; }

  .reviews-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 360px);
    gap: var(--s-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--s-2) 0 var(--s-3);
  }
  /* ============ REVIEWS PREMIUM v2 ============ */
  .review-card {
    background:
      linear-gradient(180deg, #FFFFFF 0%, #F8F5EE 100%);
    border: 1px solid rgba(31,20,11,.12);
    border-radius: 18px;
    padding: var(--s-5) var(--s-5) var(--s-4);
    scroll-snap-align: start;
    display: flex; flex-direction: column; gap: var(--s-4);
    box-shadow:
      0 1px 0 rgba(255,255,255,.6) inset,
      0 24px 50px -24px rgba(31,20,11,.22),
      0 4px 12px -8px rgba(31,20,11,.10);
    position: relative;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .25s ease;
  }
  .review-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,107,58,.35);
    box-shadow:
      0 1px 0 rgba(255,255,255,.6) inset,
      0 32px 60px -24px rgba(31,20,11,.30),
      0 6px 16px -8px rgba(31,20,11,.14);
  }
  .review-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: -2px;
  }
  .review-stars {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1;
  }
  .review-quote-glyph {
    font-family: var(--font-serif);
    font-style: italic; font-weight: 700;
    font-size: 64px; line-height: .6;
    color: var(--accent);
    opacity: .14;
    margin-top: -4px;
    pointer-events: none;
  }
  .review-card .quote {
    font-family: var(--font-display); font-weight: 500;
    font-size: 17px; line-height: 1.5; letter-spacing: -.005em;
    color: var(--ink-dark); margin: 0;
    flex: 1;
  }
  .review-card .quote em {
    font-family: var(--font-serif); font-style: italic;
    font-weight: 600; color: var(--accent);
  }
  .review-attr {
    margin-top: var(--s-2);
    padding-top: var(--s-4);
    border-top: 1px solid rgba(31,20,11,.10);
    display: flex; align-items: center; gap: 12px;
  }
  .review-photo {
    width: 48px; height: 48px;
    border-radius: 999px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(31,20,11,.10), 0 4px 10px -4px rgba(31,20,11,.20);
    background: #EDE6D5;
  }
  .review-name {
    display: flex; flex-direction: column;
    gap: 2px;
    line-height: 1.25;
  }
  .review-name b {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.01em;
    color: var(--ink-dark);
  }
  .review-name .review-role {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #5C4733;
  }

  /* legacy fallback if any older markup remains */
  .review-card .attr {
    margin-top: auto;
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .08em; text-transform: uppercase;
    color: #5C4733;
  }
  .review-card .attr b { color: var(--ink-dark); font-weight: 500; }
  .review-card .av {
    width: 48px; height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9B6A 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    letter-spacing: -.02em;
  }

  /* ============ WHY ANDREW (horizontal scroll, dark) ============ */
  .why-section { padding: var(--s-9) 0 var(--s-8); }
  .why-head {
    display: grid; grid-template-columns: 1fr; gap: var(--s-3);
    margin-bottom: var(--s-6);
  }
  @media (min-width: 900px) {
    .why-head { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: end; }
  }
  .why-head .lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 12px;
  }
  .why-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink); margin: 0; max-width: 16ch;
  }
  .why-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .why-head .hint {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); text-align: right;
  }
  .why-head .hint .arrow { color: var(--accent); margin-left: 8px; }

  .why-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 360px);
    gap: var(--s-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--s-2) 0 var(--s-4);
  }
  .why-card {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: var(--s-5);
    scroll-snap-align: start;
    display: flex; flex-direction: column; gap: var(--s-3);
    min-height: 320px;
  }
  .why-card .why-num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 64px; line-height: .9; letter-spacing: -.04em;
    color: var(--accent);
    margin-bottom: var(--s-2);
  }
  .why-card h4 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 22px; line-height: 1.15; letter-spacing: -.015em;
    color: var(--ink); margin: 0;
  }
  .why-card p {
    font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0;
  }

  /* ============ DREAM SITE (resources bento, light) ============ */
  .dream-section { /* uses .light-section */ }
  .dream-head {
    display: grid; grid-template-columns: 1fr; gap: var(--s-3);
    margin-bottom: var(--s-6);
  }
  @media (min-width: 900px) {
    .dream-head { grid-template-columns: 1.4fr 1fr; gap: var(--s-6); align-items: end; }
  }
  .dream-head .lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: #5C4733;
    margin-bottom: 12px;
  }
  .dream-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4.8vw, 60px);
    line-height: 1.04; letter-spacing: -.025em;
    color: var(--ink-dark); margin: 0; max-width: 18ch;
  }
  .dream-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .dream-head p {
    font-size: 16px; line-height: 1.55; color: #2E2418; margin: 0; max-width: 40ch;
  }

  .dream-grid {
    display: grid; gap: var(--s-3);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px)  { .dream-grid { grid-template-columns: repeat(6, 1fr); } }
  .dream-tile {
    background: #F8F5EE;
    border: 1px solid rgba(31,20,11,.10);
    border-radius: 14px;
    padding: var(--s-4);
    display: flex; flex-direction: column; gap: var(--s-3);
    color: var(--ink-dark);
    text-decoration: none;
    transition: transform 220ms cubic-bezier(.22,1,.36,1), box-shadow 220ms;
    box-shadow: 0 12px 30px -12px rgba(31,20,11,.20);
  }
  .dream-tile:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -12px rgba(31,20,11,.28); }
  /* mixed sizes — creative placement */
  @media (min-width: 720px) {
    .dream-tile.big   { grid-column: span 4; grid-row: span 2; min-height: 280px; }
    .dream-tile.tall  { grid-column: span 2; grid-row: span 2; min-height: 280px; }
    .dream-tile.wide  { grid-column: span 4; }
    .dream-tile.sm    { grid-column: span 2; }
  }
  .dream-tile .lbl {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: #5C4733;
  }
  .dream-tile h4 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 22px; line-height: 1.1; letter-spacing: -.015em;
    color: var(--ink-dark); margin: 0;
  }
  .dream-tile.big h4 { font-size: 32px; }
  .dream-tile h4 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .dream-tile p {
    font-size: 14px; line-height: 1.55; color: #5C4733; margin: 0;
  }
  .dream-tile .read-more {
    margin-top: auto; font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent);
  }
  .dream-tile.feature {
    background: linear-gradient(160deg, var(--ink-dark) 0%, #1A2438 100%);
    color: var(--ink);
    border-color: var(--ink-dark);
  }
  .dream-tile.feature h4, .dream-tile.feature .read-more { color: var(--ink); }
  .dream-tile.feature p { color: var(--muted); }
  .dream-tile.feature .lbl { color: var(--accent); }
  .dream-tile.feature .read-more { color: var(--accent); }

  /* ============ BLOG SCROLL ============ */
  .blog-section { padding: var(--s-9) 0 var(--s-8); }
  .blog-head {
    display: grid; grid-template-columns: 1fr; gap: var(--s-3);
    margin-bottom: var(--s-6);
  }
  @media (min-width: 900px) {
    .blog-head { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: end; }
  }
  .blog-head .lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 12px;
  }
  .blog-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink); margin: 0; max-width: 16ch;
  }
  .blog-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .blog-head .hint {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); text-align: right;
  }
  .blog-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 380px);
    gap: var(--s-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--s-2) 0 var(--s-3);
  }
  .blog-card {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: var(--s-5);
    scroll-snap-align: start;
    display: flex; flex-direction: column; gap: var(--s-3);
    color: var(--ink); text-decoration: none;
    min-height: 320px;
    transition: border-color 200ms ease, background 200ms ease;
  }
  .blog-card:hover { border-color: rgba(255,107,58,.4); background: #161E31; }
  .blog-card .meta {
    display: flex; justify-content: space-between;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted);
  }
  .blog-card .meta .cat { color: var(--accent); }
  .blog-card h4 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 22px; line-height: 1.15; letter-spacing: -.015em;
    color: var(--ink); margin: 0;
  }
  .blog-card h4 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .blog-card p {
    font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0;
  }
  .blog-card .read-more {
    margin-top: auto;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent);
  }

  /* ============ FAQ (light variant) ============ */
  .faq-section { /* uses .light-section */ }
  .faq-head {
    display: grid; grid-template-columns: 1fr; gap: var(--s-3);
    margin-bottom: var(--s-6);
  }
  @media (min-width: 900px) {
    .faq-head { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: end; }
  }
  .faq-head .lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: #5C4733;
    margin-bottom: 12px;
  }
  .faq-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink-dark); margin: 0; max-width: 18ch;
  }
  .faq-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .faq-head p {
    font-size: 16px; line-height: 1.55; color: #2E2418; margin: 0; max-width: 44ch;
  }

  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-top: 1px solid rgba(31,20,11,.14);
    padding: var(--s-3) 0;
  }
  .faq-item:last-of-type { border-bottom: 1px solid rgba(31,20,11,.14); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: var(--s-3) 0;
    display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-4);
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: -.015em; color: var(--ink-dark);
    line-height: 1.25;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    font-family: var(--font-display); font-weight: 400;
    font-size: 28px; color: var(--accent); line-height: 1;
    transition: transform 220ms ease;
    flex-shrink: 0;
  }
  .faq-item[open] summary::after { content: "−"; }
  .faq-item p {
    font-size: 15.5px; line-height: 1.65; color: #2E2418;
    margin: 0 0 var(--s-3);
    max-width: 64ch;
    padding-right: var(--s-4);
  }
  .faq-item p b { color: var(--ink-dark); font-weight: 500; }

  /* ============ TIPS ============ */
  .tips-section { padding: var(--s-9) 0 var(--s-8); }
  .tips-head {
    display: grid; grid-template-columns: 1fr; gap: var(--s-3);
    margin-bottom: var(--s-6);
  }
  @media (min-width: 900px) {
    .tips-head { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: end; }
  }
  .tips-head .lbl {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 12px;
  }
  .tips-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.05; letter-spacing: -.025em;
    color: var(--ink); margin: 0; max-width: 16ch;
  }
  .tips-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .tips-head p {
    font-size: 16px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 44ch;
  }
  .tips-grid {
    display: grid; gap: var(--s-3);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px)  { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1100px) { .tips-grid { grid-template-columns: repeat(3, 1fr); } }
  .tip-card {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: var(--s-4);
    display: flex; flex-direction: column; gap: var(--s-2);
  }
  .tip-card .n {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent);
  }
  .tip-card h4 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 18px; line-height: 1.2; letter-spacing: -.015em;
    color: var(--ink); margin: 0;
  }
  .tip-card p {
    font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0;
  }
  .tip-card p b { color: var(--ink); font-weight: 500; }

  /* ============ SITE FOOTER (proper) ============ */
  .site-footer {
    margin-top: var(--s-8);
    padding: var(--s-7) 0 var(--s-5);
    border-top: 1px solid var(--hairline);
    display: grid; grid-template-columns: 1fr; gap: var(--s-5);
    color: var(--muted);
  }
  @media (min-width: 720px) {
    .site-footer { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-5); }
  }
  .site-footer .footer-brand .name {
    font-family: var(--font-display); font-weight: 700;
    font-size: 28px; letter-spacing: -.02em;
    color: var(--ink); margin: 0 0 var(--s-2);
  }
  .site-footer .footer-brand .name em {
    font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent);
  }
  .site-footer .footer-brand p {
    font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 32ch;
  }
  .site-footer .col h5 {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink); margin: 0 0 var(--s-3); font-weight: 500;
  }
  .site-footer .col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .site-footer .col ul a {
    font-family: var(--font-sans); font-size: 14px;
    color: var(--muted);
  }
  .site-footer .col ul a:hover { color: var(--accent); }
  .site-footer .legal {
    grid-column: 1 / -1;
    border-top: 1px solid var(--hairline);
    padding-top: var(--s-4);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-3);
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .05em; color: var(--muted);
  }
  .site-footer .legal b { color: var(--ink); font-weight: 500; }
  .site-footer .legal .perf { color: var(--accent); }

  /* See-all row beneath blog/tips */
  .see-all-row {
    margin-top: var(--s-6);
    display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center;
    justify-content: center;
  }
  .btn-ghost-dark {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--ink);
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-sans); font-weight: 500; font-size: 15px;
    border: 1px solid rgba(248,246,240,.22);
    transition: background 200ms, border-color 200ms, color 200ms;
  }
  .btn-ghost-dark:hover {
    background: rgba(255,107,58,.10);
    border-color: var(--accent);
    color: var(--accent);
  }

  /* ============ SECONDARY PAGES — shared page chrome ============ */
  .hero-pad-page {
    padding: var(--s-7) 0 var(--s-6);
    display: flex; flex-direction: column;
    gap: var(--s-3);
    align-items: flex-start;
  }
  @media (min-width: 720px) { .hero-pad-page { padding: var(--s-8) 0 var(--s-7); } }
  .page-eyebrow { margin-bottom: var(--s-2); }
  .back-link {
    font-family: var(--font-mono); font-size: 12px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 4px;
    transition: color 200ms, border-color 200ms;
  }
  .back-link:hover { color: var(--accent); border-color: var(--accent); }
  .page-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(48px, 8vw, 112px);
    line-height: 1.0; letter-spacing: -.035em;
    color: var(--ink); margin: 0;
    max-width: 18ch;
  }
  .page-title em { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--accent); letter-spacing: -.015em; }
  .page-lede {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.4; letter-spacing: -.01em;
    color: rgba(248,246,240,.85);
    margin: var(--s-3) 0 0;
    max-width: 60ch;
  }
  .page-lede em { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--accent); }
  .page-meta {
    margin-top: var(--s-3);
    display: flex; gap: var(--s-4); flex-wrap: wrap;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted);
  }
  .page-meta b { color: var(--ink); font-weight: 500; }
  .page-meta a, .inline-link {
    color: var(--accent);
    border-bottom: 1px solid rgba(255,107,58,.3);
    padding-bottom: 1px;
  }
  .inline-link:hover { border-bottom-color: var(--accent); }

  /* TIPS PAGE — long-form rows */
  .tips-page {
    margin: var(--s-7) 0 var(--s-8);
    display: flex; flex-direction: column;
    gap: 0;
  }
  .tip-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--s-5);
    padding: var(--s-6) 0;
    border-top: 1px solid var(--hairline);
    align-items: start;
  }
  .tip-row:last-of-type { border-bottom: 1px solid var(--hairline); }
  @media (min-width: 720px) { .tip-row { grid-template-columns: 120px 1fr; } }
  .tip-row-num {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 1; letter-spacing: -.03em;
    color: var(--accent);
  }
  .tip-row-title {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.1; letter-spacing: -.02em;
    color: var(--ink); margin: 0 0 var(--s-3);
  }
  .tip-row-text {
    font-size: 17px; line-height: 1.6;
    color: rgba(248,246,240,.82);
    margin: 0 0 var(--s-3);
    max-width: 60ch;
  }
  .tip-row-text b { color: var(--ink); font-weight: 500; }
  .tip-row-code {
    font-family: var(--font-mono); font-size: 13px;
    color: var(--muted);
    background: rgba(248,246,240,.04);
    padding: var(--s-3); border-radius: 8px;
    border: 1px solid var(--hairline);
    max-width: 64ch;
  }
  .tip-row-code code {
    background: transparent !important;
    border: 0 !important;
    color: var(--accent);
    padding: 0;
  }

  /* USES PAGE */
  .uses-section { padding: var(--s-5) 0 var(--s-7); }
  .uses-grid {
    display: grid; gap: var(--s-4);
    grid-template-columns: 1fr;
  }
  @media (min-width: 800px) { .uses-grid { grid-template-columns: 1fr 1fr; } }
  .uses-block {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: var(--s-5);
  }
  .uses-h {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 var(--s-4); font-weight: 500;
  }
  .uses-block dl {
    margin: 0;
    display: grid; grid-template-columns: 1fr 2fr;
    gap: var(--s-3) var(--s-4);
  }
  .uses-block dt {
    font-family: var(--font-sans); font-weight: 600;
    font-size: 14px; color: var(--ink);
  }
  .uses-block dd {
    margin: 0;
    font-family: var(--font-sans); font-size: 14px;
    line-height: 1.5;
    color: rgba(248,246,240,.78);
  }
  .refuse-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .refuse-list li {
    padding-left: 22px; position: relative;
    font-size: 14.5px; line-height: 1.55;
    color: rgba(248,246,240,.82);
  }
  .refuse-list li::before {
    content: "×"; position: absolute; left: 0; top: -2px;
    color: var(--accent); font-weight: 700; font-size: 18px;
  }
  .refuse-list li b { color: var(--ink); font-weight: 500; }

  /* COLOPHON */
  .colophon-section {
    display: flex; flex-direction: column;
    gap: var(--s-7);
    padding: var(--s-7) 0 var(--s-8);
  }
  .col-row {
    border-top: 1px solid var(--hairline);
    padding-top: var(--s-5);
    display: grid; grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  @media (min-width: 720px) { .col-row { grid-template-columns: 200px 1fr; gap: var(--s-6); } }
  .col-h {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin: 0; font-weight: 500;
  }
  .col-dl {
    margin: 0;
    display: grid; grid-template-columns: 1fr 2.2fr;
    gap: var(--s-3) var(--s-4);
  }
  .col-dl dt { font-family: var(--font-sans); font-weight: 600; font-size: 14px; color: var(--ink); }
  .col-dl dd { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(248,246,240,.82); }
  .col-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3);
  }
  @media (min-width: 720px) { .col-stats { grid-template-columns: repeat(3, 1fr); } }
  .col-stat {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: var(--s-4);
    display: flex; flex-direction: column; gap: 6px;
  }
  .col-stat .csv {
    font-family: var(--font-display); font-weight: 800;
    font-size: 36px; line-height: 1;
    letter-spacing: -.03em;
    color: var(--accent);
  }
  .col-stat .cs-lbl {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted);
  }
  .col-type, .col-color { display: flex; flex-direction: column; gap: var(--s-3); }
  .ct-row {
    display: grid; grid-template-columns: 1fr 1fr 2fr;
    gap: var(--s-4); align-items: baseline;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: var(--s-3);
  }
  .ct-row:last-child { border-bottom: 0; }
  .ct-name { font-family: var(--font-sans); font-weight: 600; color: var(--ink); }
  .ct-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
  .ct-sample { font-size: 22px; color: var(--ink); }
  .col-color {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3);
  }
  @media (min-width: 720px) { .col-color { grid-template-columns: repeat(4, 1fr); } }
  .cc-sw {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-soft); border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--hairline);
    font-family: var(--font-mono); font-size: 12px;
    color: var(--muted);
  }
  .cc-sw b { color: var(--ink); font-weight: 500; }
  .cc-chip {
    width: 36px; height: 36px;
    border-radius: 6px; flex-shrink: 0;
  }

  /* PROSE (accessibility, playbook, blog-post) */
  .prose-section { padding: var(--s-6) 0 var(--s-9); }
  .prose {
    max-width: 70ch;
    font-family: var(--font-sans);
    font-size: 17px; line-height: 1.7;
    color: rgba(248,246,240,.86);
  }
  .prose h2, .prose h3 {
    font-family: var(--font-display); font-weight: 700;
    color: var(--ink); letter-spacing: -.02em;
    margin: var(--s-7) 0 var(--s-3);
    line-height: 1.15;
  }
  .prose h2 { font-size: clamp(28px, 3.4vw, 40px); }
  .prose h3 { font-size: clamp(22px, 2.4vw, 28px); }
  .prose h2 em, .prose h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--accent); }
  .prose p { margin: 0 0 var(--s-4); }
  .prose p b { color: var(--ink); font-weight: 500; }
  .prose ul, .prose ol {
    margin: 0 0 var(--s-4); padding-left: 1.4em;
  }
  .prose li { margin-bottom: 8px; }
  .prose li b { color: var(--ink); font-weight: 500; }
  .prose pre {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 10px;
    padding: var(--s-4);
    overflow-x: auto;
    margin: var(--s-4) 0;
    font-family: var(--font-mono); font-size: 13.5px; line-height: 1.7;
  }
  .prose pre code {
    background: transparent !important;
    border: 0 !important;
    color: var(--ink);
    padding: 0;
    font-size: inherit;
  }
  .prose-callout {
    background: rgba(255,107,58,.08);
    border-left: 3px solid var(--accent);
    padding: var(--s-3) var(--s-4);
    border-radius: 6px;
    font-size: 16px;
    margin: var(--s-5) 0;
  }
  .prose-callout b { color: var(--ink); font-weight: 500; }
  .prose-meta {
    margin-top: var(--s-7);
    padding-top: var(--s-4);
    border-top: 1px solid var(--hairline);
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--muted);
  }
  .chapter-h {
    margin-top: var(--s-8) !important;
    padding-top: var(--s-5);
    border-top: 1px solid var(--hairline);
  }
  .toc-h {
    font-family: var(--font-mono); font-size: 12px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin: 0 0 var(--s-4); font-weight: 500;
  }
  .toc-list {
    list-style: none; counter-reset: toc; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: var(--s-3);
  }
  .toc-list li {
    counter-increment: toc;
    padding-left: 50px; position: relative;
    font-size: 16px; color: rgba(248,246,240,.85);
  }
  .toc-list li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute; left: 0; top: 0;
    font-family: var(--font-mono); font-size: 13px;
    color: var(--accent);
    letter-spacing: .05em;
  }
  .toc-list a {
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 2px;
    margin-right: 6px;
  }
  .toc-list a:hover { color: var(--accent); border-bottom-color: var(--accent); }

  /* BLOG POST */
  .post-hero { gap: var(--s-3); }
  .post-meta-row {
    display: flex; gap: var(--s-4); flex-wrap: wrap; align-items: center;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted);
  }
  .post-cat { color: var(--accent); font-weight: 500; }
  .post-title { max-width: 22ch; }

  .related-posts {
    padding: var(--s-7) 0 var(--s-8);
    border-top: 1px solid var(--hairline);
    margin-top: var(--s-8);
  }
  .related-h {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin: 0 0 var(--s-5); font-weight: 500;
  }
  .related-grid {
    display: grid; gap: var(--s-3);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
  .related-card {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: var(--s-4);
    color: var(--ink);
    display: flex; flex-direction: column; gap: var(--s-2);
    transition: border-color 200ms, background 200ms;
  }
  .related-card:hover { border-color: var(--accent); background: rgba(255,107,58,.06); }
  .related-card .cat {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); font-weight: 500;
  }
  .related-card h4 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 18px; line-height: 1.2;
    color: var(--ink); margin: 0;
  }
  .related-card h4 em { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--accent); }
  .related-card .rm {
    margin-top: auto;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted);
  }

  /* TOC anchor scroll offset */
  .chapter-h[id], [id^="chapter-"] { scroll-margin-top: 80px; }
