:root {
  --bg: #0b0a09;
  --text: #ece5d8;
  --muted: #8f8a83;
  --accent: #c7cbd1;
  --line: rgba(236, 229, 216, 0.14);
  --serif: 'Tenor Sans', Georgia, serif;
  --sans: 'Tenor Sans', -apple-system, sans-serif;
  --script: 'Pinyon Script', cursive;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  height: 100vh;
  overflow: hidden;
}

.stage {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Trying solid black — the softer vignette version is commented out below,
     easy to swap back by flipping which line is active. */
  background: #000000;
  /* background:
    radial-gradient(ellipse at center, rgba(45, 45, 47, 0.4) 0%, rgba(11, 10, 9, 1) 70%),
    linear-gradient(180deg, #131210 0%, #0b0a09 60%); */
}

.content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

/* Logo box — sized to the artwork's aspect ratio; the wordmark itself is
   drawn entirely by the sparkle points inside, no solid logo image at all.
   contain: layout paint keeps zoom/resize recalculation scoped to this box
   instead of rippling into the rest of the page. */
.logo-wrap {
  position: relative;
  width: min(88vw, 620px);
  aspect-ratio: 1805 / 552;
  margin: 0 auto;
  contain: layout paint;
}

.tag-line2 {
  margin-top: 22px;
  font-family: var(--script);
  font-size: clamp(26px, 3.6vw, 36px);
  color: var(--text);
  font-weight: 400;
}

.tag-line1 {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: clamp(13px, 1.8vw, 16px);
  color: var(--text);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.bookings-line {
  margin-top: 64px;
  font-family: var(--sans);
  font-size: clamp(13px, 1.8vw, 16px);
  color: var(--text);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.notify {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

.notify a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 203, 209, 0.5);
  padding-bottom: 3px;
  transition: border-color 0.4s ease;
}

.notify a:hover {
  border-color: rgba(199, 203, 209, 0.7);
}

.notify-label {
  transition: opacity 0.3s ease;
}

.notify a:hover .notify-label {
  opacity: 0;
}

.notify-glimmer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.notify a:hover .notify-glimmer {
  opacity: 1;
}

/* Corner frame marks, like a tailor's chalk guides */
.corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  z-index: 1;
}

.corner-tl { top: 28px; left: 28px; border-right: none; border-bottom: none; }
.corner-tr { top: 28px; right: 28px; border-left: none; border-bottom: none; }
.corner-bl { bottom: 28px; left: 28px; border-right: none; border-top: none; }
.corner-br { bottom: 28px; right: 28px; border-left: none; border-top: none; }

/* Glitter / sparkle field — scoped to the logo, not the whole screen.
   Rendered on a single canvas (see index.html) instead of hundreds/thousands
   of individually animated elements, so zooming stays smooth. */
.sparkle-field {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 480px) {
  .corner { width: 18px; height: 18px; }
  .corner-tl, .corner-tr { top: 16px; }
  .corner-bl, .corner-br { bottom: 16px; }
  .corner-tl, .corner-bl { left: 16px; }
  .corner-tr, .corner-br { right: 16px; }
}
