/* ============================================================
       MIDDLETON FOR DA — v6 "Editorial Case for Re-Election"
       Big numerals · real pull quotes · distinct pillar colors ·
       cyan finally working · photo-led · serious editorial register.
       ============================================================ */

    :root {
      --sky:       #14B4DF;
      --sky-2:     #0E9BC4;
      --royal:     #2955A6;
      --royal-2:   #1F4485;
      --mid-blue:  #3A65B0;
      --gold:      #E8B820;
      --gold-2:    #FFD333;
      --gold-3:    #B89515;
      --navy:      #081D3E;
      --navy-2:    #050F24;
      --navy-soft: #122E5E;
      --paper:     #FFFFFF;
      --cream:     #FAF8F2;
      --cream-2:   #F2EEDE;
      --line:      #E6E2D2;
      --line-soft: #EFECE0;
      --ink:       #0C1A2E;
      --ink-2:     #36425A;
      --muted:     #6B7588;

      --sans: 'gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      --slab: 'neutraface-slab-display', 'Roboto Slab', Georgia, 'Times New Roman', serif;

      --max:        1280px;
      --max-narrow: 920px;
      --max-text:   720px;

      --ease: cubic-bezier(0.2, 0.65, 0.3, 1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    }

    body {
      margin: 0;
      font-family: var(--sans);
      font-size: 17px;
      font-weight: 400;
      line-height: 1.6;
      color: var(--ink);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    img, svg { display: block; max-width: 100%; height: auto; }
    a { color: var(--royal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(41, 85, 166, 0.35); transition: color .2s var(--ease), text-decoration-color .2s var(--ease); }
    a:hover { color: var(--sky-2); text-decoration-color: currentColor; }
    a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
    p { margin: 0 0 1em; }
    ::selection { background: var(--gold-2); color: var(--navy); }

    .container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
    .narrow { max-width: var(--max-narrow); margin-left: auto; margin-right: auto; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    .skip { position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--paper); padding: 12px 16px; z-index: 100; }
    .skip:focus { left: 12px; top: 12px; }

    /* Eyebrow — refined label with leader rule */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--royal);
    }
    .eyebrow::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--sky);
      flex-shrink: 0;
    }
    .eyebrow--sky   { color: var(--sky-2); }
    .eyebrow--gold  { color: var(--gold-3); }
    .eyebrow--gold::before  { background: var(--gold); }
    .eyebrow--light { color: var(--sky); }
    .eyebrow--light::before { background: var(--sky); }

    /* ============================================================
       Buttons
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 26px;
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 0;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
      line-height: 1;
      white-space: nowrap;
    }
    .btn--gold    { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-1px); box-shadow: 0 14px 28px -12px rgba(232, 184, 32, 0.55); color: var(--navy); }
    .btn--navy    { background: var(--navy); color: var(--paper); border-color: var(--navy); }
    .btn--navy:hover { background: var(--navy-soft); border-color: var(--navy-soft); color: var(--paper); transform: translateY(-1px); }
    .btn--royal   { background: var(--royal); color: var(--paper); border-color: var(--royal); }
    .btn--royal:hover { background: var(--royal-2); border-color: var(--royal-2); color: var(--paper); transform: translateY(-1px); }
    .btn--ghost   { background: transparent; color: var(--navy); border-color: var(--navy); }
    .btn--ghost:hover { background: var(--navy); color: var(--paper); transform: translateY(-1px); }
    .btn--ghost-light { background: transparent; color: var(--paper); border-color: rgba(255, 255, 255, 0.5); }
    .btn--ghost-light:hover { background: var(--paper); color: var(--navy); border-color: var(--paper); transform: translateY(-1px); }
    .btn--lg { padding: 18px 32px; font-size: 13.5px; }
    .btn .arrow { transition: transform .25s var(--ease); display: inline-block; }
    .btn:hover .arrow { transform: translateX(4px); }

    /* ============================================================
       Announce + Header
       ============================================================ */
    .announce {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.92);
      font-size: 13px;
      font-weight: 500;
    }
    .announce-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 10px 20px;
      text-align: center;
      flex-wrap: wrap;
    }
    .announce strong {
      color: var(--gold-2);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }
    .announce .sep { color: var(--mid-blue); opacity: 0.6; }
    .announce a { color: var(--paper); text-decoration-color: var(--gold); font-weight: 600; }
    .announce a:hover { color: var(--gold-2); }
    @media (max-width: 640px) {
      .announce-inner { gap: 10px; padding: 9px 16px; font-size: 12px; }
      .announce .sep { display: none; }
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: saturate(140%) blur(16px);
      -webkit-backdrop-filter: saturate(140%) blur(16px);
      border-bottom: 1px solid var(--line-soft);
      transition: box-shadow .3s var(--ease);
    }
    .header.is-scrolled { box-shadow: 0 12px 28px -22px rgba(8, 29, 62, 0.22); }
    .nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
    .brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--navy); }
    .brand:hover { color: var(--navy); }
    .brand-shield { width: auto; height: 50px; flex-shrink: 0; }
    .brand-wordmark { width: auto; height: 42px; flex-shrink: 0; display: block; }
    @media (max-width: 520px) {
      .brand-shield { height: 42px; }
      .brand-wordmark { height: 34px; }
    }

    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
    .nav-links a {
      font-family: var(--sans);
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-2);
      text-decoration: none;
      padding: 10px 14px;
      border-radius: 0;
      transition: color .2s var(--ease), background .2s var(--ease);
    }
    .nav-links a:hover { color: var(--royal); background: rgba(41, 85, 166, 0.06); }
    .nav-links a[aria-current="page"] { color: var(--gold); font-weight: 700; position: relative; }
    .nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--gold); border-radius: 1px; }
    .nav-links a[aria-current="page"]:hover { color: var(--gold); background: rgba(232, 184, 32, 0.08); }
    .mobile-menu-list a[aria-current="page"] { color: var(--gold); position: relative; }
    .mobile-menu-list a[aria-current="page"]::before { content: ""; position: absolute; left: -14px; top: 50%; transform: translateY(-50%); width: 3px; height: 28px; background: var(--gold); }
    .nav-cta { display: inline-flex; align-items: center; gap: 10px; }

    .nav-toggle {
      display: none;
      width: 44px; height: 44px;
      align-items: center; justify-content: center;
      background: var(--navy); border: 0; cursor: pointer;
      color: var(--paper); position: relative; z-index: 50;
    }
    .nav-toggle span { display: block; width: 18px; height: 1.8px; background: currentColor; position: relative; }
    .nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1.8px; background: currentColor; transition: transform .25s var(--ease), top .25s var(--ease); }
    .nav-toggle span::before { top: -6px; }
    .nav-toggle span::after  { top:  6px; }
    .nav-toggle[aria-expanded="true"] span { background: transparent; }
    .nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed; inset: 0;
      background: var(--navy);
      padding: 96px 28px 40px;
      overflow-y: auto;
      z-index: 38;
      transform: translateY(-100%);
      transition: transform .4s var(--ease);
    }
    .mobile-menu.is-open { transform: translateY(0); }
    .mobile-menu-list { list-style: none; padding: 0; margin: 0; }
    .mobile-menu-list li { border-bottom: 1px solid rgba(255,255,255,0.08); opacity: 0; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
    .mobile-menu.is-open li { opacity: 1; transform: translateY(0); }
    .mobile-menu.is-open li:nth-child(1) { transition-delay: .08s; }
    .mobile-menu.is-open li:nth-child(2) { transition-delay: .12s; }
    .mobile-menu.is-open li:nth-child(3) { transition-delay: .16s; }
    .mobile-menu.is-open li:nth-child(4) { transition-delay: .20s; }
    .mobile-menu.is-open li:nth-child(5) { transition-delay: .24s; }
    .mobile-menu.is-open li:nth-child(6) { transition-delay: .28s; }
    .mobile-menu li:last-child { border-bottom: 0; }
    .mobile-menu a {
      display: block; padding: 24px 4px;
      font-family: var(--sans);
      font-weight: 600; font-size: 22px;
      color: var(--paper); text-decoration: none;
      transition: color .2s var(--ease);
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu-cta { padding-top: 28px; border-bottom: 0 !important; }
    .mobile-menu-cta .btn {
      display: flex;
      width: 100%;
      padding: 18px 20px;
      white-space: normal;
      text-align: center;
      font-size: 13px;
    }

    @media (max-width: 960px) {
      .nav-toggle { display: inline-flex; }
      .nav-links--desktop { display: none; }
      .mobile-menu { display: block; }
      .nav-cta .btn--header { display: none; }
      body.menu-open { overflow: hidden; }
    }

    /* ============================================================
       HERO — editorial split, big quote-led
       ============================================================ */
    .hero {
      position: relative;
      padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 88px);
      background: var(--paper);
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(40px, 5vw, 72px);
      align-items: stretch;
      min-height: clamp(560px, 70vh, 720px);
    }
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      animation: fadeUp .9s var(--ease) both;
    }
    .hero-meta {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--royal);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .hero-meta::before { content: ''; width: 32px; height: 2px; background: var(--sky); flex-shrink: 0; }
    .hero-meta span { color: var(--ink-2); }
    .hero-meta .pip { color: var(--gold-3); }

    /* THE QUOTE — hero's centerpiece */
    .hero-quote {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(48px, 7.5vw, 104px);
      line-height: 0.98;
      letter-spacing: -0.025em;
      color: var(--navy);
      margin: 0 0 28px;
    }
    .hero-quote .dots { color: var(--gold); font-family: var(--sans); font-weight: 800; letter-spacing: 0; }
    .hero-quote em {
      font-style: normal;
      color: var(--royal);
      position: relative;
      display: inline-block;
    }
    .hero-quote em::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      bottom: 0.04em;
      height: 0.12em;
      background: var(--sky);
      opacity: 0.32;
      z-index: -1;
    }

    .hero-sub {
      font-family: var(--sans);
      font-weight: 600;
      font-size: clamp(16px, 1.6vw, 18px);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-2);
      margin: 0 0 22px;
    }
    .hero-sub .accent { color: var(--royal); }

    .hero-lede {
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink-2);
      max-width: 480px;
      margin: 0 0 36px;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .hero-date-strip {
      display: inline-flex;
      align-items: stretch;
      gap: 0;
      border: 1.5px solid var(--navy);
      width: fit-content;
    }
    .hero-date-strip > * {
      padding: 14px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-date-strip > :not(:last-child) { border-right: 1.5px solid var(--navy); }
    .hero-date-strip .label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .hero-date-strip .value {
      font-family: var(--slab);
      font-weight: 700;
      font-size: 15px;
      color: var(--navy);
      line-height: 1;
    }
    .hero-date-strip .is-primary { background: var(--gold); }
    .hero-date-strip .is-primary .label { color: var(--navy); opacity: 0.7; }
    .hero-date-strip .is-primary .value { color: var(--navy); }

    /* HERO RIGHT — formal portrait, photo-led treatment */
    .hero-right {
      position: relative;
      animation: fadeUp 1s .15s var(--ease) both;
      min-height: clamp(480px, 56vw, 640px);
      overflow: hidden;
    }
    .hero-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 22%;
      display: block;
    }
    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(165deg, rgba(20, 180, 223, 0.08) 0%, transparent 35%),
        linear-gradient(0deg, rgba(8, 29, 62, 0.20) 0%, transparent 35%);
      pointer-events: none;
      z-index: 1;
    }
    .hero-credential {
      position: absolute;
      bottom: 24px;
      left: -16px;
      z-index: 4;
      max-width: 280px;
      background: var(--paper);
      color: var(--navy);
      padding: 18px 22px;
      border-left: 4px solid var(--gold);
      box-shadow: 0 24px 50px -28px rgba(0,0,0,0.35);
    }
    .hero-credential .stamp {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold-3);
      margin-bottom: 8px;
      display: block;
    }
    .hero-credential .title {
      font-family: var(--slab);
      font-weight: 700;
      font-size: 19px;
      line-height: 1.1;
      letter-spacing: -0.005em;
      color: var(--navy);
      display: block;
      margin-bottom: 6px;
    }
    .hero-credential .source {
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      line-height: 1.4;
    }

    @media (max-width: 880px) {
      .hero-grid { grid-template-columns: 1fr; gap: 32px; }
      .hero-right { min-height: 440px; max-width: 520px; margin: 0 auto; width: 100%; }
      .hero-credential { left: 12px; bottom: 16px; max-width: 240px; padding: 14px 18px; }
    }

    /* ============================================================
       BY THE NUMBERS — proof points
       ============================================================ */
    .numbers {
      background: var(--cream);
      padding: clamp(80px, 9vw, 120px) 0;
      position: relative;
      overflow: hidden;
    }
    .numbers::before {
      content: '';
      position: absolute;
      left: 0; right: 0;
      top: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--sky) 30%, var(--gold) 70%, transparent 100%);
      opacity: 0.4;
    }
    .numbers-head {
      max-width: 720px;
      margin: 0 auto clamp(56px, 7vw, 88px);
      text-align: center;
    }
    .numbers-head .eyebrow { justify-content: center; margin-bottom: 22px; }
    .numbers-head h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(32px, 4.4vw, 48px);
      line-height: 1.08;
      letter-spacing: -0.015em;
      color: var(--navy);
      margin: 0;
    }
    .numbers-head h2 .accent { color: var(--royal); }
    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 2px solid var(--navy);
      border-bottom: 2px solid var(--navy);
    }
    .number {
      padding: clamp(36px, 4vw, 56px) clamp(20px, 2.5vw, 32px);
      border-right: 1px solid var(--line);
      position: relative;
      transition: background .25s var(--ease);
    }
    .number:last-child { border-right: 0; }
    .number:hover { background: var(--paper); }
    .number-value {
      font-family: var(--slab);
      font-weight: 800;
      font-size: clamp(72px, 9vw, 132px);
      line-height: 0.88;
      letter-spacing: -0.03em;
      color: var(--navy);
      display: block;
      margin-bottom: 18px;
    }
    .number:nth-child(1) .number-value { color: var(--royal); }
    .number:nth-child(2) .number-value { color: var(--gold-3); }
    .number:nth-child(3) .number-value { color: var(--sky-2); }
    .number:nth-child(4) .number-value { color: var(--navy); }
    .number-value .small { font-size: 0.45em; letter-spacing: 0; vertical-align: 0.42em; margin-left: 0.04em; font-weight: 700; }
    .number-label {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-2);
      line-height: 1.4;
      display: block;
    }
    .number-detail {
      display: block;
      font-family: var(--sans);
      font-weight: 400;
      font-size: 13.5px;
      letter-spacing: 0;
      text-transform: none;
      color: var(--muted);
      margin-top: 8px;
      line-height: 1.45;
    }

    @media (max-width: 880px) {
      .numbers-grid { grid-template-columns: repeat(2, 1fr); }
      .number { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
      .number:nth-child(2n) { border-right: 0; }
      .number:nth-last-child(-n+2) { border-bottom: 0; }
    }
    @media (max-width: 520px) {
      .numbers-grid { grid-template-columns: 1fr; }
      .number { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
      .number:last-child { border-bottom: 0 !important; }
    }

    /* ============================================================
       THE RECORD — editorial prose w/ courthouse-cropped aside
       ============================================================ */
    .record {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--paper);
    }
    .record-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: clamp(40px, 6vw, 88px);
      align-items: start;
      max-width: 1180px;
      margin: 0 auto;
    }
    .record-prose .eyebrow { margin-bottom: 24px; }
    .record-prose h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin: 0 0 32px;
    }
    .record-prose h2 .accent { color: var(--royal); }
    .record-prose p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--ink-2);
      max-width: 540px;
      margin: 0 0 1.1em;
    }
    .record-prose .lede-p {
      font-family: var(--slab);
      font-weight: 500;
      font-size: clamp(20px, 2.2vw, 22px);
      line-height: 1.45;
      color: var(--navy);
      margin-bottom: 28px;
      max-width: 540px;
      letter-spacing: -0.005em;
    }
    .record-prose .lede-p::first-letter {
      font-family: var(--slab);
      font-weight: 800;
      font-size: 4.4em;
      float: left;
      line-height: 0.85;
      margin: 6px 14px 0 -2px;
      color: var(--gold);
    }
    .record-aside {
      position: sticky;
      top: 110px;
      padding-left: clamp(0px, 3vw, 40px);
      border-left: 1px solid var(--line);
    }
    .record-aside .label {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 22px;
    }
    .honors { list-style: none; padding: 0; margin: 0; }
    .honors li {
      padding: 18px 0;
      border-bottom: 1px solid var(--line-soft);
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 18px;
      align-items: baseline;
    }
    .honors li:last-child { border-bottom: 0; }
    .honors .year {
      font-family: var(--slab);
      font-weight: 700;
      font-size: 16px;
      color: var(--gold-3);
      letter-spacing: 0;
    }
    .honors .title {
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
    }
    .honors .source {
      display: block;
      font-size: 13px;
      font-weight: 400;
      color: var(--muted);
      margin-top: 4px;
    }

    @media (max-width: 880px) {
      .record-grid { grid-template-columns: 1fr; }
      .record-aside { position: static; padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 32px; }
    }

    /* ============================================================
       PULL QUOTE — Editorial Recognition Card
       ============================================================ */
    .recognition {
      background: var(--royal);
      color: var(--paper);
      padding: clamp(80px, 10vw, 120px) 0;
      position: relative;
      overflow: hidden;
    }
    .recognition::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(700px 400px at 10% 10%, rgba(20, 180, 223, 0.32), transparent 60%),
        radial-gradient(700px 400px at 90% 100%, rgba(232, 184, 32, 0.18), transparent 60%);
      pointer-events: none;
    }
    .recognition-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: clamp(36px, 6vw, 88px);
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .recognition-year {
      font-family: var(--slab);
      font-weight: 800;
      font-size: clamp(80px, 14vw, 220px);
      line-height: 0.85;
      letter-spacing: -0.04em;
      color: var(--gold);
      display: block;
    }
    .recognition-eyebrow {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 18px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }
    .recognition-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold); }
    .recognition h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(36px, 5.5vw, 64px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--paper);
      margin: 0 0 20px;
    }
    .recognition h2 .gold { color: var(--gold); }
    .recognition p {
      font-size: clamp(15px, 1.5vw, 17px);
      line-height: 1.6;
      color: rgba(255,255,255,0.88);
      max-width: 540px;
      margin: 0 0 24px;
    }
    .recognition-attr {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-2);
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.20);
    }
    .recognition-attr small {
      display: block;
      font-family: var(--slab);
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0;
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      margin-top: 4px;
    }

    @media (max-width: 720px) {
      .recognition-grid { grid-template-columns: 1fr; }
      .recognition-year { font-size: clamp(96px, 30vw, 180px); }
    }

    /* ============================================================
       ON THE JOB — clean side-by-side, NO text-over-photo
       ============================================================ */
    .onthejob {
      background: var(--navy);
      color: var(--paper);
      position: relative;
      overflow: hidden;
    }
    .onthejob::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(700px 400px at 8% 12%, rgba(20, 180, 223, 0.18), transparent 60%),
        radial-gradient(600px 400px at 92% 88%, rgba(232, 184, 32, 0.10), transparent 60%);
      pointer-events: none;
    }
    .onthejob-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
      min-height: clamp(520px, 65vw, 720px);
      position: relative;
      z-index: 2;
    }
    .onthejob-photo {
      position: relative;
      overflow: hidden;
      background: var(--navy-soft);
    }
    picture { display: contents; }
    .onthejob-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      display: block;
    }
    .onthejob-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 60%, rgba(8, 29, 62, 0.55) 100%);
      pointer-events: none;
    }
    .onthejob-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
      max-width: 640px;
    }
    .onthejob-content .eyebrow { color: var(--sky); margin-bottom: 24px; }
    .onthejob-content .eyebrow::before { background: var(--sky); }
    .onthejob h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.02;
      letter-spacing: -0.02em;
      color: var(--paper);
      margin: 0 0 24px;
    }
    .onthejob h2 .gold { color: var(--gold); }
    .onthejob p {
      font-size: clamp(15px, 1.45vw, 17px);
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
      margin: 0 0 1em;
      max-width: 520px;
    }
    .onthejob-cite {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-2);
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
    }
    .onthejob-cite small {
      display: block;
      font-family: var(--slab);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: none;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 4px;
    }
    @media (max-width: 880px) {
      .onthejob-grid { grid-template-columns: 1fr; min-height: 0; }
      .onthejob-photo { min-height: 380px; }
      .onthejob-photo::after { background: linear-gradient(180deg, transparent 55%, rgba(8, 29, 62, 0.6) 100%); }
      .onthejob-content { padding: clamp(40px, 8vw, 64px) clamp(24px, 6vw, 48px); max-width: 100%; }
    }

    /* ============================================================
       THREE PRIORITIES — color-coded editorial blocks
       ============================================================ */
    .priorities {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--paper);
    }
    .priorities-head {
      max-width: 720px;
      margin: 0 auto clamp(56px, 7vw, 80px);
      text-align: center;
    }
    .priorities-head .eyebrow { justify-content: center; margin-bottom: 22px; }
    .priorities-head h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(34px, 4.8vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin: 0 0 16px;
    }
    .priorities-head h2 .accent { color: var(--royal); }
    .priorities-head p {
      font-size: 18px;
      color: var(--ink-2);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.6;
    }
    .priorities-stack {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 1180px;
      margin: 0 auto;
    }
    .priority {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0;
      min-height: 220px;
      overflow: hidden;
      transition: transform .35s var(--ease);
    }
    .priority:hover { transform: translateX(8px); }
    .priority-tile {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 32px;
      position: relative;
    }
    .priority-num {
      font-family: var(--slab);
      font-weight: 800;
      font-size: clamp(72px, 9vw, 120px);
      line-height: 0.8;
      letter-spacing: -0.03em;
    }
    .priority-tag {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      opacity: 0.6;
    }
    .priority-body {
      padding: 32px clamp(28px, 4vw, 44px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--cream);
    }
    .priority-body h3 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(24px, 2.8vw, 32px);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--navy);
      margin: 0 0 14px;
    }
    .priority-body p {
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink-2);
      max-width: 620px;
      margin: 0;
    }
    .priority--royal .priority-tile { background: var(--royal); color: var(--paper); }
    .priority--royal .priority-num { color: var(--sky); }
    .priority--royal .priority-tag { color: rgba(255,255,255,0.85); }
    .priority--sky .priority-tile { background: var(--sky); color: var(--navy); }
    .priority--sky .priority-num { color: var(--navy); }
    .priority--sky .priority-tag { color: var(--navy); opacity: 0.7; }
    .priority--gold .priority-tile { background: var(--gold); color: var(--navy); }
    .priority--gold .priority-num { color: var(--royal); }
    .priority--gold .priority-tag { color: var(--navy); opacity: 0.7; }

    @media (max-width: 720px) {
      .priority { grid-template-columns: 1fr; }
      .priority-tile { padding: 24px; }
      .priority-num { font-size: clamp(64px, 18vw, 88px); }
    }

    /* ============================================================
       REFRAIN
       ============================================================ */
    .refrain {
      background: var(--navy);
      color: var(--paper);
      padding: clamp(96px, 13vw, 160px) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .refrain::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(700px 400px at 18% 10%, rgba(20, 180, 223, 0.18), transparent 60%),
        radial-gradient(700px 400px at 85% 90%, rgba(232, 184, 32, 0.10), transparent 60%);
      pointer-events: none;
    }
    .refrain-eyebrow {
      font-family: var(--sans);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.30em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 30px;
      display: block;
      position: relative;
      z-index: 2;
    }
    .refrain blockquote {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(34px, 8.6vw, 124px);
      line-height: 1;
      letter-spacing: -0.025em;
      color: var(--paper);
      max-width: none;
      margin: 0 auto 36px;
      position: relative;
      z-index: 2;
      white-space: nowrap;
    }
    .refrain blockquote .gold { color: var(--gold); }
    .refrain-tag {
      font-family: var(--slab);
      font-weight: 500;
      font-style: italic;
      font-size: clamp(18px, 1.9vw, 22px);
      color: rgba(255, 255, 255, 0.8);
      margin: 0;
      position: relative;
      z-index: 2;
    }
    .refrain-tag .dots { color: var(--gold); font-style: normal; font-family: var(--sans); font-weight: 800; }

    /* ============================================================
       GET INVOLVED — refined two-card
       ============================================================ */
    .involve-section {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--cream);
    }
    .involve-head {
      max-width: 720px;
      margin: 0 auto clamp(48px, 6vw, 72px);
      text-align: center;
    }
    .involve-head .eyebrow { justify-content: center; margin-bottom: 22px; }
    .involve-head h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(34px, 4.6vw, 52px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin: 0 0 14px;
    }
    .involve-head h2 .accent { color: var(--royal); }
    .involve {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 1180px;
      margin: 0 auto;
    }
    .involve-card {
      padding: clamp(40px, 5vw, 60px);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: transform .25s var(--ease);
    }
    .involve-card:hover { transform: translateY(-4px); }
    .involve-card--gold { background: var(--gold); color: var(--navy); }
    .involve-card--navy { background: var(--navy); color: var(--paper); }
    .involve-card .eyebrow { margin-bottom: 22px; }
    .involve-card--gold .eyebrow { color: var(--navy); }
    .involve-card--gold .eyebrow::before { background: var(--navy); }
    .involve-card--navy .eyebrow { color: var(--gold-2); }
    .involve-card--navy .eyebrow::before { background: var(--gold); }
    .involve-card h3 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(28px, 3.4vw, 38px);
      line-height: 1.05;
      letter-spacing: -0.015em;
      margin: 0 0 18px;
    }
    .involve-card--gold h3 { color: var(--navy); }
    .involve-card--navy h3 { color: var(--paper); }
    .involve-card p {
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 32px;
      flex: 1;
    }
    .involve-card--gold p { color: var(--navy); opacity: 0.85; }
    .involve-card--navy p { color: rgba(255, 255, 255, 0.85); }
    .involve-card .btn { align-self: flex-start; }

    @media (max-width: 760px) {
      .involve { grid-template-columns: 1fr; }
    }

    /* Donate module — amount tiles deep-linking into the donor form */
    .donate-module {
      max-width: 820px;
      margin: 0 auto;
      background: var(--paper);
      border: 1px solid var(--line);
      padding: clamp(28px, 4vw, 48px);
      box-shadow: 0 30px 60px -40px rgba(8, 29, 62, 0.3);
    }
    .donate-module-label {
      display: block;
      text-align: center;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--royal);
      margin-bottom: 22px;
    }
    .amount-tiles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 22px;
    }
    .amount-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 22px 12px;
      border: 2px solid var(--line);
      background: var(--paper);
      text-decoration: none;
      text-align: center;
      transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
    }
    .amount-tile:hover {
      border-color: var(--gold);
      background: #FFFCF2;
      transform: translateY(-2px);
      color: inherit;
    }
    .amount-tile .amt {
      font-family: var(--slab);
      font-weight: 800;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1;
      letter-spacing: -0.015em;
      color: var(--navy);
    }
    .amount-tile .tier {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .amount-tile--custom {
      grid-column: 1 / -1;
      flex-direction: row;
      gap: 12px;
      border-style: dashed;
      padding: 18px;
    }
    .amount-tile--custom .amt { font-size: 19px; }
    .amount-tile--custom .tier { color: var(--royal); }
    .amount-tile--custom:hover { border-style: solid; }
    .donate-reassure {
      text-align: center;
      font-size: 13.5px;
      color: var(--ink-2);
      margin: 0 0 4px;
    }
    .donate-reassure strong { color: var(--navy); font-weight: 700; }
    .donate-flow {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }
    .donate-steps {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 12px 28px;
      padding: 0;
      margin: 0 0 20px;
      justify-content: center;
    }
    .donate-steps li {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink-2);
    }
    .donate-steps small { font-weight: 400; color: var(--muted); }
    .donate-steps .step-n {
      display: inline-grid;
      place-items: center;
      width: 24px; height: 24px;
      background: var(--navy);
      color: var(--gold);
      font-family: var(--slab);
      font-weight: 700;
      font-size: 13px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .donate-methods {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .donate-methods-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      margin-right: 4px;
    }
    .pay-badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--navy);
      background: var(--cream-2);
      border: 1px solid var(--line);
      padding: 5px 10px;
      border-radius: 3px;
    }
    .donate-compliance {
      font-size: 11.5px;
      color: var(--muted);
      line-height: 1.55;
      text-align: center;
      border-top: 1px solid var(--line-soft);
      padding-top: 18px;
      margin: 18px auto 0;
      max-width: 620px;
    }
    .volunteer-band {
      max-width: 820px;
      margin: 20px auto 0;
      background: var(--navy);
      color: var(--paper);
      padding: 28px clamp(24px, 3vw, 40px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .volunteer-band-copy h3 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: 22px;
      color: var(--paper);
      margin: 0 0 4px;
      letter-spacing: -0.01em;
    }
    .volunteer-band-copy p { font-size: 14px; color: rgba(255, 255, 255, 0.82); margin: 0; max-width: 460px; }
    @media (max-width: 620px) {
      .amount-tiles { grid-template-columns: repeat(2, 1fr); }
      .volunteer-band { flex-direction: column; align-items: flex-start; }
      .volunteer-band .btn { width: 100%; }
    }

    /* ============================================================
       JOIN — email/contact capture (posts to Google Form)
       ============================================================ */
    .join {
      background: var(--royal);
      color: var(--paper);
      padding: clamp(64px, 8vw, 104px) 0;
      position: relative;
      overflow: hidden;
    }
    .join::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(600px 320px at 12% 18%, rgba(20, 180, 223, 0.28), transparent 60%),
        radial-gradient(520px 320px at 92% 92%, rgba(232, 184, 32, 0.14), transparent 60%);
      pointer-events: none;
    }
    .join-inner {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: clamp(32px, 5vw, 72px);
      align-items: center;
      position: relative;
      z-index: 2;
      max-width: 1120px;
      margin: 0 auto;
    }
    .join-copy .eyebrow { color: var(--gold-2); margin-bottom: 20px; }
    .join-copy .eyebrow::before { background: var(--gold); }
    .join-copy h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(32px, 4.4vw, 54px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--paper);
      margin: 0 0 16px;
    }
    .join-copy h2 .gold { color: var(--gold); }
    .join-copy p {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.88);
      margin: 0;
      max-width: 380px;
    }
    .join-form { display: flex; flex-direction: column; gap: 14px; }
    .join-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .join-field { display: flex; flex-direction: column; }
    .join-form input {
      width: 100%;
      padding: 16px 18px;
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 500;
      color: var(--navy);
      background: var(--paper);
      border: 2px solid transparent;
      border-radius: 0;
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    }
    .join-form input::placeholder { color: var(--muted); font-weight: 400; }
    .join-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(232, 184, 32, 0.2); }
    .join-form input:invalid:not(:placeholder-shown) { border-color: #C0392B; }
    .join-form .btn { width: 100%; margin-top: 4px; }
    .join-note {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      margin: 8px 0 0;
      text-align: center;
      line-height: 1.5;
    }
    .join-success {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-left: 4px solid var(--gold);
      padding: 36px 40px;
    }
    .join-success h3 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 30px);
      color: var(--paper);
      margin: 0 0 10px;
      letter-spacing: -0.01em;
    }
    .join-success p { color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 15px; line-height: 1.6; }
    @media (max-width: 760px) {
      .join-inner { grid-template-columns: 1fr; gap: 28px; }
      .join-row { grid-template-columns: 1fr; }
      .join-copy p { max-width: 100%; }
    }

    /* ============================================================
       VOTE
       ============================================================ */
    .vote-section { padding: clamp(80px, 10vw, 140px) 0; background: var(--paper); }
    .vote-head {
      max-width: 720px;
      margin: 0 auto clamp(48px, 6vw, 72px);
      text-align: center;
    }
    .vote-head .eyebrow { justify-content: center; margin-bottom: 22px; }
    .vote-head h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(34px, 4.6vw, 52px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin: 0 0 14px;
    }
    .vote-head h2 .accent { color: var(--royal); }
    .vote-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: clamp(32px, 5vw, 72px);
      align-items: start;
      max-width: 1180px;
      margin: 0 auto;
    }
    .vote-dates { display: grid; gap: 14px; }
    .vote-card {
      padding: 28px;
      background: var(--paper);
      border: 1.5px solid var(--navy);
      border-left-width: 4px;
      border-left-color: var(--royal);
      position: relative;
    }
    .vote-card.is-primary {
      border-left-color: var(--gold);
      background: var(--cream-2);
    }
    .vote-card .label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
      display: block;
    }
    .vote-card.is-primary .label { color: var(--gold-3); }
    .vote-card .date {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 32px);
      letter-spacing: -0.01em;
      color: var(--navy);
      line-height: 1.05;
      margin-bottom: 8px;
    }
    .vote-card .detail {
      font-size: 14px;
      color: var(--ink-2);
      margin: 0;
      line-height: 1.5;
    }
    .vote-body h3 {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.005em;
      margin: 0 0 14px;
      color: var(--navy);
    }
    .vote-body h3:not(:first-child) { margin-top: 36px; }
    .vote-body ul { list-style: none; padding: 0; margin: 0 0 18px; }
    .vote-body li {
      padding: 12px 0;
      border-bottom: 1px solid var(--line-soft);
      font-size: 15px;
      color: var(--ink-2);
      line-height: 1.55;
    }
    .vote-body li:last-child { border-bottom: 0; }
    .vote-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
    @media (max-width: 760px) { .vote-grid { grid-template-columns: 1fr; } }

    /* ============================================================
       CONTACT
       ============================================================ */
    .contact-section {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--navy);
      color: rgba(255,255,255,0.92);
    }
    .contact-head {
      max-width: 720px;
      margin: 0 auto clamp(48px, 6vw, 72px);
      text-align: center;
    }
    .contact-head .eyebrow { justify-content: center; margin-bottom: 22px; color: var(--sky); }
    .contact-head .eyebrow::before { background: var(--sky); }
    .contact-head h2 {
      font-family: var(--slab);
      font-weight: 700;
      font-size: clamp(34px, 4.6vw, 52px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--paper);
      margin: 0 0 14px;
    }
    .contact-head h2 .accent { color: var(--gold); }
    .contact {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      max-width: 1180px;
      margin: 0 auto;
    }
    .contact-item {
      padding: 40px 32px;
      border-right: 1px solid rgba(255, 255, 255, 0.10);
    }
    .contact-item:last-child { border-right: 0; }
    .contact-item .label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold-2);
      margin-bottom: 14px;
      display: block;
    }
    .contact-item .value {
      font-family: var(--slab);
      font-weight: 600;
      font-size: 22px;
      line-height: 1.25;
      color: var(--paper);
      text-decoration: none;
      letter-spacing: -0.005em;
    }
    .contact-item a.value:hover { color: var(--sky); }
    .contact-item .detail {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.62);
      margin: 12px 0 0;
      line-height: 1.5;
    }
    @media (max-width: 800px) {
      .contact { grid-template-columns: 1fr; }
      .contact-item { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
      .contact-item:last-child { border-bottom: 0; }
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    .footer {
      background: var(--navy-2);
      color: var(--paper);
      padding: 72px 0 32px;
      position: relative;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--sky) 0%, var(--royal) 35%, var(--gold) 75%, var(--gold-2) 100%);
    }
    .footer-masthead {
      text-align: center;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      margin-bottom: 32px;
    }
    .footer-lockup { width: 100%; max-width: 460px; height: auto; margin: 0 auto 22px; display: block; }
    .footer-tagline {
      font-family: var(--slab);
      font-weight: 500;
      font-style: italic;
      color: var(--gold-2);
      font-size: 16px;
      margin: 0;
    }
    .footer-tagline .dots { color: var(--sky); font-style: normal; font-family: var(--sans); font-weight: 700; }
    .footer-dem {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      margin-top: 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.10);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sky);
      text-decoration: none;
    }
    .footer-dem:hover { background: rgba(255, 255, 255, 0.07); color: var(--sky); }
    .footer-dem img { width: 22px; height: 22px; flex-shrink: 0; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer-bottom .disclaimer {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      max-width: 720px;
      line-height: 1.55;
    }
    .socials { display: inline-flex; gap: 10px; }
    .socials a {
      width: 38px; height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      display: grid; place-items: center;
      color: var(--paper);
      text-decoration: none;
      transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
    }
    .socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .socials svg { width: 16px; height: 16px; fill: currentColor; }

    /* ============================================================
       Reveal animation
       ============================================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @media print {
      .header, .announce, .footer, .hero-cta, .nav-toggle { display: none !important; }
      body { background: white; color: black; }
    }
