:root {
  --bg: #f6f8fc;
  --bg-soft: #eef4ff;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --ink: #0b1324;
  --ink-2: #1e2a3d;
  --muted: #607086;
  --line: #dfe6ef;
  --line-strong: #cfd9e7;
  --blue-deep: #0d3fd1;
  --blue-2: #38a7ff;
  --blue-soft: #eaf2ff;
  --blue-wash: #f3f7ff;
  --white: #fff;
  --shadow: 0 24px 70px rgba(16,37,72,.11);
  --shadow-sm: 0 12px 34px rgba(16,37,72,.08);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;

  /* Customizer variables (overridden via inline CSS from PHP) */
  --color-primary: #1556ff;
  --color-primary-deep: #0d3fd1;
  --color-accent: #38a7ff;
  --color-bg: #f6f8fc;
  --color-text: #0b1324;
  --color-muted: #607086;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--color-bg); overflow-x: hidden !important;}
body {
  margin: 0;
  overflow-x: hidden !important;
  background: linear-gradient(180deg, #fff 0, #f8faff 44%, #f4f7fb 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--color-primary); color: white; }
:focus-visible { outline: 3px solid rgba(21,86,255,.28); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 62px 0; }

/* Eyebrow labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid #cfe0ff;
  background: #f2f7ff;
  border-radius: 999px;
  color: #1556cc;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(56,167,255,.12);
}

/* Typography */
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.08;
  letter-spacing: -.062em;
  margin-bottom: 24px;
  max-width: 900px;
  color: var(--color-text);
  font-family: var(--font-heading);
}
h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.047em;
  margin-bottom: 18px;
  color: var(--color-text);
  font-family: var(--font-heading);
}
h3 { font-size: 1.24rem; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 10px; color: var(--color-text); }
p { color: var(--color-muted); }
.lead { font-size: clamp(1.04rem, 1.8vw, 1.22rem); max-width: 700px; color: #53647b; }
.gradient-text {
  background: linear-gradient(100deg, #163f9c 0%, #2379ea 45%, var(--color-primary) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
  color: #fff;
  box-shadow: 0 14px 34px rgba(21,86,255,.22);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(21,86,255,.3); }
.btn-secondary {
  background: #fff;
  border-color: #d9e2ee;
  color: #172237;
  box-shadow: 0 8px 22px rgba(22,45,79,.06);
}
.btn-secondary:hover { background: #f8fbff; border-color: #bfd1eb; color: #0f4fd7; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #1357cf; font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* =====================
   DEMO NOTICE BAR
   ===================== */
.demo-note {
  padding: 9px 16px;
  background: linear-gradient(90deg, #1142c9, #175cfa);
  color: white;
  text-align: center;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.demo-note:empty { display: none; }

/* =====================
   HEADER / NAVIGATION
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(204,215,229,.78);
  box-shadow: 0 4px 22px rgba(26,49,82,.035);
}
.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 170px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 5px 9px rgba(10,34,78,.06));
}
.brand-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -.03em;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: #536074;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 700;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: #0d3fae; background: #eff5ff; }
.nav-cta {
  margin-left: 8px !important;
  background: #111b2c !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(17,27,44,.13);
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--color-primary) !important; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d9e2ee;
  background: #fff;
  border-radius: 14px;
  color: #14213a;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 18px rgba(25,47,80,.07);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  padding: 68px 0 84px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f8fbff 48%, #edf5ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  left: -220px;
  top: -190px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,86,255,.13), rgba(56,167,255,.04) 48%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,167,255,.13), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { padding: 36px 0; }
.hero-copy .lead { margin-bottom: 0; }
.hero-media { position: relative; aspect-ratio: 4/5; min-height: 0; }
.hero-card {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(185,204,228,.9);
  border-radius: 38px;
  overflow: hidden;
  background: #e9eef5;
  box-shadow: 0 28px 75px rgba(15,45,91,.18);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
  border-radius: inherit;
  pointer-events: none;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(10,24,48,.54) 100%);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 17px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 18px 44px rgba(6,26,62,.18);
}
.hero-badge strong { font-size: 1.04rem; color: #111b2c; }
.hero-badge small { display: block; color: #627188; line-height: 1.42; margin-top: 2px; }
.price-badge { 
	flex: 0 0 auto; 
	min-width: 100px; 
	height: 100px; 
	padding: 30px 14px; 
	border-radius: 999px; 
	display: grid; 
	place-items: center; 
	text-align: center; 
	background: linear-gradient(145deg, var(--color-primary), var(--color-primary-deep)); 
	color: #fff; 
	font-weight: 900; 
	font-size: 1.05rem; 
	letter-spacing: -.01em; 
	line-height: 1; 
	white-space: nowrap; 
	box-shadow: 0 10px 25px rgba(21, 86, 255, .28); 
}
.price-badge span { font-size: .64rem; display: block; margin-top: 4px; letter-spacing: .02em; white-space: normal; }

/* Video Demo */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #dce8ff, #c7d8f5);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  background: #000;
}
.video-wrap .video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: #7a9cc4;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Stat Strip */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
.stat {
  padding: 17px 18px;
  border-radius: 18px;
  border: 1px solid #dce6f3;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(31,58,96,.055);
}
.stat strong { display: block; font-size: .98rem; color: #101a2c; }
.stat span { font-size: .82rem; color: #68788d; line-height: 1.4; display: block; margin-top: 3px; }

/* =====================
   SECTION LAYOUT
   ===================== */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 40px;
}
.section-head p { max-width: 560px; margin-bottom: 6px; color: #64748a; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* =====================
   CARDS
   ===================== */
.card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  padding: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: #bdd3f3; box-shadow: 0 18px 42px rgba(16,49,96,.1); }

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  border: 1px solid #d6e6ff;
  margin-bottom: 22px;
  color: #1760da;
}
.icon-box svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-number { font-size: .79rem; font-weight: 900; letter-spacing: .11em; color: #1765da; text-transform: uppercase; margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* Venue Cards */
.venue-card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, #fff, #f6f9ff);
}
.venue-card::before {
  content: "";
  position: absolute;
  inset: auto -54px -80px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,86,255,.13), transparent 67%);
}
.tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f6ff;
  border: 1px solid #dae7fa;
  color: #45617f;
  font-size: .74rem;
  font-weight: 750;
  margin-bottom: 34px;
}

/* Program Cards */
.program-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 410px; padding: 0; background: #fff; }
.program-image { position: relative; min-height: 330px; overflow: hidden; }
.program-image img { width: 100%; height: 100%; object-fit: cover; }
.program-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 66%, rgba(255,255,255,.5));
}
.program-copy { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.program-copy .tag { margin-bottom: 18px; }

/* Poster Grid */
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.poster-card {
  border-radius: 26px;
  border: 1px solid #dce4ee;
  padding: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.poster-card:hover { transform: translateY(-4px); border-color: #b9d1f4; box-shadow: 0 18px 42px rgba(16,49,96,.11); }
.poster-card img { aspect-ratio: 2/3; object-fit: cover; width: 100%; border-radius: 18px; background: #edf1f6; }
.poster-card footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 7px 4px; color: #172237; }
.poster-card footer span { font-size: .84rem; color: #69798e; }

/* =====================
   CTA BAND
   ===================== */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid #cbdcf7;
  background: linear-gradient(120deg, #edf4ff, #ffffff 56%, #f2f8ff);
  padding: 50px;
  box-shadow: var(--shadow-sm);
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,167,255,.16), transparent 65%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 790px; }
.cta-band p { max-width: 650px; }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  border-top: 1px solid #dce4ee;
  padding: 58px 0 26px;
  background: linear-gradient(180deg, #f8fbff, #eef3f9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .75fr;
  gap: 44px;
  padding-bottom: 42px;
}
.footer-brand img { width: 190px; max-height: 90px; object-fit: contain; object-position: left center; margin-bottom: 14px; }
.footer-brand-name { font-size: 1.5rem; font-weight: 900; color: var(--color-text); margin-bottom: 14px; }
.footer-brand p { max-width: 430px; }
.footer-title { color: #142039; font-weight: 900; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #5b6c82; transition: color .2s; }
.footer-links a:hover { color: var(--color-primary); }
.footer-links span { color: #5b6c82; }
.footer-bottom {
  border-top: 1px solid #d9e2ed;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #6f7e91;
  font-size: .84rem;
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  padding: 72px 0 68px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, #f1f6ff);
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,86,255,.13), transparent 68%);
  right: -160px;
  top: -245px;
}
.page-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; position: relative; }
.page-hero h1 { font-size: clamp(3rem, 5.2vw, 5.2rem); }
.page-media {
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #d7e1ed;
  box-shadow: 0 26px 70px rgba(16,44,86,.16);
  background: #e9eef5;
}
.page-media img { width: 100%; height: 100%; object-fit: cover; }
.pill-row { display: flex; gap: 9px; flex-wrap: wrap; margin: 23px 0 0; }
.pill { padding: 9px 12px; border-radius: 999px; border: 1px solid #dbe4ef; background: #fff; color: #4f6076; font-size: .81rem; font-weight: 700; box-shadow: 0 5px 16px rgba(29,54,91,.04); }

/* Audience grid (Partners page) */
.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.audience {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 165px;
  box-shadow: 0 10px 28px rgba(31,58,96,.055);
}
.audience > span:first-child { color: #1763db; font-weight: 900; font-size: .78rem; }
.audience strong { display: block; margin-top: 18px; color: #121c2f; }
.audience strong + span { color: var(--color-muted); font-size: .85rem; }

/* Inquiry Form */
.form-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 24px; align-items: start; }
.form-info {
  padding: 38px;
  border-radius: 28px;
  border: 1px solid #d6e4f8;
  background: linear-gradient(160deg, #eef5ff, #fff);
  position: sticky;
  top: 112px;
  box-shadow: var(--shadow-sm);
}
.contact-lines { display: grid; gap: 12px; margin-top: 26px; }
.contact-line { display: flex; gap: 12px; align-items: center; color: #263a54; font-weight: 700; }
.contact-dot {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eaf2ff;
  display: grid;
  place-items: center;
  color: #1556d4;
  flex: 0 0 auto;
  border: 1px solid #d5e5ff;
}
.contact-dot svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.form-card { padding: 34px; border-radius: 28px; border: 1px solid #dbe3ed; background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .83rem; font-weight: 750; color: #34435a; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd9e6;
  background: #fbfcfe;
  color: #152137;
  border-radius: 15px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input::placeholder, textarea::placeholder { color: #94a1b3; }
textarea { min-height: 145px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: #4c83f5;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21,86,255,.11);
}
.form-note { font-size: .78rem; color: #7c899b; margin: 12px 0 0; }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
details { border: 1px solid var(--line); background: #fff; border-radius: 18px; padding: 0 20px; box-shadow: 0 8px 22px rgba(31,58,96,.045); }
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 750;
  color: #1b2940;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; color: #1763db; }
details[open] summary::after { content: "–"; }
details p { padding: 0 0 20px; margin: 0; }

/* Form success message */
.form-success {
  text-align: center;
  padding: 40px;
  background: #f0fff4;
  border: 1px solid #b2f5c0;
  border-radius: 20px;
  color: #1a6b2f;
}
.form-success h3 { color: #1a6b2f; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1020px) {
  .hero-grid, .page-hero-grid, .form-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .hero-copy { padding-bottom: 4px; }
  .hero-media { width: min(100%, 720px); aspect-ratio: 16/10; margin-inline: auto; }
  .page-media { width: min(100%, 760px); margin-inline: auto; aspect-ratio: 16/10; }
  .form-info { position: static; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
}
@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .section-sm { padding: 48px 0; }
  .nav-wrap { height: 74px; }
  .brand img { width: 148px; height: 56px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 9px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(255,255,255,.98);
    border: 1px solid #d9e3ee;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(14,35,68,.16);
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 2px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .program-card { grid-template-columns: 1fr; min-height: 0; }
  .program-image { aspect-ratio: 16/10; min-height: 0; }
  .program-image::after { background: linear-gradient(180deg, transparent 70%, rgba(255,255,255,.38)); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; max-width: 680px; }
  .poster-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 16px;
    margin-inline: -2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .poster-grid .poster-card { flex: 0 0 min(76vw, 390px); scroll-snap-align: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav-wrap { height: 70px; }
  .brand img { width: 136px; height: 52px; }
  .nav-toggle { width: 44px; height: 44px; }
  .hero { padding: 42px 0 56px; }
  .hero-copy { padding: 0; }
  .hero-grid { gap: 28px; }
  h1 { font-size: clamp(2.55rem, 12.5vw, 3.7rem); letter-spacing: -.058em; line-height: 1.08; margin-bottom: 18px; }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: -.045em; }
  .page-hero { padding: 44px 0 50px; }
  .page-hero h1 { font-size: clamp(2.45rem, 11.5vw, 3.55rem); line-height: .99; }
  .lead { font-size: 1rem; line-height: 1.62; }
  .eyebrow { font-size: .67rem; padding: 7px 10px; letter-spacing: .095em; }
  .btn-row { display: grid; grid-template-columns: 1fr; margin-top: 24px; gap: 10px; }
  .btn { width: 100%; min-height: 52px; padding-inline: 18px; white-space: normal; text-align: center; line-height: 1.25; }
  .hero-media { aspect-ratio: 4/5; width: 100%; }
  .hero-card { border-radius: 26px; }
  .hero-badge { left: 11px; right: 11px; bottom: 11px; padding: 13px; border-radius: 18px; }
  .hero-badge strong { font-size: .9rem; }
  .hero-badge small { font-size: .73rem; line-height: 1.35; }
  .price-badge { min-width: 80px; height: 80px; padding: 32px 10px; font-size: .78rem; }
  .price-badge span { font-size: .52rem; }
  .stat-strip {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-top: 24px;
    scroll-snap-type: x mandatory;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .stat-strip::-webkit-scrollbar { display: none; }
  .stat { flex: 0 0 78%; scroll-snap-align: start; padding: 15px 16px; }
  .grid-3 { grid-template-columns: repeat(1, 1fr); gap: 12px; }
  .card { padding: 21px; border-radius: 22px; }
  .venue-card { min-height: 190px; padding: 18px; }
  .cta-band { padding: 32px 23px; border-radius: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 34px; }
  .footer-brand { grid-column: auto; }
  .site-footer { padding-top: 46px; }
  .footer-bottom { gap: 16px; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card, .form-info { padding: 24px 20px; border-radius: 24px; }
  .field.full { grid-column: auto; }
  .form-card .btn { width: 100%; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .program-copy { padding: 28px 24px; }
  .program-card { border-radius: 24px; }
}
@media (max-width: 380px) {
  .grid-3 { grid-template-columns: 1fr; }
  .venue-card { min-height: 0; }
  .audience-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .poster-card, .text-link span { transition: none; }
}

/* =====================
   WP ADMIN BAR FIX
   ===================== */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
