/* ═══════════════════════════════════════════
   JIMMY JINGLE — shared stylesheet
   jimmyjingle.com 🔔 NORTH POLE
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=DM+Sans:wght@400;500&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  --bg:          #FFFEF5;
  --bg-alt:      #F0FFF4;
  --red:         #CC2020;
  --gold:        #D4A020;
  --white:       #FFFFFF;
  --cream:       #FFFEF5;
  --muted:       #4A5A4A;
  --overlay:     #0A1A0A;
  --red-dim:     #A81818;
  --gold-dim:    #B08010;
  --red-glow:    rgba(204,32,32,0.15);
  --gold-glow:   rgba(212,160,32,0.15);
  --border:      rgba(26,92,42,0.18);
  --border-bold: rgba(212,160,32,0.35);
  --green:       #1A5C2A;
  --text:        #0A1A0A;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dim) #e8e8e0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red); }

.anton   { font-family: 'Anton', sans-serif; }
.mono    { font-family: 'Space Mono', monospace; }
.bebas   { font-family: 'Bebas Neue', sans-serif; }

/* ═══ NAVIGATION ═══ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(255,254,245,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 12px rgba(10,26,10,0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--red); }
.nav-logo .bell { color: var(--gold); font-size: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(26,92,42,0.07); }
.nav-links a.active { color: var(--red); }
.nav-sep {
  color: var(--red);
  font-size: 7px;
  pointer-events: none;
  user-select: none;
}

.nav-mood {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (min-width: 900px) { .nav-mood { display: flex; } }
.nav-mood-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-mood-value {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--gold);
  animation: pulse-mood 1.8s ease-in-out infinite;
}
@keyframes pulse-mood {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.nav-mood-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: mood-bounce 0.8s ease-in-out infinite alternate;
}
@keyframes mood-bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-3px); }
}

/* ═══ SCROLL REVEAL — fast and bouncy ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.06s; }
.reveal-d2 { transition-delay: 0.12s; }
.reveal-d3 { transition-delay: 0.18s; }
.reveal-d4 { transition-delay: 0.24s; }

/* ═══ SECTION SPACING ═══ */
section {
  position: relative;
  padding: 100px 24px;
}
@media (min-width: 768px) {
  section { padding: 130px 48px; }
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '★';
  color: var(--red);
  font-size: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
}

/* ═══ GEOMETRIC DIVIDERS ═══ */
.geo-divider {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
  position: relative;
}
.geo-divider::before {
  content: '★';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-alt);
  padding: 0 12px;
  color: var(--gold);
  font-size: 14px;
}

.zigzag-divider {
  width: 100%;
  height: 20px;
  background: var(--red);
  clip-path: polygon(
    0 0, 5% 100%, 10% 0, 15% 100%, 20% 0, 25% 100%, 30% 0, 35% 100%,
    40% 0, 45% 100%, 50% 0, 55% 100%, 60% 0, 65% 100%, 70% 0, 75% 100%,
    80% 0, 85% 100%, 90% 0, 95% 100%, 100% 0, 100% 0, 0 0
  );
}

/* ═══ STARBURST / BADGE ═══ */
.starburst {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--red);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
  animation: star-spin-slow 12s linear infinite;
}
@keyframes star-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--overlay);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 700;
}

/* ═══ BOUNCE ANIMATIONS ═══ */
@keyframes bounce-in {
  0%   { opacity: 0; transform: scale(0.3) translateY(40px); }
  50%  { transform: scale(1.08) translateY(-8px); }
  70%  { transform: scale(0.96) translateY(3px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.5); }
  60% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #1A5C2A;
  padding-top: 62px;
}

.hero-image {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  opacity: 0.35;
}
@media (max-width: 768px) {
  .hero-image {
    width: 100%;
    opacity: 0.2;
  }
}

.hero-gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(26,92,42,0.97) 0%,
    rgba(26,92,42,0.92) 45%,
    rgba(26,92,42,0.7) 65%,
    transparent 100%
  );
}

/* confetti canvas */
#confetti-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 28px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fade-up 0.6s ease forwards;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before { content: '★'; color: var(--red); }

.hero-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  animation: bounce-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  opacity: 0;
}
.hero-name span {
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 3vw, 32px);
  letter-spacing: 0.1em;
  color: var(--red);
  margin-top: 20px;
  animation: fade-up 0.6s ease 0.7s forwards;
  opacity: 0;
}

.hero-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 7px 18px;
  border: 2px solid var(--red);
  border-radius: 100px;
  color: var(--red);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(220,38,38,0.06);
  transition: background 0.2s, color 0.2s;
  animation: fade-up 0.6s ease 0.9s forwards;
  opacity: 0;
}
.hero-ig:hover { background: var(--red); color: #fff; }

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease 0.9s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--red-dim);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 14px 34px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  background: var(--gold-glow);
  color: var(--gold);
  transform: translateY(-3px) scale(1.02);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float-bob 2s ease-in-out infinite;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll::after {
  content: '↓';
  font-size: 16px;
  color: var(--red);
}

/* circle decorations */
.hero-circle-1 {
  position: absolute;
  top: 15%;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid rgba(255,45,58,0.2);
  pointer-events: none;
}
.hero-circle-2 {
  position: absolute;
  bottom: 10%;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(240,192,64,0.05);
  border: 2px solid rgba(240,192,64,0.15);
  pointer-events: none;
}

/* ═══ BIO / STORY SECTION ═══ */
.bio-section {
  background: var(--bg);
  border-bottom: 3px solid var(--red);
}

.bio-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.bio-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
}
.bio-title span { color: var(--red); }

.bio-pull-quote {
  max-width: 380px;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1.35;
}

.bio-fragments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) {
  .bio-fragments { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .bio-fragments { grid-template-columns: 1fr 1fr 1fr; }
}

.bio-fragment {
  padding: 32px 24px;
  border-top: 3px solid var(--red);
  background: var(--white);
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 0 0 1px rgba(26,92,42,0.08);
}
.bio-fragment:hover { background: #f6fff8; box-shadow: 0 4px 16px rgba(26,92,42,0.1); }

.bio-fragment-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.bio-fragment-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.bio-fragment-text strong {
  color: var(--green);
  font-weight: 700;
}
.bio-fragment-text em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

/* scoreboard stats */
.scoreboard {
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 6px;
  padding: 40px;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(212,160,32,0.12);
}
.scoreboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.scoreboard-title {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 36px;
}

.scoreboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}
@media (min-width: 768px) {
  .scoreboard-grid { grid-template-columns: repeat(3, 1fr); }
}

.score-item {}
.score-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.score-value {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3.5vw, 40px);
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1;
}
.score-value.red { color: var(--red); }
.score-value.white { color: var(--text); }

/* ═══ ADVENTURES / GREATEST HITS ═══ */
.adventures-section {
  background: var(--bg-alt);
}

.adventures-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.adventures-title span { color: var(--red); }

.adventures-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 56px;
}

.adventures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .adventures-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .adventures-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.adventure-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(204,32,32,0.08);
}
.adventure-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212,160,32,0.18);
}

.adventure-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.4s;
}
.adventure-card:hover .adventure-card-img {
  transform: scale(1.04);
}

.adventure-card-body {
  padding: 24px;
}
.adventure-card-num {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.adventure-card-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 0.03em;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}
.adventure-card-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}
.adventure-card-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 2px;
}

/* ═══ HIGHLIGHT REEL — VIDEO/AUDIO ═══ */
.highlight-section {
  background: var(--bg);
  position: relative;
}

.highlight-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.highlight-title span { color: var(--red); }

.highlight-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 56px;
}

/* Featured video */
.featured-video-wrap {
  position: relative;
  margin-bottom: 56px;
  border: 4px solid var(--red);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(204,32,32,0.18);
}
.featured-video-wrap video {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  background: #0A1A0A;
}
.featured-video-caption {
  background: var(--red);
  padding: 12px 24px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
}

/* 3-video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 600px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card {
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,92,42,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,92,42,0.18);
}
.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #0A1A0A;
}
.video-card-label {
  padding: 12px 14px;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--green);
  text-transform: uppercase;
  line-height: 1.2;
}

/* Aurora ambient video */
.aurora-section {
  position: relative;
  overflow: hidden;
  height: 340px;
  margin-bottom: 56px;
  border-radius: 8px;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(212,160,32,0.2);
}
.aurora-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.aurora-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,92,42,0.45) 0%, rgba(10,26,10,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aurora-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 4vw, 52px);
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  line-height: 1.1;
  padding: 0 24px;
}

/* Audio cards */
.audio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .audio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .audio-grid { grid-template-columns: repeat(3, 1fr); } }

.audio-card {
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 6px;
  padding: 20px 20px 16px;
  box-shadow: 0 2px 10px rgba(204,32,32,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.audio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(204,32,32,0.15);
}
.audio-card-label {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
  line-height: 1.2;
}
.audio-card-meta {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.audio-card audio {
  width: 100%;
  accent-color: var(--red);
}
.audio-section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.audio-section-title::before { content: '★'; color: var(--gold); }
.audio-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* ═══ VINTAGE AD SECTION ═══ */
.vintage-section {
  background: var(--cream);
  color: var(--overlay);
  position: relative;
  overflow: hidden;
}

/* halftone dot pattern */
.vintage-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(6,26,10,0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.vintage-inner {
  position: relative;
  z-index: 1;
}

.vintage-ad-box {
  border: 4px solid var(--overlay);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: rgba(255,255,255,0.7);
}
.vintage-ad-box::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: -6px; bottom: -6px;
  border: 3px solid rgba(6,26,10,0.3);
  pointer-events: none;
}

.vintage-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.vintage-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--overlay);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vintage-body {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 24px;
}

.vintage-ornament {
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.3em;
  margin: 16px 0;
}

.vintage-stamp {
  display: inline-block;
  border: 3px solid var(--red);
  color: var(--red);
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  padding: 8px 24px;
  transform: rotate(-3deg);
  margin-top: 16px;
}

/* ═══ GALLERY ═══ */
.gallery-section {
  background: var(--bg);
}

.gallery-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 7vw, 90px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery-title span { color: var(--gold); }

.gallery-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #e8e8e0;
  cursor: pointer;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,160,32,0.2);
}
.gallery-item::before {
  content: '';
  display: block;
  padding-top: 115%;
}
.gallery-item.tall::before { padding-top: 135%; }
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item.wide::before { padding-top: 60%; }

.gallery-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s;
  filter: saturate(1.05) contrast(1.02);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.2) contrast(1.05) brightness(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(to top, rgba(6,26,10,0.92) 0%, transparent 100%);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-caption .exclaim { color: var(--gold); font-weight: 700; }

/* ═══ FAMILY SECTION ═══ */
.family-section {
  background: var(--bg-alt);
}

.family-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.family-title span { color: var(--red); }

.family-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) {
  .family-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.family-card {
  position: relative;
  border: 2px solid rgba(26,92,42,0.15);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(10,26,10,0.06);
}
.family-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(212,160,32,0.15);
}

.family-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: filter 0.3s;
}
.family-card:hover .family-card-img {
  filter: saturate(1.1) contrast(1.08);
}

.family-card-body {
  padding: 20px;
}
.family-card-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.family-card-age {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.family-card-quote {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}
.family-card-link {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color 0.2s;
}
.family-card-link:hover { color: var(--white); }

/* ═══ MOOD SECTION ═══ */
.mood-section {
  background: var(--bg-alt);
  position: relative;
}

/* halftone-ish dot bg for vintage feel */
.mood-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(26,92,42,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.mood-section-inner {
  position: relative;
  z-index: 1;
}

.mood-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 0.92;
}
.mood-title span { color: var(--gold); }

.mood-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .mood-layout { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
}

.mood-bars-wrapper {
  margin-top: 32px;
}
.mood-bars-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mood-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.mood-bar-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  width: 110px;
  flex-shrink: 0;
  text-align: right;
}
.mood-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(26,92,42,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.mood-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mood-bar-val {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: var(--gold);
  width: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.mood-portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mood-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: default;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.mood-portrait:hover { border-color: var(--gold); }
.mood-portrait::before {
  content: '';
  display: block;
  padding-top: 130%;
}
.mood-portrait img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform 0.35s;
}
.mood-portrait:hover img { transform: scale(1.05); }
.mood-portrait-label {
  position: absolute;
  bottom: 6px; left: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(26,92,42,0.85);
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
}

.mood-monologue {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 28px;
  border: 2px solid var(--border-bold);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(212,160,32,0.1);
}
.mood-monologue-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mood-monologue-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}
.mood-monologue-text strong { color: var(--gold); font-style: normal; }

/* ═══ STAINED GLASS CALLOUT ═══ */
.stained-glass-section {
  background: var(--bg-alt);
  text-align: center;
  padding: 80px 24px;
}

.stained-glass-frame {
  display: inline-block;
  max-width: 700px;
  width: 100%;
  position: relative;
  padding: 50px 40px;
  background: linear-gradient(135deg,
    rgba(255,45,58,0.12) 0%,
    rgba(240,192,64,0.08) 25%,
    rgba(255,45,58,0.06) 50%,
    rgba(138,189,153,0.1) 75%,
    rgba(240,192,64,0.12) 100%
  );
  border: 3px solid var(--gold);
  border-radius: 8px;
}
.stained-glass-frame::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  right: 8px; bottom: 8px;
  border: 1px solid rgba(240,192,64,0.3);
  border-radius: 4px;
  pointer-events: none;
}

.stained-glass-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 4px solid var(--gold);
}

.stained-glass-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 0.1em;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 16px;
}
.stained-glass-sub {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}

/* ═══ FOOTER ═══ */
.site-footer {
  background: #0A1A0A;
  border-top: 4px solid var(--red);
  padding: 64px 28px 40px;
  text-align: center;
}

.footer-bell-row {
  font-size: 40px;
  margin-bottom: 12px;
  animation: wiggle 1.5s ease-in-out infinite;
  display: inline-block;
}

.footer-sig {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-sig span { color: var(--gold); }

.footer-coords {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-catchphrase {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: rgba(138,189,153,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,26,10,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  cursor: pointer;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  border: 3px solid var(--gold);
}
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  background: rgba(6,26,10,0.9);
  padding: 6px 18px;
  border-radius: 3px;
  white-space: nowrap;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }

/* ═══ PAGE WRAP (sub-pages) ═══ */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 28px 80px;
}

.page-header {
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 4px solid var(--red);
}
.page-header-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-header-label::before { content: '★'; color: var(--gold); }
.page-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 8vw, 100px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--text);
  text-transform: uppercase;
}
.page-header h1 span { color: var(--red); }

/* sub-page star divider */
.star-div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 48px 0;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.star-div::before, .star-div::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--gold), var(--red));
}

/* about-page hero layout */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .about-hero { grid-template-columns: 360px 1fr; align-items: start; }
}

.about-hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 6px;
  border: 4px solid var(--gold);
}

.about-intro-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-intro-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 36px;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}
.about-intro-quote em { color: var(--red); font-style: normal; }

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 36px;
  padding-top: 24px;
  border-top: 2px solid var(--red);
}

.about-stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}
.about-stat-value {
  font-size: 14px;
  color: var(--text);
  margin-top: 4px;
  line-height: 1.4;
}
.about-stat-value strong { color: var(--green); }

.about-section { margin-bottom: 64px; }
.about-section-title {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-section-title::before { content: '★'; color: var(--red); }
.about-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
}

.about-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}
.about-body p { margin-bottom: 20px; }
.about-body em { color: var(--gold); font-style: normal; font-weight: 700; }
.about-body strong { color: var(--red); }

/* trait cards */
.traits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.trait-card {
  padding: 20px;
  border: 2px solid rgba(26,92,42,0.15);
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(10,26,10,0.06);
}
.trait-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,160,32,0.15);
}
.trait-card-name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.trait-card-desc {
  font-family: 'Space Mono', monospace;
  font-size: 9.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.trait-pips { display: flex; gap: 4px; }
.pip {
  width: 12px; height: 4px;
  border-radius: 2px;
  background: rgba(26,92,42,0.15);
}
.pip.on { background: var(--red); }
.pip.on.gold { background: var(--gold); }

/* photos page */
.photos-grid {
  columns: 2;
  column-gap: 10px;
}
@media (min-width: 600px) { .photos-grid { columns: 3; } }
@media (min-width: 900px) { .photos-grid { columns: 4; } }

.photo-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.photo-item:hover { border-color: var(--gold); }
.photo-item img {
  width: 100%; display: block;
  transition: transform 0.4s, filter 0.3s;
  filter: saturate(1.05) contrast(1.02);
}
.photo-item:hover img { transform: scale(1.03); filter: saturate(1.2); }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 10px 8px;
  background: linear-gradient(to top, rgba(6,26,10,0.9) 0%, transparent 100%);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.25s;
  text-transform: uppercase;
}
.photo-item:hover .photo-caption { opacity: 1; }
.photo-caption .star { color: var(--gold); margin-right: 4px; }

/* adventures page */
.adventure-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .adventure-featured { grid-template-columns: 1fr 1fr; align-items: center; }
}

.adventure-featured-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  border: 4px solid var(--red);
}

.adventure-featured-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.adventure-featured-meta {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.adventure-featured-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}
.excitement-meter {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.excitement-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  flex-shrink: 0;
}
.excitement-val {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
}

/* coming soon page */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px;
  background: var(--bg);
}
.coming-soon-big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 12vw, 140px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  animation: bounce-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
.coming-soon-big span { color: var(--red); display: block; }
.coming-soon-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 4vw, 36px);
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 20px;
  animation: fade-up 0.6s ease 0.7s both;
}
.coming-soon-body {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  max-width: 500px;
  margin: 24px auto 0;
  animation: fade-up 0.6s ease 0.9s both;
}

/* ═══ RESPONSIVE NAV ═══ */
@media (max-width: 600px) {
  .nav-links a { padding: 5px 7px; font-size: 9px; }
}
