/* ==========================================================================
   Lightning Ninja Academy — v2 "Electric Storm" theme
   Pure CSS, no framework. Mobile-first.
   ========================================================================== */

:root {
  --ink: #070b15;            /* page background */
  --ink-2: #0c1322;          /* raised panel */
  --ink-3: #111a30;          /* card */
  --line: rgba(148, 170, 220, .16);
  --volt: #ffd60a;           /* electric yellow (logo bolt) */
  --volt-hot: #ffea00;
  --storm: #45c4ff;          /* electric blue */
  --storm-deep: #1d7fd6;
  --white: #f4f7ff;
  --muted: #a7b2c9;
  --danger: #ff5d5d;
  --grad-bolt: linear-gradient(100deg, var(--volt) 0%, var(--volt-hot) 45%, var(--storm) 130%);
  --grad-storm: radial-gradient(1200px 600px at 80% -10%, rgba(69, 196, 255, .18), transparent 60%),
                radial-gradient(900px 500px at 10% 110%, rgba(255, 214, 10, .10), transparent 55%);
  --shadow-lift: 0 18px 40px -18px rgba(0, 0, 0, .75);
  --radius: 16px;
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 68px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px — big, confident base */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--storm); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; margin: 0 0 .5em; letter-spacing: .01em; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 6.5vw, 4.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.8rem); text-transform: uppercase; }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.45rem); }
h4 { margin: 0 0 .4em; font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
strong { color: var(--white); }
.muted { color: var(--muted); }
.container { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }
.narrow { width: min(820px, 100% - 2.5rem); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--volt); color: #111; padding: .6rem 1rem; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Accent utilities */
.volt { color: var(--volt); }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 1rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--volt); margin-bottom: .9rem;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--grad-bolt); border-radius: 2px; }

.bolt-divider { display: flex; justify-content: center; margin: 0 auto; padding: .25rem 0 1rem; }
.bolt-divider svg { width: 30px; height: 42px; filter: drop-shadow(0 0 12px rgba(255, 214, 10, .55)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.6rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem; letter-spacing: .02em;
  border-radius: 12px; border: 2px solid transparent; cursor: pointer;
  text-decoration: none !important; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-volt {
  background: var(--grad-bolt); color: #10131c;
  box-shadow: 0 10px 30px -10px rgba(255, 214, 10, .55);
}
.btn-volt:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(255, 214, 10, .7); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(244, 247, 255, .35); }
.btn-ghost:hover { border-color: var(--volt); color: var(--volt); transform: translateY(-2px); }
.btn-dark { background: var(--ink-3); color: var(--white); border-color: var(--line); }
.btn-dark:hover { border-color: var(--storm); transform: translateY(-2px); }
.btn-lg { font-size: 1.1rem; padding: 1rem 2.1rem; min-height: 56px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 11, 21, .84);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand img { width: 150px; height: 68px; object-fit: contain; }
.main-nav { display: none; }
.main-nav a {
  color: var(--white); font-weight: 600; font-size: 1rem; padding: .5rem .6rem; border-radius: 8px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--volt); text-decoration: none; }
.header-cta { display: none; align-items: center; gap: .8rem; }
.header-phone { color: var(--white); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.header-phone:hover { color: var(--volt); text-decoration: none; }
.header-cta .btn { min-height: 44px; padding: .5rem 1.1rem; font-size: 1rem; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 12px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; width: 100%; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: .1rem;
  padding: .6rem 1.25rem 1.2rem;
  background: rgba(7, 11, 21, .97); border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); font-weight: 700; font-size: 1.05rem; padding: .75rem .25rem; border-bottom: 1px solid rgba(148, 170, 220, .08); }
.mobile-nav a:hover { color: var(--volt); text-decoration: none; }
.mobile-nav .btn { margin-top: .9rem; border-bottom: 0; }

@media (min-width: 960px) {
  .main-nav { display: flex; gap: .1rem; }
  .header-cta { display: flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ---------- Shoes banner ---------- */
.shoes-banner {
  background: linear-gradient(90deg, #2a1f00, #3a2c00);
  border-bottom: 1px solid rgba(255, 214, 10, .35);
  color: var(--volt-hot);
  font-size: 1rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  text-align: center; padding: .5rem 1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(88svh, 780px);
  display: flex; align-items: center;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 21, .55) 0%, rgba(7, 11, 21, .72) 55%, var(--ink) 100%);
}
.hero-content { position: relative; z-index: 2; padding: clamp(4rem, 10vw, 7rem) 0; }
.hero h1 span { color: var(--volt); text-shadow: 0 0 34px rgba(255, 214, 10, .45); }
.hero-sub { font-size: clamp(1.1rem, 2.4vw, 1.4rem); color: #dde5f5; max-width: 620px; margin-bottom: 1.6rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.4rem; }
.hero-note { font-size: 1rem; color: var(--muted); }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-top: 1.6rem; padding: 0; list-style: none; }
.hero-badges li { display: flex; align-items: center; gap: .45rem; font-size: 1rem; font-weight: 600; color: #dde5f5; }
.hero-badges li::before { content: "⚡"; font-size: .8rem; }

/* Page hero (interior) */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(3.4rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 3rem);
  background: var(--ink-2);
  background-image: var(--grad-storm);
  border-bottom: 1px solid var(--line);
}
.page-hero p.lede { font-size: clamp(1.1rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 720px; }
.breadcrumbs { font-size: 1rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: .35rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--volt); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.2rem, 8vw, 5.5rem) 0; }
.section-alt { background: var(--ink-2); background-image: var(--grad-storm); border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head p { color: var(--muted); }
.center { text-align: center; }
.center .section-head { margin-inline: auto; }
.center .kicker { justify-content: center; }
.center .kicker::before { display: none; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.2rem; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255, 214, 10, .45); box-shadow: var(--shadow-lift); }
.card h3 { margin-bottom: .4rem; }
.card .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--volt); margin: .3rem 0 .6rem; }
.card .price small { font-family: var(--font-body); font-size: 1rem; color: var(--muted); font-weight: 600; }
.card p { color: var(--muted); font-size: 1.02rem; }
.card ul { color: var(--muted); font-size: 1rem; margin: 0 0 1rem; }
.card .btn { margin-top: auto; }
.card-flex { display: flex; flex-direction: column; }
.card-media { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; margin: -1.5rem -1.5rem 1.2rem; }
.card-media img { width: 100%; height: 210px; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.badge {
  display: inline-block; padding: .22rem .7rem; border-radius: 999px;
  background: rgba(255, 214, 10, .12); border: 1px solid rgba(255, 214, 10, .4);
  color: var(--volt); font-size: 1rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .7rem;
}
.badge-blue { background: rgba(69, 196, 255, .1); border-color: rgba(69, 196, 255, .4); color: var(--storm); }

/* Feature / pillar rows */
.pillars { display: grid; gap: 1rem; }
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  text-align: center; padding: 1.8rem 1.2rem;
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.pillar::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad-bolt); }
.pillar h3 { color: var(--volt); letter-spacing: .12em; text-transform: uppercase; }
.pillar p { color: var(--muted); font-size: 1rem; margin: 0; }

/* ---------- Pricing tables ---------- */
.price-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.price-table th, .price-table td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--line); }
.price-table th { color: var(--volt); font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.price-table td.num { font-weight: 800; color: var(--white); white-space: nowrap; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-3); }

.price-card { position: relative; }
.price-card.featured { border-color: var(--volt); box-shadow: 0 0 0 1px var(--volt), 0 20px 44px -20px rgba(255, 214, 10, .35); }
.price-card .tag {
  position: absolute; top: -17px; left: 50%; transform: translateX(-50%);
  background: var(--grad-bolt); color: #10131c; font-size: 1rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 999px; white-space: nowrap;
}
.price-big { font-family: var(--font-display); font-size: 2.4rem; color: var(--white); line-height: 1; margin: .4rem 0 .2rem; }
.price-big small { font-family: var(--font-body); font-size: 1rem; color: var(--muted); font-weight: 600; }

/* ---------- Testimonials ---------- */
.quote-card { position: relative; }
.quote-card::before { content: "\201C"; font-family: var(--font-display); font-size: 3rem; color: var(--volt); line-height: 1; display: block; margin-bottom: .3rem; }
.quote-card figcaption { color: var(--white); font-weight: 700; font-size: 1rem; }
.quote-card figcaption span { display: block; color: var(--muted); font-weight: 500; font-size: 1rem; }
.stars { color: var(--volt); letter-spacing: .15em; font-size: 1rem; margin-bottom: .5rem; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: .8rem; overflow: hidden;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; list-style: none; padding: 1rem 1.2rem;
  font-weight: 700; font-size: 1.05rem; min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; text-transform: none; letter-spacing: 0; line-height: 1.4; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); color: var(--volt); font-size: 1.3rem; flex-shrink: 0; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--volt); }
.faq-body { padding: 0 1.2rem 1.2rem; color: var(--muted); }
.faq-body p:last-child { margin-bottom: 0; }
.faq-section-title { margin-top: 2.4rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px;
  border: 1px solid var(--line); transition: transform .25s ease;
}
.gallery img:hover { transform: scale(1.03); }

/* ---------- Media / split rows ---------- */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } .split.rev > :first-child { order: 2; } }
.split img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; object-fit: cover; }
.framed { border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(120deg, #1a1500 0%, #0c1322 55%, #06263a 100%);
  border-block: 1px solid rgba(255, 214, 10, .3);
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(255, 214, 10, .14), transparent 65%);
}
.cta-band .container { position: relative; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Embeds ---------- */
.embed-frame {
  width: 100%; border: 0; border-radius: var(--radius);
  background: #fff; display: block;
}
.embed-shell { background: #fff; border-radius: var(--radius); padding: .5rem; border: 1px solid var(--line); }
.map-frame { width: 100%; height: 380px; border: 0; border-radius: var(--radius); display: block; filter: saturate(.9); }

/* ---------- Info lists ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .55rem; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; color: #d5ddef; }
.check-list li::before { content: "⚡"; flex-shrink: 0; color: var(--volt); font-size: .85rem; margin-top: .15rem; }
.x-list li::before { content: "✕"; color: var(--danger); font-weight: 800; }

.notice {
  background: rgba(255, 214, 10, .07); border: 1px solid rgba(255, 214, 10, .35);
  border-radius: 12px; padding: 1rem 1.2rem; color: #ffe98a; font-size: 1rem;
}
.notice-blue { background: rgba(69, 196, 255, .07); border-color: rgba(69, 196, 255, .35); color: #bfe8ff; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { counter-increment: step; padding: 1.5rem; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); }
.step h3 {
  display: flex; align-items: center; gap: .8rem;
  font-size: 1.15rem; margin-bottom: .6rem;
}
.step h3::before {
  content: counter(step);
  flex-shrink: 0;
  font-family: var(--font-display); font-size: 1.15rem; color: #10131c;
  background: var(--grad-bolt); width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.step p { color: var(--muted); font-size: 1rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #05080f; border-top: 1px solid var(--line); padding: 3rem 0 6.5rem; font-size: 1rem; }
@media (min-width: 960px) { .site-footer { padding-bottom: 3rem; } }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2.4rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h4 { color: var(--volt); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--volt); text-decoration: none; }
.footer-brand img { width: 170px; height: 77px; object-fit: contain; margin-bottom: .8rem; }
.footer-brand p { color: var(--muted); max-width: 300px; }
.social-links { display: flex; gap: .8rem; margin-top: .8rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--ink-3); border: 1px solid var(--line);
}
.social-links a:hover { border-color: var(--volt); }
.social-links img { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between;
  color: var(--muted); font-size: .82rem;
}
.footer-bottom a { color: var(--muted); }

/* ---------- Sticky mobile CTA bar ---------- */
.cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr auto; gap: .6rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(7, 11, 21, .95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 214, 10, .35);
}
.cta-bar .btn { min-height: 50px; font-size: 1rem; padding: .6rem 1rem; }
.cta-bar .btn-call { width: 54px; padding: 0; font-size: 1.2rem; }
@media (min-width: 960px) { .cta-bar { display: none; } }

/* ---------- Landing page (summer) ---------- */
.lp-header { position: sticky; top: 0; z-index: 100; background: rgba(7, 11, 21, .9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.lp-header .header-inner { min-height: 62px; }
.lp-header .header-phone { display: inline-flex; align-items: center; gap: .4rem; }
.offer-box {
  background: var(--ink-3); border: 2px solid var(--volt); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: 0 0 60px -18px rgba(255, 214, 10, .45);
}
.offer-box .strike { text-decoration: line-through; color: var(--muted); font-weight: 600; }
.value-row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); font-size: 1rem; }
.value-row strong { white-space: nowrap; }
.value-total { display: flex; justify-content: space-between; padding-top: .9rem; font-weight: 800; font-size: 1.05rem; color: var(--volt); }
.urgency { color: var(--volt-hot); font-weight: 700; font-size: 1rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .gallery img { transition: none; }
}

/* ---------- 404 ---------- */
.error-hero { min-height: 60svh; display: flex; align-items: center; text-align: center; }
.error-hero .code { font-family: var(--font-display); font-size: clamp(5rem, 18vw, 9rem); color: var(--volt); line-height: 1; text-shadow: 0 0 50px rgba(255, 214, 10, .4); }

/* ---------- Legal pages ---------- */
.legal h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.legal { color: #c9d2e4; }

/* Waiver text panel */
.waiver-text {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; font-size: 1rem; color: var(--muted); max-height: 480px; overflow-y: auto;
}
.waiver-text h3 { font-size: 1.05rem; color: var(--white); }

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

/* ---------- Coach cards (fixed cropping, equal heights) ---------- */
.coach-card .card-media img {
  height: auto;
  aspect-ratio: 1 / 1;          /* tall square crop keeps the person in frame */
  object-fit: cover;
}

/* ---------- Wide team photo ---------- */
.photo-wide {
  border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden;
}
.photo-wide img {
  width: 100%; height: auto; aspect-ratio: 21 / 10; object-fit: cover; object-position: center 68%;
}
.photo-caption { color: var(--muted); font-size: 1rem; margin-top: .8rem; }

/* ---------- Location split: map stretches to bottom-align columns ---------- */
.split-stretch { align-items: stretch; }
.split-stretch > div { display: flex; flex-direction: column; }
.split-stretch .map-frame { height: 100%; min-height: 420px; flex: 1; }
@media (min-width: 880px) { .split-stretch .map-frame { min-height: 560px; } }

/* ---------- Lightbox ---------- */
.lb-zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 6, 12, .94);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 3.5rem 1rem 4.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1200px, 100%); max-height: 100%; text-align: center; }
.lightbox img {
  max-width: 100%; max-height: calc(100svh - 11rem);
  width: auto; height: auto; margin-inline: auto;
  border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .9);
}
.lb-caption { color: #dde5f5; font-size: 1rem; margin-top: .8rem; }
.lb-btn {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(17, 26, 48, .85); color: var(--white);
  border: 1px solid var(--line); cursor: pointer;
  font-size: 1.7rem; line-height: 1; font-family: var(--font-body);
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
}
.lb-btn:hover, .lb-btn:focus-visible { border-color: var(--volt); color: var(--volt); }
.lb-btn:active { transform: scale(.94); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-prev:active, .lb-next:active { transform: translateY(-50%) scale(.94); }
.lb-counter {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  color: var(--white); font-weight: 700; font-size: 1rem; letter-spacing: .08em;
  background: rgba(17, 26, 48, .85); border: 1px solid var(--line);
  padding: .35rem 1rem; border-radius: 999px;
}
@media (max-width: 700px) {
  .lightbox { padding: 3.2rem .6rem 4.2rem; }
  .lb-btn { width: 48px; height: 48px; border-radius: 12px; }
  .lb-prev { left: .5rem; } .lb-next { right: .5rem; } .lb-close { top: .6rem; right: .6rem; }
}

/* ---------- Newsletter signup (front-end demo) ---------- */
.newsletter { padding: clamp(3rem, 7vw, 4.5rem) 0; }
.nl-box {
  position: relative; overflow: hidden;
  background: var(--grad-bolt);
  color: #10131c;
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3.2rem);
  box-shadow: 0 24px 60px -24px rgba(255, 214, 10, .55);
}
.nl-box::after {
  content: "⚡"; position: absolute; right: -1rem; bottom: -2.4rem;
  font-size: 11rem; opacity: .12; pointer-events: none;
}
.nl-box h2 { color: #10131c; margin-bottom: .4em; }
.nl-box p { color: #23262f; max-width: 640px; }
.nl-kicker {
  display: inline-block; font-size: 1rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  background: #10131c; color: var(--volt); padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.nl-fields { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0 .8rem; }
.nl-fields input {
  flex: 1 1 220px; min-height: 54px; padding: .8rem 1.1rem;
  font: inherit; font-size: 1.05rem; font-weight: 600;
  color: #10131c; background: rgba(255, 255, 255, .92);
  border: 2px solid rgba(16, 19, 28, .35); border-radius: 12px;
}
.nl-fields input:focus { outline: 3px solid #10131c; outline-offset: 1px; }
.nl-fields input::placeholder { color: #4b505e; }
.nl-box .btn-ink {
  background: #10131c; color: var(--volt); border-color: #10131c;
  flex: 0 0 auto;
}
.nl-box .btn-ink:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(16, 19, 28, .8); }
.nl-consent {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: 1rem; color: #23262f; max-width: 640px; margin: .4rem 0 1rem;
}
.nl-consent input { width: 22px; height: 22px; margin-top: .15rem; flex-shrink: 0; accent-color: #10131c; }
.nl-fine { font-size: 1rem; color: #3a3e49; margin: 0; }
.nl-success h2 { display: flex; align-items: center; gap: .6rem; }
.nl-compact { padding: clamp(1.6rem, 4vw, 2.2rem); }
.nl-compact h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

/* ---------- Booking widget (demo) ---------- */
.booker {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-lift);
}
.booker h3 { margin-bottom: .2rem; }
.bk-sub { color: var(--muted); font-size: 1rem; margin-bottom: 1.2rem; }
.bk-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: .45rem; margin-bottom: 1.2rem;
}
.bk-day {
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  padding: .6rem .2rem; min-height: 66px;
  background: var(--ink-2); color: var(--white);
  border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  font: inherit; font-size: 1rem; font-weight: 700; line-height: 1.15;
  transition: border-color .15s ease, background .15s ease;
}
.bk-day small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.bk-day:hover { border-color: var(--storm); }
.bk-day[aria-pressed="true"] { background: var(--grad-bolt); color: #10131c; border-color: transparent; }
.bk-day[aria-pressed="true"] small { color: #23262f; }
.bk-day:disabled { opacity: .4; cursor: not-allowed; }
.bk-slots { display: grid; gap: .55rem; margin-bottom: 1.2rem; }
@media (min-width: 560px) { .bk-slots { grid-template-columns: 1fr 1fr; } }
.bk-slot {
  display: flex; flex-direction: column; align-items: flex-start; gap: .1rem;
  padding: .75rem 1rem; text-align: left;
  background: var(--ink-2); color: var(--white);
  border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  font: inherit; font-size: 1.05rem; font-weight: 800;
  transition: border-color .15s ease, background .15s ease;
}
.bk-slot small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.bk-slot:hover { border-color: var(--volt); }
.bk-slot[aria-pressed="true"] { background: rgba(255, 214, 10, .14); border-color: var(--volt); color: var(--volt); }
.bk-empty { color: var(--muted); font-size: 1rem; padding: .6rem 0; }
.bk-success {
  text-align: center; padding: 2.4rem 1rem;
}
.bk-success .bk-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-bolt); color: #10131c; font-size: 2rem; font-weight: 800; margin-bottom: 1rem;
}
.bk-note { font-size: 1rem; color: var(--muted); margin: 1rem 0 0; }
@media (max-width: 480px) {
  .bk-days { grid-template-columns: repeat(4, 1fr); }
}
