:root {
  --black: #030302;
  --black-2: #080704;
  --gold: #d7a73a;
  --gold-2: #f4dc86;
  --gold-3: #9f701e;
  --cream: #fff4cf;
  --muted: rgba(255, 244, 207, .62);
  --soft: rgba(255, 244, 207, .42);
  --line: rgba(214, 168, 59, .36);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--black); color: var(--cream); }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
.hidden-field { display: none; }

.site-shell { min-height: 100svh; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at center 50%, rgba(214,168,59,.13), transparent 42%),
    linear-gradient(180deg, #050402 0%, #030302 55%, #000 100%);
}
.hero-video, .entry-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
}
.hero-video { opacity: .12; filter: brightness(.36) contrast(1.2) saturate(.82); }
.video-vignette, .entry-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.22) 0%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.92) 100%),
    linear-gradient(180deg, rgba(0,0,0,.76), rgba(0,0,0,.35) 38%, rgba(0,0,0,.88));
}
.gold-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .52;
  background-image:
    radial-gradient(circle, rgba(255, 222, 121, .9) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 222, 121, .4) 0 1px, transparent 2px);
  background-size: 184px 184px, 263px 263px;
  background-position: 0 0, 31px 79px;
  mask-image: linear-gradient(to top, #000 0, transparent 44%);
  animation: floatDust 16s linear infinite;
}
.corner {
  position: absolute;
  width: 72px;
  height: 72px;
  border-color: rgba(201,150,45,.48);
  pointer-events: none;
  opacity: .9;
}
.corner-tl { top: 18px; left: 18px; border-top: 1px solid; border-left: 1px solid; }
.corner-tr { top: 18px; right: 18px; border-top: 1px solid; border-right: 1px solid; }
.corner-bl { bottom: 18px; left: 18px; border-bottom: 1px solid; border-left: 1px solid; }
.corner-br { bottom: 18px; right: 18px; border-bottom: 1px solid; border-right: 1px solid; }

.hero-content {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: clamp(20px, 5vh, 42px) 10px 36px;
  text-shadow: 0 2px 24px rgba(0,0,0,.82);
}
.ornament, .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold-2);
  margin: 0 auto 10px;
}
.ornament span { width: 34px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,230,147,.78)); }
.ornament span:last-child { background: linear-gradient(90deg, rgba(255,230,147,.78), transparent); }
.ornament b, .divider b { font-size: 14px; line-height: 1; color: var(--gold-2); text-shadow: 0 0 16px rgba(255,230,147,.48); }
.eyebrow, .notify-label {
  margin: 0 0 18px;
  color: rgba(233,186,65,.84);
  text-transform: uppercase;
  letter-spacing: .54em;
  font-size: .76rem;
  font-weight: 700;
}
.logo-lockup {
  width: min(430px, 84vw);
  height: 116px;
  margin: 0 auto;
  background-image: var(--csuite-logo), url('/assets/csuite-logo.jpg'), url('/csuite-logo.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 12px 32px rgba(213,166,58,.19));
  mix-blend-mode: screen;
}
.hero-logo { height: 92px; margin-bottom: -6px; }
h1 {
  margin: -2px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 10.5vw, 8.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: .82;
  letter-spacing: -.075em;
  color: var(--gold-2);
  text-shadow: 0 0 36px rgba(247,223,137,.3);
}
.tagline {
  margin: 20px auto 24px;
  color: rgba(255,245,215,.5);
  text-transform: uppercase;
  letter-spacing: .48em;
  font-size: clamp(.7rem, 1.5vw, .93rem);
}
.lead {
  margin: 0 auto;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.3vw, 1.55rem);
  font-style: italic;
  line-height: 1.7;
}
.lead strong { color: var(--gold-2); font-style: normal; font-weight: 500; }
.divider { gap: 20px; margin: 34px auto 34px; }
.divider span { width: 136px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,150,45,.72)); }
.divider span:last-child { background: linear-gradient(90deg, rgba(201,150,45,.72), transparent); }

.inquiry-form { width: min(640px, 100%); margin: 0 auto 34px; }
.notify-label { display: block; margin-bottom: 14px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 10px;
  background: rgba(0,0,0,.48);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}
.form-grid input, .form-grid select, .form-grid textarea {
  min-height: 54px;
  border: 1px solid rgba(214,168,59,.23);
  background: #050403;
  color: var(--cream);
  padding: 0 16px;
  outline: none;
  border-radius: 0;
}
.form-grid textarea { grid-column: 1 / -1; min-height: 108px; resize: vertical; padding: 16px; line-height: 1.45; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: rgba(255,245,215,.42); font-style: italic; }
.form-grid select { color: rgba(255,245,215,.7); }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { box-shadow: inset 0 0 0 1px rgba(255,231,146,.48); border-color: rgba(255,231,146,.48); }
.form-grid button, .enter-button {
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #9d701e 0%, #d6a83b 40%, #ffea9a 58%, #b88426 100%);
  color: #130e05;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .22em;
  box-shadow: 0 16px 48px rgba(213,166,58,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.form-grid button { grid-column: 1 / -1; min-height: 58px; }
.form-grid button:hover, .enter-button:hover { transform: translateY(-1px); box-shadow: 0 22px 60px rgba(213,166,58,.34); }
.form-grid button:active, .enter-button:active { transform: translateY(1px); }
.pill-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px auto 0;
  max-width: 760px;
}
.pill-group p { flex-basis: 100%; font-size: .7rem; letter-spacing: .52em; margin: 0 0 5px; color: rgba(213,166,58,.7); text-transform: uppercase; }
.pill-group span {
  border: 1px solid rgba(213,166,58,.28);
  color: rgba(247,223,137,.82);
  padding: 8px 18px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  background: rgba(0,0,0,.2);
}
.events { max-width: 680px; }

.entry-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden;
  background: #000;
  transition: opacity .7s ease, visibility .7s ease;
}
.entry-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.entry-video { opacity: .34; filter: brightness(.45) contrast(1.12) saturate(.9); }
.entry-card {
  width: min(720px, 92vw);
  text-align: center;
  padding: clamp(20px, 5vh, 44px);
  background: radial-gradient(circle at center, rgba(0,0,0,.34), rgba(0,0,0,.08) 55%, transparent 75%);
}
.logo-entry { height: 132px; width: min(560px, 86vw); margin-bottom: 20px; }
.entry-line {
  margin: 0 auto 28px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  letter-spacing: .02em;
}
.enter-button {
  min-width: 230px;
  min-height: 58px;
  padding: 0 28px;
}
.enter-button[disabled] { opacity: .82; cursor: wait; }
.music-control {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(214,168,59,.38);
  background: rgba(0,0,0,.62);
  color: var(--gold-2);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  cursor: pointer;
}
.music-control.visible { display: flex; }
.music-control span:first-child { font-size: 1rem; min-width: 18px; text-align: center; }
.noscript-note {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.9);
  color: var(--cream);
  text-align: center;
}

.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at center, rgba(214,168,59,.16), transparent 44%),
    #030302;
  color: var(--cream);
  text-align: center;
}
.success-card { width: min(680px, 92vw); padding: 42px; border: 1px solid var(--line); background: rgba(0,0,0,.55); box-shadow: 0 24px 90px rgba(0,0,0,.4); }
.success-card .logo-lockup { height: 112px; }
.success-card h1 { font-size: clamp(3.2rem, 8vw, 6rem); margin-top: 18px; }
.success-card p { color: var(--muted); font-size: 1.08rem; line-height: 1.6; }
.success-card a { color: var(--gold-2); text-transform: uppercase; letter-spacing: .18em; text-decoration: none; font-weight: 800; }

@keyframes floatDust { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-80px, -60px, 0); } }
@media (max-width: 720px) {
  .hero { padding: 12px; align-items: start; }
  .hero-content { padding-top: 38px; }
  .corner { width: 42px; height: 42px; }
  .eyebrow, .notify-label { letter-spacing: .34em; font-size: .66rem; }
  h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .tagline { letter-spacing: .28em; }
  .divider span { width: 72px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid textarea, .form-grid button { grid-column: auto; }
  .pill-group span { font-size: .62rem; padding: 7px 12px; }
  .logo-lockup { height: 90px; }
  .hero-logo { height: 76px; }
  .logo-entry { height: 104px; }
  .music-control { left: 16px; right: 16px; bottom: 16px; justify-content: center; }
}
