/* =============================================
   THE REAL STACEY EVANS – Opposition Site
   Exact visual clone of staceyevans.com (Squarespace 7.1)
   Fonts: Epilogue (headings) + Poppins (body)
   Colors: EXACT from site.css :root HSL variables
   ============================================= */

/* =============================================
   SQUARESPACE COLOR PALETTE (exact from site.css)
   --white-hsl:40,86.17%,63.14%  → warm amber #F2BC50
   --black-hsl:40,3.8%,15.49%   → dark charcoal #292825
   --accent-hsl:83.08,45.22%,54.9% → green #98C059
   --lightAccent-hsl:206.09,37.7%,52.16% → steel blue #568BB3
   --darkAccent-hsl:216,56.34%,27.84%   → navy #1F3F6F
   ============================================= */
:root {
  --amber:      hsl(40, 86%, 63%);       /* "white"/"white-bold" section bg */
  --charcoal:   hsl(40, 4%, 15%);        /* "black" section bg */
  --green:      hsl(83, 45%, 55%);       /* accent color (quotation marks, links) */
  --steel:      hsl(206, 38%, 52%);      /* "light"/"light-bold" section bg (footer) */
  --navy:       hsl(216, 56%, 28%);      /* "dark" section bg */
  --white:      #ffffff;                 /* header bg (custom color override) */

  --font-heading: 'Epilogue', sans-serif;
  --font-body:    'Poppins', sans-serif;
  --site-max:  1500px;
  --page-pad:  4vw;
  --mob-pad:   6vw;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
  color: var(--charcoal);
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

/* =============================================
   BUTTONS — square (border-radius:0), outlined
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn--light {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}
.btn--light:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn--dark {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: transparent;
}
.btn--dark:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn--amber {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: var(--white);
}
.btn--amber:hover { opacity: 0.85; }

/* =============================================
   HEADER
   White bg (#fff custom override), logo left (100px),
   nav right, CTA button far right — no border
   from tweakJSON: header-vert-padding: 0.6vw, header-width: Full
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 0.6vw 2vw;
  gap: 24px;
}

/* Logo */
.header-title-logo img {
  height: 100px;       /* from tweakJSON header-logo-height: 100px */
  width: auto;
  flex-shrink: 0;
}

/* Nav wrapper pushes nav to the right */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav-list li {
  margin-left: 2.7vw;
}

.header-nav-list li a {
  font-family: var(--font-body);   /* Poppins — matches --site-navigation-font */
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;               /* --body-font-letter-spacing: 0em */
  text-transform: none;            /* --body-font-text-transform: none */
  color: var(--charcoal);
  transition: opacity 0.2s;
}
.header-nav-list li a:hover,
.header-nav-list li a.active { opacity: 0.55; }

/* CTA Action button */
.header-actions-cta {
  flex-shrink: 0;
}
.header-actions-cta a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 12px 22px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.header-actions-cta a:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Hamburger */
.header-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.burger-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.top-bun, .patty, .bottom-bun {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
}

/* =============================================
   MOBILE MENU OVERLAY
   ============================================= */
.header-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 60px 16px 32px;
}
.header-menu.is-open { display: flex; }

.mobile-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  line-height: 1;
  padding: 8px;
}

.header-menu-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  width: 100%;
}

.header-menu-nav-item {
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-menu-nav-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.header-menu-nav-item a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: right;
  letter-spacing: 0;
  text-transform: none;
}

.header-menu-cta {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.header-menu-cta a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 14px 36px;
  display: inline-block;
  border-radius: 0;
}

/* =============================================
   HERO SECTION
   "black" theme = charcoal bg, SE_hero.png image, 49% overlay
   Split: left = text column / right = video column
   section-height--small ≈ 480-560px min-height
   ============================================= */
.hero-section {
  position: relative;
  background: var(--charcoal);
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section .section-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section .section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46.29% 16%;
}

.hero-section .section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
}

/* Left-aligned hero content */
.hero-centered-block {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.85);
}


/* =============================================
   SIGNUP SECTION — "white-bold" theme = amber bg
   Mirrors "Join us! Sign up for email updates."
   Full-bleed amber, centered content, email form
   ============================================= */
.signup-section {
  background: var(--white);
  color: var(--charcoal);
  padding: 64px var(--page-pad);
  text-align: center;
}

.signup-section .section-inner {
  max-width: 640px;
  margin: 0 auto;
}

.signup-section .eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}

.signup-section h2 {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.signup-section .lead {
  font-size: 15px;
  color: rgba(41, 40, 37, 0.75);
  margin-bottom: 28px;
}

.signup-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid var(--charcoal);
  border-right: none;
  border-radius: 0;
  background: transparent;
  color: var(--charcoal);
  outline: none;
}
.signup-form input::placeholder { color: rgba(41,40,37,0.45); }

.signup-form button {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.signup-form button:hover { opacity: 0.8; }

.signup-disclaimer {
  font-size: 12px;
  margin-top: 16px;
  color: rgba(41,40,37,0.6);
}

/* =============================================
   QUOTE SECTION — "dark" theme = navy bg
   Left: photo (se_quote_box.png) | Right: quote text
   ============================================= */
.quote-section {
  background: var(--navy);
  color: var(--white);
  padding: 80px var(--page-pad);
}

.quote-fluid-grid {
  max-width: var(--site-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quote-photo-block img {
  width: 100%;
  max-width: 440px;
  object-fit: contain;
}

.quote-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.big-quote-mark {
  font-family: var(--font-heading);
  font-size: 140px;
  font-weight: 700;
  line-height: 0.75;
  color: var(--green);
  /* top-right in Squarespace layout but we'll put it above text */
}

.quote-body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--white);
}

.quote-attribution-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.quote-attribution-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: -8px;
}

/* =============================================
   SECOND WHITE-BOLD SECTION — endorsements
   Same amber bg as signup section
   "Endorsed & Powered By:" style text
   ============================================= */
.endorsers-section {
  background: var(--white);
  color: var(--charcoal);
  padding: 64px var(--page-pad);
  text-align: center;
}

.endorsers-section .section-inner {
  max-width: var(--site-max);
  margin: 0 auto;
}

.endorsers-section .eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}

.endorsers-section h2 {
  font-size: clamp(20px, 2.5vw, 36px);
  max-width: 720px;
  margin: 0 auto 48px;
}

/* =============================================
   CORPORATE DONOR MARQUEE
   ============================================= */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos-marquee-track {
  width: 100%;
  overflow: hidden;
  padding: 32px 0;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-marquee-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.logos-marquee-inner:hover {
  animation-play-state: paused;
}

.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  flex-shrink: 0;
}

.marquee-logo img {
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
  filter: grayscale(20%);
}
.marquee-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* =============================================
   FOOTER — "light-bold" theme = steel blue
   ============================================= */
#site-footer {
  background: var(--steel);
  color: var(--white);
  padding: 56px var(--page-pad) 32px;
}

.footer-inner {
  max-width: var(--site-max);
  margin: 0 auto;
}

.footer-top-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
}

.footer-logo img {
  height: 64px;
  width: auto;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-site-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer-district {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 12px;
}

.footer-nav-row a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.2s;
}
.footer-nav-row a:hover { opacity: 0.6; }

.footer-bottom-row {
  text-align: center;
}

.footer-bottom-row p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.footer-bottom-row a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-centered-block {
    padding: 0 var(--mob-pad);
  }
  .hero-section .section-background img {
    object-position: 70% 30%;
  }

  .quote-fluid-grid {
    grid-template-columns: 1fr;
  }
  .quote-photo-block { display: none; }
  .big-quote-mark { font-size: 80px; }
}

@media (max-width: 768px) {
  .header-nav,
  .header-actions-cta { display: none; }
  .header-burger { display: block; margin-left: auto; }

  .header-title-logo img { height: 60px; }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .marquee-logo {
    padding: 0 36px;
  }
  .marquee-logo img {
    height: 56px;
  }
}

@media (max-width: 480px) {
  .hero-section .section-background img {
    object-position: 70% 28%;
  }
  .signup-form {
    flex-direction: column;
  }
  .signup-form input[type="email"] {
    border-right: 1px solid var(--charcoal);
    border-bottom: none;
  }
}

/* =============================================
   INNER PAGES (votes, attendance, issues, about)
   Simple content layout on a white bg
   ============================================= */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px var(--page-pad) 60px;
}

.page-hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 500;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 60px);
  color: var(--white);
  max-width: 800px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin-top: 16px;
}

.page-content {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 60px var(--page-pad);
}

/* Vote items */
.vote-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 32px 0;
}
.vote-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }

.vote-item-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.vote-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
}
.vote-badge.bad { background: #c0392b; color: var(--white); }
.vote-badge.mixed { background: #e67e22; color: var(--white); }
.vote-badge.good { background: var(--green); color: var(--white); }

.vote-item h3 {
  font-size: 18px;
  color: var(--charcoal);
}
.vote-item p {
  font-size: 15px;
  color: rgba(41,40,37,0.75);
  max-width: 700px;
  margin-top: 6px;
}
.vote-item .source {
  font-size: 12px;
  color: var(--steel);
  margin-top: 8px;
}

/* Big stat */
.big-stat-box {
  background: var(--white);
  padding: 48px var(--page-pad);
  text-align: center;
  margin: 48px 0;
}
.big-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.big-stat-label {
  font-size: 18px;
  color: var(--charcoal);
  max-width: 500px;
  margin: 16px auto 0;
}

/* Issue sections */
.issue-block {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 48px 0;
}
.issue-block:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.issue-block h2 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 20px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.two-col h3 {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.two-col ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 15px;
  color: rgba(41,40,37,0.8);
}
.two-col ul li { margin-bottom: 8px; }

.analysis-box {
  background: rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--navy);
  padding: 20px 24px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--charcoal);
  font-style: italic;
}

/* Contradiction list */
.contradiction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contradiction:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.contradiction .claim {
  font-size: 15px;
  font-style: italic;
  color: rgba(41,40,37,0.7);
}
.contradiction .reality {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.section-label-amber {
  background: var(--white);
  color: var(--charcoal);
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .two-col, .contradiction {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   COMPAT — additional inner-page helpers
   ============================================= */
.page-section { width: 100%; }
.page-section.theme-dark { background: var(--navy); color: var(--white); }

/* Session headers in votes page */
.session-header {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 48px 0 8px;
}
.session-header:first-child { padding-top: 0; }

/* Vote item body */
.vote-item-body { padding-left: 0; }
.vote-item-body p { font-size: 15px; color: rgba(41,40,37,0.78); margin-bottom: 8px; }
.vote-item-body blockquote {
  border-left: 3px solid var(--steel);
  padding: 8px 16px;
  margin: 12px 0;
  font-style: italic;
  font-size: 14px;
  color: rgba(41,40,37,0.7);
}
.vote-item-body blockquote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  margin-top: 4px;
  opacity: 0.65;
}

/* Source link */
.source-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  display: inline-block;
  margin-top: 4px;
}

/* Attendance page */
.stat-box-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  padding: 48px;
  margin-bottom: 48px;
}
.big-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.big-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.big-stat-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}
.stat-content h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 12px;
}
.stat-content p { font-size: 15px; color: rgba(41,40,37,0.78); }

.callout-box {
  background: var(--white);
  padding: 32px 40px;
  margin: 40px 0;
}
.callout-box h3 { margin-bottom: 12px; }
.callout-box p { font-size: 15px; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.info-card {
  background: #f7f5f0;
  padding: 28px 24px;
  border-top: 3px solid var(--green);
}
.info-card h3 { font-size: 15px; margin-bottom: 8px; }
.info-card p { font-size: 14px; color: rgba(41,40,37,0.75); }

@media (max-width: 600px) {
  .stat-box-row {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

/* =============================================
   MISSING INNER-PAGE CLASSES
   ============================================= */

/* Typography utilities */
.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}
.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
.body-md {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(41,40,37,0.8);
}
.body-lg {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(41,40,37,0.85);
}
.text-muted-light { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }

/* Section label (small caps eyebrow) */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}

/* Source note inside callout boxes */
.source-note {
  font-size: 12px;
  color: rgba(41,40,37,0.5);
  margin-top: 8px;
}

/* Disclaimer text under forms */
.disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

/* Navy signup section at bottom of inner pages */
.section--navy,
.section.section--navy {
  background: var(--navy);
  color: var(--white);
  padding: 80px var(--page-pad);
}
.container--text {
  max-width: 600px;
  margin: 0 auto;
}
.section--navy h2,
.section.section--navy h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.section--navy p,
.section.section--navy p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* Buttons */
.btn--outline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 28px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-light {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 28px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

/* Cards grid (attendance page) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.vote-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 28px 24px;
  border-radius: 4px;
}
.vote-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.vote-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.vote-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* Reality list (about page) */
.reality-list li {
  font-size: 15px;
  color: rgba(41,40,37,0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  line-height: 1.5;
}
.reality-list li:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
