@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #050505;
  --bg-2: #09090b;
  --panel: rgba(16, 16, 18, 0.78);
  --panel-strong: rgba(18, 18, 20, 0.92);
  --red: #7e0f19;
  --red-2: #b71d2e;
  --silver: #d7d9de;
  --silver-line: rgba(215, 217, 222, 0.16);
  --gold: #b39154;
  --text: #f5f5f7;
  --muted: #bdbec4;
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.32);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --nav-height: 78px;
  --transition: 280ms cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(126, 15, 25, 0.25), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(215, 217, 222, 0.08), transparent 16%),
    radial-gradient(circle at 55% 42%, rgba(126, 15, 25, 0.08), transparent 36%),
    linear-gradient(180deg, var(--bg) 0%, #080808 32%, var(--bg-2) 100%);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.01), transparent);
  pointer-events: none;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 12px;
  color: var(--silver);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.section-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--silver));
}

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.section-line {
  width: min(180px, 35%);
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), var(--silver-line), transparent);
}

/* NAV */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-nav.scrolled {
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215, 217, 222, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  border: 1px solid rgba(215, 217, 222, 0.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(18, 18, 20, 0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.brand-text {
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.92;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(215, 217, 222, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(17, 17, 18, 0.65);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.6px;
  margin: 5px auto;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-vote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  background: linear-gradient(135deg, var(--red-2), var(--red));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 16px 34px rgba(126, 15, 25, 0.46),
    inset 0 1px 0 rgba(255,255,255,0.14);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.nav-vote-btn:hover,
.nav-vote-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.04);
  box-shadow:
    0 20px 46px rgba(126, 15, 25, 0.56),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

/* HERO */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2rem);
  overflow: clip;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.7;
}

.orb-red {
  width: 36rem;
  height: 36rem;
  top: 6%;
  left: -10%;
  background: radial-gradient(circle at center, rgba(183, 29, 46, 0.42), transparent 62%);
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-silver {
  width: 26rem;
  height: 26rem;
  top: 12%;
  right: -6%;
  background: radial-gradient(circle at center, rgba(215, 217, 222, 0.12), transparent 60%);
  animation: floatOrb 15s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), transparent 92%);
  opacity: 0.32;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 45% 40%, rgba(255,255,255,0.08), transparent 16%),
    radial-gradient(circle at 48% 42%, rgba(183,29,46,0.1), transparent 30%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--silver);
}

.eyebrow.subtle {
  color: var(--muted);
}

.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(179,145,84,0.65);
}

.hero-title {
  margin: 0;
  max-width: 8ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-title span {
  color: var(--silver);
  text-shadow: 0 0 28px rgba(215,217,222,0.08);
}

.hero-names p {
  margin: 1.2rem 0 0.85rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-subtitle {
  max-width: 60ch;
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(1rem, 2.1vw, 1.22rem);
}

.hero-blurb {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-frame {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 0.82;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(215,217,222,0.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(179,145,84,0.06);
}

.cover-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(215,217,222,0.14);
  pointer-events: none;
  z-index: 3;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.cover-overlay {
  position: absolute;
  inset: 0;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 18%, rgba(0,0,0,0.1) 48%, rgba(0,0,0,0.58) 100%),
    linear-gradient(140deg, rgba(126,15,25,0.24), rgba(8,8,10,0.08) 54%, rgba(20,20,22,0.34));
}

.cover-topline,
.cover-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--silver);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cover-main {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 5rem;
  display: grid;
  gap: 0.75rem;
}

.cover-kicker {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.cover-main h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.cover-main p {
  margin: 0;
  max-width: 30ch;
  color: rgba(245,245,247,0.88);
}

.cover-bottom {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.3rem;
  color: rgba(245,245,247,0.86);
}

.hero-side-note {
  position: absolute;
  left: -1rem;
  top: 2rem;
  padding: 0.9rem 0.95rem;
  color: var(--silver);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border: 1px solid rgba(215,217,222,0.16);
  border-radius: 18px;
  background: rgba(8,8,10,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 22px;
  height: 40px;
  padding-top: 7px;
  display: grid;
  place-items: start center;
  border: 1px solid rgba(215,217,222,0.22);
  border-radius: 20px;
  opacity: 0.7;
}

.hero-scroll-indicator span {
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: var(--silver);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition),
    filter var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, rgba(183,29,46,0.98), rgba(126,15,25,0.98));
  border-color: rgba(255,255,255,0.08);
  box-shadow:
    0 12px 34px rgba(126, 15, 25, 0.36),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 18px 40px rgba(126, 15, 25, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-color: rgba(215,217,222,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255,255,255,0.06);
  border-color: rgba(215,217,222,0.24);
}

.btn-xl {
  min-height: 60px;
  padding: 1.05rem 1.8rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SHARED PANELS */

.story-card,
.vote-copy,
.why-points,
.why-text,
.iframe-shell,
.story-photo,
.inline-photo,
.highlight-card,
.final-photo {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    var(--panel);
  border: 1px solid rgba(215,217,222,0.11);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.story-card,
.vote-copy,
.why-points,
.why-text,
.iframe-shell,
.highlight-card,
.final-photo {
  border-radius: var(--radius-lg);
}

.story-card,
.vote-copy,
.why-text,
.why-points {
  padding: clamp(1.2rem, 3vw, 2rem);
}

/* PHOTO FRAMES */

.inline-photo,
.story-photo,
.final-photo {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 10px;
}

.inline-photo::after,
.story-photo::after,
.final-photo::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(215,217,222,0.12);
  pointer-events: none;
}

.inline-photo img,
.story-photo img,
.final-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(0.96) contrast(1.04);
}

.inline-photo.compact img {
  min-height: 380px;
}

.story-photo.large img {
  min-height: 520px;
}

.story-photo.small img {
  min-height: 300px;
}

/* VOTE */

.vote-section {
  padding-top: 84px;
}

.vote-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.4rem;
  align-items: stretch;
}

.vote-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vote-lead {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: clamp(1.15rem, 2.35vw, 1.55rem);
}

.vote-copy p:not(.vote-lead) {
  margin-top: 0;
  color: var(--muted);
}

.vote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.vote-note {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(215,217,222,0.1);
}

.vote-note strong {
  color: var(--text);
  font-size: 0.95rem;
}

.vote-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.iframe-shell {
  position: relative;
  overflow: hidden;
  padding: 12px;
  min-height: 820px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    var(--panel-strong);
}

.iframe-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215,217,222,0.08), transparent 24%, transparent 70%, rgba(179,145,84,0.05));
  pointer-events: none;
}

.iframe-shell iframe {
  width: 100%;
  min-height: 796px;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

/* STORY */

.story-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.story-lead {
  margin-top: 0;
  color: var(--text);
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  line-height: 1.55;
}

.story-card p:not(.story-lead) {
  color: var(--muted);
}

.story-photo-stack {
  position: relative;
  min-height: 100%;
}

.story-photo.large {
  width: 84%;
}

.story-photo.small {
  width: 48%;
  position: absolute;
  right: 0;
  bottom: -2.25rem;
}

/* WHY */

.why-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.why-large {
  margin-top: 0;
  color: var(--text);
  font-size: clamp(1.14rem, 2.4vw, 1.5rem);
  line-height: 1.55;
}

.why-text p:not(.why-large) {
  color: var(--muted);
}

.why-side {
  display: grid;
  gap: 1.2rem;
}

.why-points {
  display: grid;
  gap: 1rem;
}

.why-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(215,217,222,0.08);
}

.why-point:last-child {
  border-bottom: 0;
}

.point-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--silver);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(215,217,222,0.15);
  background: rgba(255,255,255,0.03);
}

.why-point h3 {
  margin: 0 0 0.3rem;
  font-size: 1.04rem;
}

.why-point p {
  margin: 0;
  color: var(--muted);
}

/* HIGHLIGHTS */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.highlight-card {
  position: relative;
  min-height: 270px;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(215,217,222,0.08), transparent 26%),
    linear-gradient(180deg, transparent, rgba(126,15,25,0.08));
  pointer-events: none;
}

.highlight-card:hover {
  transform: translateY(-7px);
  border-color: rgba(215,217,222,0.18);
  box-shadow: 0 24px 65px rgba(0,0,0,0.52);
}

.highlight-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  border: 1px solid rgba(179,145,84,0.2);
  background: rgba(179,145,84,0.07);
}

.highlight-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
}

.highlight-card p {
  margin: 0;
  max-width: 28ch;
  color: var(--muted);
}

/* FINAL CTA */

.final-cta {
  padding-top: 90px;
  padding-bottom: 120px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(215,217,222,0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(215,217,222,0.08), transparent 20%),
    linear-gradient(145deg, rgba(126,15,25,0.34), rgba(11,11,13,0.94) 58%);
  box-shadow: var(--shadow-lg);
}

.final-cta-inner::before,
.final-cta-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 180px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--silver-line), transparent);
}

.final-cta-inner::before {
  top: 18px;
}

.final-cta-inner::after {
  bottom: 18px;
}

.final-copy h2 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.final-copy p {
  max-width: 58ch;
  margin: 0 0 1.5rem;
  color: rgba(245,245,247,0.84);
}

/* REVEALS */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

/* ANIMATIONS */

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* TABLET */

@media (max-width: 1100px) {
  .hero-layout,
  .vote-layout,
  .story-layout,
  .why-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .story-photo-stack {
    min-height: 760px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .iframe-shell {
    min-height: 900px;
  }

  .iframe-shell iframe {
    min-height: 876px;
  }
}

/* MOBILE NAV + MOBILE LAYOUT */

@media (max-width: 860px) {
  :root {
    --nav-height: 72px;
  }

  .site-nav.scrolled {
    background: rgba(8, 8, 10, 0.88);
  }

  .nav-toggle {
    display: inline-block;
    z-index: 1002;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 1rem;
    width: min(320px, calc(100vw - 2rem));
    padding: 1rem;
    display: grid;
    gap: 1rem;
    border-radius: 22px;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(215,217,222,0.1);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.85rem 0.8rem;
    border-radius: 14px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255,255,255,0.04);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-vote-btn {
    width: 100%;
    min-height: 52px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .hero {
    padding-bottom: 5rem;
  }

  .hero-scroll-indicator,
  .hero-side-note {
    display: none;
  }

  .hero-title {
    max-width: none;
  }

  .hero-actions,
  .vote-actions {
    flex-direction: column;
  }

  .btn,
  .vote-actions .btn {
    width: 100%;
  }

  .iframe-shell {
    min-height: 860px;
  }

  .iframe-shell iframe {
    min-height: 836px;
  }
}

/* PHONES */

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .container {
    width: min(100% - 1rem, 1180px);
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-label {
    font-size: 0.74rem;
    letter-spacing: 0.22em;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.8rem);
    line-height: 0.9;
  }

  .hero-names p {
    letter-spacing: 0.12em;
    font-size: 0.95rem;
  }

  .hero-subtitle,
  .hero-blurb,
  .vote-copy p,
  .story-card p,
  .why-text p,
  .highlight-card p,
  .final-copy p {
    font-size: 0.96rem;
  }

  .cover-frame {
    width: 100%;
  }

  .cover-topline,
  .cover-bottom {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .cover-main {
    left: 1rem;
    right: 1rem;
    bottom: 4.3rem;
  }

  .cover-main h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .cover-main p {
    font-size: 0.92rem;
  }

  .vote-copy,
  .story-card,
  .why-text,
  .why-points,
  .highlight-card {
    padding: 1.15rem;
  }

  .story-photo-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .story-photo.large,
  .story-photo.small {
    position: static;
    width: 100%;
  }

  .story-photo.large img,
  .story-photo.small img,
  .inline-photo img,
  .final-photo img {
    min-height: 280px;
  }

  .why-point {
    grid-template-columns: 48px 1fr;
    gap: 0.85rem;
  }

  .point-number {
    width: 44px;
    height: 44px;
    font-size: 0.8rem;
  }

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

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

  .iframe-shell {
    min-height: 720px;
    padding: 10px;
  }

  .iframe-shell iframe {
    min-height: 700px;
    border-radius: 14px;
  }

  .final-cta-inner {
    padding: 1rem;
  }

  .final-copy h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .brand-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}