:root {
  --pink: #ff2ec4;
  --pink-hot: #e80963;
  --purple: #b026ff;
  --purple-deep: #6b00c2;
  --black: #07000c;
  --ink: #f7f2ff;
  --muted: rgba(247, 242, 255, 0.72);
  --glass: rgba(8, 0, 14, 0.62);
  --line: rgba(255, 46, 196, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: Syne, system-ui, sans-serif;
  color: var(--ink);
  background: var(--black);
  cursor: auto;
}

a, button { cursor: pointer; }

#star-cursor,
#glitter { display: none; }

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  .age-gate {
    cursor: none;
  }

  #star-cursor,
  #glitter {
    display: block;
  }
}

img { max-width: 100%; display: block; }

.bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050008 url("../media/starfield-poster.jpg") center / cover no-repeat;
}

.bg-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.bg-wash {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(176, 38, 255, 0.28), transparent 55%),
    radial-gradient(900px 500px at 100% 100%, rgba(232, 9, 99, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(7, 0, 12, 0.55) 0%, rgba(7, 0, 12, 0.72) 45%, rgba(7, 0, 12, 0.88) 100%);
}

#glitter {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

#star-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  z-index: 91;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 16px var(--pink));
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 0, 8, 0.82);
  backdrop-filter: blur(10px);
}

.age-gate.gone { display: none; }

.age-card,
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(176, 38, 255, 0.18), inset 0 0 40px rgba(255, 46, 196, 0.05);
  backdrop-filter: blur(16px);
}

.age-card {
  max-width: 560px;
  padding: 42px 36px;
  text-align: center;
}

.age-card h1,
.logo,
.hero h1 {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}

.age-card h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 8px 0 16px;
  background: linear-gradient(90deg, #fff, var(--pink), var(--purple), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 7s linear infinite;
}

@keyframes sheen {
  to { background-position: 200% center; }
}

.nav, main, footer { position: relative; z-index: 2; }

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(7, 0, 12, 0.55);
  border-bottom: 1px solid rgba(255, 46, 196, 0.25);
  backdrop-filter: blur(18px);
  z-index: 40;
}

.logo {
  font-size: 1.85rem;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 18px var(--pink);
}

.nav nav { display: flex; gap: 22px; }
.nav nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav nav a:hover { color: #fff; }

.nav-cta {
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid var(--pink);
  box-shadow: 0 0 16px rgba(255, 46, 196, 0.35);
}

.hero, .looks, .about, .skills, .book, .contact {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero { padding-top: 12vh; padding-bottom: 10vh; }

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--pink);
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.95;
  margin: 0 0 22px;
  color: #fff;
  text-shadow: 0 0 24px rgba(176, 38, 255, 0.55);
}

.hero h1 em {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  color: var(--pink);
}

.lede, .age-copy, .section-head p, .glass p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-actions, .age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: flex-start;
}
.age-actions { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  text-decoration: none;
  border: 0;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.btn-neon {
  color: #fff;
  background: linear-gradient(90deg, var(--pink-hot), var(--purple));
  box-shadow: 0 0 24px rgba(255, 46, 196, 0.45);
}

.btn-ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.section-head { max-width: 720px; margin-bottom: 32px; }
.section-head h2, .glass h2, .age-card h1 {
  margin: 0 0 12px;
}
.section-head h2, .glass h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

.glass .subhead {
  margin: 28px 0 12px;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 16px var(--pink);
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 62vh;
  background: #090010;
  box-shadow: 0 0 50px rgba(176, 38, 255, 0.22);
}

.stage img {
  width: 100%;
  height: 72vh;
  object-fit: contain;
  object-position: center;
}

.view-hint {
  opacity: 0.8;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(5, 0, 10, 0.94);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1400px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(176, 38, 255, 0.35);
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--pink);
  background: rgba(7, 0, 12, 0.7);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.slide-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px #000;
}

.timer {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.timer i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pink), var(--purple), #fff);
}

.timer i.run { animation: fill 15s linear; }

@keyframes fill {
  from { width: 0; }
  to { width: 100%; }
}

.arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background: rgba(7, 0, 12, 0.55);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
}
.arrow:hover { box-shadow: 0 0 18px var(--pink); }

.glass { padding: 36px; }
.glass.wide { padding: 42px; }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.pills li {
  border: 1px solid var(--purple);
  padding: 6px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.video-frame {
  position: relative;
  padding-top: 46.15%;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #090010;
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.hours { color: #fff; }
.fine { font-size: 0.85rem; opacity: 0.7; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.link-card {
  display: grid;
  place-items: center;
  min-height: 96px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.link-card:hover { box-shadow: 0 0 24px rgba(255, 46, 196, 0.35); }

.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.review-filters button {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 46, 196, 0.35);
  padding: 8px 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.review-filters button.on,
.review-filters button:hover {
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 0 14px rgba(255, 46, 196, 0.3);
}
.review-list {
  display: grid;
  gap: 14px;
}
.review-card {
  background: var(--glass);
  border: 1px solid var(--line);
  padding: 22px 22px 18px;
  backdrop-filter: blur(16px);
}
.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.review-user {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}
.review-source {
  margin: 4px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.review-stars {
  margin: 0;
  color: #ffd36a;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.review-title {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #fff;
}
.review-text {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--muted);
}

footer {
  padding: 40px 20px 80px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 800px) {
  .nav nav { display: none; }
  .carousel { grid-template-columns: 1fr; }
  .arrow {
    position: absolute;
    z-index: 3;
    width: 44px;
    height: 44px;
  }
  .carousel { position: relative; }
  .arrow.prev { left: 10px; top: 46%; }
  .arrow.next { right: 10px; top: 46%; }
  .stage img { height: 58vh; }
}
