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

:root {
  --bg: #120e0c;
  --ink: #e8dcc8;
  --white: #fff8ef;
  --amber: #e8a04a;
  --amber-dim: rgba(232, 160, 74, 0.4);
  --rose: #c45a4a;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
}

.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding:
    max(28px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    max(28px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));
  isolation: isolate;
}

.atmosphere {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 120%, rgba(232, 160, 74, 0.18), transparent 55%),
    linear-gradient(180deg, #1a1410 0%, #120e0c 50%, #0c0908 100%);
}

.gel {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.gel-a {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  left: -12%;
  top: -18%;
  background: rgba(232, 160, 74, 0.28);
  animation: drift-a 11s ease-in-out infinite;
}

.gel-b {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  right: -10%;
  top: 18%;
  background: rgba(196, 90, 74, 0.22);
  animation: drift-b 13s ease-in-out infinite;
}

.gel-c {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  left: 35%;
  bottom: 8%;
  background: rgba(232, 160, 74, 0.16);
  animation: drift-c 9s ease-in-out infinite;
}

.floor-wash {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(232, 160, 74, 0.08) 45%,
    rgba(196, 90, 74, 0.14) 100%
  );
  animation: wash 8s ease-in-out infinite;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

.hero {
  width: min(100%, 720px);
  text-align: center;
}

.eyebrow {
  font-size: clamp(11px, 2.6vw, 13px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.15rem;
  animation: rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 20vw, 148px);
  line-height: 0.88;
  letter-spacing: 0.06em;
  color: var(--white);
  animation: rise 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.tagline {
  margin-top: 1.25rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 5vw, 32px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  animation: rise 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.date {
  display: block;
  margin-top: 1.35rem;
  font-size: clamp(13px, 3vw, 15px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  animation: rise 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.capacity {
  margin-top: 0.7rem;
  font-size: clamp(11px, 2.5vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.72;
  animation: rise 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.ical {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin-top: 1.75rem;
  font-size: clamp(11px, 2.5vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber-dim);
  padding-bottom: 0.15em;
  animation: rise 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ical-icon {
  flex-shrink: 0;
  width: 1.05em;
  height: 1.05em;
}

.ical:hover,
.ical:focus-visible {
  color: var(--white);
  border-color: var(--white);
  outline: none;
}

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

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(6%, 8%) scale(1.08); opacity: 1; }
}

@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate(-8%, 5%) scale(1.1); opacity: 1; }
}

@keyframes drift-c {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(4%, -6%); opacity: 0.95; }
}

@keyframes wash {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow,
  .brand,
  .tagline,
  .date,
  .capacity,
  .ical,
  .gel,
  .floor-wash {
    animation: none;
  }
}
