/* v2 tokens, scoped so old-page tokens are untouched where names differ */
:root {
    --paper: #F5F3F0; --panel: #FFFFFF; --sunk: #ECE7E0;
    --ink: #16191F; --soft: #464C57; --muted: #72798A;
    --rule: #E2DDD6; --navy: #1E3A5F; --navy-deep: #14293F;
    --gold: #C8A24A;
    --teal: #1E3A5F; --on-teal: #FFFFFF;
    --serif: "Fraunces", Georgia, serif;
    --sans: "Inter", -apple-system, sans-serif;
  }
/* v2 chrome for content pages: masthead, buttons, compact hero.
   Loaded AFTER site.css so these blocks win where names collide. */
  /* ---------- masthead: identical on every page ---------- */
  .masthead { padding: 1.3rem 0; background: #F5F3F0; }
  .masthead .wrap { max-width: 70rem; margin: 0 auto; padding: 0 1.4rem;
    display: flex; align-items: center; justify-content: space-between; min-height: 46px; }
  .masthead .brand { line-height: 1; display: flex; align-items: center; gap: .6rem;
    color: #16191F; text-decoration: none; font-weight: 650;
    font-size: 1.05rem; letter-spacing: .01em; font-family: "Inter", -apple-system, sans-serif; }
  .masthead .brand svg { width: 22px; height: 27px; fill: #1E3A5F; }
  .masthead .nav { display: flex; align-items: center; gap: 1.6rem; margin: 0; }
  .masthead .nav a { color: #464C57; text-decoration: none; font-size: .92rem;
    font-weight: 550; white-space: nowrap; font-family: "Inter", -apple-system, sans-serif; }
  .masthead .nav a:hover { color: #16191F; }
  .masthead .nav a.btn-navy { display: inline-block; background: #1E3A5F;
    color: #fff; padding: .78rem 1.5rem; border-radius: 999px; border: 0;
    font-weight: 650; font-size: .95rem;
    transition: transform .18s ease, box-shadow .18s ease; }
  .masthead .nav a.btn-navy:hover { transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(30,58,95,.35); }
  .btn-navy { display: inline-block; background: #1E3A5F; color: #fff;
    padding: .78rem 1.5rem; border-radius: 999px; text-decoration: none;
    font-weight: 650; font-size: .95rem; }
  .masthead .nav-links { display: contents; }
  .masthead .nav-toggle { display: none; background: none; border: 0; padding: 8px 2px 8px 8px; cursor: pointer; }
  .masthead .nav-toggle span { display: block; width: 20px; height: 2px; background: #16191F; margin: 4px 0; border-radius: 2px; transition: transform .18s ease, opacity .18s ease; }
  .masthead.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .masthead.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .masthead.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  @media (max-width: 720px) {
    .masthead .hide-sm { display: none; }
    .masthead { position: relative; }
    .masthead .wrap { padding-left: 1.1rem; padding-right: 1.1rem; }
    .masthead .brand { white-space: nowrap; font-size: .98rem; }
    .masthead .nav-toggle { display: block; padding: 13px 12px; }
    .masthead .brand { padding: .55rem 0; }
    .masthead .nav { gap: .7rem; }
    .masthead .nav a.btn-navy { padding: .72rem 1.1rem; font-size: .88rem; }
    .foot a, footer nav a { display: inline-block; padding: .7rem 1rem .7rem 0; }
    .masthead.menu-open .nav-links { display: flex; flex-direction: column; align-items: stretch;
      position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
      background: #F5F3F0; border-bottom: 1px solid #E2DDD6;
      box-shadow: 0 18px 32px rgba(20,26,31,.12); padding: .4rem 1.4rem 1rem; }
    .masthead.menu-open .nav-links a.hide-sm { display: block; padding: .85rem .2rem;
      font-size: 1rem; border-bottom: 1px solid #E2DDD6; color: #16191F; }
    .masthead.menu-open .nav-links a.hide-sm:last-child { border-bottom: 0; }
  }

  /* ---------- HERO-03: split editorial on paper ---------- */
  .hero-split { position: relative; padding: 8.5rem 0 4.5rem; background:
    radial-gradient(60rem 40rem at 85% -20%, #E6ECF3 0%, transparent 60%), var(--paper); overflow: hidden; }
  .hero-split .wrap { display: grid; gap: 3rem; align-items: center; }
  @media (min-width: 960px) { .hero-split .wrap { grid-template-columns: 1.05fr 1fr; } }
  .hero-copy .eyebrow2 { color: var(--navy); font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
  .hero-copy h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); margin-top: 1rem; }
  .hero-copy h1 em { font-style: italic; color: var(--navy); }
  .hero-copy .lede2 { color: var(--soft); font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 34rem; margin-top: 1.3rem; }
  .hero-copy .hero-actions { justify-content: flex-start; margin-top: 2rem; }
  .hero-copy .hero-note2 { color: var(--muted); font-size: .85rem; margin-top: 1.1rem; }
  .hero-device .device-cap { text-align: center; }

