:root {
  --navy: #0a1628;
  --gold: #d4a843;
  --gold-hover: #e8bc55;
  --white: #ffffff;
  --white-75: rgba(255,255,255,0.75);
  --white-35: rgba(255,255,255,0.35);
  --border-light: rgba(255,255,255,0.15);
  --ink: #101827;
  --muted: #5d6675;
  --line: #d9dee7;
  --paper: #f7f5ef;
  --soft-blue: #dce9f7;
  --soft-red: #f5e3df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  font-size: 18px;
  line-height: 1.55;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(10, 22, 40, 0.96);
  color: var(--white);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
}

.wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--white-35);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-navy {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.section-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/bg-repeat.png");
  background-size: 320px 320px;
  background-repeat: repeat;
  opacity: 0.12;
  pointer-events: none;
}

.hero.section-navy::before {
  content: none;
}

.section-light {
  padding: clamp(42px, 5vw, 64px) 0;
  background: var(--paper);
}

.hero {
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: center;
}

.texture {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.38) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 80% 20%, rgba(212,168,67,0.22), transparent 32%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 430px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) 0 clamp(64px, 9vw, 104px);
}

.hero-art {
  margin: 0;
}

.hero-art img {
  display: block;
  width: 100%;
  max-height: min(72svh, 620px);
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  max-width: 760px;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(36px, 7vw, 72px);
}

h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--white-75);
  font-size: clamp(20px, 2.2vw, 24px);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-hover);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.section-label {
  margin-bottom: 14px;
  color: #8a2f2c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label-dark {
  color: var(--gold);
}

h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 52px);
}

.section-navy h2 {
  color: var(--white);
}

.body-stack p,
.section-heading p {
  color: var(--muted);
}

.commitment-section .body-stack p {
  font-size: 20px;
}

.body-stack p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.history-section {
  padding-top: clamp(42px, 5vw, 64px);
}

.timeline {
  position: relative;
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 24px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 22px;
}

.timeline-icon {
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.timeline-icon svg,
.reason-card svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.year {
  margin-bottom: 8px;
  color: #8a2f2c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline h3,
.reason-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.timeline p:not(.year) {
  margin-bottom: 18px;
  color: var(--muted);
}

.timeline p:last-child,
.reason-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.history-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 26px 28px;
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
}

.history-cta h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.history-cta p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--white-75);
}

.inline-link {
  color: #8a2f2c;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: #1e5d91;
  text-decoration-color: #1e5d91;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #1e5d91;
  font-size: 14px;
  font-weight: 800;
}

.source-links a:hover,
.source-links a:focus-visible {
  border-color: #1e5d91;
  background: var(--soft-blue);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reason-card {
  min-height: 232px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(10, 22, 40, 0.06);
}

.reason-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: #1e5d91;
}

.commitment-table {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(10, 22, 40, 0.06);
}

.commitment-section {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(247,245,239,0.86), rgba(247,245,239,0.86)),
    url("/assets/bg-repeat.png");
  background-size: auto, 560px 560px;
  background-repeat: repeat, repeat;
}

.commitment-section::before {
  content: none;
}

.commitment-section .section-heading {
  position: relative;
  z-index: 1;
}

.election-section {
  padding-top: 0;
}

.election-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.date-card {
  min-height: 208px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(10, 22, 40, 0.06);
}

.date-eyebrow {
  margin-bottom: 12px;
  color: #8a2f2c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.date-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.date-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.strategy-note {
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
}

.strategy-note p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--white-75);
}

.strategy-note .source-links {
  margin-top: 14px;
}

.strategy-note .source-links a {
  border-color: var(--border-light);
  color: var(--gold);
}

.strategy-note .source-links a:hover,
.strategy-note .source-links a:focus-visible {
  border-color: var(--gold);
  background: rgba(212,168,67,0.12);
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1.8fr;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-row > div {
  padding: 18px 20px;
}

.table-row > div:first-child {
  font-weight: 800;
}

.table-head {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interest-section {
  padding: clamp(60px, 8vw, 96px) 0;
}

.interest-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.form-panel {
  width: min(100%, 460px);
}

.form-panel > p {
  color: var(--white-75);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.form-fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-fieldset legend {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.radio-option {
  grid-template-columns: 18px 1fr;
  align-items: start;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}

.radio-option input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.referral-fields {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}

.referral-fields[hidden] {
  display: none;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .radio-option input {
  width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.lead-form select option {
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.submit-button {
  width: 100%;
  margin-top: 6px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-error {
  margin: 0;
  padding: 11px 12px;
  background: rgba(245, 227, 223, 0.12);
  border: 1px solid rgba(245, 227, 223, 0.4);
  border-radius: 6px;
  color: #ffd8d1;
  font-size: 14px;
  line-height: 1.4;
}

.success-message {
  margin-top: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.site-footer {
  padding: 28px 20px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.site-footer p {
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 900px) {
  .election-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-nav {
    min-height: 62px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
  }

  .hero-art {
    width: min(100%, 340px);
    justify-self: center;
  }

  .hero-art img {
    max-height: 440px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .history-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .timeline::before,
  .timeline-icon {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .election-grid {
    grid-template-columns: 1fr;
  }

  .date-card {
    min-height: auto;
  }

  .commitment-table {
    display: grid;
    gap: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .table-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(10, 22, 40, 0.05);
  }

  .table-row.table-head {
    display: none;
  }

  .table-row > div {
    padding: 0;
  }

  .table-row > div:first-child {
    margin-bottom: 6px;
  }

  .table-row > div::before {
    content: none;
  }
}

@media (max-width: 500px) {
  body {
    font-size: 16px;
  }

  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .site-nav {
    padding-inline: 14px;
  }

  .wordmark {
    font-size: 23px;
  }

  .nav-cta {
    padding-inline: 12px;
    font-size: 14px;
  }

  .reason-card {
    min-height: auto;
    padding: 22px;
  }

  .reason-card svg {
    display: none;
  }

  .site-footer {
    font-size: 13px;
  }
}
