/* ============================================================
   Joshua Lakes Illustration — Site Stylesheet
   Brandkit V1 | 2026-05-19
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600&family=Playfair+Display:ital@0;1&display=swap');

/* ── CSS Custom Properties (Brand Palette) ── */
:root {
  /* Opt out of browser auto dark mode — this site is light-only */
  color-scheme: only light;

  /* Primary */
  --spotlight-blue:  #1F5DAA;
  --circus-red:      #C8342D;
  --show-gold:       #D4A63A;
  --ink-black:       #111111;
  --paper-white:     #F5F2EA;

  /* Secondary / Earth */
  --sand-tan:        #C8AE82;
  --mud-brown:       #6C4F36;
  --tree-green:      #456B3C;
  --army-olive:      #6C7442;

  /* Utility */
  --blue-dark:       #163e74;
  --blue-light:      #2c6fc4;
  --gold-dark:       #a87e20;
  --text-on-blue:    #F5F2EA;
  --text-on-white:   #111111;

  /* Typography */
  --font-display:    'Anton', sans-serif;
  --font-heading:    'Oswald', sans-serif;
  --font-body:       'Inter', sans-serif;
  --font-quote:      'Playfair Display', serif;

  /* Spacing */
  --section-pad:     5rem 1.5rem;
  --max-width:       1160px;
  --border-radius:   4px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Belt-and-suspenders: tell Chrome at the html level too — some versions
     only respect color-scheme when it appears here, not just :root */
  color-scheme: only light;
  /* Prevent OS/extension forced-color adjustments (High Contrast, etc.) */
  forced-color-adjust: none;
}

body {
  font-family: var(--font-body);
  /* Hard hex — must not be overridden by auto dark mode */
  background-color: #F5F2EA;
  color: #111111;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  /* Prevents Chrome Auto Dark Mode from rewriting background/color on body */
  forced-color-adjust: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad); }

.text-center { text-align: center; }
.text-gold    { color: var(--show-gold); }
.text-red     { color: var(--circus-red); }
.text-blue    { color: var(--spotlight-blue); }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--show-gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--circus-red);
  color: var(--paper-white);
}
.btn-primary:hover { background: #a8261f; }

.btn-secondary {
  background: transparent;
  color: var(--paper-white);
  border: 2px solid var(--paper-white);
}
.btn-secondary:hover { background: rgba(245,242,234,0.12); }

.btn-gold {
  background: var(--show-gold);
  color: var(--ink-black);
}
.btn-gold:hover { background: var(--gold-dark); color: var(--paper-white); }

.btn-outline-blue {
  background: transparent;
  color: var(--spotlight-blue);
  border: 2px solid var(--spotlight-blue);
}
.btn-outline-blue:hover { background: var(--spotlight-blue); color: var(--paper-white); }

/* ── Dark-section font smoothing override ──
   antialiased looks correct on dark backgrounds; subpixel-antialiased does not */
.site-nav,
.hero,
.vote-block,
.vote-page-hero,
.store-preview,
.site-footer,
.share-block,
.vote-instructions,
.campaign-banner,
.campaign-panel,
.spotlight-section,
.roller-hero {
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ink-black);
  border-bottom: 2px solid var(--show-gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-white);
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--show-gold);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-white);
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--show-gold); }

.nav-links a.active { color: var(--show-gold); }

.nav-vote-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--circus-red);
  color: var(--paper-white);
  padding: 0.55rem 1.2rem;
  border-radius: var(--border-radius);
  transition: background 0.15s ease;
  white-space: nowrap;
}
.nav-vote-btn:hover { background: #a8261f; color: var(--paper-white); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper-white);
  transition: all 0.2s;
}

/* ── Page Offset (for fixed nav) ── */
.page-content { padding-top: 64px; }

/* ── Stars decoration ── */
.stars {
  display: inline-flex;
  gap: 0.4rem;
  color: var(--show-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Hero ── */
.hero {
  background-color: var(--spotlight-blue);
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(212,166,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(17,17,17,0.3) 0%, transparent 50%);
  color: var(--paper-white);
  padding: 6rem 1.5rem 5rem;
  min-height: calc(90vh - 64px);
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--show-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--show-gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  color: var(--paper-white);
}

.hero-headline em {
  color: var(--show-gold);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245,242,234,0.88);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-art {
  position: relative;
}

.hero-art-placeholder {
  background: rgba(0,0,0,0.25);
  border: 2px dashed rgba(245,242,234,0.3);
  border-radius: 8px;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(245,242,234,0.5);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-art-placeholder .placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.hero-gold-star {
  position: absolute;
  color: var(--show-gold);
  font-size: 1.5rem;
  opacity: 0.6;
}

/* ── Vote CTA Block ── */
.vote-block {
  background: var(--ink-black);
  color: var(--paper-white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.vote-block-inner {
  max-width: 680px;
  margin: 0 auto;
}

.vote-badge {
  display: inline-block;
  background: var(--circus-red);
  color: var(--paper-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.vote-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--paper-white);
}

.vote-headline span { color: var(--show-gold); }

.vote-copy {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,242,234,0.82);
  margin-bottom: 2rem;
}

.vote-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Campaign update banner */
.campaign-banner {
  background: var(--show-gold);
  color: var(--ink-black);
  padding: 0.85rem 1.5rem;
  border-bottom: 3px solid var(--circus-red);
}

.campaign-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.campaign-banner-inner > * {
  min-width: 0;
}

.campaign-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.campaign-banner p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.campaign-banner span {
  font-size: 0.9rem;
  color: rgba(17,17,17,0.75);
  overflow-wrap: break-word;
}

.campaign-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 148px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(17,17,17,0.2);
  border-radius: var(--border-radius);
  background: rgba(245,242,234,0.28);
}

.countdown-label {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.62);
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-black);
}

.campaign-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: var(--border-radius);
  background: var(--ink-black);
  color: var(--paper-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.campaign-banner-link:hover {
  background: var(--circus-red);
}

.campaign-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 2rem;
  max-width: 560px;
}

.status-pill {
  border: 1px solid rgba(212,166,58,0.42);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  background: rgba(17,17,17,0.22);
}

.status-pill strong,
.status-pill span {
  display: block;
}

.status-pill strong {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--show-gold);
  margin-bottom: 0.15rem;
}

.status-pill span {
  color: rgba(245,242,234,0.82);
  font-size: 0.88rem;
  line-height: 1.35;
}

.campaign-panel {
  background: var(--ink-black);
  color: var(--paper-white);
  padding: 4rem 1.5rem;
}

.campaign-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto;
}

.campaign-card {
  background: rgba(245,242,234,0.06);
  border: 1px solid rgba(212,166,58,0.28);
  border-radius: var(--border-radius);
  padding: 1.25rem;
}

.campaign-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--show-gold);
  margin-bottom: 0.35rem;
}

.campaign-card span {
  display: block;
  color: rgba(245,242,234,0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

.spotlight-section {
  background: var(--paper-white);
  padding: var(--section-pad);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.spotlight-copy {
  max-width: 620px;
  min-width: 0;
}

.spotlight-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink-black);
  margin-bottom: 1rem;
}

.spotlight-copy p {
  font-size: 1.05rem;
  line-height: 1.78;
  color: #444;
  margin-bottom: 1.2rem;
  overflow-wrap: break-word;
}

.spotlight-media {
  background: var(--ink-black);
  color: var(--paper-white);
  border-radius: var(--border-radius);
  border: 2px solid var(--show-gold);
  min-height: 340px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.spotlight-media-label {
  display: inline-block;
  align-self: flex-start;
  background: var(--circus-red);
  color: var(--paper-white);
  border-radius: 2px;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spotlight-media-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--show-gold);
  margin: 2rem 0 1rem;
}

.spotlight-media p {
  color: rgba(245,242,234,0.78);
  line-height: 1.65;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.link-card,
.link-placeholder {
  border-radius: var(--border-radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.link-card {
  background: var(--spotlight-blue);
  color: var(--paper-white);
}

.link-card:hover {
  background: var(--blue-dark);
}

.link-placeholder {
  border: 1px dashed rgba(17,17,17,0.3);
  color: rgba(17,17,17,0.58);
  background: rgba(17,17,17,0.04);
}

.spotlight-media .link-placeholder {
  border-color: rgba(245,242,234,0.3);
  color: rgba(245,242,234,0.66);
  background: rgba(245,242,234,0.05);
}

.social-section {
  background: var(--spotlight-blue);
  color: var(--paper-white);
  padding: var(--section-pad);
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  max-width: 760px;
  margin: 1.5rem auto 0;
}

.social-placeholder {
  border: 1px dashed rgba(245,242,234,0.35);
  border-radius: var(--border-radius);
  padding: 0.9rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,242,234,0.72);
}

.email-field-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.email-note,
.form-status {
  max-width: 520px;
  margin: 0.75rem auto 0;
  font-size: 0.85rem;
  color: #666;
}

.form-status {
  min-height: 1.35rem;
  color: var(--circus-red);
  font-weight: 600;
  flex-basis: 100%;
}

.share-block .btn {
  min-height: 48px;
}

/* ── Featured Art ── */
.featured-art {
  background: var(--paper-white);
  padding: var(--section-pad);
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.art-card {
  background: var(--ink-black);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.art-card-image {
  aspect-ratio: 4/5;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #444;
  position: relative;
  overflow: hidden;
}

.art-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(200,52,45,0.9);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.art-card-info {
  padding: 1rem 1.25rem;
}

.art-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--paper-white);
  margin-bottom: 0.25rem;
}

.art-card-meta {
  font-size: 0.8rem;
  color: var(--sand-tan);
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.art-grid-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Quote / Story Section ── */
.story-section {
  /* Hard hex — eliminates CSS variable resolution differences across browsers */
  background: #C8AE82;
  padding: var(--section-pad);
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.5;
  /* Hard hex — forces dark text in every browser, no variable resolution */
  color: #111111;
  margin-bottom: 2rem;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
}

.story-quote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -0.4em;
  color: rgba(31, 93, 170, 0.35);
  margin-right: 0.1em;
}

.story-attribution {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a5c3c;
  margin-bottom: 2rem;
}

.story-body {
  font-size: 1.05rem;
  line-height: 1.8;
  /* Hard hex — forces dark text in every browser */
  color: #111111;
  margin-bottom: 2rem;
  -webkit-font-smoothing: subpixel-antialiased;
}

/* ── Store Preview ── */
.store-preview {
  background: var(--spotlight-blue);
  color: var(--paper-white);
  padding: var(--section-pad);
  text-align: center;
}

.store-preview .section-title { color: var(--paper-white); }
.store-preview .section-sub { color: rgba(245,242,234,0.8); }

.store-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.store-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(212,166,58,0.3);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.store-card:hover {
  border-color: var(--show-gold);
  background: rgba(0,0,0,0.3);
}

.store-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.store-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-white);
  margin-bottom: 0.5rem;
}

.store-card-status {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--show-gold);
  background: rgba(212,166,58,0.15);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-top: 0.75rem;
}

/* ── Email CTA ── */
.email-section {
  background: var(--paper-white);
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--show-gold);
}

.email-section .section-title { color: var(--ink-black); }

.email-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.email-input {
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--ink-black);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: white;
  color: var(--ink-black);
  width: 280px;
  max-width: 100%;
}

.email-input:focus {
  outline: none;
  border-color: var(--spotlight-blue);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--spotlight-blue);
  color: var(--paper-white);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(245,242,234,0.85);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--ink-black);
  cursor: pointer;
}

.gallery-item-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item-img--paper {
  object-fit: contain;
  padding: 0.75rem;
  background: var(--paper-white);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--paper-white);
  font-size: 1rem;
}

/* Placeholder for gallery items */
.gallery-placeholder {
  aspect-ratio: 1;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #444;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Shop — Coming Soon ── */
.shop-hero {
  background: var(--spotlight-blue);
  color: var(--paper-white);
  padding: 6rem 1.5rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.shop-hero-inner { max-width: 640px; margin: 0 auto; }

/* ── About ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-image-placeholder {
  background: var(--sand-tan);
  aspect-ratio: 3/4;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mud-brown);
  text-align: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--spotlight-blue);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-black);
  margin-bottom: 1.25rem;
}

.about-text a {
  color: var(--spotlight-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.about-text a:hover {
  color: var(--circus-red);
}

.story-photo {
  margin: 2rem 0;
}

.story-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 14px 32px rgba(17,17,17,0.16);
}

.story-photo figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mud-brown);
}

.about-pullquote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--mud-brown);
  border-left: 4px solid var(--spotlight-blue);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--spotlight-blue);
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.contact-form-wrapper {
  background: var(--ink-black);
  border-radius: var(--border-radius);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-tan);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,242,234,0.2);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--paper-white);
  transition: border-color 0.15s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--show-gold);
}

.form-textarea { min-height: 140px; resize: vertical; }

/* ── Footer ── */
.site-footer {
  background: var(--ink-black);
  color: var(--paper-white);
  padding: 3.5rem 1.5rem 2rem;
  border-top: 3px solid var(--show-gold);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-white);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245,242,234,0.6);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--show-gold);
  margin-bottom: 1rem;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245,242,234,0.65);
  transition: color 0.15s ease;
}

.footer-links a:hover { color: var(--paper-white); }

.footer-link-placeholder {
  font-size: 0.9rem;
  color: rgba(245,242,234,0.42);
}

.footer-bottom {
  border-top: 1px solid rgba(245,242,234,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,242,234,0.4);
}

.footer-gold-star {
  color: var(--show-gold);
  font-size: 1.2rem;
}

/* ── Vote Page Specific ── */
.vote-page-hero {
  background: var(--ink-black);
  color: var(--paper-white);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-image: radial-gradient(ellipse at center, rgba(31,93,170,0.3) 0%, transparent 70%);
}

.vote-page-inner { width: 100%; max-width: 720px; margin: 0 auto; }

.vote-contest-label {
  display: inline-block;
  background: var(--circus-red);
  color: var(--paper-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.vote-page-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.vote-page-headline span { color: var(--show-gold); }

.vote-page-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(245,242,234,0.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  overflow-wrap: break-word;
}

.vote-instructions {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,166,58,0.3);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.vote-instructions h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--show-gold);
  margin-bottom: 1.25rem;
}

.vote-steps {
  counter-reset: vote-step;
}

.vote-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245,242,234,0.88);
}

.vote-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--spotlight-blue);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.vote-pending-notice {
  background: rgba(212,166,58,0.1);
  border: 1px solid rgba(212,166,58,0.4);
  border-radius: var(--border-radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--show-gold);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* ── Share Block ── */
.share-block {
  background: var(--spotlight-blue);
  color: var(--paper-white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.share-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.share-block p {
  font-size: 1.05rem;
  color: rgba(245,242,234,0.82);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.share-text {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(245,242,234,0.2);
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(245,242,234,0.75);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  html,
  body,
  .page-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .nav-links { display: none; }
  .site-nav { max-width: 100vw; overflow: hidden; }
  .nav-inner { width: 100vw; max-width: 100vw; }
  .nav-toggle {
    display: flex;
    margin-left: auto;
    flex: 0 0 auto;
    position: fixed;
    top: 0.75rem;
    left: min(320px, calc(100vw - 4.5rem));
    right: auto;
    z-index: 120;
  }
  .nav-toggle::before {
    content: 'Menu';
    color: var(--paper-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .nav-toggle span { display: none; }
  .nav-logo { flex: 0 1 auto; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--ink-black);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 2px solid var(--show-gold);
  }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .vote-ctas { flex-direction: column; align-items: center; }
  .email-form { flex-direction: column; align-items: center; }
  .email-input { width: 100%; max-width: 340px; }
  .vote-instructions { padding: 1.5rem; }
  .campaign-banner-inner,
  .vote-page-inner,
  .spotlight-grid,
  .social-grid,
  .email-field-group {
    width: 100% !important;
    max-width: calc(100vw - 2.5rem) !important;
  }
  .campaign-banner-inner { align-items: stretch; flex-direction: column; }
  .campaign-banner p,
  .campaign-banner span {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .campaign-countdown {
    width: 100%;
  }
  .campaign-banner-link { width: 100%; }
  .campaign-status-strip { grid-template-columns: 1fr; }
  .vote-page-sub,
  .spotlight-copy,
  .spotlight-media { max-width: 100%; }
  .vote-page-sub,
  .spotlight-copy p {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .spotlight-copy h2 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.15rem;
    line-height: 1.06;
    letter-spacing: 0;
    text-wrap: balance;
  }
  .spotlight-media { min-height: 280px; }
  .email-field-group { width: 100%; }
}
