/* ============================================================
   MONTEREY COMEDY IMPROV — style.css v2.0
   WPKoi-inspired: bold color blocks, geometric shapes,
   diagonal sections, animated counters, strong typography.
   Primary: #64479C purple. White + deep dark accents.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Mono:wght@400;500&display=swap');

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #1a0e2e;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --purple:     #64479C;
  --purple-2:   #7B5CB5;
  --purple-3:   #9B7FCC;
  --purple-dk:  #3D2A6B;
  --purple-xdk: #fff4e8;
  --rust:       #9B3426;
  --terra:      #D86854;
  --mauve:      #B0A8BA;
  --ink:        #1a0e2e;
  --white:      #FFFFFF;
  --offwhite:   #F8F5FF;
  --light-purple: #EEE8FA;
  --mid:        #7B7484;

  --ff-display: 'Bebas Neue', Impact, sans-serif;
  --ff-body:    'Outfit', sans-serif;
  --ff-mono:    'DM Mono', monospace;

  --max: 1140px;
  --r:   3px;
  --ease: cubic-bezier(.22,.68,0,1.2);
}

/* ── UTILITIES ───────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.tag {
  display: inline-block;
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--terra); color: #fff;
  padding: .3rem .8rem; border-radius: 2px;
  margin-bottom: .9rem;
}
.tag-outline { background: transparent; border: 1.5px solid currentColor; color: var(--purple-3); }
.tag-white { background: rgba(255,255,255,.2); color: #fff; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2.2rem; border-radius: var(--r);
  font-family: var(--ff-body); font-size: .82rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }
.btn-purple { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-purple:hover { background: var(--purple-2); border-color: var(--purple-2); }
.btn-white  { background: #fff; color: var(--purple); border-color: #fff; }
.btn-white:hover { background: var(--offwhite); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-purple { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline-purple:hover { background: var(--purple); color: #fff; }
.btn-terra { background: var(--terra); color: #fff; border-color: var(--terra); }
.btn-terra:hover { background: var(--rust); border-color: var(--rust); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: .9rem; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--purple-xdk);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.35); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 3.8vw, 1.55rem); letter-spacing: .04em;
  color: #1e1233; line-height: 1; flex-shrink: 1; min-width: 0;
}
.nav-logo-img { height: clamp(40px, 9vw, 80px); width: auto; display: block; flex-shrink: 0; margin-top: -10px; }
.nav-logo-text span { color: #64479c; }
.nav-links { display: flex; gap: 0; }
.nav-links a {
  display: block; padding: .5rem 1.1rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #1e1233;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--terra);
  transition: left .2s, right .2s;
}
.nav-links a:hover, .nav-links a.active { color: #2E5FA3; }
.nav-links a:hover::after, .nav-links a.active::after { left: 1.1rem; right: 1.1rem; }
.nav-cta { flex-shrink: 0; padding: .55rem 1.4rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: #0F1F3D;
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ───────────────────────────────────── */
.nav-drawer {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--purple-xdk); z-index: 299;
  padding: 3rem 2rem; flex-direction: column; gap: 1.5rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a:not(.btn) {
  font-family: var(--ff-display); font-size: 2.5rem;
  color: var(--terra); letter-spacing: .06em; transition: color .2s;
}
.nav-drawer a:not(.btn):hover { color: var(--rust); }
.nav-drawer .btn { color: #fff; }
.nav-drawer .btn:hover { color: rgba(255,255,255,.75); }
.nav-drawer .btn { align-self: flex-start; margin-top: 1rem; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  padding-top: 68px; overflow: hidden;
  background: var(--purple-dk);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/MCI-Wharf-5.jpg') center/cover no-repeat;
  opacity: .42; transform: scale(1.04); transition: transform 10s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-shape {
  position: absolute; right: -120px; top: 68px; bottom: 0; width: 52%;
  background: var(--purple);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: .75;
}
.hero-shape-2 {
  position: absolute; right: 0; bottom: 0; width: 30%; height: 45%;
  background: var(--terra); opacity: .5;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 6rem 2rem 7rem;
  display: block;
}
.hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--terra);
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--terra); }
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 9vw, 8rem); line-height: .9;
  color: #fff; letter-spacing: .01em; margin-bottom: 1.5rem;
}
.hero-h1 .accent { color: var(--terra); display: block; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.75); font-weight: 300;
  line-height: 1.7; max-width: 420px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 1rem; }
.hero-btns .btn { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); padding: .85rem 1.5rem; font-size: .78rem; }
.hero-btns .btn:hover { background: var(--terra); border-color: var(--terra); color: #fff; }
.hero-left { max-width: 680px; }
.hero-right { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-left: 4px solid var(--terra); border-radius: var(--r);
  padding: 1.5rem 1.75rem; backdrop-filter: blur(10px);
  transition: background .2s, transform .2s;
  cursor: pointer; text-decoration: none; display: block; color: #fff;
}
.hero-card:hover { background: rgba(255,255,255,.14); transform: translateX(6px); }
.hero-card-tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--terra); margin-bottom: .4rem;
}
.hero-card-title {
  font-family: var(--ff-display); font-size: 1.8rem; line-height: 1;
  color: #fff; margin-bottom: .5rem;
}
.hero-card-desc { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ── HERO SPOTLIGHT CANVAS ───────────────────────────────── */
#spotlight-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

/* ── HERO CARD FLOAT ─────────────────────────────────────── */
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hero-card:nth-child(1),
.hero-card:nth-child(2),
.hero-card:nth-child(3) { animation: none; }
.hero-card:hover        { animation-play-state: paused; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--purple); padding: 3.5rem 0; position: relative; z-index: 2; }
.stats-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
}
.stat {
  text-align: center; padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.5rem); color: #fff; line-height: 1; display: block;
}
.stat-label {
  font-size: .7rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .4rem;
}

/* ── SECTION COMMON ──────────────────────────────────────── */
.section-head { margin-bottom: 3.5rem; }
.section-h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: .95;
  color: var(--ink); letter-spacing: .02em;
}
.section-h2.white { color: #fff; }
.section-body {
  font-size: 1rem; color: var(--mid); line-height: 1.7;
  margin-top: .75rem; max-width: 520px;
}
.section-body.white { color: rgba(255,255,255,.7); }

/* ── SERVICES ────────────────────────────────────────────── */
.services { padding: 7rem 0; background: var(--offwhite); position: relative; z-index: 1; }
.services::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  border: 80px solid rgba(100,71,156,.06);
  right: -200px; top: -100px; pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.service-card {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--purple); color: #fff; padding: 3rem 2.5rem 2.5rem;
  transition: transform .25s var(--ease), box-shadow .25s;
  text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 340px;
}
.service-card::before { content: none; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(61,42,107,.35); }
.service-card-num {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--ff-display); font-size: 7rem;
  color: rgba(255,255,255,.1); line-height: 1; pointer-events: none;
}
.service-card-tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--terra); margin-bottom: .6rem; position: relative;
}
.service-card-title {
  font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: .95; color: #fff; margin-bottom: .8rem; position: relative;
}
.service-card-body {
  font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.65;
  margin-bottom: 1.5rem; position: relative; max-width: 360px;
}
.service-card-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; position: relative;
  border-bottom: 1.5px solid rgba(255,255,255,.4);
  padding-bottom: 2px; transition: gap .2s;
}
.service-card:hover .service-card-arrow { gap: .9rem; }

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-strip { background: var(--ink); padding: 7rem 0; position: relative; overflow: hidden; z-index: 1; }
.about-strip::after {
  content: 'IMPROV'; position: absolute;
  font-family: var(--ff-display); font-size: 18rem; line-height: 1;
  color: rgba(255,255,255,.02); right: -2rem; top: 50%;
  transform: translateY(-50%); pointer-events: none; letter-spacing: .05em;
}
.about-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
.about-img-wrap::before {
  content: ''; position: absolute;
  width: 75%; height: 75%; background: var(--purple); border-radius: 4px;
  bottom: -16px; right: -16px; z-index: -1;
}
.about-img-wrap::after {
  content: ''; position: absolute;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--terra); top: -20px; left: -20px; z-index: -1;
}
.about-text .section-h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 2.6rem); }
.about-text .section-body { color: rgba(255,255,255,.65); max-width: 100%; }
.about-text .section-body + .section-body { margin-top: .75rem; }
.about-quote {
  border-left: 4px solid var(--purple); padding-left: 1.25rem;
  margin: 1.75rem 0; font-style: italic;
  font-size: .95rem; color: rgba(255,255,255,.55); line-height: 1.7;
}

/* ── KUDOS ───────────────────────────────────────────────── */
.kudos-section { background: #fef6ff; padding: 7rem 0; position: relative; overflow: hidden; }
.kudos-section .section-h2 { color: var(--ink); }
.kudos-carousel { max-width: 720px; margin: 3rem auto 0; }
.kudo-slide { display: none; background: #fef6ff; border-radius: 4px; padding: 3.5rem 3rem; text-align: center; opacity: 0; transition: opacity .6s ease; }
.kudo-slide.active { display: block; }
.kudo-slide.visible { opacity: 1; }
.kudo-mark { font-family: 'Georgia', serif; font-size: 4rem; color: var(--terra); line-height: .6; display: block; margin-bottom: .75rem; }
.kudo-mark-close { line-height: 1; margin-bottom: .75rem; margin-top: 0; }
.kudo-text { font-size: 1.75rem; color: #3b2466; font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; }
.kudo-name { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #3b2466; }
.kudos-dots { display: flex; justify-content: center; gap: .6rem; margin-top: 1.75rem; }
.kudos-dot { width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer; background: rgba(100,71,156,.2); transition: background .2s; padding: 0; }
.kudos-dot.active { background: var(--purple); }

/* ── SUGGESTIONS TICKER ──────────────────────────────────── */
.suggestions-ticker { background: var(--terra); overflow: hidden; padding: .65rem 0; }
.ticker-track { display: flex; align-items: center; width: max-content; animation: ticker-scroll 130s linear infinite; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; padding: 0 1rem; white-space: nowrap; }
.ticker-sep { color: rgba(255,255,255,.6); font-size: .55rem; flex-shrink: 0; }

/* ── PAGE HERO (interior pages) ──────────────────────────── */
.page-hero {
  background: var(--purple);
  padding-top: calc(68px + 5rem); padding-bottom: 9vw;
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  min-height: 360px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/MCI-Wharf-5.jpg') center 20%/cover;
  opacity: .12;
}
.page-hero::after {
  content: attr(data-title);
  font-family: var(--ff-display); font-size: 16rem;
  color: rgba(255,255,255,.04); position: absolute;
  right: -1rem; bottom: 1rem; line-height: 1;
  pointer-events: none; letter-spacing: .03em;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(3.5rem, 8vw, 7rem); color: #fff; line-height: .9; letter-spacing: .02em; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 560px; line-height: 1.7; margin-top: 1rem; }
.page-hero .tag { margin-bottom: 1rem; }

/* ── SHOW CALENDAR ───────────────────────────────────────── */
.show-calendar-section { padding: 5rem 0 6rem; background: var(--offwhite); margin-top: -1px; position: relative; z-index: 2; }
.cal-wrap { max-width: 500px; margin: 2.5rem auto 0; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.cal-nav { background: none; border: 2px solid var(--purple); color: var(--purple); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; line-height: 1; }
.cal-nav:hover { background: var(--purple); color: #fff; }
.cal-month-label { font-family: var(--ff-display); font-size: 1.8rem; color: var(--ink); letter-spacing: .04em; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-name { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); text-align: center; padding: .5rem 0; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: .85rem; font-weight: 500; color: var(--ink); }
.cal-day.show-day { background: var(--purple); color: #fff; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s; }
.cal-day.show-day:hover { background: var(--purple-2); transform: scale(1.08); }
.cal-day.today { box-shadow: inset 0 0 0 2px var(--terra); border-radius: 4px; }
.cal-legend { display: flex; align-items: center; gap: .6rem; margin-top: 1.25rem; font-size: .75rem; color: var(--mid); }
.cal-legend-swatch { width: 14px; height: 14px; background: var(--purple); border-radius: 3px; flex-shrink: 0; }
.cal-show-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.cal-show-item { display: flex; flex-direction: column; gap: .15rem; padding: .75rem 1rem; background: var(--offwhite); border-left: 3px solid var(--purple); border-radius: 0 4px 4px 0; }
.cal-show-date { font-family: var(--ff-display); font-size: .95rem; color: var(--ink); font-weight: 700; letter-spacing: .02em; }
.cal-show-detail { font-size: .8rem; color: var(--mid); }
.cal-show-address { font-size: .75rem; color: var(--mid); opacity: .75; }

/* ── SHOWS ───────────────────────────────────────────────── */
.show-feature { padding: 7rem 0; background: var(--offwhite); margin-top: -1px; position: relative; z-index: 2; }
.show-feature-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.show-img-wrap { position: relative; }
.show-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 4px; }
.show-img-badge {
  position: absolute; bottom: -20px; left: 2rem;
  background: var(--purple); color: #fff; border-radius: 4px; padding: 1.25rem 2rem; text-align: center;
}
.show-img-badge-big { font-family: var(--ff-display); font-size: 2.2rem; line-height: 1; display: block; }
.show-img-badge-sub { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .15rem; }
.show-meta-row { display: flex; gap: 2.5rem; flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid rgba(0,0,0,.1); border-bottom: 1px solid rgba(0,0,0,.1); margin: 1.5rem 0; }
.show-meta dt { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: .25rem; }
.show-meta dd { font-size: .95rem; font-weight: 600; color: var(--ink); }
.show-body { font-size: .95rem; color: var(--mid); line-height: 1.75; margin-bottom: 2rem; }
.show-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Photos grid */
.photos-section { padding: 5rem 0; background: #fff; }
.photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1rem; margin-top: 2.5rem; }
.photos-grid img { width: 100%; object-fit: cover; border-radius: 4px; transition: transform .35s var(--ease), box-shadow .35s; }
.photos-grid img:hover { transform: scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.photos-grid img:first-child { grid-column: 1 / span 2; aspect-ratio: 16/9; }
.photos-grid img:not(:first-child) { aspect-ratio: 4/3; }

/* Venues */
.venues-section { background: var(--ink); padding: 5rem 0; }
.venues-section .section-h2 { color: #fff; }
.venues-section .tag { background: var(--terra); }
.venue-list { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.venue-chip {
  font-size: .8rem; font-weight: 600;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); padding: .5rem 1.1rem;
  border-radius: 50px; transition: background .2s, color .2s;
}
.venue-chip:hover { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ── PLAYER CARDS ────────────────────────────────────────── */
.players-section { padding: 7rem 0; background: #fff; }
.players-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.player-card {
  background: var(--offwhite); border-radius: 4px; overflow: hidden; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.player-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(100,71,156,.2); }
.player-card-accent { height: 5px; background: var(--purple); transition: background .3s; }
.player-card:hover .player-card-accent { background: var(--terra); }
.player-card-body { padding: 1.5rem 1.25rem 1.25rem; }
.player-initials {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--purple); color: #fff;
  font-family: var(--ff-display); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: .9rem;
}
.player-name { font-family: var(--ff-display); font-size: 1.25rem; color: var(--ink); letter-spacing: .03em; margin-bottom: .15rem; }
.player-role { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--terra); margin-bottom: .75rem; }
.player-bio { font-size: .8rem; color: var(--mid); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .3s; opacity: 0; }
.player-card:hover .player-bio, .player-card.open .player-bio { max-height: 200px; opacity: 1; }

/* ── PLAYER HIGHLIGHT CARD (shows page) ─────────────────── */
.player-highlight-card {
  max-width: 680px;
  margin: 2.5rem auto 0;
  background: var(--offwhite);
  border: 1px solid #e8e0f5;
  border-left: 5px solid var(--purple);
  border-radius: var(--r);
  padding: 2.5rem 3rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  animation: highlight-in .45s var(--ease) both;
}
@keyframes highlight-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.player-highlight-initials {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--purple); color: #fff;
  font-family: var(--ff-display); font-size: 1.9rem;
  display: flex; align-items: center; justify-content: center;
}
.player-highlight-name {
  font-family: var(--ff-display);
  font-size: 2rem; line-height: 1;
  color: var(--ink); letter-spacing: .03em;
  margin-bottom: .3rem;
}
.player-highlight-role {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--terra); margin-bottom: .9rem;
}
.player-highlight-bio {
  font-size: .9rem; color: var(--mid); line-height: 1.72;
}
@media (max-width: 560px) {
  .player-highlight-card { flex-direction: column; gap: 1.25rem; padding: 1.75rem; }
}

/* ── FULL BIO LIST (players page) ────────────────────────── */
.bio-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #e8e0f5; border: 1px solid #e8e0f5; margin-top: 4rem; }
.bio-item { background: #fff; padding: 2.5rem; transition: background .2s; }
.bio-item:hover { background: var(--offwhite); }
.bio-initials { display: none; }
.bio-name { font-family: var(--ff-display); font-size: 1.5rem; color: var(--ink); letter-spacing: .03em; margin-bottom: .2rem; }
.bio-role { font-size: .63rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--terra); margin-bottom: .75rem; }
.bio-text { font-size: .875rem; color: var(--mid); line-height: 1.72; }

/* ── CLASSES PAGE ────────────────────────────────────────── */
.classes-intro { padding: 6rem 0 4rem; background: #fff; margin-top: -1px; position: relative; z-index: 2; }
.class-cards-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.class-card { border-radius: 4px; overflow: hidden; border: 2px solid #e8e0f5; transition: border-color .2s, transform .25s var(--ease), box-shadow .25s; position: relative; }
.class-card:hover { border-color: var(--purple); transform: translateY(-5px); box-shadow: 0 18px 45px rgba(100,71,156,.18); }
.class-card.featured { border-color: var(--purple); box-shadow: 0 8px 30px rgba(100,71,156,.2); }
.class-card-top { background: var(--purple); padding: 2rem 2rem 1.75rem; position: relative; overflow: hidden; }
.class-card.featured .class-card-top { background: var(--purple-dk); }
.class-card-top::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.06); right: -40px; bottom: -60px; }
.class-card-top .class-day { font-size: .63rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: .4rem; }
.class-card-top .class-name { font-family: var(--ff-display); font-size: 2rem; color: #fff; line-height: 1; margin-bottom: .35rem; }
.class-card-top .class-time { font-family: var(--ff-mono); font-size: .82rem; color: rgba(255,255,255,.6); }
.class-featured-badge { position: absolute; top: 1rem; right: 1rem; background: var(--terra); color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 2px; }
.class-card-body { padding: 1.75rem 2rem; }
.class-desc { font-size: .88rem; color: var(--mid); line-height: 1.65; margin-bottom: 1.5rem; }
.class-price-block { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.25rem; }
.class-price { font-family: var(--ff-display); font-size: 2.8rem; color: var(--purple); line-height: 1; }
.class-price-note { font-size: .8rem; color: var(--mid); }

/* Benefits */
.benefits-section { background: var(--purple); padding: 7rem 0; position: relative; overflow: hidden; }
.benefits-section::before { content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%; border: 80px solid rgba(255,255,255,.05); right: -200px; bottom: -200px; }
.benefits-section .section-h2 { color: #fff; }
.benefits-section .tag { background: rgba(255,255,255,.2); color: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.benefit-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 4px; padding: 2rem 1.75rem; transition: background .2s, transform .25s var(--ease); }
.benefit-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.benefit-icon { width: 48px; height: 48px; border-radius: 8px; background: rgba(255,255,255,.15); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.benefit-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.benefit-desc { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* RSVP block */
.rsvp-block { background: var(--ink); padding: 5rem 0; }
.rsvp-inner { max-width: var(--max); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.rsvp-title { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1; margin-bottom: .5rem; }
.rsvp-info { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.rsvp-info a { color: var(--terra); }
.rsvp-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-body { padding: 6rem 0; background: #fff; margin-top: -1px; z-index: 2; position: relative; }
.contact-grid { max-width: var(--max); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
.contact-item { margin-bottom: 1.75rem; }
.contact-item-label { font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); margin-bottom: .3rem; }
.contact-item-val { font-size: .95rem; color: var(--ink); }
.contact-item-val a { color: var(--purple); }
.contact-item-val a:hover { text-decoration: underline; }
.social-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; }
.social-btn { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--light-purple); color: var(--purple); border: none; padding: .5rem 1rem; border-radius: 2px; cursor: pointer; transition: background .2s, color .2s; text-decoration: none; display: inline-block; }
.social-btn:hover { background: var(--purple); color: #fff; }
.contact-form-wrap h3 { font-family: var(--ff-display); font-size: 2rem; color: var(--ink); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); }
.form-group input, .form-group textarea, .form-group select { background: var(--offwhite); border: 2px solid #e8e0f5; border-radius: var(--r); font-family: var(--ff-body); font-size: .92rem; color: var(--ink); padding: .75rem 1rem; outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple); background: #fff; }
.form-group textarea { resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--mauve); }
.form-success-msg { display: none; background: #eefaf4; border: 2px solid #6FCF97; border-radius: var(--r); padding: .9rem 1.25rem; font-size: .88rem; color: #1a6b3c; font-weight: 600; margin-top: .5rem; }
.form-check-group { margin-bottom: 1.25rem; }
.form-check-label { display: flex; align-items: flex-start; gap: .65rem; cursor: pointer; }
.form-check-label input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 1.1rem; height: 1.1rem; min-width: 1.1rem; border: 2px solid #e8e0f5; border-radius: 3px; background: #fff; margin-top: .15rem; cursor: pointer; transition: border-color .2s, background .2s; }
.form-check-label input[type="checkbox"]:checked { background: var(--purple); border-color: var(--purple); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 65%; }
.form-check-label span { font-size: .82rem; color: var(--mid); line-height: 1.55; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--purple-xdk); padding: 5rem 0 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 2rem 3rem; display: grid; grid-template-columns: 2fr auto; gap: 4rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 70px; width: auto; display: block; }
.footer-desc { font-size: .85rem; color: #1e1233; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .63rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #1e1233; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .88rem; color: #1e1233; transition: color .2s; }
.footer-col a:hover { color: var(--terra); }
.footer-social-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .25rem; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: rgba(100,71,156,.12); color: #1e1233; font-size: .95rem; transition: background .2s, color .2s; text-decoration: none; }
.footer-social-link:hover { background: var(--purple); color: #fff; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .75rem; color: #1e1233; font-family: var(--ff-mono); }

/* ── CONTACT ANCHOR ──────────────────────────────────────── */
#contact-form-wrap { scroll-margin-top: 90px; }

/* ── TICKET MODAL ────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-card { background: #fff; border-radius: 6px; max-width: 540px; width: 100%; padding: 2.5rem; position: relative; max-height: 90vh; overflow-y: auto; border-top: 4px solid var(--terra); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.modal-card-title { font-family: var(--ff-display); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--ink); margin-bottom: .4rem; }
.modal-card-sub { font-size: .88rem; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.65; }
.modal-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; font-size: 1.75rem; line-height: 1; color: var(--mid); cursor: pointer; padding: 0; }
.modal-close:hover { color: var(--ink); }

/* ticket show list */
.ticket-show-row { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: .75rem 0; flex-wrap: wrap; }
.ticket-show-info { display: flex; flex-direction: column; gap: .25rem; flex: 1; min-width: 0; }
.ticket-show-date { font-weight: 700; font-size: 1rem; color: var(--ink); }
.ticket-show-venue { font-size: .88rem; color: var(--mid); }
.tickets-divider { border: none; border-top: 1px solid var(--offwhite); margin: 0; }
.tickets-back-btn { background: none; border: none; color: var(--purple); font-family: var(--ff-body); font-size: .88rem; font-weight: 600; cursor: pointer; padding: 0 0 1rem 0; display: inline-flex; align-items: center; gap: .3rem; }
.tickets-back-btn:hover { color: var(--purple-2); }

/* calendar ticket link */
.cal-show-ticket-btn { display: inline-block; margin-top: .6rem; font-size: .8rem; font-weight: 700; color: var(--terra); border: 1.5px solid var(--terra); border-radius: 3px; padding: .3rem .75rem; transition: background .15s, color .15s; }
.cal-show-ticket-btn:hover { background: var(--terra); color: #fff; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.up { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.up { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-inner { padding: 0 1rem; gap: .5rem; }
}

@media (max-width: 960px) {
  .hero-bg { opacity: .18; }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(28, 10, 46, .55); z-index: 0; pointer-events: none;
  }
  .nav-links, .nav-cta { display: none; }
  .hero-btns { flex-direction: column; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 6rem; }
  .hero-shape { width: 70%; }
  .hero-right { display: none; }
  .hero-h1 { font-size: clamp(4rem, 12vw, 6rem); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,.15); }
  .services-grid { grid-template-columns: 1fr; max-width: 440px; }
  .service-card { min-height: 260px; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 500px; }
  .kudos-grid { grid-template-columns: 1fr 1fr; }
  .show-feature-inner { grid-template-columns: 1fr; gap: 3rem; }
  .photos-grid { grid-template-columns: 1fr 1fr; }
  .photos-grid img:first-child { grid-column: 1 / span 2; }
  .players-grid { grid-template-columns: repeat(2, 1fr); }
  .class-cards-wrap { grid-template-columns: 1fr; max-width: 440px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr auto; gap: 2.5rem; }
  .bio-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: 3.5rem; }
  .kudos-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .players-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inner, .rsvp-inner { flex-direction: column; align-items: flex-start; }
  .page-hero::after { display: none; }
}
