:root {
  --bg: #07090f;
  --navy: #0d1120;
  --card: #111827;
  --gold: #e8c56b;
  --gold-dim: #a8883a;
  --text: #e8e4dc;
  --muted: #8a8fa8;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── STAR FIELD ── */
#starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: var(--max-op, 0.8); transform: scale(1); }
}

/* ── THE MYSTERY STAR ── */
.mystery-star {
  position: fixed;
  top: 12%;
  right: 10%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  animation: mysteryFlash 1.2s linear infinite;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 8px 2px white;
}

.mystery-star::after {
  content: '✈ or ⭐?';
  position: absolute;
  right: 22px;
  top: -6px;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  letter-spacing: 0.05em;
}

.mystery-star:hover::after { opacity: 1; }

@keyframes mysteryFlash {
  0%   { background: #ff4444; box-shadow: 0 0 10px 4px #ff4444; }
  14%  { background: #ff8800; box-shadow: 0 0 10px 4px #ff8800; }
  28%  { background: #ffee00; box-shadow: 0 0 10px 4px #ffee00; }
  42%  { background: #44ff44; box-shadow: 0 0 10px 4px #44ff44; }
  57%  { background: #4488ff; box-shadow: 0 0 10px 4px #4488ff; }
  71%  { background: #aa44ff; box-shadow: 0 0 10px 4px #aa44ff; }
  85%  { background: #ff44aa; box-shadow: 0 0 10px 4px #ff44aa; }
  100% { background: #ff4444; box-shadow: 0 0 10px 4px #ff4444; }
}

.mystery-tooltip {
  position: fixed;
  top: 10%;
  right: 8%;
  background: var(--card);
  border: 1px solid var(--gold-dim);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  max-width: 220px;
  line-height: 1.5;
  z-index: 20;
  display: none;
  animation: fadeIn 0.3s ease;
}

.mystery-tooltip.show { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ── LAYOUT ── */
section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  gap: 24px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: slideUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 10vw, 100px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: slideUp 0.8s ease forwards 0.5s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.7;
  opacity: 0;
  animation: slideUp 0.8s ease forwards 0.7s;
}

.hero-sub strong { color: var(--text); font-weight: 500; }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0;
  animation: slideUp 0.8s ease forwards 1.2s, bounce 2s ease-in-out infinite 2s;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 40px;
  opacity: 0.5;
}

/* ── SECTION HEADINGS ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 48px;
}

/* ── PHOTOS ── */
.star-video-wrap {
  margin-bottom: 40px;
  text-align: center;
}

.star-video-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.star-video {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-dim);
  background: #000;
  display: block;
  margin: 0 auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.photo-slot {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: 1px solid var(--gold-dim);
  overflow: hidden;
  background: var(--card);
  position: relative;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.photo-caption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

/* ── FACTS CARDS ── */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.fact-card {
  background: var(--card);
  border: 1px solid #1e2537;
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.fact-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }

.fact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.6;
}

.fact-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.fact-title { font-size: 14px; font-weight: 500; color: var(--gold); margin-bottom: 6px; }
.fact-text { font-size: 14px; color: var(--muted); line-height: 1.6; }
.fact-text strong { color: var(--text); }

/* ── MESSAGE ── */
#message {
  text-align: center;
  padding: 80px 24px 120px;
}

.message-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--text);
}

.message-sign {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── CONFETTI ── */
.confetti-piece {
  position: fixed;
  width: 8px;
  height: 8px;
  top: -10px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
  pointer-events: none;
  z-index: 999;
}

@keyframes confettiFall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 32px;
  font-size: 12px;
  color: #2a2f42;
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
