/* New Yorkers for Our American Family — November 3, 2026 */

:root {
  --navy: #0b1c33;
  --navy-deep: #061018;
  --navy-mid: #132844;
  --blue: #1a3a5c;
  --red: #9b2335;
  --red-bright: #c43a4a;
  --gold: #c5a059;
  --gold-soft: #e2c98a;
  --cream: #f3efe6;
  --cream-2: #e8e1d3;
  --ink: #121820;
  --muted: #5c6675;
  --muted-light: #a7b1c0;
  --white: #fff;
  --max: 1100px;
  --header: 70px;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-ui: "Barlow", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -80px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  background: rgba(6, 16, 24, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.site-header.is-scrolled {
  background: rgba(6, 16, 24, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}

.logo-flag {
  width: 10px;
  height: 36px;
  background: linear-gradient(to bottom, var(--red) 0 33%, var(--white) 33% 66%, var(--navy-mid) 66%);
  border-radius: 1px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--cream-2);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(197, 160, 89, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--gold);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-nav {
  padding: 0.55rem 1rem;
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
}

.btn-nav:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--white) !important;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.btn-outline {
  background: transparent;
  border-color: rgba(243, 239, 230, 0.45);
  color: var(--cream);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-outline.light {
  margin-top: 0.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 3.5rem) 0 5rem;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(155, 35, 53, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 90%, rgba(197, 160, 89, 0.1), transparent 45%),
    linear-gradient(165deg, #061018 0%, #0b1c33 50%, #132844 100%);
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 18%;
  opacity: 0.28;
  filter: saturate(0.75) contrast(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 16, 24, 0.94) 0%, rgba(6, 16, 24, 0.78) 42%, rgba(11, 28, 51, 0.45) 70%, rgba(11, 28, 51, 0.55) 100%),
    linear-gradient(0deg, rgba(6, 16, 24, 0.9) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, black, transparent);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 2rem;
  align-items: center;
  width: min(100% - 2rem, var(--max));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  animation: rise 0.85s var(--ease) both;
}

.hero-liberty {
  position: relative;
  justify-self: end;
  width: min(100%, 380px);
  animation: rise 1s var(--ease) 0.12s both;
}

.hero-liberty img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 620px);
  object-fit: cover;
  object-position: center 12%;
  display: block;
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-liberty::before {
  content: "";
  position: absolute;
  inset: -12% -8% auto;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.22), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.kicker {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}

.hero-lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--muted-light);
  max-width: 40rem;
  line-height: 1.7;
}

.hero-tagline {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  color: var(--cream);
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}

.hero-tagline strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--white) 34% 66%, var(--navy-mid) 66%);
}

/* Marquee */
.marquee {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  overflow: hidden;
  padding: 0.85rem 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--cream);
}

.section-cream {
  background: var(--cream-2);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-head.light .lede {
  color: var(--muted-light);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.section-dark .eyebrow,
.eyebrow.light {
  color: var(--gold);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.2;
  color: var(--navy);
}

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

.lede {
  margin: 0;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
}

.lede.tight {
  margin-bottom: 1rem;
}

.lede em {
  font-family: var(--font-display);
  font-style: italic;
}

.body-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.byline {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.footer-byline {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.45;
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(11, 28, 51, 0.08);
  border-top: 3px solid var(--red);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 12px 30px rgba(11, 28, 51, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 28, 51, 0.1);
}

.card-num {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Photo feature — Mamdani at Washington's desk */
.photo-feature {
  margin: 3.5rem 0 0;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid rgba(197, 160, 89, 0.25);
  overflow: hidden;
}

.photo-feature-frame {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.photo-feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: contrast(1.05) saturate(0.95);
}

.photo-feature-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.photo-feature figcaption {
  padding: 1.5rem 1.75rem 1.75rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted-light);
}

.photo-feature figcaption strong {
  display: block;
  margin: 0.35rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: var(--white);
}

.photo-body {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted-light);
}

.photo-pull {
  margin: 1.25rem 0 1.35rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.12), transparent 85%);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
}

.photo-body em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 700;
}

.photo-vote {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(155, 35, 53, 0.35);
  border-left: 3px solid var(--red-bright);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.photo-vote strong {
  display: inline;
  margin: 0;
  font-family: var(--font-ui);
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.photo-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.photo-credit {
  display: block;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.78rem;
  color: #9aa3b2;
  line-height: 1.55;
}

.photo-credit strong {
  display: inline;
  margin: 0;
  font-family: var(--font-ui);
  font-size: inherit;
  font-weight: 700;
  color: var(--cream-2);
  letter-spacing: 0.02em;
}

.photo-credit a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Motif pair — Hercules */
.motif-pair {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.motif-shot {
  margin: 0;
  background: var(--navy-deep);
  border: 1px solid rgba(197, 160, 89, 0.18);
  overflow: hidden;
}

.motif-shot img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.motif-shot figcaption {
  padding: 1rem 1.15rem 1.25rem;
  font-size: 0.92rem;
  color: var(--muted-light);
  line-height: 1.5;
}

.motif-shot figcaption strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

/* Blakeman — alternative choice */
.section-alt {
  background: var(--white);
  border-bottom: 1px solid var(--cream-2);
}

.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.section-head.center .lede {
  margin-inline: auto;
}

.candidate-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid rgba(197, 160, 89, 0.3);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(11, 28, 51, 0.12);
}

.candidate-photo {
  background: var(--navy-deep);
  min-height: 100%;
}

.candidate-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.candidate-body {
  padding: 2rem 2rem 2rem 0;
}

.candidate-role {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.candidate-body h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.15;
}

.candidate-body > p {
  margin: 0 0 1.25rem;
  color: var(--muted-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.candidate-points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.candidate-points li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-weight: 500;
}

.candidate-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.candidate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid rgba(243, 239, 230, 0.4);
  color: var(--cream);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.candidate-note {
  margin: 0;
  font-size: 0.8rem;
  color: #8b95a5;
  line-height: 1.5;
}

.candidate-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

  .candidate-body {
    padding: 0 1.5rem 1.75rem;
  }

  .candidate-photo img {
    min-height: 280px;
    max-height: 340px;
  }
}

/* Heritage gallery */
.section-gallery {
  background: var(--cream);
  border-block: 1px solid var(--cream-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  background: var(--navy-deep);
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, 0.12);
}

.gallery-item.wide {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted-light);
  background: var(--navy);
}

/* Hydra */
.hydra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.hydra-head {
  background: var(--navy-mid);
  border: 1px solid rgba(197, 160, 89, 0.15);
  padding: 1.75rem;
}

.hydra-head.feature {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a2438, #2a1520);
  border-color: rgba(196, 58, 74, 0.35);
}

.hydra-icon {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.hydra-head h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

.hydra-head p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.65;
}

/* Quote banner */
.banner-quote {
  background: var(--red);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.banner-quote blockquote {
  margin: 0;
}

.banner-quote p {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-style: italic;
  line-height: 1.25;
}

.banner-quote footer {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Choice */
.choice-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.choice-col {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(11, 28, 51, 0.1);
}

.choice-col.reject {
  background: #ebe6de;
}

.choice-col.protect {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.choice-label {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.choice-col.protect .choice-label {
  color: var(--gold);
}

.choice-col h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.choice-col.protect h3 {
  color: var(--white);
}

.choice-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.choice-col li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--muted);
  font-weight: 500;
}

.choice-col.protect li {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: var(--muted-light);
}

.choice-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
}

.choice-col.protect li::before {
  background: var(--gold);
  opacity: 1;
}

.choice-vs {
  align-self: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.choice-close {
  margin: 0;
  max-width: 720px;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
}

.choice-close em {
  font-family: var(--font-display);
  font-style: italic;
}

/* Stand */
.stand-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.pledge-box {
  background: var(--navy);
  color: var(--cream);
  padding: 2rem;
  border-top: 4px solid var(--gold);
}

.pledge-box h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

.pledge-box ol {
  margin: 0;
  padding: 0 0 0 1.2rem;
}

.pledge-box li {
  margin-bottom: 0.85rem;
  color: var(--muted-light);
  padding-left: 0.25rem;
}

.pledge-box li:last-child {
  margin-bottom: 0;
}

/* CTA */
.section-cta {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(155, 35, 53, 0.2), transparent 55%),
    var(--navy-deep);
  color: var(--cream);
  text-align: center;
  padding: 5.5rem 0 6rem;
}

.section-cta h2 {
  color: var(--white);
  max-width: 18ch;
  margin-inline: auto;
}

.cta-wrap .eyebrow {
  color: var(--gold);
}

.cta-lead {
  margin: 0 auto 2.5rem;
  max-width: 32rem;
  color: var(--muted-light);
  font-size: 1.1rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.action-card {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.22);
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.action-card:not(.static):hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-3px);
}

.action-step {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.85rem;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}

.action-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

.action-card p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.95rem;
}

.signup {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.25);
  text-align: left;
}

.signup-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-soft);
  text-align: center;
}

.signup-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 0.65rem;
}

.signup-row input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  background: rgba(6, 16, 24, 0.7);
  color: var(--cream);
  outline: none;
}

.signup-row input:focus {
  border-color: var(--gold);
}

.signup-row input::placeholder {
  color: var(--muted-light);
}

.signup-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--muted-light);
  text-align: center;
}

.signup-success {
  margin: 1rem 0 0;
  padding: 0.85rem;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--gold-soft);
  text-align: center;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: #040a10;
  color: var(--muted-light);
  padding: 2.75rem 0;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.tag {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mission {
  margin: 0;
  font-size: 0.95rem;
}

.footer-legal p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.55;
}

.copy {
  color: #6b7280 !important;
  font-size: 0.8rem !important;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .cards-3,
  .action-grid {
    grid-template-columns: 1fr;
  }

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

  .choice-vs {
    text-align: center;
  }

  .stand-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .signup-row {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-liberty {
    justify-self: center;
    width: min(100%, 280px);
    order: -1;
  }

  .hero-liberty img {
    max-height: 38vh;
  }

  .hero-bg img {
    object-position: 70% 15%;
    opacity: 0.22;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(6, 16, 24, 0.98);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav .btn-nav {
    margin-top: 0.75rem;
    text-align: center;
  }

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

  .hydra-head.feature {
    grid-column: auto;
  }

  .motif-pair,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-row: auto;
  }

  .motif-shot img {
    height: 220px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-cta h2 {
    max-width: none;
  }
}
