/* ============================================================
   Focus Martial Arts & Fitness — Focus the body, Focus the mind
   ============================================================ */

:root {
  /* Brand: ink #0B1620, cyan #14B8E5, deep cyan #0091BC (client spec, Aug 2026) */
  --ink: #0B1620;
  --ink-soft: #45525e;
  --white: #ffffff;

  --navy-950: #0B1620;
  --navy-900: #121f2b;
  --navy-800: #1a2c3b;

  --cyan-700: #0091BC;
  --cyan-600: #0091BC;
  --cyan-500: #14B8E5;
  --cyan-panel: #14B8E5;
  --cyan-pale: #dcf2fb;
  --grey-mist: #eef4f8;
  --grey-bg: #f2f6f9;

  --belt-white: #f4f1ea;
  --belt-yellow: #ffd23f;
  --belt-orange: #f7941d;
  --belt-green: #58a942;
  --belt-blue: #14B8E5;
  --belt-purple: #8e5ac8;
  --belt-red: #e04646;
  --belt-black: #16181c;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shadow-card: 0 14px 40px rgba(11, 15, 20, 0.14);
  --shadow-soft: 0 8px 24px rgba(11, 15, 20, 0.08);

  --font-display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Trebuchet MS", sans-serif;

  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: 0.02em; }

p { color: var(--ink-soft); }

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

section { position: relative; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn .arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 28px rgba(0,0,0,0.16); }
.btn:hover .arr { transform: translateX(3px); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn-cyan { background: var(--cyan-600); color: #fff; }
.btn-cyan .arr { background: rgba(255,255,255,0.22); color: #fff; }

.btn-dark { background: var(--navy-950); color: #fff; }
.btn-dark .arr { background: var(--cyan-500); color: #fff; }

.btn-white { background: #fff; color: var(--navy-950); }
.btn-white .arr { background: rgba(11,15,20,0.1); color: var(--navy-950); }

.btn-ghost {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
  background: #fff; color: var(--cyan-700);
  box-shadow: inset 0 0 0 2px var(--cyan-500);
}

/* ---------- Eyebrow / chips ---------- */

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--cyan-500); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,15,20,0.94);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(11,15,20,0.35); }

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

/* logo sits on the left of the bar */
.nav-logo {
  display: flex;
  align-items: center;
  flex: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}
.nav-logo:hover img { transform: scale(1.04); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-side {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-side a:not(.btn) {
  font-weight: 700;
  font-size: 0.95rem;
  color: #e8eef4;
  background: rgba(255,255,255,0.07);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav-side a:not(.btn):hover { background: rgba(4,169,236,0.18); transform: translateY(-2px); }
.nav-side a.active { background: var(--cyan-500); color: #fff; }

.nav-cta { padding: 11px 22px; font-size: 0.95rem; background: var(--cyan-500); color: #fff; }
.nav-cta .arr { background: rgba(255,255,255,0.22); color: #fff; }

.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 12px;
  width: 46px; height: 46px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 20px; height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

main { padding-top: var(--nav-h); }

/* ---------- Hero (home) ---------- */

.hero { padding: clamp(48px, 8vw, 96px) 0 0; background: #fff; }

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  background: var(--navy-950);
  box-shadow: var(--shadow-card);
}
.hero-card img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.06);
  animation: heroDrift 16s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translateX(0); }
  to   { transform: scale(1.12) translateX(-1.5%); }
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(78deg, rgba(4,10,16,0.94) 0%, rgba(8,18,28,0.72) 38%, rgba(8,18,28,0.1) 68%, rgba(4,10,16,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 6vw, 70px);
  max-width: 640px;
  color: #fff;
}
.hero-content h1 { color: #fff; margin: 16px 0 18px; text-wrap: balance; }
.hero-content p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 48ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-emblem {
  position: absolute;
  right: clamp(8px, 4vw, 60px);
  bottom: clamp(8px, 3vw, 40px);
  width: clamp(130px, 17vw, 240px);
  z-index: 3;
  opacity: 0.9;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.28));
  animation: swingIn 1.4s cubic-bezier(0.34, 1.4, 0.5, 1) 0.4s backwards;
}
@keyframes swingIn {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 0.9; }
}

/* ---------- Marquee ---------- */

.marquee {
  background: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(11,15,20,0.06);
}
.marquee-track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Scroll story ---------- */

.story-track { height: 240vh; position: relative; }

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  transition: background-color 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.story-track[data-panel="1"] .story-sticky { background: var(--cyan-panel); }

.story-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 8vw;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.story-panel.active { opacity: 1; transform: translateY(0); }

.story-panel h2 {
  max-width: 21ch;
  text-align: center;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  color: var(--ink);
}
.story-panel em { font-style: normal; color: var(--cyan-600); }
.story-track[data-panel="1"] .story-panel em { color: var(--navy-950); }

.story-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 5;
}
.story-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(11,15,20,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.story-dots span.on { background: var(--ink); transform: scale(1.3); }

/* floating emblems inside story + sections */
.floaty {
  position: absolute;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.34, 1.3, 0.4, 1);
  will-change: transform;
  pointer-events: none;
}
.floaty.show { opacity: 1; }
.floaty.emblem-float { opacity: 0; }
.floaty.emblem-float.show { opacity: 0.16; }
.floaty.emblem-float.on-dark.show { opacity: 0.22; }

.story-emblem-a {
  top: 6%; left: clamp(2px, 5vw, 90px);
  width: clamp(110px, 15vw, 215px);
  transform: translateY(-60px);
}
.story-emblem-a.show { transform: translateY(0); animation: bob 6s ease-in-out infinite 0.5s; }

.story-emblem-b {
  right: clamp(4px, 7vw, 130px); top: 30%;
  width: clamp(150px, 19vw, 270px);
  transform: translateX(80px) rotate(6deg);
}
.story-emblem-b.show { transform: translateX(0) rotate(0); animation: bob 6s ease-in-out infinite; }

.story-emblem-c {
  right: clamp(4px, 6vw, 110px); bottom: 8%;
  width: clamp(150px, 19vw, 280px);
  transform: translateY(70px);
}
.story-emblem-c.show { transform: translateY(0); animation: bob 7s ease-in-out infinite 0.5s; }

.story-emblem-d {
  left: clamp(4px, 6vw, 110px); bottom: 10%;
  width: clamp(160px, 20vw, 300px);
  transform: translateY(70px) rotate(-4deg);
}
.story-emblem-d.show { transform: translateY(0) rotate(0); animation: bob 6.5s ease-in-out infinite 0.3s; }

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

/* ---------- Section scaffolding ---------- */

.section { padding: clamp(70px, 10vw, 120px) 0; }
.section > .container { position: relative; z-index: 2; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head p { font-size: 1.08rem; margin-top: 16px; }

.bg-grey { background: var(--grey-bg); }
.bg-pale { background: var(--cyan-pale); }
.bg-white { background: #fff; }
.bg-dark { background: var(--navy-950); }
.bg-dark .section-head h2 { color: #fff; }
.bg-dark .eyebrow { color: var(--cyan-500); }
.bg-dark .section-head p { color: rgba(255,255,255,0.88); }
.bg-dark .badge-note { color: rgba(255,255,255,0.9); }
.bg-dark .badge-card { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4); }

/* ---------- Stats band (dark, wavy) ---------- */

.stats-band {
  background: var(--navy-950);
  color: #fff;
  padding: clamp(70px, 9vw, 110px) 0 clamp(90px, 11vw, 150px);
  position: relative;
}
.stats-band .lead {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 44px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1;
  display: block;
  color: var(--cyan-500);
}
.stat .lbl {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.04em;
  opacity: 0.95;
}

.wave {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
  z-index: 3;
}
.wave svg { display: block; width: 100%; height: clamp(34px, 6vw, 80px); }
.wave-bottom { top: 100%; margin-top: -1px; }
.wave-top { bottom: 100%; margin-bottom: -1px; transform: scaleY(-1); }

/* ---------- Testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  max-width: 980px;
  margin: 0 auto;
}
.quote { text-align: center; position: relative; padding: 0 10px; }
.quote .mark {
  color: var(--cyan-500);
  font-size: 2.2rem;
  line-height: 0;
  display: block;
  margin-bottom: 22px;
  font-family: Georgia, serif;
}
.quote blockquote {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  color: var(--ink);
}
.quote figcaption {
  margin-top: 18px;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Feature cards (tilted) ---------- */

.tilt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: clamp(40px, 6vw, 60px);
  max-width: 940px;
  margin-inline: auto;
}
.tilt-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 24px 34px;
  box-shadow: var(--shadow-card);
  transition: rotate 0.4s cubic-bezier(0.34, 1.4, 0.5, 1), transform 0.4s cubic-bezier(0.34, 1.4, 0.5, 1), box-shadow 0.3s ease;
}
.tilt-card:nth-child(1) { rotate: -5deg; margin-top: 10px; }
.tilt-card:nth-child(2) { rotate: -1.5deg; }
.tilt-card:nth-child(3) { rotate: 2deg; margin-top: 8px; }
.tilt-card:nth-child(4) { rotate: 5.5deg; }
.tilt-card:hover { rotate: 0deg; transform: translateY(-8px) scale(1.04) !important; z-index: 2; position: relative; }

.tilt-card .icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px dashed currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  opacity: 0.85;
}
.tilt-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.tilt-card p { font-size: 0.93rem; line-height: 1.55; }
.tilt-card.c1 h3, .tilt-card.c1 .icon { color: var(--cyan-700); }
.tilt-card.c2 h3, .tilt-card.c2 .icon { color: var(--cyan-500); }
.tilt-card.c3 h3, .tilt-card.c3 .icon { color: var(--navy-800); }
.tilt-card.c4 h3, .tilt-card.c4 .icon { color: var(--navy-950); }

/* ---------- Class cards ---------- */

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.class-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.class-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.class-card:hover { transform: translateY(-10px); box-shadow: 0 26px 60px rgba(11,15,20,0.2); }
.class-card .photo {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--navy-950);
}
.class-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.class-card:hover .photo img { transform: scale(1.07); }
.class-card .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,15,20,0) 55%, rgba(11,15,20,0.6));
}
.class-card .emoji {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  width: 56px; height: 56px;
  background: var(--navy-950);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.class-card .emoji img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}
.class-card .meta {
  position: absolute;
  bottom: 14px; left: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  gap: 14px;
}
.class-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.class-card .age {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin-bottom: 6px;
}
.class-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.class-card .desc { font-size: 0.95rem; margin-bottom: 18px; }
.class-card ul {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  gap: 9px;
}
.class-card li {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding-left: 26px;
  position: relative;
}
.class-card li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cyan-pale);
  color: var(--cyan-700);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.class-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- How it works ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: 22px;
  padding: 34px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.3s ease;
}
.step:hover { transform: translateY(-6px); }
.step .n {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--cyan-500);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.step:nth-child(2) .n { color: var(--cyan-700); }
.step:nth-child(3) .n { color: var(--navy-800); }
.step:nth-child(4) .n { color: var(--navy-950); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.93rem; }

.steps-grid.three { grid-template-columns: repeat(3, 1fr); }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--cyan-600);
  color: #fff;
  text-align: center;
  padding: clamp(80px, 11vw, 140px) 0;
  overflow: hidden;
  position: relative;
}
.cta-band h2 { color: #fff; max-width: 22ch; margin: 12px auto 18px; }
.cta-band p {
  color: rgba(255,255,255,0.92);
  max-width: 52ch;
  margin: 0 auto 30px;
  font-weight: 500;
}
.cta-band .eyebrow { color: rgba(255,255,255,0.85); }
.cta-emblem {
  position: absolute;
  left: clamp(-40px, 1vw, 60px);
  bottom: clamp(-40px, -2vw, -10px);
  width: clamp(180px, 22vw, 320px);
  opacity: 0.18;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.2));
}
.cta-spark {
  position: absolute;
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: var(--navy-950);
  color: #fff;
  padding: clamp(90px, 12vw, 140px) 0 clamp(50px, 7vw, 90px);
  text-align: center;
  overflow: hidden;
}
.page-hero h1 { max-width: 20ch; margin: 0 auto; color: #fff; }
.page-hero p {
  max-width: 62ch;
  margin: 20px auto 0;
  font-size: 1.12rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.page-hero .eyebrow { color: var(--cyan-500); }
.page-hero .hero-cta { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.page-hero .floaty { pointer-events: none; }

/* ---------- Feature split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split .photo-stack { position: relative; }
.split .photo-stack .main-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}
.split .photo-stack .over-emblem {
  position: absolute;
  bottom: -30px; right: -22px;
  width: clamp(120px, 14vw, 190px);
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.25));
}
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.feature {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.feature:hover { transform: translateY(-4px); }
.feature b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.02rem;
  color: var(--cyan-700);
  margin-bottom: 4px;
}
.feature span { font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- Disciplines ---------- */

.disciplines-band { background: var(--cyan-panel); position: relative; }
.disciplines-band .section-head h2 { color: #fff; }
.disciplines-band .section-head p { color: rgba(255,255,255,0.92); }
.disciplines-band .eyebrow { color: var(--navy-950); }
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.disc-tile {
  background: #fff;
  border-radius: 20px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(2,62,90,0.22);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.5, 1);
}
.disc-tile:hover { transform: translateY(-10px) rotate(-1.5deg); }
.disc-tile .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--navy-950);
  font-size: 1.6rem;
}
.disc-tile h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--navy-800); }
.disc-tile p { font-size: 0.85rem; line-height: 1.5; }

/* ---------- Belts ---------- */

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.badge-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.badge-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.badge-medal {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(11,15,20,0.1);
  position: relative;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.12);
}
.badge-medal::after {
  content: "★";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.badge-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.badge-card p { font-size: 0.88rem; line-height: 1.5; }
.badge-note {
  text-align: center;
  margin-top: 36px;
  font-weight: 600;
  color: var(--ink-soft);
}

.bm-white { background: var(--belt-white); }
.bm-white::after { color: #c9c2b2; }
.bm-yellow { background: var(--belt-yellow); }
.bm-orange { background: var(--belt-orange); }
.bm-green { background: var(--belt-green); }
.bm-blue { background: var(--belt-blue); }
.bm-purple { background: var(--belt-purple); }
.bm-red { background: var(--belt-red); }
.bm-black {
  background: linear-gradient(135deg, #3a4048 0%, var(--belt-black) 55%, #000 100%);
  border-color: #4a525c;
}

/* ---------- Locations ---------- */

.loc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.loc-card {
  width: calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.loc-card h3 { font-size: 1.12rem; }
.loc-card .town {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-600);
}
.loc-card p { font-size: 0.92rem; flex: 1; }
.loc-card .loc-links { display: flex; gap: 14px; margin-top: 8px; }
.loc-card .loc-links a {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--cyan-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.loc-card .loc-links a:hover { color: var(--navy-950); }
.loc-card ul { list-style: none; display: grid; gap: 7px; margin: 4px 0 0; flex: 1; }
.loc-card li {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.loc-card li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
}
.loc-card .venue {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- Timetable ---------- */

.timetable-card {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.timetable-row {
  display: grid;
  grid-template-columns: 64px 1.2fr 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(11,15,20,0.07);
}
.timetable-row:last-child { border-bottom: none; }
.timetable-row.head {
  background: var(--navy-950);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding-block: 16px;
}
.timetable-row .mascot { width: 44px; height: 44px; object-fit: contain; }
.timetable-row b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.2rem; }
.timetable-row span { font-weight: 600; color: var(--ink-soft); }
.timetable-row .time {
  background: var(--cyan-pale);
  color: var(--cyan-700);
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  text-align: center;
  white-space: nowrap;
}
.timetable-note {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  color: var(--ink-soft);
}
.timetable-note b { color: var(--ink); }

/* ---------- Pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 28px;
}
.price-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 360px)); }
@media (max-width: 1020px) {
  .price-grid.cols-3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cyan-pale);
  transition: transform 0.3s ease;
}
.price-card:hover { transform: translateY(-8px); }
.price-card.featured {
  background: var(--navy-950);
  color: #fff;
  border-color: var(--navy-950);
}
.price-card.featured h3, .price-card.featured li { color: #fff; }
.price-card.featured li::before { background: rgba(255,255,255,0.16); color: var(--cyan-500); }
.price-card.featured p { color: rgba(255,255,255,0.75); }
.price-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.price-card .launch {
  display: inline-block;
  background: var(--cyan-500);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.price-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.price-card li {
  padding-left: 30px;
  position: relative;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cyan-pale);
  color: var(--cyan-700);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Coach profile / team ---------- */

.coach-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}
.coach-photo-wrap { position: relative; }
.coach-photo-wrap img.coach-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.coach-photo-wrap .coach-badge {
  position: absolute;
  top: -28px; right: -24px;
  width: 120px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.3));
  animation: bob 6s ease-in-out infinite;
}
.coach-card h2 { margin-bottom: 14px; }
.coach-card p { margin-bottom: 16px; }
.coach-card .coach-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}
.team-card .body { padding: 18px 16px 22px; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; font-weight: 700; color: var(--cyan-600); }

/* single centred feature photo */
.feature-photo {
  display: block;
  width: min(860px, 100%);
  margin: clamp(30px, 5vw, 44px) auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.photo-strip img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 3 / 3.8;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease;
}
.photo-strip img:hover { transform: scale(1.03) rotate(-1deg); }
.photo-strip img:nth-child(even) { margin-top: 26px; }

/* ---------- Shop ---------- */

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(30px, 5vw, 48px);
}
.filter-chips button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-800);
  background: var(--grey-mist);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.filter-chips button:hover { background: var(--cyan-pale); transform: translateY(-2px); }
.filter-chips button.on { background: var(--navy-950); color: #fff; }

.shop-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.product-card {
  width: calc((100% - 66px) / 4);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-card .photo {
  aspect-ratio: 1;
  background: var(--grey-bg);
  position: relative;
}
.product-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-card .photo .noimg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.product-card .photo .noimg img { width: 45%; height: auto; opacity: 0.2; }
.product-card .sale {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cyan-500);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.product-card .body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card .cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-600);
}
.product-card h3 { font-size: 1.02rem; line-height: 1.25; }
.product-card .price {
  font-weight: 800;
  color: var(--ink);
  margin-top: auto;
  padding-top: 8px;
}
.product-card .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9rem;
  margin-top: 10px;
}
.shop-note {
  text-align: center;
  margin-top: 36px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* single product */
.product-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.product-gallery .main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-bg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1;
  position: relative;
}
.product-gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery .thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-gallery .thumbs img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-gallery .thumbs img:hover { transform: translateY(-2px); }
.product-gallery .thumbs img.on { border-color: var(--cyan-500); }
.product-info .cat {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-600);
}
.product-info h1 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin: 8px 0 14px; }
.product-info .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
}
.product-info .price .was {
  font-size: 1rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-left: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}
.product-info .stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan-700);
  margin: 10px 0 4px;
}
.product-info .stock::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--belt-green);
}
.product-info .stock.out::before { background: var(--belt-red); }
.product-desc { margin: 18px 0 26px; }
.product-desc p { margin-bottom: 12px; font-size: 0.98rem; }
.product-desc ul { margin: 0 0 14px 20px; color: var(--ink-soft); font-size: 0.95rem; display: grid; gap: 6px; }
.variation-picker {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  max-width: 420px;
}
.variation-picker label {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.variation-picker select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--grey-mist);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.variation-picker select:focus { border-color: var(--cyan-500); background: #fff; }

.product-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.product-fineprint { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.back-to-shop {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cyan-700);
  margin-bottom: 22px;
}
.back-to-shop:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .product-split { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}

@media (max-width: 980px) {
  .product-card { width: calc((100% - 44px) / 3); }
}
@media (max-width: 720px) {
  .product-card { width: calc((100% - 22px) / 2); }
}

/* ---------- Docs / downloads ---------- */

.doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.contact-info-card {
  background: var(--navy-950);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-info-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 14px; }
.contact-info-card > p { color: rgba(255,255,255,0.85); font-size: 0.98rem; margin-bottom: 28px; }
.contact-rows { display: grid; gap: 18px; position: relative; z-index: 2; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .ico {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(4,169,236,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-row b { display: block; font-size: 0.95rem; }
.contact-row span { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 600; overflow-wrap: anywhere; }
.contact-row a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.contact-row a:hover { color: var(--cyan-500); }
.contact-info-card .info-emblem {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 190px;
  opacity: 0.14;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  box-shadow: var(--shadow-card);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card .form-sub { font-size: 0.95rem; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--grey-mist);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan-500);
  background: #fff;
}
.form-success {
  display: none;
  background: var(--cyan-pale);
  border-radius: 16px;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--cyan-700);
  margin-top: 18px;
}
.form-success.show { display: block; animation: popIn 0.5s cubic-bezier(0.34, 1.5, 0.5, 1); }
.form-error {
  display: none;
  background: #fbe3df;
  border-radius: 16px;
  padding: 16px 22px;
  font-weight: 700;
  color: #a63a28;
  margin-top: 18px;
}
.form-error.show { display: block; animation: popIn 0.5s cubic-bezier(0.34, 1.5, 0.5, 1); }
.form-error a { color: inherit; text-decoration: underline; }
.form-field.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.btn.sending { opacity: 0.6; pointer-events: none; }
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  text-align: left;
  padding: 22px 26px;
  cursor: pointer;
}
.faq .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cyan-pale);
  color: var(--cyan-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.35s ease, background 0.3s ease;
}
.faq.open .plus { transform: rotate(45deg); background: var(--cyan-600); color: #fff; }
.faq .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq .answer p { padding: 0 26px 24px; font-size: 0.96rem; }

/* ---------- Cookie notice ---------- */

.cookie-bar {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 44px rgba(11, 15, 20, 0.25);
  padding: 12px 12px 12px 24px;
  width: max-content;
  max-width: min(92vw, 720px);
  animation: cookieUp 0.6s cubic-bezier(0.34, 1.3, 0.4, 1) 0.8s backwards;
}
@keyframes cookieUp {
  from { transform: translateX(-50%) translateY(120%); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-bar p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}
.cookie-bar p a {
  color: var(--cyan-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-decline {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.cookie-decline:hover { color: var(--ink); }
.cookie-accept { padding: 10px 24px; font-size: 0.9rem; }
.cookie-bar.hide { display: none; }

@media (max-width: 720px) {
  .cookie-bar {
    flex-wrap: wrap;
    justify-content: flex-end;
    border-radius: 22px;
    padding: 18px 20px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
  .cookie-bar p { width: 100%; }
}

/* ---------- Policy pages ---------- */

.policy {
  max-width: 780px;
  margin: 0 auto;
}
.policy h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 44px 0 16px;
  color: var(--navy-800);
}
.policy p { margin-bottom: 16px; font-size: 1rem; }
.policy ul { margin: 0 0 18px; padding-left: 4px; list-style: none; display: grid; gap: 10px; }
.policy li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.policy li::before {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
}
.policy li b { color: var(--ink); }
.policy a { color: var(--cyan-700); text-decoration: underline; text-underline-offset: 2px; }
.policy .policy-meta {
  font-weight: 700;
  color: var(--cyan-600);
  margin-bottom: 28px;
}
.policy .policy-contact {
  background: var(--cyan-pale);
  border-radius: 18px;
  padding: 20px 24px;
  font-weight: 600;
  margin-top: 40px;
}

/* ---------- Footer ---------- */

footer {
  background: var(--navy-950);
  color: #cbd6df;
  padding: 64px 0 36px;
}
footer p { color: #9fadb9; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}
.footer-brand img { width: 190px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }
.footer-brand .tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--cyan-500);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  color: #fff;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #9fadb9;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--cyan-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; max-width: 68ch; }
.footer-legal p + p { margin-top: 8px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8eef4;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.socials a:hover { background: var(--cyan-500); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.7, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */

@media (min-width: 901px) and (max-width: 1120px) {
  .nav-side { gap: 6px; }
  .nav-side a:not(.btn) { padding: 8px 13px; font-size: 0.85rem; white-space: nowrap; }
  .nav-cta { padding: 9px 15px; font-size: 0.85rem; }
}

@media (max-width: 980px) {
  .section > .floaty, .page-hero .floaty { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .tilt-cards { grid-template-columns: repeat(2, 1fr); }
  .class-grid, .class-grid.cols-4 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .disciplines-grid { grid-template-columns: repeat(3, 1fr); }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-card { width: calc((100% - 20px) / 2); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .coach-split, .contact-grid { grid-template-columns: 1fr; }
  .split .photo-stack { order: -1; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-logo img { height: 46px; }
  .nav-menu {
    margin-left: 0;
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 99;
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 5vw 28px;
    gap: 12px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.4);
    transform: translateY(-130%);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.4, 1);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-side { flex-direction: column; align-items: stretch; gap: 12px; }
  .nav-side a:not(.btn), .nav-side .btn { text-align: center; justify-content: center; }
}

@media (max-width: 720px) {
  .hero-card { min-height: 74vh; }
  .hero-emblem { display: none; }
  .quotes { grid-template-columns: 1fr; }
  .tilt-cards { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .tilt-card { rotate: -2deg; }
  .tilt-card:nth-child(even) { rotate: 2deg; }
  .steps-grid, .steps-grid.three { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .loc-grid { max-width: 460px; margin-inline: auto; }
  .loc-card { width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .story-track { height: 220vh; }
  .timetable-row { grid-template-columns: 40px 1fr auto; }
  .timetable-row span:nth-of-type(1) { display: none; }
  .timetable-row .mascot { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
