
  :root {
    --parchment: #ffffff;
    --parchment-deep: #ffffff;
    --ink: #1A2230;
    --ink-soft: #4C5668;
    --ink-faint: #828B9C;
    --navy: #101725;
    --navy-light: #1C2940;
    --navy-soft: #6b7589;
    --gold: #C4A062;
    --gold-soft: #DAB87B;
    --rule: rgba(26, 34, 48, 0.14);
    --rule-navy: rgba(245, 239, 224, 0.16);
    --serif: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
    --sans: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html, body {
    background: var(--parchment);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  body {
    overflow-x: hidden;
  }

  .serif { font-family: var(--serif); }
  .sans { font-family: var(--sans); }

  /* ——— Nav ——— */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 34px 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid transparent;
    background:
      linear-gradient(rgba(18, 32, 62, 0.68), rgba(18, 32, 62, 0.68)),
      image-set(url("assets/header-strip.avif") type("image/avif"), url("assets/header-strip.webp") type("image/webp"), url("assets/header-strip.png") type("image/png")) center 32% / cover no-repeat;
    color: var(--parchment);
  }
  .nav.scrolled {
    background:
      linear-gradient(rgba(18, 32, 62, 0.84), rgba(18, 32, 62, 0.84)),
      image-set(url("assets/header-strip.avif") type("image/avif"), url("assets/header-strip.webp") type("image/webp"), url("assets/header-strip.png") type("image/png")) center 32% / cover no-repeat;
    border-bottom-color: var(--rule-navy);
    color: var(--parchment);
    padding: 18px 32px;
  }
  .nav.on-navy {
    border-bottom-color: var(--rule-navy);
    color: var(--parchment);
  }
  .nav-mark {
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .nav-mark .ssl-mark {
    height: 64px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
  }
  .nav.scrolled .nav-mark .ssl-mark { height: 50px; }
  .nav-mark .wordmark {
    font-family: var(--serif);
    font-size: 38px;
    letter-spacing: 0.04em;
    background: linear-gradient(180deg, #FAE3BA 0%, #B08948 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    line-height: 1.02;
  }
  .nav-mark .wordmark .wm-line2 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
  }
  .nav-right {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 8px;
    min-width: 0;
  }
  .nav-link {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--parchment);
    text-decoration: none;
    opacity: 0.92;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .nav-link:hover { opacity: 1; }
  .nav-cta {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--parchment);
    padding: 10px 18px;
    border: 1px solid var(--parchment);
    text-decoration: none;
    cursor: pointer;
    background: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }
  .on-navy .nav-cta { color: var(--parchment); border-color: var(--parchment); }
  .nav-cta:hover { background: var(--parchment); color: var(--navy); }
  .on-navy .nav-cta:hover { background: var(--parchment); color: var(--navy); }

  /* ——— Shared layout ——— */
  section[id] { scroll-margin-top: 120px; }
  .wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .wrap-tight { max-width: 1040px; }

  .eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
  }
  .eyebrow.no-rule::before { display: none; }
  .on-navy .eyebrow { color: var(--gold-soft); }
  .on-navy .eyebrow::before { background: var(--gold-soft); }

  .rule {
    height: 1px;
    background: var(--rule);
    margin: 0;
  }
  .rule-gold {
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    width: 72px;
  }

  /* ——— Movement 1: Opening ——— */
  .m1 {
    padding: 120px 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .m1-inner {
    max-width: 1180px;
  }
  .m1 h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-top: 24px;
    max-width: 100%;
    text-wrap: balance;
  }
  .m1 h1 em {
    font-style: italic;
    color: var(--ink-soft);
  }
  .m1-sub {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 100%;
    margin-top: 16px;
    text-align: left;
    text-wrap: pretty;
  }
  .m1-sub + .m1-sub { margin-top: 12px; }
  .m1-sub strong {
    color: var(--ink);
    font-weight: 500;
  }
  .cta-row {
    display: flex;
    align-items: center;
    gap: 12px 24px;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #1E3A66;
    color: var(--parchment);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 22px 34px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    white-space: nowrap;
  }
  .cta:hover {
    background: #2A4C85;
    transform: translateY(-1px);
  }
  .cta .arrow {
    width: 18px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.2s;
  }
  .cta .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }
  .cta:hover .arrow { width: 26px; }
  .cta-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .cta-secondary:hover {
    background: #12203E;
    border-color: #12203E;
    color: var(--parchment);
  }
  .cta-meta {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink);
    letter-spacing: 0.02em;
  }
  .cta-meta strong { color: var(--ink-soft); font-weight: 500; }

  .m1-meta-row {
    position: absolute;
    bottom: 48px;
    left: 48px;
    right: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
  }
  .m1-meta-row .col { max-width: 22ch; }
  .m1-meta-row .num {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    display: block;
    margin-bottom: 6px;
  }

  /* ——— Movement 2: Promise ——— */
  .m2 {
    padding: 24px 0 32px;
    border-top: 1px solid var(--rule);
  }
  .m2-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 24px;
  }
  .m2-header h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-top: 28px;
    max-width: 10ch;
  }
  .m2-header h2 em { font-style: italic; color: var(--ink-soft); }
  .m2-header-right {
    padding-top: 28px;
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    font-style: italic;
    max-width: 42ch;
  }
  .m2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .m2-col h3 {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    padding-bottom: 18px;
    padding-left: 80px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 8px;
  }
  .m2-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: start;
    cursor: pointer;
    transition: padding-left 0.3s ease;
  }
  .m2-item:hover { padding-left: 8px; }
  .m2-item .idx {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
    padding-top: 10px;
  }
  .m2-item h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--ink);
  }
  .m2-item p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 44ch;
    text-wrap: pretty;
  }
  .m2-item .kicker {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 10px;
    display: block;
  }

  /* ——— Movement 3: Honesty ——— */
  .m3 {
    padding: 32px 0 24px;
    border-top: 1px solid var(--rule);
  }
  .m3.on-navy {
    background: var(--navy);
    color: var(--parchment);
    border-top: none;
  }
  .m3.on-navy h2 { color: var(--parchment); }
  .m3.on-navy h2 em { color: var(--gold-soft) !important; }
  .m3.on-navy .prose { color: rgba(245, 239, 224, 0.86); }
  .m3.on-navy .prose-lead { color: var(--parchment) !important; }
  .m3.on-navy .prose strong { color: var(--parchment) !important; }
  .m3.on-navy .prose .dropcap::first-letter { color: var(--gold-soft); }
  .m3.on-navy .prose hr { background: rgba(245, 239, 224, 0.16); }
  .m3.on-navy .closing-line { color: var(--gold-soft); }
  .m3 .wrap { max-width: 1180px; }
  .m3-eyebrow-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  .m3-sig {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-faint);
  }
  .m3 h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-wrap: balance;
  }
  .m3 h2 em { font-style: italic; color: var(--ink-soft); }
  .m3-body {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
  }
  .m3-body-solo { grid-template-columns: 1fr !important; }
  .m3-portrait {
    width: 100%;
    aspect-ratio: 4/5;
    background:
      repeating-linear-gradient(135deg,
        rgba(196, 160, 98, 0.07) 0 1px,
        transparent 1px 8px),
      var(--parchment-deep);
    border: 1px solid var(--rule);
    display: grid;
    place-items: center;
    position: relative;
    margin-bottom: 20px;
  }
  .m3-portrait::after {
    content: "PORTRAIT · MAURO";
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--ink-faint);
  }
  .m3-aside-meta {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .m3-aside-meta .name {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
  }
  .m3-aside-meta .role {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 14px;
  }

  .prose {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    max-width: 64ch;
    text-wrap: pretty;
  }
  .prose p { margin-bottom: 16px; }
  .prose p:last-child { margin-bottom: 0; }
  .prose .dropcap::first-letter {
    font-family: var(--serif);
    font-size: 64px;
    line-height: 0.9;
    float: left;
    padding: 8px 12px 0 0;
    color: var(--ink);
    font-weight: 400;
  }
  .prose-lead {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 20px;
    max-width: 38ch;
    font-style: italic;
  }
  .prose hr {
    border: none;
    height: 1px;
    background: var(--rule);
    margin: 20px 0;
    width: 80px;
  }
  .closing-line {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    line-height: 1.4;
    color: var(--gold);
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    max-width: 40ch;
  }

  /* ——— Movement 4: Ask (navy) ——— */
  .m4 {
    background: var(--navy);
    color: var(--parchment);
    padding: 32px 0 32px;
    position: relative;
    overflow: hidden;
  }
  .m4 .eyebrow { color: var(--gold-soft); }
  .m4 .eyebrow::before { background: var(--gold-soft); }
  .m4-header {
    text-align: left;
    max-width: 980px;
    margin-bottom: 24px;
  }
  .m4 h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--parchment);
    margin-top: 36px;
    max-width: 14ch;
    text-wrap: balance;
  }
  .m4 h2 em { font-style: italic; color: var(--gold); }
  .m4-sub {
    font-family: var(--sans);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
    color: var(--navy-soft);
    max-width: 54ch;
    margin-top: 16px;
  }
  .m4-sub strong { color: var(--parchment); font-weight: 400; }

  /* Form sits on a parchment card inside the navy section */
  .form-shell {
    background: var(--parchment);
    color: var(--ink);
    border: 1px solid rgba(26, 34, 48, 0.12);
    padding: 32px 32px 32px;
    max-width: 760px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  }
  .form-shell::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 64px;
    width: 72px;
    height: 1px;
    background: var(--gold);
  }
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
  }
  .form-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .form-step {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
  }

  /* Single-column with name split as a 2-col row */
  .field-stack { display: flex; flex-direction: column; gap: 12px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .field { position: relative; }
  .field label {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .field label .req { color: var(--gold); margin-left: 4px; }
  .field input, .field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 34, 48, 0.22);
    padding: 6px 0 8px;
    font-family: var(--sans);
    font-size: 17px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  .field input:focus, .field select:focus { border-bottom-color: var(--gold); }
  .field input::placeholder { color: rgba(26, 34, 48, 0.25); }
  .field select {
    background-image: linear-gradient(45deg, transparent 50%, var(--ink-faint) 50%),
                      linear-gradient(135deg, var(--ink-faint) 50%, transparent 50%);
    background-position: calc(100% - 12px) 20px, calc(100% - 6px) 20px;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 28px;
    cursor: pointer;
  }
  .field select option { background: var(--parchment); color: var(--ink); }
  .field.error input, .field.error select { border-bottom-color: #c4543a; }
  .field .err {
    font-family: var(--sans);
    font-size: 12px;
    color: #c4543a;
    margin-top: 8px;
    letter-spacing: 0.02em;
    display: none;
    pointer-events: none;
  }
  .field.error .err { display: block; }

  /* Textarea */
  .field textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(26, 34, 48, 0.18);
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
    min-height: 96px;
    border-radius: 0;
  }
  .field textarea:focus { border-color: var(--gold); }
  .field textarea::placeholder { color: rgba(26, 34, 48, 0.35); }

  /* Radio group */
  .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
  }
  .radio-group.inline { flex-direction: row; gap: 32px; }
  .field .radio-opt {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    padding: 8px 0;
    margin-bottom: 0;
    user-select: none;
  }
  .field .radio-opt input { position: absolute; opacity: 0; pointer-events: none; }
  .field .radio-opt .dot {
    display: inline-block;
    width: 16px; height: 16px;
    border: 1px solid rgba(26, 34, 48, 0.35);
    border-radius: 50%;
    position: relative;
    flex: 0 0 16px;
    transition: border-color 0.15s;
  }
  .field .radio-opt input:checked + .dot { border-color: var(--ink); }
  .field .radio-opt input:checked + .dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--ink);
    border-radius: 50%;
  }
  .field .radio-opt:hover .dot { border-color: var(--ink); }

  /* Optional/conditional hint */
  .field label .opt {
    color: var(--ink-faint);
    font-weight: 500;
    margin-left: 6px;
    letter-spacing: 0.18em;
  }
  .conditional-note {
    font-family: var(--sans);
    font-style: italic;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    display: block;
  }

  /* Submit sits directly below fields; reassurance line below that */
  .form-submit-row {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .form-reassurance {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.01em;
    line-height: 1.5;
  }
  .submit-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #1E3A66;
    color: var(--parchment);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 22px 34px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
  }
  .submit-cta:hover {
    background: #2A4C85;
    transform: translateY(-1px);
  }
  .submit-cta .arrow {
    width: 18px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.2s;
  }
  .submit-cta .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }
  .submit-cta:hover .arrow { width: 26px; }
  .submit-cta[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
  }

  /* Success state (on parchment) */
  .form-success { padding: 8px; }
  .form-success .tick {
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 32px;
    position: relative;
  }
  .form-success .tick::after {
    content: "";
    width: 14px; height: 7px;
    border-left: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    transform: rotate(-45deg) translate(2px, -2px);
  }
  .form-success h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    max-width: 22ch;
    color: var(--ink);
  }
  .form-success h3 em { font-style: italic; color: var(--ink-soft); }
  .form-success p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 54ch;
    margin-bottom: 16px;
  }
  .form-success p strong { color: var(--ink); font-weight: 500; }
  .success-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }
  .success-meta .col .k {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 8px;
    display: block;
  }
  .success-meta .col .v {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
  }

  /* ——— Footer ——— */
  .footer {
    background: var(--navy);
    color: #97A0B0;
    padding: 32px 0 32px;
    border-top: 1px solid var(--rule-navy);
    font-family: var(--sans);
    font-size: 13px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    column-gap: 72px;
    gap: 32px;
    margin-bottom: 24px;
  }
  .footer h5 {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--parchment);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .footer ul { list-style: none; }
  .footer-grid > div:nth-child(2), .footer-grid > div:last-child { justify-self: end; }
  .footer ul.sitemap-cols { columns: 2; column-gap: 32px; }
  .footer ul.sitemap-cols li { break-inside: avoid; }
  .footer li { margin-bottom: 10px; }
  .footer a {
    color: #C2C9D6;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer a:hover { color: var(--parchment); }
  .footer-mark {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--parchment);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }
  .footer-bio {
    color: var(--navy-soft);
    max-width: 36ch;
    line-height: 1.65;
  }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--rule-navy);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #97A0B0;
    letter-spacing: 0.04em;
  }

  /* Reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ——— New v2 sections (m5 = The Report stack, m6 = FAQ, m7 = Contact) ——— */
  .m5, .m6, .m7 {
    padding: 24px 0;
    border-top: 1px solid var(--rule);
  }
  .m5 .wrap, .m6 .wrap, .m7 .wrap { max-width: 1180px; }
  .m5-block { margin-bottom: 24px; }
  .m5-block:last-child { margin-bottom: 0; }
  .m5-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 24px;
  }
  .m5-head h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-top: 24px;
    max-width: 14ch;
    text-wrap: balance;
  }
  .m5-head h2 em { font-style: italic; color: var(--ink-soft); }
  .m5-head .lede {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    padding-top: 32px;
    max-width: 56ch;
    text-wrap: pretty;
  }
  .m5-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
  }
  .m5-list .row {
    padding: 28px 0;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    align-items: start;
  }
  .m5-list .row .n {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 14px;
    padding-top: 4px;
  }
  .m5-list .row h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .m5-list .row p {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    text-wrap: pretty;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 8px;
  }
  .steps .step { padding-top: 28px; border-top: 1px solid var(--rule); }
  .steps .step .num {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .steps .step h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .steps .step p {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* FAQ */
  .m6 h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 12px 0 24px;
    text-wrap: balance;
  }
  .m6 h2 em { font-style: italic; color: var(--ink-soft); }
  .faq details {
    border-top: 1px solid var(--rule);
    padding: 12px 0;
  }
  .faq details:last-of-type { border-bottom: 1px solid var(--rule); }
  .faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.35;
    color: var(--ink);
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+";
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
    transition: transform 0.2s;
    flex: 0 0 auto;
  }
  .faq details[open] summary::after { content: "\2013"; }
  .faq .a {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-top: 18px;
    max-width: 70ch;
    text-wrap: pretty;
  }

  /* Contact / NAP */
  .m7 .nap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
  }
  .m7 h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-top: 12px;
    text-wrap: balance;
  }
  .m7 h2 em { font-style: italic; color: var(--ink-soft); }
  .nap-card .k {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: block;
    margin-bottom: 12px;
  }
  .nap-card .v {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .nap-card a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); }
  .nap-card a:hover { border-bottom-color: var(--gold); }
  .nap-card .meta {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  @media (max-width: 960px) {
    .m5-head, .m5-list, .steps, .m7 .nap-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ——— Sticky section rail (Option D) ——— */
  .section-rail {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px 14px 14px;
    background: rgba(245, 239, 224, 0.86);
    border: 1px solid var(--rule);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(16, 23, 37, 0.06);
  }
  .section-rail a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink-soft);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 6px;
    transition: color 0.2s;
  }
  .section-rail .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid var(--ink-faint);
    background: transparent;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
  }
  .section-rail .label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: max-width 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
    color: inherit;
  }
  .section-rail:hover .label { max-width: 200px; opacity: 1; padding-right: 4px; }
  .section-rail a:hover { color: var(--ink); }
  .section-rail a:hover .dot { border-color: var(--ink); }
  .section-rail a.active { color: var(--ink); }
  .section-rail a.active .dot {
    background: var(--ink);
    border-color: var(--ink);
    transform: scale(1.15);
  }
  .section-rail a.active .label { max-width: 200px; opacity: 1; padding-right: 4px; }
  @media (max-width: 1100px) { .section-rail { display: none; } }

  /* ——— Tweaks panel ——— */
  .tweaks {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: var(--parchment);
    border: 1px solid var(--ink);
    padding: 20px 22px;
    font-family: var(--sans);
    font-size: 12px;
    max-width: 280px;
    display: none;
    box-shadow: 0 24px 60px rgba(16, 23, 37, 0.18);
  }
  .tweaks.open { display: block; }
  .tweaks h5 {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tweaks h5 span {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .tweaks-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-faint);
    font-size: 22px;
    line-height: 1;
    padding: 0 0 0 12px;
    margin-left: auto;
    transition: color 0.15s;
  }
  .tweaks-close:hover { color: var(--ink); }
  .tweaks-group { margin-bottom: 16px; }
  .tweaks-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 8px;
  }
  .tweaks-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .tweaks-btn {
    font-family: var(--sans);
    font-size: 11px;
    padding: 7px 11px;
    border: 1px solid var(--rule);
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s;
  }
  .tweaks-btn:hover { border-color: var(--ink); color: var(--ink); }
  .tweaks-btn.active {
    background: var(--ink);
    color: var(--parchment);
    border-color: var(--ink);
  }
  .tweaks-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  .tweaks-switch {
    width: 28px;
    height: 16px;
    background: var(--rule);
    position: relative;
    transition: background 0.2s;
  }
  .tweaks-switch::after {
    content: "";
    position: absolute;
    top: 2px; left: 2px;
    width: 12px; height: 12px;
    background: var(--parchment);
    transition: left 0.2s;
  }
  .tweaks-toggle.on .tweaks-switch { background: var(--ink); }
  .tweaks-toggle.on .tweaks-switch::after { left: 14px; }

  @media (max-width: 1180px) {
    .nav-right { gap: 14px; }
    .nav-link { font-size: 11px; letter-spacing: 0.1em; }
    .nav-cta { white-space: nowrap; }
    .m1 { padding-top: 130px; }
  }

  @media (max-width: 960px) {
    .nav { padding: 20px 24px; }
    .wrap { padding: 0 24px; }
    .m1 { padding: 130px 0 24px; }
    .m2-header, .m2-grid, .m3-body { grid-template-columns: 1fr; gap: 24px; }
    .m3-aside { position: static; }
    .m3-portrait { max-width: 320px; }
    .field-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-shell { padding: 36px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid > div:nth-child(2) { grid-column: 1; justify-self: end; }
    .footer-grid > div:last-child { grid-column: 2; justify-self: end; }
    .success-meta { grid-template-columns: 1fr; gap: 20px; }
    .m1-meta-row { position: static; margin-top: 32px; flex-direction: column; gap: 24px; align-items: flex-start; }
  }


  @media (max-width: 720px) {
    .nav { align-items: center; }
    .nav-right { flex-wrap: wrap; justify-content: flex-end; gap: 10px 14px; row-gap: 8px; }
    .nav-link { font-size: 12px; }
    .m5-list { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div { grid-column: auto !important; justify-self: start !important; }
  }

/* Multipage overrides: CTA button on navy */
.m4 .cta {
  background: var(--parchment) !important;
  color: var(--ink) !important;
}
.m4 .cta:hover {
  background: var(--gold-soft) !important;
  color: var(--ink) !important;
}


/* ——— One-family type system ——— */
.m1 h1, .m2-header h2, .m3 h2, .m4 h2, .m5-head h2, .m6 h2, .m7 h2,
.form-title, .m2-item h4, .m5-list .row h4, .steps .step h4,
.faq summary, .form-success h3, .nap-card .v, .footer-mark {
  font-weight: 600;
  letter-spacing: -0.015em;
}


/* One ink color per headline (light sections) */
.m1 h1 em, .m2-header h2 em, .m3 h2 em, .m5-head h2 em, .m6 h2 em, .m7 h2 em, .form-success h3 em {
  color: inherit;
}

/* ——— Funnel feedback additions ——— */
.cta-gold { background: var(--gold) !important; color: var(--navy) !important; border-color: var(--gold) !important; }
.cta-gold:hover { background: var(--gold-soft) !important; color: var(--navy) !important; }
.midcta { background: var(--parchment-deep); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 40px 0; text-align: center; }
.midcta p { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 20px; }
.footer-cta-row { display: flex; gap: 16px; justify-content: center; padding: 32px 24px 0; flex-wrap: wrap; }
.mobile-cta-bar { display: none; }
@media (max-width: 600px) {
  .mobile-cta-bar { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--gold); color: var(--navy); text-align: center; padding: 14px 16px; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; box-shadow: 0 -4px 16px rgba(0,0,0,0.25); }
  body { padding-bottom: 48px; }
  .cta { white-space: normal; text-align: center; justify-content: center; padding: 18px 20px; width: 100%; }
  .cta-row { align-items: stretch; }
  .cta-row .cta { flex: 1 1 100%; }
}

/* ——— Mobile nav (hamburger) ——— */
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px 6px; color: var(--parchment); }
.nav-burger span { display: block; width: 24px; height: 2px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-burger span + span { margin-top: 6px; }
@media (max-width: 880px) {
  .nav { align-items: center; }
  .nav-burger { display: block; }
  .nav-right { display: none; }
  .nav.open .nav-right { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0; padding: 20px 24px 24px; gap: 16px; background: rgba(18, 32, 62, 0.97); border-bottom: 1px solid var(--rule-navy); }
  .nav.open .nav-right .nav-link { font-size: 14px; letter-spacing: 0.14em; }
  .nav.open .nav-right .nav-cta { margin-top: 4px; }
  .nav.open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
