/* ===================================================
   Patriot Shootout — Shared Styles
   =================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --ink: #1b1b1b;
  --gold: #d4af37;
  --gold-bright: #f0cd5e;
  --gold-dim: #8a7226;
  --red: #8b1e1e;
  --red-bright: #b3281f;
  --navy: #141d33;
  --flag-blue: #26408f;
  --olive: #4b5320;
  --cream: #f3ecd9;
  --gray: #9a9488;
  --max-w: 1180px;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.4em;
  color: var(--cream);
}

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

.section-alt { background: var(--black-soft); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5em;
}

.section-lead {
  max-width: 720px;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2.5em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: #1a1400;
  box-shadow: 0 6px 20px rgba(212,175,55,0.25);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(212,175,55,0.4); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(212,175,55,0.1); transform: translateY(-3px); }
.btn-red {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--cream);
  box-shadow: 0 6px 20px rgba(139,30,30,0.35);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(139,30,30,0.5); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(10,10,10,0.92);
  padding: 10px 28px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}
.nav-brand img { height: 42px; width: auto; transition: height 0.3s ease; }
.site-nav.scrolled .nav-brand img { height: 34px; }
.nav-brand img.nav-logo-img {
  height: 64px;
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.site-nav.scrolled .nav-brand img.nav-logo-img { height: 50px; }
@media (max-width: 860px) {
  .nav-brand img.nav-logo-img { height: 48px; }
}
.nav-brand .sub { display: block; font-size: 0.6rem; color: var(--gold); letter-spacing: 0.2em; font-family: var(--font-body); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a { position: relative; padding: 6px 0; color: var(--cream); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--gold); display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 1.1rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #000;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 65%;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.55) 25%, rgba(6,6,6,0.85) 100%),
    linear-gradient(90deg, rgba(6,6,6,0.75) 0%, rgba(6,6,6,0.25) 55%, rgba(6,6,6,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 28px 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.hero-stars {
  display: flex; gap: 6px; margin-bottom: 18px; color: var(--gold);
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  margin-bottom: 6px;
}
.hero h1 .gold { color: var(--gold-bright); text-shadow: 0 2px 24px rgba(212,175,55,0.35); }
.hero h1 .silver { color: #d7d7d7; }
.hero-sub {
  font-family: var(--font-display);
  color: var(--red-bright);
  letter-spacing: 0.28em;
  font-size: 0.95rem;
  margin: 14px 0 26px;
  display: flex; align-items: center; gap: 12px;
}
.hero-sub::before, .hero-sub::after { content:""; width: 34px; height: 2px; background: var(--red-bright); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 26px 0 34px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--cream);
  font-size: 1rem;
}
.hero-meta div { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span { color: var(--gold); }

/* ---------- Icon system (site-colored, no emoji) ---------- */
.icon-gold {
  color: var(--gold-bright);
  flex-shrink: 0;
  display: inline-flex;
  width: 22px;
  height: 22px;
}
.icon-gold svg { width: 100%; height: 100%; }
.icon-gold.sm { width: 18px; height: 18px; }
.icon-gold.lg { width: 30px; height: 30px; }
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-badge {
  display: flex;
  justify-content: center;
}
.hero-badge img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.6));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.countdown {
  margin-top: 40px;
  display: flex;
  gap: 18px;
}
.countdown .box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 6px;
  padding: 14px 10px;
  min-width: 78px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.countdown .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
  line-height: 1;
}
.countdown .label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 6px;
}

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-align: center;
}
.scroll-cue .line {
  width: 1px; height: 34px; margin: 8px auto 0;
  background: var(--gold);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top;}
  50% { opacity: 1; transform: scaleY(1); transform-origin: top;}
  100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top;}
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-badge { order: -1; max-width: 240px; margin: 0 auto 20px; }
  .hero-badge img { max-width: 240px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* ---------- Stat counters ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.stat {
  text-align: center;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  padding: 26px 12px;
  background: linear-gradient(180deg, rgba(212,175,55,0.06), transparent);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.stat:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-bright);
}
.stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Sniper bullet parallax + impact (Experience section) ---------- */
#experience { position: relative; overflow: hidden; }

.bullet-fx {
  position: absolute;
  top: 158px;
  left: 0;
  width: 88px;
  height: 16px;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  will-change: transform, opacity;
}
.bullet-fx img { filter: drop-shadow(0 0 6px rgba(212,175,55,0.5)); }
.bullet-trail {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.55));
  pointer-events: none;
}

.bullet-flash {
  position: absolute;
  top: 150px;
  left: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,244,214,0.95), rgba(212,175,55,0.35) 50%, transparent 75%);
  opacity: 0;
  transform: scale(0.4);
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.bullet-flash.show { opacity: 1; transform: scale(1.6); }

.bullet-hole {
  position: absolute;
  top: 138px;
  left: 0;
  width: 70px;
  height: 70px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.bullet-hole.hit { opacity: 1; transform: scale(1); }
.bullet-hole img { mix-blend-mode: screen; }

@media (max-width: 760px) {
  .bullet-fx, .bullet-flash, .bullet-hole { display: none; }
}

/* ---------- Experience / lanes ---------- */
.lanes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.lane-card {
  background: var(--black-soft);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 10px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.lane-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.5); }
.lane-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--red-bright) 0%, var(--red-bright) 33%, #ffffff 33%, #ffffff 66%, var(--flag-blue) 66%);
}
.lane-card .tag {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  text-shadow: 0 2px 18px rgba(212,175,55,0.25);
}
.lane-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 14px;
  color: var(--cream);
  text-shadow: none;
}
.lane-card p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ---------- Timeline ---------- */
.timeline-day {
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.timeline-day .day-num {
  position: absolute;
  top: -18px;
  right: 4px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(212,175,55,0.07);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.timeline-day h3 {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding-bottom: 14px;
  margin-bottom: 26px;
}
.timeline {
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  transition: height 1.5s cubic-bezier(.22,.9,.34,1);
}
.timeline.in-view::before { height: 100%; }
.t-item {
  position: relative;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.t-item.in { opacity: 1; transform: translateX(0); }
.t-item:last-child { padding-bottom: 0; }
.t-item::before {
  content: "";
  position: absolute;
  left: -37px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(.34,1.56,.64,1) 0.2s;
}
.t-item.in::before { transform: scale(1); }
.t-time {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.t-title { font-size: 1.05rem; margin-top: 4px; color: var(--cream); }

/* ---------- Registration ---------- */
.reg-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .reg-grid { grid-template-columns: 1fr; } }
.price-card {
  background: linear-gradient(160deg, rgba(212,175,55,0.12), rgba(0,0,0,0.2));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 14px;
  padding: 40px 34px;
  text-align: center;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--gold-bright);
  margin: 6px 0;
}
.price-card .per { color: var(--gray); font-size: 0.95rem; margin-bottom: 26px; }
.includes-list { list-style: none; padding: 0; margin: 26px 0; text-align: left; }
.includes-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--cream);
  font-size: 0.95rem;
}
.includes-list li .check { color: var(--gold); flex-shrink: 0; }
.rsvp-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--red-bright);
  letter-spacing: 0.04em;
}

.info-list dt {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-top: 22px;
}
.info-list dd { margin: 6px 0 0; color: var(--cream); }

/* ---------- Cause / stats ---------- */
#cause { position: relative; overflow: hidden; }
.cause-watermark {
  position: absolute;
  top: 50%; right: -6%;
  width: 640px; height: 640px;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.cause-watermark svg { width: 100%; height: 100%; }
.cause-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .cause-wrap { grid-template-columns: 1fr; } }

@keyframes pulseGlowRed {
  0%, 100% { box-shadow: 0 6px 20px rgba(139,30,30,0.35); }
  50% { box-shadow: 0 8px 34px rgba(179,40,31,0.7); }
}
.btn-pulse { animation: pulseGlowRed 2.6s ease-in-out infinite; }
.btn-pulse:hover { animation-play-state: paused; }

@keyframes alarmGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(179,40,31,0); }
  50% { text-shadow: 0 0 14px rgba(179,40,31,0.55); }
}
.cause-alarm { animation: alarmGlow 3.2s ease-in-out infinite; }

/* ---------- Venue ---------- */
.venue-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  border-radius: 12px;
  overflow: hidden;
}
.venue-gallery img { height: 100%; width: 100%; object-fit: cover; cursor: pointer; transition: transform 0.4s ease; }
.venue-gallery img:hover { transform: scale(1.04); }
.venue-gallery .big { grid-row: span 2; }
.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.amenity-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--black-soft);
  border: 1px solid rgba(212,175,55,0.15);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 60px 28px 28px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img { height: 50px; }
.footer-links a { display: block; padding: 5px 0; color: var(--gray); font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: #6a6a6a;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Sub-page hero (Sponsors / Contact) ---------- */
.page-hero {
  padding: 170px 24px 70px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.12), transparent 60%),
    var(--black);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--gray); max-width: 620px; margin: 14px auto 0; }

/* ---------- Sponsor tiers ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.tier-card {
  border-radius: 12px;
  padding: 34px 28px;
  position: relative;
  background: var(--black-soft);
  border: 1px solid rgba(212,175,55,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(212,175,55,0.14), rgba(0,0,0,0.2));
}
.tier-card .flag {
  position: absolute; top: 18px; right: -34px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 6px 40px;
  transform: rotate(40deg);
}
.tier-card .stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 4px; }
.tier-card .amount { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-bright); margin: 6px 0 18px; }
.tier-card ul { list-style: none; padding: 0; margin: 0; }
.tier-card li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.92rem; color: var(--cream); }
.tier-card li:last-child { border-bottom: none; }

.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.station-card {
  text-align: center;
  padding: 28px 18px;
  border-radius: 10px;
  background: var(--black-soft);
  border: 1px solid rgba(212,175,55,0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.station-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.station-card .icon { margin: 0 auto 14px; width: 34px; height: 34px; }
.station-card h4 { font-size: 1rem; margin-bottom: 6px; }
.station-card .amt { color: var(--gold); font-family: var(--font-display); font-size: 1.1rem; }

/* ---------- Sponsor carousel (placeholder) ---------- */
.carousel-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollTrack 26s linear infinite;
}
.carousel-wrap:hover .carousel-track { animation-play-state: paused; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sponsor-slot {
  width: 200px;
  height: 100px;
  border: 1.5px dashed rgba(212,175,55,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,175,55,0.55);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  text-align: center;
  padding: 10px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--cream);
  padding: 13px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-field textarea { resize: vertical; min-height: 130px; }

.contact-card {
  background: var(--black-soft);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 20px;
}
.contact-card h4 { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.08em; margin-bottom: 10px; }
.contact-card .big { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.contact-card p { margin: 4px 0 0; color: var(--gray); font-size: 0.9rem; }

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { color: #7bc97b; }
.form-status.err { color: #e07a7a; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(4,4,4,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 6px; }
.lightbox-close {
  position: absolute; top: 26px; right: 34px;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
}

/* ---------- Warfighter Scuba inline links ---------- */
.wfs-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.45);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.wfs-link:hover { text-decoration-color: currentColor; color: var(--gold-bright); }

blockquote.cause-quote {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 26px 0;
  color: var(--cream);
  font-style: italic;
  font-size: 1.05rem;
}
blockquote.cause-quote footer {
  margin-top: 8px;
  font-style: normal;
  color: var(--gray);
  font-size: 0.85rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
