/* ============================================================
   MJA Elite Goalkeeping Academy — main.css
   ============================================================ */

:root {
  --onyx:  #0B0B0E;
  --bone:  #F4F1EB;
  --pitch: #C8102E;
  --stone: #8A857C;
  --line:  rgba(11,11,14,0.10);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-gap: clamp(4rem, 9vw, 7rem);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--bone); color: var(--onyx); font-family: var(--font-body); line-height: 1.6; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--onyx);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.85rem); }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-body); }
p  { font-size: clamp(1rem, 1.3vw, 1.075rem); line-height: 1.7; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.accent { color: var(--pitch); }
.text-stone { color: var(--stone); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: var(--section-gap) 0; }
.mt-sm { margin-top: 0.75rem; } .mt-md { margin-top: 1.5rem; } .mt-lg { margin-top: 3rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0 var(--gutter); }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem var(--gutter);
  background: rgba(244, 241, 235, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 0.65rem; }
.nav__logo img { height: 52px; width: auto; display: block; }
@media (max-width: 720px) { .nav__logo img { height: 42px; } }
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--onyx); transition: color 240ms var(--ease); }
.nav__links a:hover, .nav__links a.active { color: var(--pitch); }
.nav__cta { background: var(--onyx); color: var(--bone) !important; padding: 0.7rem 1.15rem; }
.nav__cta:hover { background: var(--pitch); color: var(--bone) !important; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; }
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: var(--onyx); }
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: fixed; inset: 64px 0 auto 0;
    background: var(--bone); padding: 2rem var(--gutter); gap: 1.5rem; border-bottom: 1px solid var(--line);
  }
}

main { padding-top: 92px; }
@media (max-width: 720px) { main { padding-top: 76px; } }

/* --- Hero --- */
.hero {
  min-height: 86svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(3rem, 7vw, 5rem);
  position: relative; overflow: hidden;
  background: var(--onyx);
  color: var(--bone);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover; background-position: center;
  opacity: 0.55; z-index: 0;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
}
.hero--video::before { opacity: 0; } /* hide jpg fallback when video element exists */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero--video::before { opacity: 0.55; }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,14,0.85) 0%, rgba(11,11,14,0.55) 55%, rgba(11,11,14,0.25) 100%),
              radial-gradient(80% 60% at 20% 80%, rgba(200,16,46,0.18), transparent 60%);
  pointer-events: none; z-index: 1;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: var(--bone); margin-top: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--pitch); font-weight: 400; }
.hero__lead { color: rgba(244,241,235,0.78); margin-top: 1.5rem; max-width: 560px; }
.hero__eyebrow { color: rgba(244,241,235,0.6); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  transition: all 240ms var(--ease);
}
.btn--primary { background: var(--pitch); color: var(--bone); }
.btn--primary:hover { background: var(--onyx); }
.btn--ghost   { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: var(--onyx); color: var(--bone); border-color: var(--onyx); }
.hero .btn--ghost { color: var(--bone); }

/* --- Section intro --- */
.section-intro { max-width: 720px; }
.section-intro .eyebrow { display: block; margin-bottom: 1rem; }
.section-intro h2 + p { margin-top: 1.25rem; color: var(--stone); }

/* --- Program cards --- */
.prog-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.prog-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(11,11,14,0.06); }
.prog-card h3 { font-size: 1.5rem; }
.prog-card .meta { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); }
.prog-card .enquire { font-weight: 600; color: var(--onyx); border-bottom: 1px solid var(--pitch); align-self: flex-start; padding-bottom: 2px; margin-top: auto; }
.prog-card .enquire:hover { color: var(--pitch); }

/* --- Book cards --- */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 820px) { .book-grid { grid-template-columns: 1fr; } }
.book-card {
  background: var(--onyx); color: var(--bone);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  min-height: 280px;
}
.book-card h3 { color: var(--bone); }
.book-card p { color: rgba(244,241,235,0.75); }
.book-card .btn { align-self: flex-start; margin-top: auto; }
.book-card.accent { background: var(--pitch); }
.book-card.accent .btn--ghost { color: var(--bone); border-color: var(--bone); }
.book-card.accent .btn--ghost:hover { background: var(--bone); color: var(--pitch); border-color: var(--bone); }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.tile {
  aspect-ratio: 1;
  background: var(--onyx);
  color: rgba(244,241,235,0.55);
  display: flex; align-items: flex-end;
  padding: 1rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 600ms var(--ease);
}
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1rem; color: var(--bone);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,11,14,0) 45%, rgba(11,11,14,0.65) 100%);
  pointer-events: none;
}

/* --- Page header --- */
.page-header { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.page-header h1 { margin-top: 0.75rem; }
.page-header p { color: var(--stone); margin-top: 1.25rem; max-width: 640px; }

/* --- Prose --- */
.prose p + p { margin-top: 1.25rem; }
.prose { max-width: 680px; color: var(--onyx); }
.prose p { color: var(--onyx); }

/* --- CTA strip --- */
.cta-strip { background: var(--onyx); color: var(--bone); text-align: center; padding: clamp(4rem, 8vw, 6rem) var(--gutter); }
.cta-strip h2 { color: var(--bone); }
.cta-strip p { color: rgba(244,241,235,0.75); max-width: 520px; margin: 1rem auto 0; }
.cta-strip .btn { margin-top: 2rem; }

/* --- Footer --- */
.footer { background: var(--onyx); color: rgba(244,241,235,0.7); padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem; }
.footer__grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--bone); margin-bottom: 1rem; font-size: 0.75rem; letter-spacing: 0.12em; }
.footer a { color: rgba(244,241,235,0.7); display: block; padding: 0.25rem 0; transition: color 240ms var(--ease); }
.footer a:hover { color: var(--pitch); }
.footer__brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--bone); }
.footer__legal { max-width: var(--max-w); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(244,241,235,0.1); font-size: 0.75rem; color: rgba(244,241,235,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* --- Form embed --- */
.jot-frame { width: 100%; min-height: 720px; border: 1px solid var(--line); background: #fff; }

/* Booking tabs + Jotform embed */
.form-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 3rem; }
.form-tab {
  background: none; border: 0; border-bottom: 2px solid transparent;
  padding: 1.1rem 1.5rem; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--stone); transition: color 240ms var(--ease), border-color 240ms var(--ease);
}
.form-tab:hover { color: var(--onyx); }
.form-tab.is-active { color: var(--onyx); border-bottom-color: var(--pitch); }
.form-panel { display: none; }
.form-panel.is-active { display: block; }
.form-meta { max-width: 640px; margin-bottom: 2rem; }
.form-meta .eyebrow { display: block; margin-bottom: 0.75rem; }
.form-meta h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.form-meta p { color: var(--stone); margin-top: 1rem; }
.jot-wrap {
  background: #fff; border: 1px solid var(--line);
  padding: 0.5rem; overflow: hidden;
}
.jot-wrap iframe { display: block; }

/* --- Native registration form --- */
.book-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 960px) { .book-container { grid-template-columns: 1fr; } }

.reg-form { background: #fff; border: 1px solid var(--line); padding: clamp(1.75rem, 4vw, 3rem); }
.reg-form .hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.reg-fieldset { border: 0; padding: 0; margin: 0 0 2.5rem; }
.reg-fieldset:last-of-type { margin-bottom: 1.5rem; }
.reg-fieldset legend {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone);
  padding-bottom: 0.85rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line); width: 100%;
}

.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.reg-row:has(.reg-field:only-child) { grid-template-columns: 1fr; }
.reg-row:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .reg-row { grid-template-columns: 1fr; } }

.reg-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.reg-field:last-child { margin-bottom: 0; }
.reg-field span {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500;
  color: var(--onyx);
}
.reg-field span em { color: var(--stone); font-style: normal; font-weight: 400; }
.reg-field--narrow { max-width: 140px; }
@media (max-width: 600px) { .reg-field--narrow { max-width: none; } }

.reg-field input, .reg-field select, .reg-field textarea {
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--onyx); background: var(--bone);
  border: 1px solid var(--line); border-radius: 0;
  padding: 0.85rem 1rem;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
  width: 100%;
}
.reg-field input:focus, .reg-field select:focus, .reg-field textarea:focus {
  outline: none; border-color: var(--onyx); background: #fff;
}
.reg-field textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.reg-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230B0B0E' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.reg-radios { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 600px) { .reg-radios { grid-template-columns: 1fr; } }
.reg-radio { position: relative; cursor: pointer; }
.reg-radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.reg-radio__inner {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem 1.15rem; border: 1px solid var(--line); background: var(--bone);
  transition: all 200ms var(--ease);
}
.reg-radio__title { font-weight: 600; color: var(--onyx); font-size: 0.95rem; }
.reg-radio__meta  { font-size: 0.78rem; color: var(--stone); }
.reg-radio:hover .reg-radio__inner { border-color: var(--onyx); }
.reg-radio input:checked + .reg-radio__inner {
  border-color: var(--onyx); background: var(--onyx);
}
.reg-radio input:checked + .reg-radio__inner .reg-radio__title { color: var(--bone); }
.reg-radio input:checked + .reg-radio__inner .reg-radio__meta  { color: rgba(244,241,235,0.65); }
.reg-radio input:focus-visible + .reg-radio__inner { outline: 2px solid var(--pitch); outline-offset: 2px; }

.reg-submit { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.reg-submit .btn { padding: 1.1rem 2.5rem; }
.reg-submit .btn:disabled { opacity: 0.6; cursor: wait; }
.reg-fineprint { margin-top: 1rem; font-size: 0.78rem; color: var(--stone); max-width: 540px; }

.reg-status { margin-top: 1.5rem; padding: 1rem 1.25rem; font-size: 0.9rem; border-left: 3px solid var(--stone); background: var(--bone); }
.reg-status--pending { border-color: var(--stone); color: var(--stone); }
.reg-status--ok      { border-color: #2C7A4B; color: var(--onyx); background: #EFF6F0; }
.reg-status--warn    { border-color: var(--pitch); color: var(--onyx); background: #FBEFEF; }
.reg-status a { color: var(--pitch); border-bottom: 1px solid currentColor; }

.reg-aside { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 100px; }
@media (max-width: 960px) { .reg-aside { position: static; } }
.reg-aside__card {
  background: var(--bone); border: 1px solid var(--line);
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.reg-aside__card .eyebrow { display: block; margin-bottom: 0.4rem; }
.reg-aside__card p { font-size: 0.9rem; color: var(--onyx); }
.reg-aside__card a { color: var(--onyx); border-bottom: 1px solid var(--pitch); display: inline-block; }
.reg-aside__card--dark { background: var(--onyx); color: var(--bone); border-color: var(--onyx); }
.reg-aside__card--dark p { color: rgba(244,241,235,0.85); }
.reg-aside__card--dark strong { color: var(--bone); }

/* Enrolment additions */
.reg-legend-note { font-weight: 400; color: var(--stone); text-transform: none; letter-spacing: 0; margin-left: 0.5rem; }
.reg-tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 720px) { .reg-tier-grid { grid-template-columns: 1fr; } }
.reg-tier {
  border: 1px solid var(--line); background: var(--bone);
  padding: 1.25rem 1.35rem;
}
.reg-tier h3 { font-size: 1.25rem; }
.reg-tier__meta { font-size: 0.78rem; color: var(--stone); margin-top: 0.25rem; letter-spacing: 0.04em; text-transform: uppercase; }
.reg-tier__prices { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.5rem; }
.reg-tier__prices label {
  display: flex; align-items: center; gap: 0.6rem; cursor: pointer;
  padding: 0.55rem 0.7rem; border: 1px solid var(--line); background: #fff;
  font-size: 0.88rem; transition: all 200ms var(--ease);
}
.reg-tier__prices label:hover { border-color: var(--onyx); }
.reg-tier__prices input { accent-color: var(--pitch); }
.reg-tier__prices input:checked + * { color: var(--pitch); }
.reg-tier__prices label:has(input:checked) { border-color: var(--onyx); background: var(--onyx); color: var(--bone); }
.reg-tier__prices label:has(input:checked) strong { color: var(--bone); }
.reg-tier__prices strong { margin-left: auto; }

.reg-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.reg-checks label { display: flex; align-items: flex-start; gap: 0.8rem; cursor: pointer; font-size: 0.9rem; line-height: 1.55; }
.reg-checks input { margin-top: 0.25rem; accent-color: var(--pitch); flex-shrink: 0; }

.reg-prose { color: var(--stone); font-size: 0.92rem; line-height: 1.7; max-width: 640px; margin-bottom: 1.5rem; }

.reg-check-single { display: flex; align-items: flex-start; gap: 0.8rem; margin-top: 1rem; cursor: pointer; font-size: 0.9rem; line-height: 1.55; }
.reg-check-single input { margin-top: 0.25rem; accent-color: var(--pitch); flex-shrink: 0; }
.reg-check-single span { color: var(--onyx); }

/* Programs tier cards */
.tier-stack { display: grid; gap: 1.5rem; }
.tier-card {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 2.5rem;
  align-items: start; padding: 2.25rem 2rem;
  border: 1px solid var(--line); background: #fff;
}
@media (max-width: 900px) { .tier-card { grid-template-columns: 1fr; gap: 1.5rem; } }
.tier-card h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-top: 0.5rem; }
.tier-card__meta { font-size: 0.85rem; color: var(--stone); margin-top: 0.5rem; }
.tier-card__body { color: var(--stone); line-height: 1.65; }
.tier-card__prices { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.tier-card__prices li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.92rem; color: var(--onyx);
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--line);
}
.tier-card__prices li:last-child { border-bottom: 0; padding-bottom: 0; }
.tier-card__prices strong { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; }
.tier-card__cta { grid-column: 1 / -1; justify-self: start; margin-top: 0.5rem; }
.tier-card--pro { background: var(--onyx); color: var(--bone); border-color: var(--onyx); }
.tier-card--pro h2, .tier-card--pro .tier-card__prices li { color: var(--bone); }
.tier-card--pro .tier-card__body, .tier-card--pro .tier-card__meta { color: rgba(244,241,235,0.7); }
.tier-card--pro .tier-card__prices li { border-color: rgba(244,241,235,0.15); }
.tier-card--pro .eyebrow { color: rgba(244,241,235,0.6); }

/* What's included perks */
.section--bone { background: var(--bone); }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) { .perks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .perks-grid { grid-template-columns: 1fr; } }
.perk {
  background: #fff; border: 1px solid var(--line);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  position: relative;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.perk:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11,11,14,0.07); }
.perk__no {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.85rem; color: var(--pitch);
  line-height: 1; letter-spacing: -0.02em;
}
.perk h3 { font-size: 1.15rem; line-height: 1.25; margin-top: 0.25rem; }
.perk p { color: var(--stone); font-size: 0.92rem; line-height: 1.6; }

/* --- Mobile polish --- */
@media (max-width: 480px) {
  :root { --gutter: 1.25rem; }
  h1 { font-size: clamp(2rem, 9vw, 2.75rem); line-height: 1.05; }
  h2 { font-size: clamp(1.65rem, 7vw, 2.25rem); line-height: 1.1; }
  .hero { min-height: 88svh; padding-bottom: clamp(2rem, 6vw, 3rem); }
  .hero h1 { margin-top: 0.75rem; }
  .hero__lead { font-size: 0.95rem; line-height: 1.6; }
  .hero__actions { gap: 0.65rem; margin-top: 1.5rem; }
  .hero__actions .btn { padding: 0.85rem 1.25rem; font-size: 0.72rem; flex: 1 1 auto; text-align: center; }
  .page-header { padding: 2rem 0 1.5rem; }
  .section { padding: clamp(2.5rem, 8vw, 4rem) 0; }
  .nav__cta { padding: 0.55rem 0.9rem; font-size: 0.72rem; }
  .footer__grid { gap: 2rem; }
  .footer__legal { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  /* Tier cards on programs page */
  .tier-card { padding: 1.5rem 1.25rem; }
  .tier-card__cta { width: 100%; text-align: center; }
  /* Booking form on small screens */
  .reg-form { padding: 1.5rem 1.25rem; }
  .reg-fieldset legend { font-size: 0.68rem; }
  .reg-tier { padding: 1rem 1rem; }
  .reg-tier__prices label { padding: 0.5rem 0.65rem; font-size: 0.85rem; }
  /* Reel + gallery */
  .reel-tile { aspect-ratio: 9/14; }
  /* About page sidebar stacks */
  .container.grid-2 { gap: 2.5rem !important; }
}

/* Prevent horizontal scroll on any device */
html, body { overflow-x: hidden; max-width: 100%; }
img, video { max-width: 100%; height: auto; }

/* --- Utility --- */
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
