/* SLUTCON 2026 - Professional Redesign */

:root {
  /* Colors */
  --pink: #e91e7b;
  --pink-light: #ff5ca1;
  --pink-dark: #c4145f;
  --purple: #6c3fc7;
  --purple-dark: #4a2a8a;
  --gold: #f5c518;
  --cream: #faf9f7;
  --white: #ffffff;
  --dark: #141218;
  --dark-soft: #1e1b24;
  --gray-900: #1a1a1a;
  --gray-700: #404040;
  --gray-500: #6b6b6b;
  --gray-400: #8a8a8a;
  --gray-300: #b0b0b0;
  --gray-100: #f0f0f0;

  /* Typography */
  --font-display: 'Titan One', cursive;
  --font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing - 8px base */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.5rem;    /* 24px */
  --space-6: 2rem;      /* 32px */
  --space-7: 2.5rem;    /* 40px */
  --space-8: 3rem;      /* 48px */
  --space-9: 4rem;      /* 64px */
  --space-10: 5rem;     /* 80px */
  --space-11: 6rem;     /* 96px */
  --space-12: 8rem;     /* 128px */

  /* Layout */
  --max-width: 1120px;
  --max-width-narrow: 720px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ===== RESET ===== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(233, 30, 123, 0.2);
  color: var(--dark);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--cream);
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3.5rem, 12vw, 7rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--gray-700);
}

strong {
  font-weight: 600;
}

/* ===== LAYOUT ===== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

section {
  padding: var(--space-11) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin: 0 auto var(--space-9);
}

.section-header h2 {
  margin-bottom: var(--space-4);
  color: var(--dark);
}

.section-intro {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-header-light h2 {
  color: var(--white);
}

.section-header-light .section-intro {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== NAVIGATION ===== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: var(--space-7);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
  background: var(--pink-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.btn-outline {
  background: transparent;
  color: var(--gray-900);
  box-shadow: inset 0 0 0 1.5px var(--gray-300);
}

.btn-outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--pink);
  color: var(--pink);
}

.btn-disabled {
  cursor: default;
  pointer-events: none;
}

/* On dark backgrounds (hero) */
.hero .btn-disabled {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

/* On card backgrounds (ticket cards) */
.ticket-card .btn-disabled,
.ticket-card .btn-disabled-outline {
  background: none;
  box-shadow: inset 0 0 0 1.5px var(--gray-300);
  color: var(--gray-400);
  cursor: default;
  pointer-events: none;
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: 1.05rem;
}

/* ===== HERO ===== */

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--purple) 0%, var(--pink) 50%, var(--pink-light) 100%);
  color: var(--white);
  text-align: center;
  padding: var(--space-9) 0 var(--space-11);
  position: relative;
  overflow: hidden;
}

/* Solid purple fill - moves with layer-1 */
.hero-layer.layer-fill {
  background: #4c10ae;
  z-index: 5;
  bottom: 0;
  height: 111px;
}

.hero-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 90, 150, 0.15) 0%, rgba(108, 63, 199, 0.3) 100%);
  z-index: 6;
  pointer-events: none;
}

.hero-layer {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  will-change: transform;
}

.layer-1 {
  background-image: url('images/layer1.png');
  z-index: 4;
  bottom: 110px;
}

.layer-2 {
  background-image: url('images/layer2.png');
  z-index: 3;
  opacity: 0.9;
  bottom: 132px;
}

.layer-3 {
  background-image: url('images/layer3.png');
  z-index: 2;
  opacity: 0.8;
  bottom: 160px;
}

.layer-4 {
  background-image: url('images/layer4.png');
  z-index: 1;
  opacity: 0.6;
  bottom: 195px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-6);
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4);
}

.hero h1 {
  margin-bottom: var(--space-5);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

.hero-tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto var(--space-7);
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== DEFINITION TOOLTIP ===== */

.hero-title {
  position: relative;
  display: inline-block;
}

.title-trigger {
  position: relative;
  display: inline-block;
}

.letter {
  display: inline-block;
  animation: float 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

.letter:hover {
  animation: bounce 0.4s ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-6px); }
  50% { transform: translateY(-2px); }
  75% { transform: translateY(-4px); }
}

.title-hint {
  position: absolute;
  top: 0.1em;
  right: -0.5em;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 50%;
  text-shadow: none;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.title-hint:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.definition-tooltip {
  position: absolute;
  top: 20%;
  right: -180px;
  transform: rotate(-6deg) translateY(0px) scale(0.95);
  transform-origin: top left;
  width: 340px;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, #ffe0f0 0%, #f0d0ff 100%);
  border: 2px solid var(--pink);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.1),
    0 8px 24px rgba(0,0,0,0.15),
    inset 0 0 40px rgba(0,0,0,0.03);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
  z-index: 100;
  text-align: left;
  display: block;
  /* Torn paper edge effect */
  clip-path: polygon(
    0% 2%, 3% 0%, 7% 1%, 12% 0%, 18% 2%, 24% 0%, 30% 1%, 36% 0%,
    42% 2%, 48% 0%, 54% 1%, 60% 0%, 66% 2%, 72% 0%, 78% 1%,
    84% 0%, 90% 2%, 96% 0%, 100% 1%,
    100% 98%, 97% 100%, 92% 99%, 86% 100%, 80% 98%, 74% 100%,
    68% 99%, 62% 100%, 56% 98%, 50% 100%, 44% 99%, 38% 100%,
    32% 98%, 26% 100%, 20% 99%, 14% 100%, 8% 98%, 2% 100%, 0% 99%
  );
}

.title-hint:hover ~ .definition-tooltip,
.title-hint.active ~ .definition-tooltip {
  opacity: 1;
  visibility: visible;
  transform: rotate(-6deg) translateY(10px) scale(1);
}

.definition-list-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.def-item {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-700);
  font-weight: 400;
}

.def-item:first-child {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 0.8125rem;
}

.def-num {
  font-weight: 400;
  margin-right: 0.25em;
}

.def-label {
  font-style: italic;
  color: var(--gray-500);
  font-size: 0.75rem;
}

.definition-list {
  list-style: decimal;
  padding-left: var(--space-5);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.definition-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.definition-list li:first-child {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 0.875rem;
}

.def-label {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--gray-500);
  margin-right: 0.25em;
}

.definition-list em {
  display: block;
  margin-top: var(--space-5);
  color: var(--gray-500);
  font-size: 0.875rem;
}

.definition-term {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}

.term-word {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.term-phonetic {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--gray-500);
}

.term-pos {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--purple);
  margin-bottom: var(--space-2);
  display: block;
}

.definition-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
}


/* ===== PRINCIPLES BAR ===== */

.principles-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-9);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.principle {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.principle-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pink-light);
  opacity: 0.5;
}

.principle-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== HERO PRESS ===== */

.hero-press {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: var(--space-2) var(--space-5);
  background: rgba(108, 63, 199, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.press-strip-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9b7edb;
  margin-bottom: var(--space-1);
}

.press-strip-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--space-4) var(--space-6);
}

.press-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
  filter: brightness(0) invert(0.7) sepia(1) saturate(5) hue-rotate(210deg) brightness(1.1);
  opacity: 1;
}

.press-logo:hover {
  opacity: 1;
}

.press-logo-dark {
  filter: brightness(0) invert(0.7) sepia(1) saturate(5) hue-rotate(210deg) brightness(1.1);
}

.press-logo-tall {
  height: 40px;
}

/* ===== FLIPPED PARALLAX (top of tracks) ===== */

.parallax-flip-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.parallax-flip-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 500px;
}

.pflip-layer {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  will-change: transform;
}

.pflip-fill {
  display: none;
}

.pflip-1 { background-image: url('images/feetreversed/layer1r.png'); z-index: 4; top: -130px; }
.pflip-2 { background-image: url('images/feetreversed/layer2r.png'); z-index: 3; top: -55px; }
.pflip-3 { background-image: url('images/feetreversed/layer3r.png'); z-index: 2; top: 35px; }
.pflip-4 { background-image: url('images/feetreversed/layer4r.png'); z-index: 1; top: 140px; }

/* ===== TRACKS ===== */

.tracks {
  background: var(--dark);
  color: var(--white);
  overflow: visible;
}

.tracks .container {
  position: relative;
  z-index: 3;
}

.tracks::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.track-card {
  background: #1e1052;
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  border: 1px solid rgba(108, 63, 199, 0.3);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.track-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(233, 30, 123, 0.15);
}

.track-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
  color: var(--pink-light);
}

.track-icon svg {
  width: 100%;
  height: 100%;
}

.track-card h3 {
  letter-spacing: 0.03em;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.track-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-5);
}

.track-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.track-card li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: var(--space-5);
  position: relative;
}

.track-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

/* ===== THE PEOPLE ===== */

.people {
  background: linear-gradient(to bottom, var(--pink) 0%, #a03090 100%);
  position: relative;
  z-index: 2;
}

.people::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--pink);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 L0,28 C120,10 240,5 360,18 C480,31 600,42 720,25 C840,8 960,2 1080,15 C1200,28 1320,20 1440,12 L1440,50 Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 L0,28 C120,10 240,5 360,18 C480,31 600,42 720,25 C840,8 960,2 1080,15 C1200,28 1320,20 1440,12 L1440,50 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.people .section-header h2 {
  color: var(--white);
}

.people .section-intro {
  color: rgba(255, 255, 255, 0.75);
}

/* Grid */
.people-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-5);
  max-width: 820px;
  margin: 0 auto;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 110px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--d) * 0.05s);
  text-decoration: none;
}

.person.visible {
  opacity: 1;
  transform: translateY(0);
  animation:
    personBob var(--bob-dur, 5s) ease-in-out infinite,
    personSway var(--sway-dur, 7s) ease-in-out infinite;
}

@keyframes personBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(calc(-1 * var(--bob-y, 6px))); }
}

@keyframes personSway {
  0%, 100% { margin-left: 0; }
  50% { margin-left: var(--sway-x, 3px); }
}

/* Circular photo with white backing */
.person-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.person:hover .person-photo {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Name */
.person-name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin: 0;
  transition: opacity 0.25s ease;
  opacity: 0.85;
}

.person:hover .person-name {
  opacity: 1;
  color: #ffe600;
}

/* "More" note */
.people-more {
  text-align: center;
  margin-top: var(--space-8);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  opacity: 0.5;
  letter-spacing: 0.02em;
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  background: var(--dark);
  color: var(--white);
  padding-top: var(--space-6);
}

/* Press links */
.press-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.press-link {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: padding-left var(--transition-fast);
}

.press-group-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  padding-top: var(--space-6);
}

.press-group-label:first-child {
  padding-top: 0;
}

.press-group-label + .press-link {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.press-link:hover {
  padding-left: var(--space-3);
}

.press-link:hover .press-headline {
  color: var(--white);
}

.press-link:hover .press-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.press-source {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  flex-shrink: 0;
  min-width: 100px;
}

.press-headline {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
  transition: color var(--transition-fast);
}

.press-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--pink);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  align-self: center;
}

/* ===== TICKETS — PLAYING CARD THEME ===== */

.tickets {
  background: linear-gradient(145deg, var(--purple-dark) 0%, var(--pink-dark) 100%);
  color: var(--white);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  align-items: stretch;
  max-width: 720px;
  margin: 0 auto;
}

/* --- Base card --- */
.ticket-card {
  background: #faf8f5;
  color: var(--dark);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(108, 63, 199, 0.25);
}

/* Corner pip — top left */
.ticket-card::after {
  display: none;
}

/* Corner pip — bottom right */
.ticket-card .btn::after {
  display: none;
}

/* Ace pips */
.ticket-card-insider::after {
  display: none;
}

.ticket-card-insider .btn::after {
  display: none;
}

.ticket-features {
  flex: 1;
}

.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.ticket-card-insider:hover {
  transform: translateY(-4px);
}

/* --- Wildcard accent — purple --- */
.ticket-card .ticket-tier {
  color: var(--purple);
}

/* Wildcard suit watermark */
.ticket-card:not(.ticket-card-insider):not(.ticket-card-patriarch) .ticket-header::after {
  display: none;
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

/* --- Ace accent — pink --- */
.ticket-card-insider {
  border-color: rgba(233, 30, 123, 0.25);
}

.ticket-card-insider .ticket-tier {
  color: var(--pink);
}

.ticket-card-insider .ticket-features li::before {
  color: var(--pink);
}

.ticket-card-insider .btn-primary {
  background: var(--pink);
}

.ticket-card-insider .btn-primary:hover {
  background: var(--pink-dark);
}

/* Ace suit watermark */
.ticket-card-insider .ticket-header::after {
  display: none;
}

/* --- Card header --- */
.ticket-header {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.ticket-level {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: var(--space-1);
}

.ticket-level-gold {
  color: rgba(245, 197, 24, 0.6);
}

.ticket-tier {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: var(--space-2);
}

.ticket-tier::before {
  content: '★  ';
  font-weight: 900;
  font-size: 1.2rem;
  opacity: 0.5;
}

.ticket-card-insider .ticket-tier::before {
  content: '♠  ';
  color: var(--pink);
  font-size: 1.2rem;
  opacity: 0.5;
}

.ticket-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.price-original {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: -10px;
}

.ticket-discount {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: var(--space-1) 0 0 0;
}

.ticket-remaining {
  font-weight: 600;
  color: var(--gray-500);
}

/* --- Features list --- */
.ticket-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.ticket-features li {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--gray-700);
  padding-left: var(--space-5);
  position: relative;
}

.ticket-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 0.75rem;
  top: 2px;
  font-weight: 700;
}

.ticket-card-insider .ticket-features li::before {
  content: '✓';
  color: var(--pink);
  font-size: 0.75rem;
  top: 2px;
}

.ticket-card .btn {
  width: 100%;
  position: relative;
  overflow: visible;
}

/* --- "There's a third option" reveal --- */
.ticket-reveal {
  text-align: center;
  margin-top: var(--space-8);
}

.ticket-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1.0625rem;
  font-weight: 500;
  font-style: italic;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  transition: all var(--transition-base);
  cursor: pointer;
  letter-spacing: 0.01em;
  animation: subtleGlow 4s ease-in-out infinite;
}

@keyframes subtleGlow {
  0%, 70%, 100% { text-shadow: none; filter: drop-shadow(0 0 0 transparent); color: var(--gold); }
  80%, 90% { text-shadow: 0 0 8px rgba(245, 197, 24, 0.6), 0 0 20px rgba(245, 197, 24, 0.3), 0 0 40px rgba(245, 197, 24, 0.15); filter: drop-shadow(0 0 12px rgba(245, 197, 24, 0.3)); color: #fff4d0; }
}

.ticket-reveal-btn:hover {
  color: var(--white);
}

.ticket-reveal-btn:hover .reveal-chevron {
  animation: beckoning 1s ease-in-out infinite;
}

@keyframes beckoning {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.reveal-chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
  opacity: 0.7;
}

/* --- Jackpot hidden card --- */
.ticket-patriarch {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.ticket-patriarch.revealed {
  max-height: 600px;
  opacity: 1;
  margin-top: var(--space-6);
}

.ticket-card-patriarch {
  background: var(--dark-soft);
  color: var(--white);
  border: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Jackpot inner border — gold tint */

/* Jackpot pips */
.ticket-card-patriarch::after {
  display: none;
}

.ticket-card-patriarch .btn-patriarch::after {
  display: none;
}

/* Jackpot suit watermark */
.ticket-card-patriarch .ticket-header::after {
  display: none;
}

.ticket-card-patriarch:hover {
  transform: translateY(-6px) rotate(-0.8deg);
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 16px 48px rgba(245, 197, 24, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ticket-card-patriarch .ticket-tier {
  color: var(--gold);
  font-size: 1.85rem;
  margin-bottom: var(--space-3);
}

.ticket-card-patriarch .ticket-tier::before {
  content: '♛  ';
  color: var(--gold);
  font-size: 1.7rem;
}

.ticket-card-patriarch .ticket-price {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: var(--space-2);
}

.ticket-card-patriarch .price-original {
  color: rgba(255, 255, 255, 0.35);
}

.ticket-card-patriarch .ticket-discount {
  color: var(--gold);
}

.ticket-card-patriarch .ticket-remaining {
  color: rgba(255, 255, 255, 0.4);
}

.ticket-card-patriarch .ticket-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.ticket-card-patriarch .ticket-features li {
  color: rgba(255, 255, 255, 0.8);
}

.ticket-card-patriarch .ticket-features li::before {
  content: '♦';
  color: var(--gold);
}

.patriarch-inner {
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
}

.patriarch-left {
  flex: 0 0 auto;
  min-width: 200px;
}

.patriarch-left .ticket-header {
  border-bottom: none;
  margin-bottom: var(--space-4);
  padding-bottom: 0;
}

.patriarch-right {
  flex: 1;
}

.patriarch-right .ticket-features {
  margin-bottom: 0;
}

.btn-patriarch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--dark);
  transition: all var(--transition-fast);
  white-space: nowrap;
  width: 100%;
}

.btn-patriarch:hover {
  background: #e0b200;
  transform: translateY(-1px);
}

/* --- Compare All Tiers --- */
.ticket-compare-toggle {
  text-align: center;
  margin-top: var(--space-8);
}

.ticket-compare-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}

.ticket-compare-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.compare-chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
  opacity: 0.7;
}

.ticket-compare {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.ticket-compare.revealed {
  max-height: 800px;
  opacity: 1;
  margin-top: var(--space-6);
}

.compare-scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background: var(--dark-soft);
  color: var(--white);
  font-size: 0.9rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table thead {
  background: rgba(0, 0, 0, 0.3);
}

.compare-table th,
.compare-table td {
  padding: var(--space-3) var(--space-4);
  text-align: center;
  vertical-align: middle;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-feature-col {
  width: 40%;
}

.compare-tier {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding-top: var(--space-4) !important;
  padding-bottom: var(--space-4) !important;
}

.compare-tier-icon {
  margin-right: 4px;
}

.compare-tier-wildcard { color: var(--purple); }
.compare-tier-ace { color: var(--pink); }
.compare-tier-jackpot { color: var(--gold); }

.compare-table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.compare-feature {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.cmark {
  font-weight: 700;
  font-size: 1.1rem;
  color: #4ade80;
}

.cmark-wildcard { color: var(--purple); }
.cmark-ace { color: var(--pink); }
.cmark-jackpot { color: var(--gold); }

.cdash {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.05rem;
}

.compare-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 2px;
}

/* ===== FAQ ===== */

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--pink);
}

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gray-500);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  color: var(--pink);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-base);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding-bottom: 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.faq-item.open .faq-answer-inner {
  padding-bottom: var(--space-5);
}

/* ===== GALLERY ===== */

.gallery {
  background: var(--dark);
  color: var(--white);
  position: relative;
  z-index: 3;
  padding-bottom: var(--space-6);
}

.gallery::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--dark);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 L0,28 C120,10 240,5 360,18 C480,31 600,42 720,25 C840,8 960,2 1080,15 C1200,28 1320,20 1440,12 L1440,50 Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 L0,28 C120,10 240,5 360,18 C480,31 600,42 720,25 C840,8 960,2 1080,15 C1200,28 1320,20 1440,12 L1440,50 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  z-index: 1;
}

.gallery .section-header h2 {
  color: var(--white);
}

.gallery .section-intro {
  color: rgba(255, 255, 255, 0.8);
}

/* Carousel */
.carousel {
  position: relative;
  margin: 0 calc(-1 * var(--space-5));
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--space-9);
  scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex-shrink: 0;
  width: 260px;
  height: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-4px);
}

.carousel-item:hover::after {
  border-color: rgba(233, 30, 123, 0.3);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.carousel-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.08);
}

/* Edge fades */
.carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.carousel-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}

.carousel-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(233, 30, 123, 0.35);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow:hover {
  background: var(--pink-light);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 24px rgba(233, 30, 123, 0.5);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.gallery .container {
  position: relative;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-arrow:hover {
  background: rgba(233, 30, 123, 0.3);
  border-color: rgba(233, 30, 123, 0.5);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: var(--space-6); }
.lightbox-next { right: var(--space-6); }

/* ===== UPDATES ===== */

.updates {
  background: var(--white);
}

.update-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-7);
  background: linear-gradient(135deg, rgba(108, 63, 199, 0.03) 0%, rgba(233, 30, 123, 0.03) 100%);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--purple);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.update-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.update-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin: 0;
}

.update-text:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  float: left;
  line-height: 1;
  margin-right: var(--space-3);
  margin-top: 0.1em;
  color: var(--purple);
}

.update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.update-author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
}

.update-author::before {
  content: '— ';
  color: var(--gray-400);
}

.update-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pink);
  transition: color var(--transition-fast);
}

.update-link:hover {
  color: var(--pink-dark);
}

/* ===== CTA ===== */

.cta {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  text-align: center;
  padding: var(--space-12) 0;
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto var(--space-7);
}

.cta .btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.cta .btn-primary:hover {
  background: #e0b200;
}

/* ===== FOOTER ===== */

footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pink);
}

.footer-year {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-1);
}

.footer-right a {
  font-size: 0.9375rem;
  color: var(--pink-light);
  transition: color var(--transition-fast);
}

.footer-right a:hover {
  color: var(--white);
}

/* ===== PERSON ROLES ===== */

.person-role {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* ===== TESTIMONIAL PULL QUOTES ===== */

.pull-quotes {
  max-width: 720px;
  margin: 0 auto var(--space-9);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.pull-quote-wrap {
  text-align: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pull-quote-wrap:last-child {
  border-bottom: none;
}

.pull-quote-text {
  font-family: Georgia, serif;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.pull-quote-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}

.pull-quote-meta cite {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--pink-light);
  letter-spacing: 0.02em;
}

.quote-expand-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.quote-expand-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.quote-expand-btn[aria-expanded="true"] {
  color: var(--pink-light);
}

.quote-expanded {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s ease;
}

.quote-expanded.open {
  max-height: 500px !important;
}

.quote-expanded-inner {
  padding-top: var(--space-4);
}

.quote-expanded-inner p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  margin: 0;
}

.quote-source-link {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pink-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.quote-source-link:hover {
  color: var(--white);
}

.pull-quote-meta .quote-source-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.pull-quote-meta .quote-source-link:hover {
  color: var(--pink-light);
}

/* ===== TICKET BADGE ===== */

.ticket-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--pink);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

/* ===== FOOTER ENHANCEMENTS ===== */

.footer-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--pink-light);
}

.footer-legal {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--pink-light);
}

.footer-legal-sep {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ===== Age gate ===== */
.age-gate { display: none; }
.age-gate-active .age-gate {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20, 18, 24, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  animation: ageGateFade 0.25s ease;
}
.age-gate-active body {
  overflow: hidden;
}
@keyframes ageGateFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.age-gate-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: var(--space-8) var(--space-7);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(233, 30, 123, 0.2);
}
.age-gate-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--purple-dark);
  margin: 0 0 var(--space-4);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.age-gate-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0 0 var(--space-6);
}
.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.age-gate-yes,
.age-gate-no {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.age-gate-yes {
  background: var(--pink);
  color: var(--white);
}
.age-gate-yes:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}
.age-gate-no {
  background: transparent;
  color: var(--gray-500);
  border: 1px solid var(--gray-300);
}
.age-gate-no:hover {
  color: var(--gray-900);
  border-color: var(--gray-500);
}
.age-gate-fineprint {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin: var(--space-5) 0 0;
}

/* ===== Legal pages (contact / privacy / terms) ===== */
.legal-page {
  background: var(--cream);
  min-height: 100vh;
}

.legal-hero {
  padding: var(--space-11) var(--space-5) var(--space-7);
  text-align: center;
  background: linear-gradient(180deg, rgba(233, 30, 123, 0.08) 0%, rgba(108, 63, 199, 0.04) 60%, transparent 100%);
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--purple-dark);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}

.legal-hero .legal-meta {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin: 0;
  font-style: italic;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-5) var(--space-11);
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.7;
  font-size: 1rem;
}

.legal-content h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--purple-dark);
  margin: var(--space-8) 0 var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid rgba(233, 30, 123, 0.15);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 var(--space-4);
}

.legal-content a {
  color: var(--pink-dark);
  text-decoration: underline;
  text-decoration-color: rgba(233, 30, 123, 0.3);
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.legal-content a:hover {
  color: var(--purple);
  text-decoration-color: currentColor;
}

.legal-content ul {
  margin: 0 0 var(--space-5);
  padding-left: var(--space-5);
}

.legal-content li {
  margin-bottom: var(--space-2);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-5);
  font-size: 0.9375rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.legal-content th,
.legal-content td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-100);
}

.legal-content th {
  background: rgba(108, 63, 199, 0.06);
  font-weight: 600;
  color: var(--purple-dark);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.legal-content tr:last-child td {
  border-bottom: none;
}

.legal-callout {
  background: rgba(108, 63, 199, 0.06);
  border-left: 3px solid var(--purple);
  padding: var(--space-4) var(--space-5);
  margin: 0 0 var(--space-5);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-contact-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin: var(--space-5) 0;
  border: 1px solid rgba(108, 63, 199, 0.12);
}

.legal-contact-block p {
  margin: 0 0 var(--space-2);
}

.legal-contact-block p:last-child {
  margin-bottom: 0;
}

.legal-back {
  display: inline-block;
  margin-top: var(--space-6);
  font-size: 0.9375rem;
  color: var(--purple);
  font-weight: 500;
}

.legal-back:hover {
  color: var(--pink-dark);
}

.footer-refund {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-substack {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-substack a {
  color: var(--pink-light);
  font-weight: 600;
}

.footer-substack a:hover {
  color: var(--white);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .track-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .people-grid {
    gap: var(--space-4) var(--space-4);
  }

  .person {
    width: 100px;
  }

  .person-photo {
    width: 88px;
    height: 88px;
  }

  .ticket-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .principles-bar {
    gap: var(--space-5);
  }

  .principle-num {
    font-size: 1.25rem;
  }

  .principle-name {
    font-size: 0.875rem;
  }

  .carousel-item {
    width: 300px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-11: 4rem;
    --space-12: 6rem;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a {
    display: block;
    padding: var(--space-4) var(--space-5);
  }

  .nav-cta {
    margin: var(--space-2) var(--space-5);
    text-align: center;
  }

  /* Press logos */
  .press-logo {
    height: 18px;
  }

  .press-strip-logos {
    gap: var(--space-2) var(--space-4);
  }

  /* Hero */
  .hero {
    padding: var(--space-10) 0 var(--space-9);
  }

  .hero-layer,
  .pflip-layer {
    background-size: 180% auto;
  }


  .layer-1 { bottom: 100px; }
  .layer-2 { bottom: 118px; }
  .layer-3 { bottom: 140px; }
  .layer-4 { bottom: 168px; }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Grids */
  .track-grid,
  .ticket-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .patriarch-inner {
    flex-direction: column;
    gap: var(--space-5);
  }

  .patriarch-left {
    min-width: auto;
    width: 100%;
  }

  .ticket-patriarch.revealed {
    max-height: 900px;
  }

  .ticket-compare.revealed {
    max-height: 1200px;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-tier {
    font-size: 0.85rem;
  }

  .compare-feature {
    font-size: 0.8rem;
  }

  .principles-bar {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding-bottom: var(--space-5);
  }

  .definition-tooltip {
    width: 300px;
    padding: var(--space-4) var(--space-5);
    right: 50%;
    transform: translateX(50%) rotate(2deg) translateY(10px) scale(0.95);
  }

  .title-hint:hover ~ .definition-tooltip,
  .title-hint.active ~ .definition-tooltip {
    transform: translateX(50%) rotate(2deg) translateY(20px) scale(1);
  }

  .update-card {
    padding: var(--space-5);
  }

  .update-text:first-of-type::first-letter {
    font-size: 2.5rem;
  }

  .update-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .carousel-item {
    width: 260px;
    height: 190px;
  }

  .press-link {
    flex-wrap: wrap;
    gap: var(--space-1) var(--space-3);
  }

  .press-source {
    min-width: auto;
  }

  .press-headline {
    font-size: 1.05rem;
    flex-basis: 100%;
  }

  .people-grid {
    gap: var(--space-4) var(--space-3);
  }

  .person {
    width: 90px;
  }

  .person-photo {
    width: 78px;
    height: 78px;
  }

  .person-name {
    font-size: 0.8125rem;
  }

  /* Pull quotes */
  .pull-quotes {
    gap: var(--space-5);
  }

  .pull-quote-text {
    font-size: 1.0625rem;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: var(--space-5);
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-middle {
    order: -1;
  }
}

@media (max-width: 480px) {
  .press-logo {
    height: 14px;
  }

  .press-strip-logos {
    gap: var(--space-1) var(--space-3);
  }

  :root {
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 2rem;
  }

  body {
    font-size: 15px;
  }

  .people-grid {
    gap: var(--space-4) var(--space-2);
  }

  .person {
    width: 80px;
  }

  .person-photo {
    width: 70px;
    height: 70px;
  }

  .definition-tooltip {
    width: 260px;
    padding: var(--space-4);
    right: 50%;
    transform: translateX(50%) rotate(1deg) translateY(10px) scale(0.95);
  }

  .title-hint:hover ~ .definition-tooltip,
  .title-hint.active ~ .definition-tooltip {
    transform: translateX(50%) rotate(1deg) translateY(20px) scale(1);
  }

  .carousel-item {
    width: 240px;
    height: 170px;
  }

  .track-card,
  .ticket-card {
    padding: var(--space-5);
  }
}

/* ===== PRINT ===== */

@media print {
  nav, .hero-layers, .hero-cta, .cta, footer {
    display: none;
  }

  section {
    padding: 2rem 0;
    break-inside: avoid;
  }
}

/* ===== SCHEDULE ===== */
.schedule {
  background: #1a1525;
  color: var(--white);
  padding: var(--space-9) 0 var(--space-11);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.schedule-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 12px;
  align-items: center;
}
.schedule-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}
.swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
}
.swatch-all { background: rgba(108, 63, 199, 0.4); border: 1px solid rgba(108, 63, 199, 0.6); }
.swatch-ace { background: rgba(233, 30, 123, 0.35); border: 1px solid rgba(233, 30, 123, 0.55); }

.schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
}
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  table-layout: fixed;
  min-width: 700px;
}
.schedule-table thead th {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  padding: 4px 6px 6px;
  text-align: left;
}
.sch-time-th { width: 48px; }
.sch-time {
  font-family: var(--font-display);
  font-size: 0.625rem;
  color: var(--pink-light);
  text-align: right;
  padding: 5px 8px 5px 0;
  vertical-align: top;
  white-space: nowrap;
  width: 48px;
}
.sch-cell {
  background: rgba(108, 63, 199, 0.22);
  border-radius: 8px;
  padding: 5px 7px;
  vertical-align: top;
  border: 1px solid rgba(108, 63, 199, 0.28);
  transition: border-color 150ms ease, background 150ms ease;
}
.sch-cell:hover {
  border-color: rgba(108, 63, 199, 0.5);
  background: rgba(108, 63, 199, 0.3);
}
.sch-cell.sch-ace {
  background: rgba(233, 30, 123, 0.18);
  border-color: rgba(233, 30, 123, 0.25);
}
.sch-cell.sch-ace:hover {
  border-color: rgba(233, 30, 123, 0.45);
  background: rgba(233, 30, 123, 0.28);
}
.sch-cell.sch-ace .sch-p { color: var(--pink-light); }
.sch-cell.sch-party {  background: rgba(108, 63, 199, 0.22);  border-color: rgba(108, 63, 199, 0.3);}
.sch-cell.sch-party:hover {  border-color: rgba(108, 63, 199, 0.5);}
.sch-cell.sch-party .sch-t { color: #fff; font-size: 0.95rem; }
.sch-cell.sch-party .sch-p { color: rgba(255,255,255,0.5); }

.sch-empty {
  background: transparent;
  border: none;
}
.sch-meal {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 4px 8px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}
.sch-t {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
}
.sch-p {
  font-size: 0.625rem;
  font-weight: 500;
  color: #b8a0e8;
  margin-top: 1px;
  opacity: 0.9;
}

/* Jackpot card fixes */
.ticket-card-patriarch .ticket-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
}
.ticket-card-patriarch .ticket-price {
  line-height: 1.1;
}
.ticket-card-patriarch .ticket-discount {
  margin-top: var(--space-5);
  font-size: 0.75rem;
}
.ticket-card-patriarch .ticket-remaining {
  color: rgba(255,255,255,0.3);
}
.patriarch-left .btn-patriarch {
  width: 100%;
  margin-top: var(--space-5);
}
.ticket-card-patriarch .ticket-features li {
  font-size: 0.8125rem;
  line-height: 1.45;
  padding-left: var(--space-5);
}
.ticket-card-patriarch .ticket-features li:last-child {
  font-style: italic;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .schedule-table { min-width: 600px; }
  .sch-t { font-size: 0.6875rem; }
  .sch-cell { padding: 4px 5px; }
}

/* --- Ticket section vertical compression (keep reveal visible) --- */
.tickets {
  padding-top: var(--space-9);
  padding-bottom: var(--space-8);
}

.tickets .section-header {
  margin-bottom: var(--space-6);
}

.tickets .ticket-card {
  padding: var(--space-5) var(--space-6);
}

.tickets .ticket-header {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
}

.tickets .ticket-tier {
  font-size: 1.7rem;
  margin-bottom: var(--space-1);
}

.tickets .ticket-price {
  font-size: 1.85rem;
}

.tickets .price-original {
  font-size: 1.05rem;
  margin-bottom: -8px;
}

.tickets .ticket-features {
  gap: 4px;
  margin-bottom: var(--space-4);
}

.tickets .ticket-features li {
  font-size: 0.8rem;
  line-height: 1.4;
}

.tickets .ticket-reveal {
  margin-top: var(--space-5);
}
