/* ============================================================
   PDA — Professional Dancers Association
   Direction: "The Marquee" — kinetic stage/performance aesthetic
   Palette: stage black / hot magenta / stage amber / cool white / teal (once)
   Type: Archivo Black (display) + Inter (body)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --black:      #0A0A0C;
  --black-2:    #111114;
  --black-3:    #17171c;
  --magenta:    #FF3D8A;
  --amber:      #FFB703;
  --white:      #F4F5F7;
  --teal:       #00E5CC;   /* used once — "now showing" live dot */

  --white-soft: rgba(244, 245, 247, 0.72);
  --white-dim:  rgba(244, 245, 247, 0.5);
  --line:       rgba(244, 245, 247, 0.14);
  --line-strong:rgba(244, 245, 247, 0.28);
  --shell:      rgba(244, 245, 247, 0.05);

  --error:      #ff6f9c;
  --error-line: #ff6f9c;

  /* type */
  --font-display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-micro:   0.6875rem;
  --fs-small:   0.875rem;
  --fs-body:    clamp(1rem, 1.05vw, 1.0625rem);
  --fs-lead:    clamp(1.125rem, 1.6vw, 1.3125rem);
  --fs-h3:      clamp(1.375rem, 2vw, 1.75rem);
  --fs-h2:      clamp(2rem, 4.2vw, 3.25rem);
  --fs-display: clamp(3.4rem, 10.5vw, 8.5rem);

  /* rhythm */
  --space-section: clamp(5rem, 11vw, 8.5rem);
  --radius-outer: 1.5rem;
  --radius-inner: 1.15rem;
  --radius-pill:  999px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* z-index layers */
  --z-nav: 40;
  --z-overlay: 50;
  --z-grain: 60;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

::selection { background: var(--magenta); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* skip link */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: calc(var(--z-grain) + 10);
  background: var(--magenta);
  color: var(--black);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  transform: translateY(-300%);
  transition: transform 0.4s var(--ease);
}
.skip-link:focus { transform: none; }

/* film grain — fixed, decorative */
.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ---------- Marquee lights (reusable dot strip) ---------- */
.lights {
  height: 0.75rem;
  background-image:
    radial-gradient(0.22rem 0.22rem at 8px 50%,  var(--magenta) 48%, transparent 50%),
    radial-gradient(0.22rem 0.22rem at 24px 50%, var(--amber)   48%, transparent 50%),
    radial-gradient(0.22rem 0.22rem at 40px 50%, var(--white)   48%, transparent 50%);
  background-size: 48px 100%;
  background-repeat: repeat-x;
  animation: shimmer 3.2s ease-in-out infinite;
}
.lights-top { position: relative; z-index: 5; }
.lights-footer { animation-delay: 1.6s; }

@keyframes shimmer {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* ---------- Layout primitives ---------- */
.container {
  width: min(100% - 2.5rem, 75rem);
  margin-inline: auto;
}

section { scroll-margin-top: 6.5rem; }

.section { padding-block: var(--space-section); position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  transform: rotate(-1deg);
  flex-wrap: wrap;
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px 2px rgba(255, 61, 138, 0.7);
  flex: none;
}

.section-head { max-width: 52rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head h2 { font-size: var(--fs-h2); margin-top: 1.4rem; }
.section-head h2 .hl { color: var(--magenta); }
.section-head .lede { font-size: var(--fs-lead); color: var(--white-soft); margin-top: 1.25rem; font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  min-height: 3.25rem;
  padding: 0.625rem 0.75rem 0.625rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease),
              border-color 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn .btn-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease);
}
.btn .btn-arrow svg { width: 1.05rem; height: 1.05rem; transition: transform 0.5s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary { background: var(--magenta); color: var(--black); }
.btn-primary .btn-arrow { background: rgba(10, 10, 12, 0.14); }
.btn-primary:hover { background: #ff5e9e; }

.btn-ghost { border: 1px solid var(--line-strong); color: var(--white); background: transparent; }
.btn-ghost .btn-arrow { background: var(--shell); }
.btn-ghost:hover { border-color: var(--magenta); color: var(--magenta); }
.btn-ghost:hover .btn-arrow { background: var(--magenta); color: var(--black); }

/* ---------- Fluid island nav ---------- */
.nav-wrap {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, 68rem);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
  min-height: 2.75rem;
}
.brand-mark { width: 2.25rem; height: 2.25rem; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 0.32rem;
}

.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--white-soft);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.nav-links a:hover { background: var(--shell); color: var(--white); }

.nav-cta { display: none; }

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--magenta);
  display: grid;
  place-items: center;
  position: relative;
}
.nav-toggle .bar {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  border-radius: 2px;
  background: var(--black);
  transition: transform 0.55s var(--ease), opacity 0.4s var(--ease), top 0.55s var(--ease);
}
.nav-toggle .bar:nth-child(1) { top: 1.1rem; }
.nav-toggle .bar:nth-child(2) { top: 1.55rem; }
.nav-toggle .bar:nth-child(3) { top: 2rem; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { top: 1.55rem; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0.3); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { top: 1.55rem; transform: rotate(-45deg); }

/* full-screen overlay menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(10, 10, 12, 0.96);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 8vw, 6rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; transition: opacity 0.6s var(--ease); }
.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55rem 38rem at 82% 8%, rgba(255, 61, 138, 0.22), transparent 62%),
              radial-gradient(40rem 30rem at 8% 92%, rgba(255, 183, 3, 0.14), transparent 60%);
  pointer-events: none;
}
.menu-overlay-inner { position: relative; }

.menu-overlay nav a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  letter-spacing: -0.01em;
  line-height: 1.14;
  padding: 0.35rem 0;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), color 0.4s var(--ease);
}
.menu-overlay nav a span {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--amber);
  text-transform: uppercase;
}
.menu-overlay nav a:hover { color: var(--magenta); }
.menu-overlay.is-open nav a { opacity: 1; transform: none; }
.menu-overlay.is-open nav a:nth-child(1) { transition-delay: 0.12s; }
.menu-overlay.is-open nav a:nth-child(2) { transition-delay: 0.18s; }
.menu-overlay.is-open nav a:nth-child(3) { transition-delay: 0.24s; }
.menu-overlay.is-open nav a:nth-child(4) { transition-delay: 0.3s; }
.menu-overlay.is-open nav a:nth-child(5) { transition-delay: 0.36s; }

.menu-overlay .menu-foot {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  opacity: 0;
  transition: opacity 0.7s var(--ease) 0.5s;
}
.menu-overlay.is-open .menu-foot { opacity: 1; }
.menu-overlay .menu-foot p { font-size: var(--fs-small); color: var(--white-dim); }
.menu-overlay .menu-foot strong { color: var(--white); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
  overflow: clip;
}
@supports not (min-height: 100svh) { .hero { min-height: 100vh; } }

.hero-inner { position: relative; z-index: 2; }

/* spotlight beams */
.hero-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: clip;
}
.beam {
  position: absolute;
  top: -10%;
  width: 34rem;
  height: 120%;
  mix-blend-mode: screen;
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
}
.beam-magenta {
  left: -6rem;
  background: linear-gradient(to bottom, rgba(255, 61, 138, 0.34), rgba(255, 61, 138, 0.02));
  transform: rotate(18deg);
}
.beam-amber {
  right: -8rem;
  background: linear-gradient(to bottom, rgba(255, 183, 3, 0.26), rgba(255, 183, 3, 0.01));
  transform: rotate(-16deg);
}
.beam-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  height: 40rem;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 61, 138, 0.14), transparent 70%);
}

.hero-eyebrow { margin-bottom: 2rem; }

.hero-title {
  font-size: var(--fs-display);
  line-height: 0.82;
  letter-spacing: -0.02em;
}
.hero-title .word { display: block; width: max-content; }
.word-dance   { color: var(--white); transform: rotate(-2.2deg); }
.word-train   {
  color: transparent;
  -webkit-text-stroke: 2px var(--magenta);
  transform: rotate(1.6deg) translateX(2.5rem);
  margin-top: 0.02em;
}
.word-perform { color: var(--amber); transform: rotate(-1.2deg) translateX(0.75rem); margin-top: 0.02em; }

/* fallback if text-stroke unsupported */
@supports not (-webkit-text-stroke: 2px #fff) {
  .word-train { color: var(--magenta); }
}

.hero .lede {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--white-soft);
  max-width: 36rem;
  margin-top: 2.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--shell);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--white-soft);
}
.chip i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 8px 1px rgba(255, 61, 138, 0.8);
  font-style: normal;
}

/* stage edge — the lip of the stage floor */
.stage-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 61, 138, 0.7), rgba(255, 183, 3, 0.7), transparent);
}

/* ---------- Ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--black-2);
  overflow: clip;
  position: relative;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  padding: 1rem 1.125rem;
  white-space: nowrap;
}
.ticker-group span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white-soft);
}
.ticker-group span:first-child { color: var(--magenta); }
.ticker-group i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
  font-style: normal;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Program (progression timeline) ---------- */
.program { background: radial-gradient(70rem 40rem at 100% 0%, rgba(255, 61, 138, 0.05), transparent 60%); }

.phases { position: relative; padding-left: clamp(1.5rem, 4vw, 2.75rem); }
.phases::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--magenta), var(--amber));
  border-radius: 2px;
}

.phase { position: relative; padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.phase:last-child { padding-bottom: 0; }

.phase-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem 1.25rem; }
.phase-dot {
  position: absolute;
  left: calc(-1 * clamp(1.5rem, 4vw, 2.75rem));
  top: 0.55rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 12px 3px rgba(255, 61, 138, 0.7);
}
.phase:nth-child(even) .phase-dot { background: var(--amber); box-shadow: 0 0 12px 3px rgba(255, 183, 3, 0.6); }

.phase-label { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.phase-note { font-family: var(--font-body); font-size: var(--fs-small); font-weight: 300; color: var(--white-dim); }

.phase-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.card {
  position: relative;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-outer);
  padding: 1.75rem 1.75rem 1.5rem;
  overflow: clip;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--magenta);
}
.card-accent-amber::before { background: var(--amber); }

.card-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.card h4 { font-size: var(--fs-h3); margin-top: 0.7rem; }
.card p { font-size: var(--fs-small); color: var(--white-soft); margin-top: 0.7rem; font-weight: 300; max-width: 34ch; }
.card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.card-status::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-4px); }

/* staggered timeline cards on desktop */
@media (min-width: 900px) {
  .phase-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .phase-cards .card:nth-child(1) { transform: rotate(-0.8deg); }
  .phase-cards .card:nth-child(2) { transform: rotate(0.6deg) translateY(1.25rem); }
  .phase-cards .card:nth-child(3) { transform: rotate(-0.5deg) translateY(0.5rem); }
  .phase-cards .card:hover { transform: rotate(0deg) translateY(-4px); }
  .phase-cards .card:nth-child(2):hover { transform: rotate(0deg) translateY(1.25rem); }
}

/* ---------- About / Association ---------- */
.about {
  background: var(--black-2);
  border-block: 1px solid var(--line);
  background-image: radial-gradient(50rem 30rem at 0% 100%, rgba(255, 183, 3, 0.06), transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; }
}

.about-sticky { position: relative; }
@media (min-width: 900px) {
  .about-sticky { position: sticky; top: 8rem; align-self: start; }
}

.about-sticky h2 { font-size: var(--fs-h2); margin-top: 1.4rem; }
.about-meta { font-size: var(--fs-small); color: var(--white-dim); margin-top: 1.25rem; }

.about-body > p {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--white-soft);
  margin-top: 1.5rem;
  max-width: 46rem;
}
.about-body > p + p { font-size: var(--fs-body); }

.pull-quote {
  margin-top: 2.75rem;
  padding: 1.75rem 0 0 1.5rem;
  border-top: 1px solid var(--line-strong);
  border-left: 3px solid var(--magenta);
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 30rem;
}
.pull-quote blockquote::before { content: "“"; color: var(--magenta); }
.pull-quote blockquote::after { content: "”"; color: var(--magenta); }

.principles { margin-top: 3rem; border-top: 1px solid var(--line-strong); }
.principles li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.principles .p-word {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  min-width: 12rem;
}
.p-w1 { transform: rotate(-1.4deg); }
.p-w2 { transform: rotate(1deg); }
.p-w3 { transform: rotate(-0.8deg); }
.p-w4 { transform: rotate(1.3deg); }
.principles p { color: var(--white-soft); font-size: var(--fs-small); font-weight: 300; flex: 1; min-width: 16rem; }

/* confirmation panel */
.confirm-panel {
  margin-top: 3rem;
  border: 1px dashed rgba(255, 61, 138, 0.55);
  border-radius: 1.25rem;
  background: rgba(255, 61, 138, 0.07);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.confirm-panel svg { width: 1.375rem; height: 1.375rem; flex: none; margin-top: 0.2rem; color: var(--magenta); }
.confirm-panel strong { display: block; font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.01em; }
.confirm-panel p { font-size: var(--fs-small); color: var(--white-soft); margin-top: 0.35rem; }

/* ---------- Membership (tickets) ---------- */
.membership {
  background-image: radial-gradient(60rem 36rem at 50% 0%, rgba(255, 61, 138, 0.07), transparent 62%);
}

.tiers {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tiers .ticket:nth-child(2) { transform: translateY(-0.75rem); }
}

/* ticket = admission stub + body, perforated seam */
.ticket {
  position: relative;
  display: flex;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-outer);
  overflow: clip;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.ticket:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.tiers .ticket:nth-child(2):hover { transform: translateY(calc(-0.75rem - 4px)); }

.ticket-stub {
  flex: none;
  width: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px dashed var(--line-strong);
  background: var(--black-3);
}
.ticket-stub span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.ticket-body {
  flex: 1;
  min-width: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.ticket-kind {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
}
.ticket-body h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-top: 0.7rem; line-height: 1.1; }
.ticket-body ul { margin-top: 1.4rem; display: grid; gap: 0.65rem; }
.ticket-body li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--fs-small);
  font-weight: 300;
  color: var(--white-soft);
}
.ticket-body li svg { width: 1.1rem; height: 1.1rem; flex: none; margin-top: 0.2rem; color: var(--amber); }

.ticket-dues {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
}
.ticket-dues .dues-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.ticket-dues .dues-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 0.3rem;
}

/* featured ticket = the spotlight */
.ticket-featured {
  background: var(--magenta);
  border-color: var(--magenta);
  box-shadow: 0 0 0 1px rgba(255, 61, 138, 0.5), 0 20px 60px rgba(255, 61, 138, 0.25);
}
.ticket-featured .ticket-stub { background: rgba(10, 10, 12, 0.12); border-right-color: rgba(10, 10, 12, 0.4); }
.ticket-featured .ticket-stub span { color: rgba(10, 10, 12, 0.7); }
.ticket-featured .ticket-kind { color: var(--black); }
.ticket-featured .ticket-body h3 { color: var(--black); }
.ticket-featured .ticket-body li { color: rgba(10, 10, 12, 0.82); }
.ticket-featured .ticket-body li svg { color: var(--black); }
.ticket-featured .ticket-dues .dues-label { color: rgba(10, 10, 12, 0.7); }
.ticket-featured .ticket-dues .dues-value { color: var(--black); }

.membership-note {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--black-2);
}
.membership-note p { max-width: 42rem; color: var(--white-soft); font-size: var(--fs-small); }
.membership-note p strong { color: var(--white); }

/* ---------- FAQ ---------- */
.faq { background: var(--black-2); border-block: 1px solid var(--line); }

.faq-list { border-top: 1px solid var(--line-strong); max-width: 52rem; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0;
  text-transform: none;
  min-height: 3.5rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--magenta);
  transition: transform 0.5s var(--ease);
  flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details[open] summary { color: var(--magenta); }
.faq-answer { padding: 0 2.5rem 1.75rem 0.25rem; color: var(--white-soft); max-width: 46rem; font-weight: 300; }
.faq-answer p + p { margin-top: 0.75rem; }

/* ---------- Contact ---------- */
.contact { background-image: radial-gradient(60rem 36rem at 0% 100%, rgba(255, 183, 3, 0.06), transparent 60%); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; }
}

.contact-info h2 { font-size: var(--fs-h2); margin-top: 1.4rem; }
.contact-info .info-list { margin-top: 2rem; border-top: 1px solid var(--line-strong); }
.info-row {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-row dt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.info-row dd { font-size: var(--fs-small); color: var(--white-soft); }
.tbd {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--shell);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-soft);
}
.tbd i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
  font-style: normal;
}

.contact-aside {
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--black-2);
  padding: 1.5rem;
}
.contact-aside h3 { font-size: 1.2rem; }
.contact-aside p { font-size: var(--fs-small); color: var(--white-soft); margin-top: 0.4rem; font-weight: 300; }

/* form */
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-outer);
  background: var(--black-2);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}
.form-panel h2 { font-size: var(--fs-h3); }

.field { margin-top: 1.75rem; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.field .helper { font-size: 0.75rem; color: var(--white-dim); margin-top: 0.4rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.875rem;
  background: var(--black);
  color: var(--white);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.field textarea { min-height: 9.5rem; resize: vertical; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(255, 61, 138, 0.2);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23F4F5F7' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 3rem;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--error-line);
  box-shadow: 0 0 0 3px rgba(255, 111, 156, 0.16);
}
.field-error {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--error);
  margin-top: 0.4rem;
}
.field.is-invalid .field-error { display: block; }

.form-actions { margin-top: 2.25rem; }
.form-note { font-size: 0.75rem; color: var(--white-dim); margin-top: 1rem; font-weight: 300; }
.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.4);
  font-size: var(--fs-small);
  color: var(--white-soft);
}
.form-status.is-visible { display: block; }

/* ---------- Footer (theater doors) ---------- */
.footer {
  background: var(--black);
  padding-bottom: 2.5rem;
}
.footer .lights { margin-bottom: 3.5rem; }

.nowshowing {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: var(--black-2);
  margin-bottom: 3rem;
}
.ns-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--teal);   /* the single teal use — live indicator */
  box-shadow: 0 0 12px 2px rgba(0, 229, 204, 0.7);
  animation: shimmer 1.8s ease-in-out infinite;
  flex: none;
}
.ns-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}
.ns-rule { flex: 1; min-width: 2rem; height: 1px; background: var(--line-strong); }
.ns-brand {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); }
}
.footer-blurb { font-size: var(--fs-small); color: var(--white-dim); margin-top: 1rem; max-width: 24rem; font-weight: 300; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: var(--fs-small); color: var(--white-soft); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--magenta); }
.footer-note { font-size: var(--fs-small); color: var(--white-dim); margin-top: 1rem; font-weight: 300; }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--white-dim);
}

/* ---------- Reveal animation ---------- */
.reveal {
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.js .reveal {
  opacity: 0;
  transform: translateY(2rem);
  filter: blur(6px);
}
.js .reveal.is-in { opacity: 1; transform: none; filter: none; }

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive: desktop nav ---------- */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .menu-overlay nav a { opacity: 1; transform: none; }
  .menu-overlay .menu-foot { opacity: 1; }
}

/* ---------- Print ---------- */
@media print {
  .nav-wrap, .menu-overlay, .ticker, .grain, .lights, .hero-beams, .form-actions { display: none !important; }
  body { background: none; color: #000; }
  section { padding-block: 2rem; }
  .card, .ticket, .form-panel { break-inside: avoid; }
}
