:root {
  --black: #070506;
  --deep-red: #45070e;
  --red: #7d0d18;
  --red-light: #b52b35;
  --cream: #f1e8dc;
  --muted: #aa9d92;
  --gold: #c8a66b;
  --ease-cinematic: cubic-bezier(.77, 0, .18, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
button, a { font: inherit; }

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

.stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 34%, rgba(117, 22, 28, .20), transparent 28%),
    linear-gradient(180deg, #0b0708 0%, #070506 65%, #11090a 100%);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4.5vw;
  opacity: 0;
  transform: translateY(-12px);
  animation: headerIn .9s 2.2s forwards;
}
.brand { color: inherit; text-decoration: none; display: flex; gap: 14px; align-items: center; }
.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .08em;
  padding-right: 14px;
  border-right: 1px solid rgba(241,232,220,.28);
}
.brand-name { font-size: 10px; line-height: 1.35; letter-spacing: .13em; text-transform: uppercase; color: rgba(241,232,220,.72); }
.status { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: rgba(241,232,220,.68); display: flex; align-items: center; gap: 10px; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--red-light); box-shadow: 0 0 14px rgba(181,43,53,.9); animation: pulse 2s infinite; }

.hero {
  position: relative;
  z-index: 9;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 90px;
}
.eyebrow {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 9.2vw, 152px);
  line-height: .78;
  font-weight: 600;
  letter-spacing: -.055em;
}
.hero-title .line { display: block; opacity: 0; filter: blur(10px); }
.line-one { transform: translateY(35px); animation: titleIn 1.2s 1.45s var(--ease-cinematic) forwards; }
.line-two { color: var(--cream); -webkit-text-stroke: 0; transform: translateY(45px); animation: titleIn 1.2s 1.62s var(--ease-cinematic) forwards; }
.hero-copy {
  margin: 34px auto 0;
  max-width: 760px;
  color: rgba(241,232,220,.67);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.75;
}
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 26px; }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px 15px 24px;
  border: 1px solid rgba(241,232,220,.22);
  color: var(--cream);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: .35s ease;
}
.cta:hover { background: var(--cream); color: var(--black); transform: translateY(-2px); }
.cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.coming-soon { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(241,232,220,.44); }
.reveal { opacity: 0; transform: translateY(18px); animation: revealIn .9s 2.15s forwards; }
.hero-copy.reveal { animation-delay: 2.32s; }
.hero-actions.reveal { animation-delay: 2.5s; }

.curtain {
  position: absolute;
  z-index: 15;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #31050a, #890d18 45%, #46070d 100%);
  box-shadow: inset -25px 0 55px rgba(0,0,0,.45), 0 0 50px rgba(0,0,0,.65);
  animation-duration: 2.4s;
  animation-timing-function: var(--ease-cinematic);
  animation-fill-mode: forwards;
}
.curtain-left { left: 0; transform-origin: left center; animation-name: openLeft; }
.curtain-right { right: 0; transform-origin: right center; animation-name: openRight; transform: scaleX(-1); }
.curtain-fold { position: absolute; top: 0; bottom: 0; width: 28%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.09), rgba(0,0,0,.30)); }
.fold-1 { left: 2%; } .fold-2 { left: 27%; } .fold-3 { left: 52%; } .fold-4 { left: 77%; }
.curtain-top {
  position: absolute;
  z-index: 16;
  top: 0;
  left: -2%;
  width: 104%;
  height: 14vh;
  min-height: 90px;
  background: radial-gradient(ellipse at center bottom, #8d111c 0 42%, #4a080e 68%, #260407 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,.55);
  transform: translateY(-100%);
  animation: topCurtain 1.1s 1.3s var(--ease-cinematic) forwards;
}

.spotlight { position: absolute; z-index: 3; top: -18%; width: 40vw; height: 130vh; opacity: 0; filter: blur(3px); mix-blend-mode: screen; animation: lightOn 2s 1.6s forwards; }
.spotlight-left { left: 9%; transform: rotate(-13deg); background: linear-gradient(180deg, rgba(255,239,205,.22), rgba(255,239,205,0)); clip-path: polygon(44% 0, 58% 0, 100% 100%, 0 100%); }
.spotlight-right { right: 9%; transform: rotate(13deg); background: linear-gradient(180deg, rgba(255,239,205,.18), rgba(255,239,205,0)); clip-path: polygon(44% 0, 58% 0, 100% 100%, 0 100%); }
.stage-glow { position: absolute; z-index: 2; left: 50%; bottom: 3%; width: 55vw; height: 35vh; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(146,31,36,.24), transparent 67%); filter: blur(25px); }
.floor { position: absolute; z-index: 4; left: -10%; right: -10%; bottom: -16%; height: 39%; background: repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 10vw), linear-gradient(180deg, rgba(90,31,33,.15), #050304 65%); transform: perspective(520px) rotateX(62deg); transform-origin: center bottom; }
.scene-number { position: absolute; left: 4.5vw; bottom: 34px; z-index: 10; font-size: 10px; letter-spacing: .3em; color: rgba(241,232,220,.36); }
.scroll-hint { position: absolute; right: 4.5vw; bottom: 30px; z-index: 10; width: 1px; height: 54px; overflow: hidden; background: rgba(241,232,220,.17); }
.scroll-hint span { display: block; width: 100%; height: 45%; background: var(--cream); animation: scrollLine 2.2s infinite; }

.after-stage { min-height: 76vh; display: grid; place-items: center; padding: 100px 24px; background: #efe8dc; color: #171011; }
.after-stage-inner { max-width: 980px; width: 100%; }
.section-kicker { margin: 0 0 22px; font-size: 11px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: #7a141d; }
.after-stage h2 { margin: 0; max-width: 900px; font: 600 clamp(50px, 7vw, 108px)/.86 "Cormorant Garamond", serif; letter-spacing: -.045em; }
.after-stage p:not(.section-kicker) { max-width: 620px; margin: 42px 0 0 auto; font-size: 17px; line-height: 1.75; color: #655b58; }
.signature { margin-top: 80px; padding-top: 24px; border-top: 1px solid rgba(23,16,17,.18); font: 700 28px "Cormorant Garamond", serif; letter-spacing: .08em; }
.signature span { float: right; font: 500 10px "Inter", sans-serif; text-transform: uppercase; letter-spacing: .22em; color: #746b68; }

body.replay .curtain-left { animation: closeLeft .85s var(--ease-cinematic) forwards, openLeft 2.4s 1s var(--ease-cinematic) forwards; }
body.replay .curtain-right { animation: closeRight .85s var(--ease-cinematic) forwards, openRight 2.4s 1s var(--ease-cinematic) forwards; }

@keyframes openLeft { to { transform: translateX(-87%) scaleX(.55); } }
@keyframes openRight { to { transform: translateX(87%) scaleX(-.55); } }
@keyframes closeLeft { from { transform: translateX(-87%) scaleX(.55); } to { transform: translateX(0) scaleX(1); } }
@keyframes closeRight { from { transform: translateX(87%) scaleX(-.55); } to { transform: translateX(0) scaleX(-1); } }
@keyframes topCurtain { to { transform: translateY(-18%); } }
@keyframes titleIn { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes revealIn { to { opacity: 1; transform: translateY(0); } }
@keyframes headerIn { to { opacity: 1; transform: translateY(0); } }
@keyframes lightOn { to { opacity: 1; } }
@keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }
@keyframes scrollLine { 0% { transform: translateY(-110%); } 60%,100% { transform: translateY(230%); } }

@media (max-width: 700px) {
  .site-header { padding: 22px 20px; }
  .brand-name, .status { display: none; }
  .hero { padding-inline: 18px; }
  .hero-title { font-size: clamp(54px, 18vw, 82px); line-height: .84; }
  .hero-copy { max-width: 360px; font-size: 14px; }
  .desktop-only { display: none; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .curtain { width: 61%; }
  .after-stage { min-height: 70vh; }
  .after-stage p:not(.section-kicker) { margin-left: 0; }
  .signature span { float: none; display: block; margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; scroll-behavior: auto !important; }
  .curtain-left { transform: translateX(-87%) scaleX(.55); }
  .curtain-right { transform: translateX(87%) scaleX(-.55); }
}
.brand-logo-slot{width:62px;height:62px;display:grid;place-items:center;border:1px solid rgba(241,232,220,.25);background:rgba(255,255,255,.035)}
.brand-logo-slot img{max-width:52px;max-height:52px;object-fit:contain}.brand-logo-slot strong{font:700 25px "Cormorant Garamond",serif;letter-spacing:.08em}
.text-link{display:inline-flex;gap:12px;margin-top:34px;color:#171011;text-decoration:none;text-transform:uppercase;letter-spacing:.16em;font-size:11px;font-weight:600;border-bottom:1px solid rgba(23,16,17,.25);padding-bottom:8px}
