:root {
  --ink: #0b0706;
  --ink-2: #140b08;
  --velvet: #2c120c;
  --gold: #f5c14a;
  --gold-2: #ffe08a;
  --gold-deep: #c8891a;
  --amber: #ff9a2e;
  --blush: #ffb3a0;
  --cream: #fff4e4;
  --mute: rgba(255, 244, 228, 0.68);
  --line: rgba(245, 193, 74, 0.28);
  --glass: rgba(12, 7, 5, 0.72);
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: var(--sans);
  background: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.room {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 18% -10%, rgba(255, 154, 46, 0.16), transparent 55%),
    radial-gradient(900px 600px at 88% 8%, rgba(245, 193, 74, 0.12), transparent 50%),
    linear-gradient(180deg, #120805 0%, #0b0706 42%, #160a08 100%);
}

.wash {
  position: absolute;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: drift 18s ease-in-out infinite;
}
.wash-a {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 154, 46, 0.35), transparent 70%);
}
.wash-b {
  width: 36vw;
  height: 36vw;
  right: -6%;
  top: 22%;
  background: radial-gradient(circle, rgba(245, 193, 74, 0.28), transparent 70%);
  animation-delay: -7s;
}
.wash-c {
  width: 50vw;
  height: 28vw;
  left: 20%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(255, 122, 80, 0.16), transparent 70%);
  animation-delay: -12s;
}

.cityline {
  position: absolute;
  inset: auto 0 0;
  height: 38vh;
  background:
    linear-gradient(180deg, transparent, rgba(8, 4, 3, 0.7)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(245, 193, 74, 0.05) 18px 19px),
    linear-gradient(180deg, transparent 0 40%, rgba(245, 193, 74, 0.05) 100%);
  mask-image: linear-gradient(180deg, transparent, #000 40%);
}

.bokeh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 28%, rgba(255, 224, 138, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 18%, rgba(255, 154, 46, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 64% 72%, rgba(245, 193, 74, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 80%, rgba(255, 179, 160, 0.1) 0 2px, transparent 3px);
  animation: twinkle 7s ease-in-out infinite;
}

#gilt, .hearts {
  position: absolute;
  inset: 0;
}
.grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(245, 193, 74, 0.14), transparent 68%);
  transform: translate(-100vw, -100vh);
  transition: opacity 0.4s ease;
}

.bar, main, .tape, .foot { position: relative; z-index: 2; }

.bar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.bar.stuck {
  background: var(--glass);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mark-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 18px rgba(245, 193, 74, 0.28);
}
.mark-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.35);
}
.mark-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.mark-copy strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.mark-copy small {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.links {
  display: flex;
  gap: 22px;
  margin-left: 18px;
}
.links a {
  color: var(--mute);
  font-size: 0.92rem;
  position: relative;
}
.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.links a:hover { color: var(--cream); }
.links a:hover::after { width: 100%; }

.bar-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.orb, .cta, .ghost, .quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 193, 74, 0.06);
}
.orb img, .cta img, .ghost img, .quiet img, .foot-links img {
  width: 16px;
  height: 16px;
}
.orb:hover, .cta:hover, .ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 193, 74, 0.16);
}

.cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 193, 74, 0.16), rgba(245, 193, 74, 0.05));
}
.cta.solid {
  background: linear-gradient(180deg, #ffe08a, #f5c14a 45%, #c8891a);
  color: #2a1208;
  border-color: #ffd56a;
  font-weight: 600;
}
.ghost {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 244, 228, 0.03);
}
.quiet {
  margin-top: 12px;
  border: 0;
  color: var(--gold);
  gap: 8px;
}
.quiet:hover { color: var(--gold-2); }

.menu {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu span {
  width: 18px;
  height: 1.5px;
  background: var(--cream);
}

.tape {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(245, 193, 74, 0.08), transparent 20%, transparent 80%, rgba(245, 193, 74, 0.08));
}
.tape-run {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 10px 0;
  animation: march 28s linear infinite;
  color: var(--gold-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 48px 0 72px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin: 0 0 16px;
}
.chip svg { width: 16px; height: 16px; }

.script {
  display: block;
  font-family: var(--script);
  font-size: clamp(4.2rem, 9vw, 7.4rem);
  line-height: 0.9;
  background: linear-gradient(180deg, #fff4d2 0%, #ffe08a 28%, #f5c14a 52%, #c8891a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 24px rgba(245, 193, 74, 0.28));
  animation: foil 6s ease-in-out infinite;
}

.ticker-pill {
  display: inline-flex;
  margin: 10px 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-2);
  letter-spacing: 0.2em;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin: 0 0 10px;
}
.punch {
  margin: 0 0 28px;
  color: var(--blush);
  font-size: 1.05rem;
}

.hero-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ca {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px dashed var(--line);
  background: rgba(245, 193, 74, 0.05);
}
.ca-tag {
  color: #2a1208;
  background: var(--gold);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
}
.ca code { font-size: 0.86rem; }
.ca-state { color: var(--gold); font-size: 0.78rem; }

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}
.halo {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(245, 193, 74, 0.35);
  animation: spin 22s linear infinite;
}
.halo-a { width: 78%; aspect-ratio: 1; }
.halo-b { width: 90%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 32s; }
.halo-c { width: 102%; aspect-ratio: 1; border-style: solid; border-color: rgba(245, 193, 74, 0.12); animation-duration: 40s; }

.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 16px var(--gold);
  animation: pulse 3.4s ease-in-out infinite;
}
.p1 { top: 12%; left: 18%; }
.p2 { top: 28%; right: 10%; animation-delay: -1.2s; }
.p3 { bottom: 18%; left: 12%; animation-delay: -2s; }

.muse {
  width: min(460px, 88%);
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(245, 193, 74, 0.4);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(245, 193, 74, 0.16);
  animation: floaty 7s ease-in-out infinite;
}
.muse img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 18%;
}
.muse-cap {
  position: absolute;
  bottom: 8px;
  color: var(--gold-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.section-top { padding: 90px 0 28px; }
.section-top h2,
.about h2,
.howto h2,
.chart h2,
.join h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.about-spread {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.gilt-frame {
  padding: 10px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(245, 193, 74, 0.28), rgba(245, 193, 74, 0.05)),
    rgba(20, 10, 8, 0.7);
  border: 1px solid var(--line);
}
.gilt-frame img {
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 12%;
}
.about-copy p {
  color: var(--mute);
  line-height: 1.7;
  font-size: 1.05rem;
}
.traits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
}
.traits li {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(245, 193, 74, 0.05);
}
.traits strong {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.suites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.suite {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245, 193, 74, 0.08), rgba(12, 7, 5, 0.4));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.suite:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(245, 193, 74, 0.1);
}
.suite h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.suite p { color: var(--mute); margin: 0; line-height: 1.6; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
.steps li {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(20, 10, 8, 0.55);
  position: relative;
  overflow: hidden;
}
.steps li::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 193, 74, 0.12), transparent 70%);
}
.num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.steps h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
}
.steps p { margin: 0; color: var(--mute); line-height: 1.6; }

.bezel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #0a0a0a;
}
.bezel iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}

.wide {
  margin: 0;
  aspect-ratio: 3 / 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(245, 193, 74, 0.45);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(245, 193, 74, 0.12);
}
.wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ken 18s ease-in-out infinite;
}

.join-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.foot {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.foot p { color: var(--mute); margin: 0; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
}

.rise {
  opacity: 0;
  transform: translateY(28px);
  animation: up 0.9s ease forwards;
}
.late { animation-delay: 0.16s; }

.heart {
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: 0.22;
  color: var(--gold-2);
  animation: lift 14s linear infinite;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, -3%, 0) scale(1.08); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes march {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes foil {
  0%, 100% { filter: drop-shadow(0 10px 24px rgba(245, 193, 74, 0.22)); }
  50% { filter: drop-shadow(0 14px 34px rgba(255, 224, 138, 0.4)); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.6); opacity: 1; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes ken {
  0%, 100% { transform: scale(1.02); }
  50% { transform: scale(1.08); }
}
@keyframes up {
  to { opacity: 1; transform: none; }
}
@keyframes lift {
  0% { transform: translateY(20vh) rotate(0deg); opacity: 0; }
  15% { opacity: 0.28; }
  100% { transform: translateY(-30vh) rotate(28deg); opacity: 0; }
}

@media (max-width: 960px) {
  .hero, .about-spread, .suites, .steps { grid-template-columns: 1fr; }
  .links, .bar-tools { display: none; }
  .menu { display: flex; }
  body.menu-open .links,
  body.menu-open .bar-tools {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    flex-direction: column;
    padding: 16px;
    border-radius: 18px;
    background: var(--glass);
    border: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
  body.menu-open .bar-tools { top: 250px; }
  .hero-stage { min-height: 420px; }
  .bezel iframe { height: 480px; }
  .traits { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  main { width: min(1180px, calc(100% - 24px)); }
  .script { font-size: 3.4rem; }
  .wide { border-radius: 18px; }
  .bezel iframe { height: 380px; }
}
