:root {
  --ink: #070805;
  --canopy: #10160e;
  --moss: #1c2a16;
  --ember: #c2410c;
  --flame: #ea580c;
  --gold: #e8b84a;
  --gold-soft: #f3d48a;
  --parchment: #f4e6c3;
  --muted: #c4b48a;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--parchment);
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--ink);
  overflow-x: hidden;
}

.sky {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 108%, #9a3412 0%, transparent 58%),
    radial-gradient(ellipse 70% 45% at 50% 100%, #ea580c 0%, transparent 48%),
    radial-gradient(circle at 50% -8%, #24351a 0%, transparent 40%),
    linear-gradient(180deg, #0c140b 0%, #070805 48%, #2a0e06 100%);
  z-index: 0;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.palms {
  position: fixed;
  inset: auto 0 0;
  height: 42vh;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, #020301 10%, transparent 85%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 280' preserveAspectRatio='none'%3E%3Cpath fill='%23081408' d='M0 280h1200V170c-40 20-90 8-140 28-70-38-110 10-180-8-50 32-120 4-170 30-80-42-140 16-220-6-60 28-130 0-190 24-90-36-150 20-210-10C50 240 20 220 0 232z'/%3E%3Cpath fill='%23040a05' d='M0 280h1200V210C980 160 860 250 700 200 560 255 420 170 280 230 160 180 60 240 0 220z'/%3E%3C/svg%3E")
      bottom / 100% 100% no-repeat;
}

.stage {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 44rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
}

.mark {
  margin: 0;
  font-family: Cinzel, Palatino, serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow:
    0 0 24px rgba(194, 65, 12, 0.45),
    0 2px 0 #3b1d04;
}

.season {
  margin: 0.85rem 0 0;
  font-family: Cinzel, Palatino, serif;
  font-weight: 700;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 2.4vw, 1.15rem);
  color: var(--gold);
}

.flame {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  height: 3.2rem;
  margin: 1.4rem 0 1.1rem;
}

.flame span {
  width: 0.55rem;
  border-radius: 50% 50% 20% 20%;
  background: linear-gradient(to top, var(--ember), var(--gold-soft));
  animation: flicker 1.1s ease-in-out infinite;
  box-shadow: 0 0 16px var(--flame);
}

.flame span:nth-child(1) {
  height: 1.6rem;
  align-self: end;
  animation-delay: -0.2s;
}
.flame span:nth-child(2) {
  height: 2.4rem;
  animation-delay: -0.45s;
}
.flame span:nth-child(3) {
  height: 1.5rem;
  align-self: end;
  animation-delay: -0.7s;
}

@keyframes flicker {
  0%,
  100% {
    transform: scaleY(1) translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: scaleY(1.18) translateY(-4px);
    opacity: 1;
  }
}

.lede {
  margin: 0 auto;
  max-width: 28rem;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--parchment);
}

.premiere {
  margin: 1.25rem 0 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--muted);
}

.premiere strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.soon {
  margin: 1.75rem 0 0.85rem;
  font-family: Cinzel, Palatino, serif;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--flame);
}

.ticks {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.ticks li {
  min-width: 4.2rem;
  padding: 0.65rem 0.4rem 0.5rem;
  background: rgba(7, 8, 5, 0.55);
  border: 1px solid rgba(232, 184, 74, 0.28);
  border-radius: 2px;
}

.ticks span {
  display: block;
  font-family: Cinzel, Palatino, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.ticks small {
  display: block;
  margin-top: 0.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.58rem;
  color: var(--muted);
}

footer {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem 2rem;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #8a7a58;
}

@media (max-width: 520px) {
  .stage {
    padding-top: 9vh;
  }
  .ticks li {
    min-width: 3.5rem;
  }
  .eyebrow {
    letter-spacing: 0.28em;
  }
  .season {
    letter-spacing: 0.32em;
  }
}
