  :root {
    --cream: #FCFBF8;
    --cream-tint: #F7F5EF;
    --cream-shade: #F0EDE5;
    --paper: #FFFFFF;
    --ink: #1A1A17;
    --ink-soft: #44413C;
    --ink-light: #7A7670;
    --ink-faint: #8C857A;
    --gold: #B89968;
    --gold-soft: #D4BC8E;
    --forest: #2A5A3E;
    --forest-deep: #1B4029;
    --night: #131311;
    --night-soft: #C9C5BC;
    --brick: #8B2D1E;
    --brick-chart: #A03A28;
    --hairline: #E9E4D9;
    --hairline-soft: #F3F0E9;
    --hairline-dark: #2E2D28;
    --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --gutter: clamp(1.25rem, 2.5vw, 3.5rem);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  section[id] { scroll-margin-top: 6rem; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--serif);
    background: var(--cream);
    color: var(--ink);
    font-size: 21.5px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }

  /* Full-span: every section runs edge to edge; gutters are padding only. */
  .pad { padding-left: var(--gutter); padding-right: var(--gutter); }

  /* ── Type ── */
  .eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.2rem;
  }
  .display {
    font-size: clamp(2.4rem, 4.8vw, 4.6rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.015em;
    text-wrap: balance;
  }
  .display em, .section-head em, .stmt em { font-style: italic; font-weight: 500; }
  .section-head {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.1;
    font-weight: 500;
    text-wrap: balance;
  }
  .lead {
    font-size: clamp(1.2rem, 1.6vw, 1.52rem);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 58ch;
  }
  .label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }

  /* ── Buttons (pill, Legora-style chrome) ── */
  .btn {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-family: var(--sans); font-size: 0.92rem; font-weight: 500;
    background: var(--forest-deep); color: #fff;
    text-decoration: none; padding: 0.85rem 1.7rem;
    border-radius: 99px; border: 1px solid var(--forest-deep);
    cursor: pointer; transition: background 0.2s ease;
  }
  .btn:hover { background: var(--forest); }
  .btn .arr { font-family: var(--sans); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-family: var(--sans); font-size: 0.92rem; font-weight: 500;
    color: var(--ink); text-decoration: none;
    padding: 0.85rem 1.7rem; border-radius: 99px;
    border: 1px solid var(--ink-faint);
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .btn-ghost:hover { border-color: var(--ink); background: var(--cream-tint); }
  .btn:focus-visible, .btn-ghost:focus-visible, a:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; }

  .mock-badge {
    position: fixed; bottom: 1rem; left: 1rem; z-index: 200;
    font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--ink); color: var(--cream);
    padding: 0.45rem 0.8rem; border-radius: 3px; opacity: 0.85;
  }

  /* ── Banner + nav ── */
  .banner {
    background: var(--cream); color: var(--ink-soft);
    font-family: var(--sans); font-size: 0.8rem;
    text-align: center; padding: 0.55rem var(--gutter);
  }
  .banner a { color: var(--forest-deep); font-weight: 600; text-decoration: none; margin-left: 0.6rem; }
  .banner a:hover { text-decoration: underline; }

  header.top {
    position: sticky; top: 0; z-index: 100;
    background: rgba(252, 251, 248, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--hairline-soft);
  }
  .nav-inner {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 2rem;
    padding: 1rem var(--gutter);
  }
  .nav-left { display: flex; gap: 1.9rem; align-items: center; }
  .nav-right { display: flex; gap: 1.4rem; justify-content: flex-end; align-items: center; }
  .nav-link { font-family: var(--sans); font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; }
  .nav-link:hover { color: var(--ink); }
  .wordmark { display: inline-flex; align-items: center; text-decoration: none; }
  .wordmark img { height: 27.5px; width: auto; display: block; }
  .nav-cta { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
  @media (max-width: 960px) {
    .nav-left .nav-link, .nav-right .nav-link { display: none; }
    .nav-inner { grid-template-columns: auto 1fr; }
    .nav-left { display: none; }
    .nav-right { justify-content: flex-end; }
  }

  /* ── Hero: split, product visual bleeding right ── */
  .hero {
    display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
    padding: clamp(3.5rem, 6vw, 6.5rem) 0 clamp(3.5rem, 6vw, 6rem) var(--gutter);
  }
  @media (max-width: 960px) { .hero { grid-template-columns: 1fr; padding-right: var(--gutter); } }
  .hero .display { margin-bottom: 1.6rem; max-width: 16ch; }
  .hero .lead { margin-bottom: 2.2rem; }
  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 3rem; }
  .hero-anchors { display: flex; gap: 2.4rem; flex-wrap: wrap; border-top: 1px solid var(--hairline); padding-top: 1.4rem; }
  .hero-anchors .anchor-claim { font-style: italic; font-size: 1.12rem; color: var(--forest-deep); }

  .hero-visual { position: relative; min-height: 560px; }
  .hero-stage {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, var(--cream), var(--cream-tint));
    border-radius: 10px 0 0 10px;
    overflow: hidden;
  }
  .record-card {
    position: absolute; top: 50%; left: clamp(1.5rem, 4vw, 4rem); transform: translateY(-50%);
    width: min(560px, 78%);
    background: var(--paper); border: 1px solid var(--hairline); border-radius: 8px;
    box-shadow: 0 10px 28px rgba(26, 26, 23, 0.07);
    padding: 1.8rem;
  }
  .record-card .rc-head { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.2rem; }
  .rc-img { width: 120px; height: 150px; flex: none; border-radius: 3px; background: linear-gradient(155deg, #C9C2B2, #8C857A 60%, #44413C); object-fit: cover; display: block; }
  .rc-title { font-size: 1.25rem; font-weight: 600; line-height: 1.2; }
  .rc-sub { font-family: var(--sans); font-size: 0.76rem; color: var(--ink-light); margin-top: 0.35rem; }
  .rc-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--hairline-soft); }
  .rc-row:first-of-type { border-top: 1px solid var(--hairline-soft); }
  .rc-row .k { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); padding-top: 0.2rem; }
  .rc-row .v { text-align: right; font-size: 1rem; }
  .rc-row .v small { display: block; font-family: var(--sans); font-size: 0.7rem; color: var(--ink-light); }
  .rc-badge {
    display: inline-block; font-family: var(--sans); font-size: 0.64rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest-deep);
    background: rgba(42, 90, 62, 0.09); border-radius: 2px; padding: 0.25rem 0.55rem;
  }
  .toast {
    position: absolute; z-index: 2; right: clamp(1rem, 3vw, 3rem); top: 1rem;
    background: var(--paper); border: 1px solid var(--hairline); border-radius: 99px;
    font-family: var(--sans); font-size: 0.78rem; color: var(--ink-soft);
    padding: 0.6rem 1.1rem; box-shadow: 0 12px 30px rgba(26, 26, 23, 0.1);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--forest); }
  .toast2 { top: auto; bottom: 1rem; }
  @media (max-width: 960px) { .hero-visual { min-height: 420px; } .hero-stage { border-radius: 10px; } }

  /* ── Rule-grid sections (Legora hairline system) ── */
  section { padding-top: clamp(4.5rem, 7vw, 7.5rem); padding-bottom: clamp(4.5rem, 7vw, 7.5rem); }
  .sec-head-row { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
  .sec-head-row .lead { margin-top: 1.3rem; }
  .split-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; align-items: end; }
  @media (max-width: 960px) { .split-head { grid-template-columns: 1fr; } }

  .rule-grid { display: grid; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .rule-grid > * { border-right: 1px solid var(--hairline); padding: 2rem 1.8rem 2.4rem; }
  .rule-grid > *:last-child { border-right: none; }
  .cols-2 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 1100px) { .cols-4 { grid-template-columns: repeat(2, 1fr); } .cols-4 > * { border-bottom: 1px solid var(--hairline); } .cols-4 > *:nth-child(even) { border-right: none; } .cols-4 > *:nth-last-child(-n+2) { border-bottom: none; } }
  @media (max-width: 760px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } .rule-grid > * { border-right: none; border-bottom: 1px solid var(--hairline); } .rule-grid > *:last-child { border-bottom: none; } }

  .cell-tall { min-height: 340px; display: flex; flex-direction: column; }
  .cell-tall .label { margin-bottom: 1rem; }
  .cell-tall h3 { font-size: 1.6rem; font-weight: 500; margin-bottom: 0.8rem; }
  .cell-tall p { color: var(--ink-soft); font-size: 1.02rem; }
  .cell-tall p + p { margin-top: 0.7rem; }
  .cell-tall .cell-kicker { margin-top: auto; padding-top: 1.6rem; font-style: italic; color: var(--forest-deep); font-size: 1.02rem; }

  /* ── Statement band ── */
  .stmt-band { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .stmt-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2.5rem, 5vw, 6rem); align-items: center; }
  @media (max-width: 960px) { .stmt-grid { grid-template-columns: 1fr; } }
  .stmt { font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.1; font-weight: 500; text-wrap: balance; }
  .stmt-side p { color: var(--ink-soft); font-size: 1.08rem; }
  .stmt-side p + p { margin-top: 1rem; }

  /* ── Stat grid (giant numerals) ── */
  .stats-band { background: var(--cream-tint); }
  .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .stat {
    border-right: 1px solid var(--hairline);
    min-height: clamp(280px, 34vh, 420px);
    padding: 2.2rem 2rem 2rem;
    display: flex; flex-direction: column;
  }
  .stat:nth-child(3n) { border-right: none; }
  .stat:nth-child(-n+3) { border-bottom: 1px solid var(--hairline); }
  .stat .num {
    font-family: var(--serif); font-weight: 500;
    font-size: clamp(3.4rem, 6.5vw, 6rem); line-height: 1;
    letter-spacing: -0.02em; font-variant-numeric: lining-nums;
  }
  .stat .cap { margin-top: auto; font-family: var(--sans); font-size: 0.82rem; color: var(--ink-light); max-width: 34ch; }
  @media (max-width: 960px) {
    .stat-grid { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--hairline); min-height: 220px; }
    .stat:last-child { border-bottom: none; }
  }

  /* ── Proof cards (chart etc.) ── */
  .have-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .have-cell { border-right: 1px solid var(--hairline); padding: 2.4rem 2.2rem 2.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
  .have-cell:nth-child(2n) { border-right: none; }
  .have-cell:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .have-cell h3 { font-size: 1.7rem; font-weight: 500; }
  .have-cell > p { color: var(--ink-soft); font-size: 1.05rem; max-width: 58ch; }
  .have-cell .proof-note { font-family: var(--sans); font-size: 0.76rem; color: var(--ink-light); margin-top: auto; padding-top: 1rem; }
  @media (max-width: 960px) {
    .have-grid { grid-template-columns: 1fr; }
    .have-cell { border-right: none; border-bottom: 1px solid var(--hairline); }
    .have-cell:last-child { border-bottom: none; }
  }

  .chart-wrap { margin-top: 0.4rem; max-width: 720px; }
  .chart-legend { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 0.6rem; font-family: var(--sans); font-size: 0.74rem; color: var(--ink-soft); }
  .chart-legend .li { display: inline-flex; align-items: center; gap: 0.45rem; }
  .chart-legend .swatch { width: 18px; height: 0; border-top: 2.5px solid var(--forest-deep); }
  .chart-legend .swatch.dashed { border-top-style: dashed; border-top-color: var(--brick-chart); }
  .chart-wrap svg { width: 100%; height: auto; display: block; }
  .chart-caption { font-family: var(--sans); font-size: 0.74rem; color: var(--ink-light); margin-top: 0.6rem; }

  .mini-visual { background: var(--cream); border: 1px solid var(--hairline-soft); border-radius: 6px; padding: 1.2rem 1.4rem; font-size: 0.95rem; }
  .voice-note { display: flex; align-items: center; gap: 0.9rem; }
  .voice-dot { width: 34px; height: 34px; border-radius: 50%; background: var(--forest-deep); flex: none; display: grid; place-items: center; color: #fff; font-size: 0.8rem; }
  .voice-lines { display: flex; align-items: flex-end; gap: 3px; height: 34px; flex: 1; }
  .voice-lines span { width: 3px; background: var(--gold); border-radius: 2px; }
  .voice-meta { font-family: var(--sans); font-size: 0.7rem; color: var(--ink-light); }
  .guest-scan { font-style: italic; color: var(--ink-soft); }
  .guest-scan .meta { display: block; font-style: normal; font-family: var(--sans); font-size: 0.7rem; color: var(--ink-light); margin-top: 0.5rem; }

  /* ── Ask Cove split ── */
  .ask-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 6rem); align-items: center; }
  @media (max-width: 960px) { .ask-grid { grid-template-columns: 1fr; } }
  .chat-mock { background: var(--paper); border: 1px solid var(--hairline); border-radius: 10px; padding: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; box-shadow: 0 24px 60px rgba(26, 26, 23, 0.08); }
  .chat-user { align-self: flex-end; background: var(--forest-deep); color: #fff; border-radius: 16px 16px 4px 16px; padding: 0.65rem 1.1rem; font-size: 0.95rem; max-width: 85%; }
  .chat-cove { align-self: flex-start; background: var(--cream); border: 1px solid var(--hairline-soft); border-radius: 16px 16px 16px 4px; padding: 0.9rem 1.2rem; font-size: 0.95rem; max-width: 92%; }
  .chat-cove strong { color: var(--forest-deep); }
  .chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .chip { font-family: var(--sans); font-size: 0.74rem; color: var(--ink-soft); border: 1px solid var(--hairline); border-radius: 99px; padding: 0.4rem 0.9rem; background: var(--cream); }

  /* ── Moments (triggers) ── */
  .moments-band { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .moments-list { display: flex; flex-wrap: wrap; gap: 0.9rem; max-width: 72rem; }
  .moment {
    font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    color: var(--ink); text-decoration: none;
    border: 1px solid var(--hairline); border-radius: 99px;
    padding: 0.7rem 1.6rem; background: var(--cream);
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .moment:hover { border-color: var(--forest-deep); background: var(--cream-tint); }
  .moments-close {
    margin-top: clamp(2rem, 3.5vw, 3rem);
    font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-style: italic; color: var(--forest-deep);
    max-width: 50ch; line-height: 1.35;
  }

  /* ── Dark trust section ── */
  .night-band { background: var(--night); color: var(--cream); }
  .night-band .sec-head-row { text-align: center; }
  .night-band .label { color: var(--night-soft); }
  .night-band .section-head { color: #fff; }
  .night-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark); }
  .night-cell { border-right: 1px solid var(--hairline-dark); min-height: clamp(300px, 38vh, 440px); padding: 2.4rem 2rem 2.2rem; display: flex; flex-direction: column; }
  .night-cell:last-child { border-right: none; }
  .night-cell .glyph { margin-bottom: 2rem; opacity: 0.55; }
  .night-cell h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 500; color: #fff; margin-top: auto; margin-bottom: 0.6rem; }
  .night-cell p { font-family: var(--sans); font-size: 0.88rem; color: var(--night-soft); line-height: 1.55; }
  @media (max-width: 1100px) { .night-grid { grid-template-columns: repeat(2, 1fr); } .night-cell { border-bottom: 1px solid var(--hairline-dark); } .night-cell:nth-child(even) { border-right: none; } .night-cell:nth-last-child(-n+2) { border-bottom: none; } }
  @media (max-width: 700px) { .night-grid { grid-template-columns: 1fr; } .night-cell { border-right: none; } }

  /* ── Advisors green card ── */
  .adv-card {
    background: var(--forest-deep); color: var(--cream);
    border-radius: 14px;
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    padding: clamp(2.5rem, 4.5vw, 4.5rem);
    align-items: center;
  }
  @media (max-width: 960px) { .adv-card { grid-template-columns: 1fr; } }
  .adv-card .label { color: var(--gold-soft); }
  .adv-card .section-head { color: #fff; margin: 1rem 0 1.2rem; }
  .adv-card p.lead { color: rgba(251, 250, 245, 0.78); margin-bottom: 2rem; }
  .adv-card .btn { background: var(--cream); color: var(--forest-deep); border-color: var(--cream); }
  .adv-card .btn:hover { background: #fff; }
  .practice { background: var(--paper); color: var(--ink); border-radius: 10px; padding: 1.4rem; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25); font-family: var(--sans); }
  .practice .p-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 0.9rem; border-bottom: 1px solid var(--hairline-soft); }
  .practice .p-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
  .practice .p-sub { font-size: 0.7rem; color: var(--ink-light); }
  .practice .p-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--hairline-soft); font-size: 0.88rem; }
  .practice .p-row:last-child { border-bottom: none; }
  .practice .p-name { font-family: var(--serif); font-size: 1rem; }
  .practice .p-meta { font-size: 0.72rem; color: var(--ink-light); }
  .practice .p-val { font-variant-numeric: tabular-nums; text-align: right; }
  .practice .p-delta { font-size: 0.72rem; color: var(--forest); }

  /* ── CTA ── */
  .cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 6rem); align-items: center; }
  @media (max-width: 960px) { .cta-grid { grid-template-columns: 1fr; } }
  .cta-grid .lead { margin-top: 1.2rem; }
  .cove-form { display: flex; flex-direction: column; gap: 1.2rem; background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px; padding: clamp(1.6rem, 3vw, 2.6rem); }
  .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  @media (max-width: 640px) { .row-2 { grid-template-columns: 1fr; } }
  .field { display: flex; flex-direction: column; gap: 0.4rem; }
  .field label { font-family: var(--sans); font-size: 0.73rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-light); }
  .field input, .field select { font-family: var(--serif); font-size: 1.02rem; color: var(--ink); background: var(--cream); border: 1px solid var(--hairline); border-radius: 6px; padding: 0.8rem 1rem; }
  .field input:focus, .field select:focus { outline: 2px solid var(--forest); outline-offset: 1px; }
  .submit-row { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
  .fine { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-light); }
  .form-thanks { display: none; }
  .form-thanks h3 { font-size: 1.8rem; font-weight: 500; margin-bottom: 0.5rem; }

  /* ── Footer ── */
  footer.site { border-top: 1px solid var(--hairline); padding-top: 4rem; padding-bottom: 2rem; }
  .footer-cols { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 2.5rem; margin-bottom: clamp(3.5rem, 6vw, 6rem); }
  @media (max-width: 1100px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } .footer-cols > :first-child { grid-column: 1 / -1; } }
  @media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr; } }
  .footer-cols h4 { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; }
  .footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-cols a { font-family: var(--sans); font-size: 0.88rem; color: var(--ink-soft); text-decoration: none; }
  .footer-cols a:hover { color: var(--ink); }
  .footer-tagline { font-style: italic; font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 0.6rem; }
  .footer-identity { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-light); max-width: 38ch; }
  .footer-wordmark {
    font-family: var(--serif); font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--forest-deep);
    font-size: clamp(4.5rem, 16vw, 15rem); line-height: 0.95;
    text-align: center; user-select: none;
  }
  .legal { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline-soft); font-family: var(--sans); font-size: 0.72rem; color: var(--ink-faint); }
  .legal a { text-decoration: none; color: var(--ink-faint); margin-right: 1.4rem; }
  .legal a:hover { color: var(--ink); }

  /* Neutrality statement */
  .neutrality {
    font-size: clamp(1.4rem, 2.4vw, 2.1rem); font-style: italic; color: var(--forest-deep);
    max-width: 46ch; line-height: 1.3;
    padding-top: clamp(2.5rem, 4vw, 4rem);
  }

  /* ── Reveal ── */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  .footer-social { display: flex; gap: 1.2rem; margin-top: 1.4rem; }
  .footer-social a { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-light); text-decoration: none; }
  .footer-social a:hover { color: var(--ink); }

  .footer-brand-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
  .footer-brand-row img { height: 30px; width: auto; display: block; }
  .footer-brand-row .footer-tagline { margin-bottom: 0; }

  /* ── Nav dropdown ── */
  .nav-drop { position: relative; }
  .nav-drop-btn { background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.35rem; padding: 0; color: var(--ink-soft); line-height: inherit; }
  .nav-drop-btn:hover { color: var(--ink); }
  .nav-drop-btn .caret { font-size: 0.6rem; color: var(--ink-faint); transition: transform 0.15s ease; }
  .drop-panel {
    position: absolute; top: calc(100% + 0.9rem); left: -1.2rem;
    min-width: 240px; background: var(--paper);
    border: 1px solid var(--hairline); border-radius: 10px;
    box-shadow: 0 24px 60px rgba(26, 26, 23, 0.12);
    padding: 0.7rem; display: none; flex-direction: column;
  }
  .nav-drop:hover .drop-panel, .nav-drop:focus-within .drop-panel { display: flex; }
  .nav-drop:hover .caret, .nav-drop:focus-within .caret { transform: rotate(180deg); }
  .drop-panel::before { content: ''; position: absolute; top: -0.9rem; left: 0; right: 0; height: 0.9rem; }
  .drop-panel a {
    font-family: var(--sans); font-size: 0.88rem; color: var(--ink-soft); text-decoration: none;
    padding: 0.55rem 0.8rem; border-radius: 6px;
  }
  .drop-panel a:hover { background: var(--cream); color: var(--ink); }
  .drop-panel .drop-note { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); padding: 0.6rem 0.8rem 0.3rem; }

  .drop-panel.wide {
    display: none; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; min-width: 460px;
    padding: 1rem 1.1rem 1.1rem;
  }
  .nav-drop:hover .drop-panel.wide, .nav-drop:focus-within .drop-panel.wide { display: grid; }
  .drop-panel.wide .drop-col { display: flex; flex-direction: column; }
  .drop-panel.wide .drop-note { padding: 0.3rem 0.8rem 0.5rem; }

  .nav-link[aria-current="page"] { color: var(--ink); }

  /* ── Nav v3: pill highlights + frosted panels (overrides earlier nav rules) ── */
  .nav-left { gap: 0.35rem; align-items: center; }
  .nav-left .nav-link {
    padding: 0.45rem 0.95rem; border-radius: 99px;
    line-height: 1.25; display: inline-block;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .nav-left .nav-link:hover { background: rgba(26, 26, 23, 0.07); color: var(--ink); }
  .nav-drop-btn { background: none; border: none; cursor: default; }
  .nav-drop:hover .nav-drop-btn, .nav-drop:focus-within .nav-drop-btn {
    background: rgba(26, 26, 23, 0.09); color: var(--ink);
  }
  .drop-panel {
    left: 0; top: calc(100% + 0.55rem); min-width: 230px;
    background: rgba(62, 60, 54, 0.68);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border: none; border-radius: 16px;
    box-shadow: 0 20px 50px rgba(26, 26, 23, 0.25);
    padding: 0.7rem;
  }
  .drop-panel::before { top: -0.55rem; height: 0.55rem; }
  .drop-panel a { color: rgba(252, 251, 248, 0.92); font-size: 0.9rem; padding: 0.6rem 0.9rem; border-radius: 9px; }
  .drop-panel a:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
  .drop-panel .drop-note { color: rgba(252, 251, 248, 0.55); }

/* ── Cell links (doors / purpose cells that lead to their own page) ── */
.cell-link {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  color: var(--forest-deep); text-decoration: none;
  display: inline-block; margin-top: auto; padding-top: 1.2rem;
}
.cell-link:hover { text-decoration: underline; }

/* ── Dark chrome: banner + top nav as one dark block, white nav links ── */
header.top {
  background: var(--forest-deep);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-link { color: rgba(252, 251, 248, 0.78); }
.nav-link:hover { color: #fff; }
.nav-left .nav-link:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav-drop:hover .nav-drop-btn, .nav-drop:focus-within .nav-drop-btn {
  background: rgba(255, 255, 255, 0.12); color: #fff;
}
.btn.nav-cta { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn.nav-cta:hover { background: #fff; border-color: #fff; }

/* ── Nav v4: wordmark left, all navigation right-aligned ── */
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.nav-links { margin-left: auto; display: flex; align-items: center; }
.nav-links .nav-cta { margin-left: 0.75rem; }
@media (max-width: 960px) {
  .nav-links { display: flex; }
  .nav-links .nav-drop, .nav-links > .nav-link { display: none; }
  .nav-links .nav-cta { display: inline-flex; margin-left: 0; }
}

/* ── Nav v5: Collections mega-panel with a labeled Appraisals section (Legora-style) ── */
.drop-panel.mega { min-width: 560px; }
.drop-panel.mega .drop-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 0.4rem; }
.drop-panel.mega .drop-grid a { white-space: nowrap; }
.drop-panel.mega .drop-sep { height: 1px; background: rgba(255, 255, 255, 0.14); margin: 0.75rem 0.9rem; }

/* Footer gains a Who we serve column */
.footer-cols { grid-template-columns: 1.7fr repeat(5, 1fr); }
@media (max-width: 1100px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr; } }

/* ── Widow control: no hanging words, anywhere (Eli, 2026-09-06) ── */
h1, h2, h3, h4, .stmt, .section-head, .display { text-wrap: balance; }
p, .lead, .dek, .cell-kicker, .neutrality, .stat .cap, .anchor-claim { text-wrap: pretty; }

/* ── Chrome v2 (2026-09-06): green announcement bar + cream nav, both pinned on scroll ── */
.banner {
  position: sticky; top: 0; z-index: 110;
  background: var(--forest-deep); color: rgba(252, 251, 248, 0.88);
  height: 2.4rem; display: flex; align-items: center; justify-content: center;
  padding-top: 0; padding-bottom: 0;
}
.banner a { color: #fff; }
header.top {
  top: 2.4rem;
  background: var(--cream);
  border-bottom: none;
}
.nav-inner { padding-top: 1.4rem; padding-bottom: 1.4rem; }

/* All buttons match the nav rollover pill exactly (0.45rem × 0.95rem, 0.88rem type) */
.btn, .btn-ghost, .btn.nav-cta {
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  line-height: 1.25;
}
/* …including the serif chip pills (moments, categories) — same physical size */
.moment, .cat {
  padding: 0.45rem 0.95rem;
  font-size: 0.95rem;
  line-height: 1.25;
}

/* Multi-row rule-grids get a hairline between rows */
.rule-grid.cols-4 > *:nth-child(n+5),
.rule-grid.cols-3 > *:nth-child(n+4) { border-top: 1px solid var(--hairline); }
.nav-link { color: var(--ink-soft); }
.nav-link:hover { color: var(--ink); }
.nav-left .nav-link:hover { background: rgba(26, 26, 23, 0.07); color: var(--ink); }
.nav-drop:hover .nav-drop-btn, .nav-drop:focus-within .nav-drop-btn {
  background: rgba(26, 26, 23, 0.09); color: var(--ink);
}
.btn.nav-cta { background: var(--forest-deep); color: #fff; border-color: var(--forest-deep); }
.btn.nav-cta:hover { background: var(--forest); border-color: var(--forest); }
@media (max-width: 640px) {
  .banner { position: static; height: auto; display: block; padding: 0.55rem var(--gutter); }
  header.top { top: 0; }
}

/* ── Deck v8 rhythm: green section-break bands + green headline accents ── */
.stmt-band.green { background: var(--forest-deep); border-top: none; border-bottom: none; }
.stmt-band.green .stmt { color: var(--cream); }
.stmt-band.green .stmt em { color: var(--gold-soft); }
.stmt-band.green .stmt-side p { color: rgba(252, 251, 248, 0.82); }
.band-paper { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.display em, .section-head em { color: var(--forest-deep); }

/* ── Ask Cove concierge (site mock; backend at crossover) ── */
.askcove-fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 300;
  display: none; align-items: center; gap: 0.55rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  background: var(--forest-deep); color: #fff; border: 1px solid var(--forest-deep);
  border-radius: 99px; padding: 0.55rem 1.05rem;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 500; cursor: pointer;
  box-shadow: 0 10px 28px rgba(26, 26, 23, 0.25);
}
.askcove-fab.show { display: inline-flex; }
.askcove-fab.in { opacity: 1; transform: none; }
.askcove-fab img { height: 15px; width: auto; display: block; }
.ac-avatar { width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; align-self: center; }
.ac-avatar img { height: 100%; width: 100%; display: block; }
.askcove-panel {
  position: fixed; right: 1.2rem; bottom: 4.3rem; z-index: 300;
  width: min(408px, calc(100vw - 2.4rem)); height: min(620px, calc(100vh - 7rem));
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 16px;
  box-shadow: 0 30px 70px rgba(26, 26, 23, 0.28);
  display: none; flex-direction: column; overflow: hidden;
}
.askcove-panel.open { display: flex; }
.ac-head { display: flex; align-items: center; gap: 0.55rem; padding: 0.95rem 1.1rem; border-bottom: 1px solid var(--hairline-soft); font-family: var(--sans); flex: none; }
.ac-head .t { font-weight: 600; font-size: 0.92rem; }
.ac-head .s { color: var(--ink-light); font-size: 0.78rem; }
.ac-close { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--ink-light); font-size: 1.05rem; line-height: 1; padding: 0.2rem; }
.ac-close:hover { color: var(--ink); }
.ac-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: 0.9rem; }
.ac-user { align-self: flex-end; background: var(--cream-shade); border-radius: 14px 14px 4px 14px; padding: 0.55rem 0.85rem; font-family: var(--sans); font-size: 0.85rem; line-height: 1.45; max-width: 86%; }
.ac-cove { font-family: var(--serif); font-size: 0.97rem; line-height: 1.55; color: var(--ink-soft); max-width: 96%; }
.ac-cove strong { color: var(--ink); font-weight: 600; }
.ac-typing { display: inline-flex; gap: 0.25rem; align-items: center; height: 1rem; }
.ac-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--ink-faint); animation: acbounce 1.1s infinite; }
.ac-typing span:nth-child(2) { animation-delay: 0.15s; }
.ac-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes acbounce { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.ac-foot { flex: none; border-top: 1px solid var(--hairline-soft); padding: 0.85rem 1.1rem 0.9rem; }
.ac-suggest-lbl { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; color: var(--ink-light); margin-bottom: 0.45rem; }
.ac-chips { display: flex; flex-direction: column; align-items: flex-start; gap: 0.3rem; margin-bottom: 0.75rem; }
.ac-chip { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-soft); background: none; border: none; padding: 0.1rem 0; cursor: pointer; text-align: left; }
.ac-chip:hover { color: var(--forest-deep); text-decoration: underline; }
.ac-cta { margin-bottom: 0.7rem; }
.ac-inputrow { display: flex; align-items: center; gap: 0.5rem; border: 1px solid var(--hairline); border-radius: 12px; padding: 0.35rem 0.4rem 0.35rem 0.85rem; background: var(--cream); }
.ac-inputrow:focus-within { border-color: var(--forest); }
.ac-inputrow input { flex: 1; font-family: var(--serif); font-size: 0.97rem; color: var(--ink); border: none; background: none; padding: 0.35rem 0; }
.ac-inputrow input:focus { outline: none; }
.ac-send { flex: none; width: 30px; height: 30px; border-radius: 8px; border: none; background: var(--forest-deep); color: #fff; cursor: pointer; font-family: var(--sans); font-size: 0.9rem; line-height: 1; }
.ac-send:hover { background: var(--forest); }
.ac-fine { font-family: var(--sans); font-size: 0.66rem; color: var(--ink-light); text-align: center; padding: 0.6rem 0.4rem 0; line-height: 1.5; }


/* ── Hero with the real app record beneath the promise (2026-09-14) ── */
.hero-stack { padding: clamp(3rem, 5.5vw, 5.5rem) var(--gutter) 0; text-align: center; }
.hero-stack .display { max-width: 22ch; margin: 0 auto 1.5rem; }
.hero-stack .lead { max-width: 44rem; margin: 0 auto 2rem; }
.hero-stack .hero-cta { justify-content: center; margin-bottom: 2.4rem; }
.hero-stack .hero-anchors { max-width: 52rem; margin: 0 auto; justify-content: center; gap: 2.8rem; }
.hero-app {
  padding: clamp(2.5rem, 4vw, 4rem) var(--gutter) clamp(3rem, 5vw, 5rem);
  overflow: hidden;
}
.hero-app figure {
  position: relative;
  max-width: 1120px; margin: 0 auto;
  border: 1px solid var(--hairline); border-radius: 12px;
  box-shadow: 0 40px 80px -30px rgba(31, 26, 20, 0.22), 0 12px 28px -12px rgba(31, 26, 20, 0.10);
  overflow: hidden; background: var(--paper);
}
.hero-app img { width: 100%; height: auto; display: block; }
.hero-app figcaption {
  font-family: var(--sans); font-size: 0.8rem; color: var(--ink-light);
  text-align: center; max-width: 52rem; margin: 1.1rem auto 0;
  line-height: 1.6; letter-spacing: 0.01em;
}
@media (max-width: 760px) {
  .hero-app figure { border-radius: 8px; }
}


/* ── The math of monitoring: two-column worked comparison ── */
.compare { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; } }
.compare > div { padding: 2rem 1.9rem 2.2rem; }
.compare > div:first-child { border-right: 1px solid var(--hairline); }
@media (max-width: 860px) { .compare > div:first-child { border-right: none; border-bottom: 1px solid var(--hairline); } }
.compare .cove-side { background: var(--paper); }
.compare h3 { font-size: 1.5rem; font-weight: 500; margin: 0.7rem 0 1.4rem; }
.cmp-row { display: grid; grid-template-columns: 7rem 1fr auto; gap: 0.9rem; align-items: baseline; padding: 0.75rem 0; border-bottom: 1px solid var(--hairline-soft); }
.cmp-row .yr { font-family: var(--sans); font-size: 0.72rem; white-space: nowrap; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.cmp-row .what { color: var(--ink-soft); font-size: 1rem; line-height: 1.45; }
.cmp-row .amt { font-size: 1.02rem; font-weight: 500; white-space: nowrap; font-feature-settings: "tnum"; }
.cmp-row .amt.none { color: var(--ink-faint); font-weight: 400; }
.cmp-total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-top: 1.1rem; margin-top: 0.4rem; }
.cmp-total .lbl { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.cmp-total .val { font-size: 2rem; font-weight: 500; font-feature-settings: "tnum"; }
.cove-side .cmp-total .val { color: var(--forest-deep); }
.cmp-get { font-style: italic; color: var(--forest-deep); font-size: 1.04rem; margin-top: 1.1rem; line-height: 1.5; }
.compare .other-side .cmp-get { color: var(--brick); }
.cmp-fine { font-family: var(--sans); font-size: 0.74rem; color: var(--ink-light); line-height: 1.6; margin-top: 1.6rem; max-width: 60rem; }


/* ── Ask Cove, section 3: a decision demo ── */
.ask-demo {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 14px;
  box-shadow: 0 30px 70px -35px rgba(31, 26, 20, 0.20), 0 10px 24px -14px rgba(31, 26, 20, 0.08);
  padding: clamp(1.5rem, 2.6vw, 2.4rem); max-width: 60rem;
}
.ask-demo .ad-head { display: flex; align-items: center; gap: 0.6rem; padding-bottom: 1.1rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--hairline-soft); }
.ask-demo .ad-head .ac-avatar { width: 24px; height: 24px; }
.ask-demo .ad-head .t { font-family: var(--sans); font-size: 0.86rem; font-weight: 600; }
.ask-demo .ad-head .s { font-family: var(--sans); font-size: 0.76rem; color: var(--ink-light); }
.ask-q {
  background: var(--cream-shade); border-radius: 14px 14px 4px 14px;
  padding: 0.85rem 1.1rem; font-family: var(--sans); font-size: 0.92rem; line-height: 1.5;
  margin-left: auto; max-width: 40rem; width: fit-content; margin-bottom: 1.4rem;
}
.ask-a p { font-size: 1.04rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 1rem; }
.ask-a p strong { color: var(--ink); font-weight: 600; }
.ask-a .verdict { font-size: 1.12rem; color: var(--ink); }
.ask-figures { border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); margin: 1.2rem 0 1.3rem; }
.ask-figures .fig { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: baseline; padding: 0.55rem 0; border-bottom: 1px solid var(--hairline-soft); }
.ask-figures .fig:last-child { border-bottom: none; }
.ask-figures .fig .k { font-family: var(--sans); font-size: 0.86rem; color: var(--ink-soft); }
.ask-figures .fig .v { font-size: 1rem; font-weight: 500; font-feature-settings: "tnum"; white-space: nowrap; }
.ask-figures .fig.net { padding-top: 0.8rem; }
.ask-figures .fig.net .k { color: var(--ink); font-weight: 600; }
.ask-figures .fig.net .v { font-size: 1.35rem; color: var(--forest-deep); }
.ask-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.3rem; }
.ask-chips span {
  font-family: var(--sans); font-size: 0.8rem; color: var(--forest-deep);
  border: 1px solid var(--hairline); border-radius: 99px; padding: 0.35rem 0.85rem; background: var(--cream);
}
.ask-fine { font-family: var(--sans); font-size: 0.72rem; color: var(--ink-light); line-height: 1.6; margin-top: 1.2rem; }
.referral { border-left: 2px solid var(--gold-soft); padding-left: 1.4rem; max-width: 46rem; margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.referral p { font-size: 1.1rem; line-height: 1.6; color: var(--ink-soft); }


/* ── Section links that sit at the top of their section (Part 7) ── */
.sec-link {
  display: inline-block; margin-top: 0.9rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  color: var(--forest-deep); text-decoration: none;
}
.sec-link:hover { text-decoration: underline; }
.sec-link.on-dark { color: var(--night-soft); }
.sec-link.on-dark:hover { color: #fff; }
.dir-links { display: flex; flex-direction: column; gap: 0.4rem; margin-top: auto; padding-top: 1.2rem; }
.dir-links a {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  color: var(--forest-deep); text-decoration: none;
}
.dir-links a:hover { text-decoration: underline; }

/* ── Sharing at scale: the scan mechanic ── */
.scan-flow { display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); align-items: center; max-width: 720px; }
@media (max-width: 720px) { .scan-flow { grid-template-columns: 1fr; } }
.viewfinder {
  position: relative; aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden;
  background: linear-gradient(165deg, #3E4A3F, #1B2A20 70%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 60px -28px rgba(31, 26, 20, 0.45);
  display: flex; flex-direction: column; justify-content: space-between;
}
.viewfinder .vf-art { position: absolute; inset: 14% 12% 26%; border-radius: 4px; object-fit: cover; width: auto; height: auto; opacity: 0.92; }
.viewfinder .vf-frame { position: absolute; inset: 11% 9% 23%; border: 1.5px solid rgba(252,251,248,0.65); border-radius: 3px; }
.viewfinder .vf-corner { position: absolute; width: 16px; height: 16px; border: 2px solid var(--gold-soft); }
.viewfinder .vf-corner.tl { top: 9%; left: 7%; border-right: 0; border-bottom: 0; }
.viewfinder .vf-corner.tr { top: 9%; right: 7%; border-left: 0; border-bottom: 0; }
.viewfinder .vf-corner.bl { bottom: 21%; left: 7%; border-right: 0; border-top: 0; }
.viewfinder .vf-corner.br { bottom: 21%; right: 7%; border-left: 0; border-top: 0; }
.viewfinder .vf-hint { position: relative; z-index: 2; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.04em; color: rgba(252,251,248,0.85); text-align: center; padding: 0.9rem 1rem 0; }
.viewfinder .vf-shutter { position: relative; z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: 3px solid rgba(252,251,248,0.9); margin: 0 auto 1.1rem; background: rgba(252,251,248,0.18); }
.label-card {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px;
  padding: 1.3rem 1.4rem; box-shadow: 0 16px 40px -22px rgba(31,26,20,0.22);
}
.label-card .lc-eyebrow { font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.label-card .lc-artist { font-size: 1.16rem; font-weight: 500; line-height: 1.2; }
.label-card .lc-title { font-style: italic; font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
.label-card .lc-meta { font-family: var(--sans); font-size: 0.74rem; color: var(--ink-light); line-height: 1.55; }
.label-card .lc-ask { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.9rem; padding-top: 0.8rem; border-top: 1px solid var(--hairline-soft); font-family: var(--sans); font-size: 0.76rem; color: var(--ink-soft); }
.label-card .lc-ask .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--forest); flex: none; }

/* grant toggles */
.grants { display: grid; gap: 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); max-width: 46rem; }
.grant { display: grid; grid-template-columns: 1fr auto; gap: 1.2rem; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid var(--hairline-soft); }
.grant:last-child { border-bottom: none; }
.grant .g-name { font-size: 1.02rem; color: var(--ink); }
.grant .g-note { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-light); margin-top: 0.15rem; }
.g-toggle { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 99px; white-space: nowrap; }
.g-toggle.on { background: rgba(42, 90, 62, 0.12); color: var(--forest-deep); }
.g-toggle.off { background: var(--cream-shade); color: var(--ink-light); }

/* Band body copy matches lead scale (2026-09-16) */
.stmt-side p { font-size: clamp(1.2rem, 1.6vw, 1.52rem); line-height: 1.55; }

/* Dark contact chapter, site-wide (2026-09-16) */
section.night-band#contact .section-head { color: #FBFAF5; }
section.night-band#contact .section-head em { color: #C9B47E; }
section.night-band#contact .lead { color: rgba(251, 250, 245, 0.85); }
section.night-band#contact .form-thanks h3 { color: #FBFAF5; }

/* Warm paper grain on the cream ground (2026-09-16 critique round) */
body {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="180" height="180"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/><feComponentTransfer><feFuncA type="linear" slope="0.022"/></feComponentTransfer></filter><rect width="180" height="180" filter="url(%23n)"/></svg>');
}
/* One dark family: contact close is night-forest, not neutral black */
section.night-band#contact { background: var(--forest-deep); }

/* ── Subpage heroes: centered, optional artwork behind (2026-09-17) ── */
.moment-hero, .hero.page-hero { text-align: center; }
.moment-hero .display, .hero.page-hero .display { max-width: 30ch; margin-inline: auto; }
.moment-hero .lead, .hero.page-hero .lead { margin-inline: auto; }
.moment-hero .hero-cta, .hero.page-hero .hero-cta { justify-content: center; }
.crumb { justify-content: flex-start; }

/* Art-backed hero: cream scrim keeps the ink type legible, as on the homepage. */
.hero-art {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: clamp(4rem, 7vw, 7rem) !important;
  padding-bottom: clamp(4rem, 7vw, 7rem) !important;
}
.hero-art > * { position: relative; z-index: 1; }
/* Breadcrumb: lift it off an art-backed hero (2026-09-17) */
.crumb { padding-bottom: 1.45rem; }

/* Nav: dropdown wrappers align like the plain links (2026-09-17) */
.nav-drop { display: flex; align-items: center; }
.nav-left .nav-link, .nav-drop-btn { line-height: 1.25; }

/* Dropdowns: click opens/closes as well as hover (2026-09-17) */
.nav-drop.open .drop-panel { display: flex; }
.nav-drop.open .drop-panel.wide, .nav-drop.open .drop-panel.mega { display: grid; }
.nav-drop.open .caret { transform: rotate(180deg); }
.nav-drop.open .nav-drop-btn { background: rgba(26, 26, 23, 0.09); color: var(--ink); }

/* ── Nav v6 (2026-09-19): the mobile menu ──
   Below 960px the nav links and dropdowns are hidden. The burger markup shipped
   with the crossover but never got any CSS, so on a phone the site had no route
   to any page and no way to log in; the unstyled button showed as a white sliver
   at the right edge of the bar. The burger sits to the right of Request a demo,
   and the panel hangs off the bottom of the sticky nav (it is a child of
   header.top, so it follows the bar at any scroll position). */
.nav-burger { display: none; }
.mobile-menu { display: none; }
body.mm-lock { overflow: hidden; }

@media (max-width: 960px) {
  .nav-inner { gap: 0.9rem; }

  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 4px;
    flex: none; width: 2.7rem; height: 2.35rem; padding: 0 0.6rem;
    margin-left: 0.4rem;
    background: transparent; border: 1px solid var(--hairline); border-radius: 9px;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .nav-burger span {
    display: block; width: 100%; height: 1.5px; background: var(--ink);
    border-radius: 2px; transition: transform 0.22s ease, opacity 0.15s ease;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  .mobile-menu {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    max-height: 78vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: var(--cream);
    border-top: 1px solid var(--hairline-soft);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 26px 48px -26px rgba(31, 26, 20, 0.30);
    padding: 0.35rem var(--gutter) 1.7rem;
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a:not(.btn):not(.btn-ghost) {
    font-family: var(--serif); font-size: 1.06rem; line-height: 1.3;
    color: var(--ink); text-decoration: none;
    padding: 0.74rem 0; border-bottom: 1px solid var(--hairline-soft);
  }
  .mobile-menu a:active { color: var(--forest); }
  .mm-group {
    font-family: var(--sans); font-size: 0.66rem; font-weight: 600;
    letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-light);
    padding: 1.2rem 0 0.3rem;
  }
  .mobile-menu nav > .mm-group:first-child { padding-top: 0.5rem; }
  /* Log in leads the menu: the reason to open it on a phone is usually to get
     into the app, so it sits above the navigation rather than under Company. */
  .mobile-menu a.btn, .mobile-menu a.btn-ghost {
    display: flex; align-items: center; justify-content: center;
    font-family: var(--sans); font-size: 0.92rem; padding: 0.72rem 1.2rem;
  }
  .mobile-menu a.mm-login { margin: 0.55rem 0 0.15rem; }
  .mobile-menu a.btn { margin-top: 1.3rem; }
}
