:root {
  --navy: #1F3A47;
  --navy-line: #3d5a67;
  --gold: #F2C230;
  --blue: #2f6582;
  --sand: #F4F1E8;
  --line: #e4e1d8;
  --ink: #33332d;
  --muted: #5c5c54;
  --field-border: #85857c;
  --on-navy: #d5dfe3;
  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --serif: 'Lora', Georgia, serif;
  --sans: 'Libre Franklin', system-ui, sans-serif;
  --gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: #fff; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
h1, h2, h3, p, blockquote, ol, ul { margin: 0; }
a { color: var(--navy); }
a:hover { color: #3E7C9C; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.gold { color: var(--gold); }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--navy); padding: 10px 16px; font-weight: 700; z-index: 100; }
.skip-link:focus { left: 8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 2px; border: 0; font: 700 17px/1 var(--sans); text-decoration: none; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #e3b31c; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; min-height: 54px; }
.btn-navy:hover { background: #162c36; color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font: 700 22px/1 var(--display); letter-spacing: 0.02em; color: var(--navy); }
.brand-mark { width: 24px; height: 24px; }
.menu-toggle { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: 0; color: var(--navy); cursor: pointer; padding: 0; }
.menu-toggle svg { width: 26px; height: 26px; }
.site-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; flex-direction: column; gap: 4px; }
.site-nav.open { display: flex; }
.site-nav a:not(.btn) { font-weight: 600; font-size: 17px; text-decoration: none; padding: 12px 0; }
.site-nav .btn { margin-top: 8px; }

/* Hero */
.hero { position: relative; background: var(--navy); color: #fff; display: flex; flex-direction: column-reverse; }
.hero-photo { position: relative; height: 420px; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.hero-photo::after { content: ""; position: absolute; inset: auto 0 0 0; height: 55%; background: linear-gradient(180deg, rgba(31,58,71,0) 0%, rgba(31,58,71,1) 100%); }
.hero-text { position: relative; z-index: 1; margin-top: -150px; padding: 0 var(--gutter) 28px; display: flex; flex-direction: column; gap: 2px; }
.hero-elect { font: italic 400 18px/1.3 var(--serif); }
.hero h1 { font: 700 54px/0.98 var(--display); letter-spacing: 0.01em; }
.hero-sub { font: italic 400 19px/1.3 var(--serif); margin-top: 4px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.hero-date { font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-navy); margin-top: 20px; text-align: center; }
.gold-rule { height: 6px; background: var(--gold); }

/* Sections */
.section { padding: 56px 0; }
.two-col { display: grid; gap: 24px; }
.eyebrow { font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.section-title { font: 700 36px/1.05 var(--display); letter-spacing: 0.01em; color: var(--navy); }
.section-title.light { color: #fff; font-size: 38px; letter-spacing: 0.02em; }
.accent-bar { width: 48px; height: 4px; background: var(--gold); margin-top: 12px; }
.lede { font-size: 17px; line-height: 1.6; margin-top: 14px; }

.quote { font: italic 400 23px/1.4 var(--serif); color: var(--navy); }
.about-body p { font-size: 17px; line-height: 1.6; }
.facts { list-style: none; padding: 0; margin-top: 20px; border-top: 1px solid var(--line); }
.facts li { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 16px; color: var(--navy); }
.facts svg { width: 24px; height: 24px; flex-shrink: 0; fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.priorities { background: var(--navy); color: #fff; }
.priority-list { list-style: none; padding: 0; margin-top: 28px; display: grid; }
.priority-list li { display: flex; gap: 16px; padding: 22px 0; border-top: 1px solid var(--navy-line); }
.priority-list li:last-child { border-bottom: 1px solid var(--navy-line); }
.num { font: 600 34px/1 var(--display); color: var(--gold); width: 44px; flex-shrink: 0; }
.priority-list h3 { font-weight: 700; font-size: 17px; letter-spacing: 0.03em; text-transform: uppercase; }
.priority-list p { font-size: 16px; line-height: 1.55; color: var(--on-navy); margin-top: 8px; }

.join { background: var(--sand); }

/* Forms */
.form { display: flex; flex-direction: column; gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); padding: 24px 20px; }
.field-row { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 15px; color: var(--navy); }
.optional { font-weight: 400; color: var(--muted); }
.field input, .field textarea { width: 100%; font: 400 17px/1.5 var(--sans); color: var(--ink); border: 1px solid var(--field-border); border-radius: 2px; background: #fff; }
.field input { height: 50px; padding: 0 14px; }
.field textarea { padding: 12px 14px; resize: vertical; min-height: 150px; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--gold); outline-offset: 0; border-color: var(--navy); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.consent input { width: 22px; height: 22px; margin: 1px 0 0; flex-shrink: 0; accent-color: var(--navy); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-weight: 600; font-size: 16px; min-height: 1.5em; }
.form-status.success { color: #1e6b3a; }
.form-status.error { color: #a4262c; }

/* Footer */
.site-footer { background: var(--navy); border-top: 6px solid var(--gold); color: #fff; padding: 36px 0 40px; }
.footer-inner { display: flex; flex-direction: column; gap: 18px; }
.footer-name { font: 700 28px/1.1 var(--display); letter-spacing: 0.02em; }
.footer-sub { font: italic 400 17px/1.3 var(--serif); margin-top: 4px; }
.footer-date { font-weight: 700; font-size: 16px; color: var(--gold); }
.footer-auth { font-size: 13px; color: #c9d3d8; margin-top: 6px; }

/* Desktop */
@media (min-width: 960px) {
  :root { --gutter: 80px; }
  html { scroll-padding-top: 90px; }
  .header-inner { height: 84px; }
  .brand { font-size: 26px; gap: 12px; }
  .brand-mark { width: 30px; height: 30px; }
  .menu-toggle { display: none; }
  .site-nav, .site-nav.open { display: flex; position: static; flex-direction: row; align-items: center; gap: 36px; padding: 0; border: 0; background: none; }
  .site-nav a:not(.btn) { font-size: 16px; padding: 8px 0; }
  .site-nav .btn { margin-top: 0; font-size: 16px; }

  .hero { flex-direction: row; min-height: 640px; }
  .hero-text { width: 50%; max-width: 720px; margin-top: 0; padding: 0 40px 0 var(--gutter); justify-content: center; gap: 6px; }
  .hero-elect { font-size: 30px; }
  .hero h1 { font-size: clamp(80px, 7.8vw, 112px); line-height: 0.95; }
  .hero-sub { font-size: 30px; margin-top: 8px; }
  .hero-actions { flex-direction: row; gap: 16px; margin-top: 40px; }
  .hero-date { font-size: 15px; text-align: left; margin-top: 44px; }
  .hero-photo { flex: 1; height: auto; }
  .hero-photo img { position: absolute; inset: 0; object-position: 50% 30%; }
  .hero-photo::after { inset: 0 auto 0 0; width: 180px; height: auto; background: linear-gradient(90deg, rgba(31,58,71,1) 0%, rgba(31,58,71,0) 100%); }
  .gold-rule { height: 8px; }

  .section { padding: 104px 0; }
  .about.section { padding: 112px 0; }
  .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 96px; align-items: start; }
  .eyebrow { font-size: 15px; }
  .section-title { font-size: 52px; }
  .section-title.light { font-size: 56px; }
  .accent-bar { width: 56px; margin-top: 16px; }
  .lede { font-size: 19px; }
  .quote { font-size: 34px; line-height: 1.35; }
  .about-body { padding-top: 44px; }
  .about-body p { font-size: 19px; }
  .facts { margin-top: 28px; }
  .facts li { font-size: 17px; padding: 18px 0; gap: 16px; }
  .facts svg { width: 28px; height: 28px; }

  .priority-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 80px; margin-top: 56px; }
  .priority-list li { gap: 24px; padding: 32px 0; }
  .priority-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--navy-line); }
  .num { font-size: 48px; width: 64px; }
  .priority-list h3 { font-size: 20px; }
  .priority-list p { font-size: 18px; margin-top: 10px; }

  .card { padding: 40px; }
  .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .form { gap: 20px; }
  .btn-submit { align-self: flex-start; padding: 0 36px; min-height: 54px; }

  .site-footer { padding: 48px 0; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 40px; }
  .footer-name { font-size: 32px; }
  .footer-sub { font-size: 18px; }
  .footer-meta { text-align: right; }
  .footer-date { font-size: 17px; }
  .footer-auth { font-size: 14px; }
}
