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

:root {
  --primary: #e52222;
  --primary-dark: #c01a1a;
  --primary-light: #f05555;
  --bg: #0d0d0d;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --text: #f5f5f5;
  --muted: #888;
  --border: #222;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.04em; line-height: 1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary);
}
.tag::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--primary); }

.btn {
  display: inline-block; padding: 0.9rem 2.2rem; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 8px 30px rgba(229,34,34,0.45); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: #fff; color: #000; border-color: #fff; }
.btn-dark { background: #000; color: var(--primary); border: 2px solid var(--primary); }
.btn-dark:hover { background: var(--primary); color: #fff; }

/* ── REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ── NAV ──────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(229,34,34,0.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  text-decoration: none; display: flex; align-items: center;
}
.nav-logo-img {
  height: 52px; width: 52px; object-fit: contain; border-radius: 50%;
  background: #fff; padding: 2px;
  transition: transform 0.3s;
}
.nav-logo-img:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: #ccc; text-decoration: none; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none; color: inherit;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(13,13,13,0.99);
  z-index: 99; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 1.5rem; padding: 6.25rem 1.5rem 2rem;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.5rem; color: #fff; text-decoration: none; letter-spacing: 0.1em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--primary); }
@media (max-width: 768px) { .nav-links, .nav-cta { display: none; } .hamburger { display: flex; } }

/* ── OFFER BANNER ─────────────────────────────── */
.offer-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--primary); color: #fff;
  text-align: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.4rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.offer-banner span { font-size: 1rem; }
#nav { top: 32px; }
@media (max-width: 600px) { .offer-banner { font-size: 0.68rem; } }

/* ── HERO ─────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-top: 160px; /* clear the fixed banner (32px) + nav (~92px) with extra buffer */
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/hero.png');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
  filter: brightness(0.45) saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.5) 45%, rgba(13,13,13,0.1) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); animation: fadeUp 1s 0.3s both;
}
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--primary); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 0.9; color: #fff; margin-bottom: 0.5rem;
  animation: fadeUp 1s 0.5s both;
}
.hero-title .accent { color: var(--primary); }
.hero-brand {
  font-family: var(--font-display); font-size: clamp(1.5rem, 5vw, 4rem);
  color: rgba(255,255,255,0.55); letter-spacing: 0.08em; margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.65s both;
}
.hero-sub {
  max-width: 500px; color: #ccc; font-size: 1rem; margin-bottom: 2rem;
  border-left: 3px solid var(--primary); padding-left: 1rem;
  animation: fadeUp 1s 0.8s both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 1s 1s both; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
  animation: fadeUp 1s 1.3s both; z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes heroZoom { to { transform: scale(1); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

/* ── STATS BAR ────────────────────────────────── */
#stats { background: var(--primary); }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: rgba(0,0,0,0.2);
}
.stat-item { background: var(--primary); padding: 2rem 1.5rem; text-align: center; transition: background 0.3s; }
.stat-item:hover { background: var(--primary-dark); }
.stat-number { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; line-height: 1; display: block; }
.stat-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 0.4rem; display: block; }

/* ── ABOUT ────────────────────────────────────── */
#about { padding: 7rem 0; background: var(--bg2); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--primary); color: #fff; padding: 1.5rem;
  text-align: center; font-family: var(--font-display);
}
.about-badge .big { font-size: 3rem; line-height: 1; display: block; }
.about-badge .small { font-size: 0.7rem; letter-spacing: 0.1em; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; }
.about-content { display: flex; flex-direction: column; gap: 1.5rem; }
.about-title { font-size: clamp(2rem, 5vw, 4rem); color: #fff; }
.about-title span { color: var(--primary); }
.about-desc { font-size: 0.95rem; color: #ccc; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 0.75rem; }
.about-feature { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1rem; border-left: 3px solid var(--primary); background: var(--bg3); }
.about-feature-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
.about-feature span { font-size: 0.9rem; color: #ddd; font-weight: 600; }
@media (max-width: 768px) { .about-layout { grid-template-columns: 1fr; } .about-badge { right: 0; } }

/* ── PROGRAMS ─────────────────────────────────── */
#programs { padding: 7rem 0; background: var(--bg); }
.section-header { margin-bottom: 3.5rem; }
.section-title { font-size: clamp(2.2rem, 5vw, 4.5rem); color: #fff; margin-top: 0.5rem; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* card shell */
.program-card {
  background: var(--bg3); border-top: 3px solid var(--primary);
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

/* image area */
.program-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.program-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.program-card:hover .program-img-wrap img { transform: scale(1.06); }

/* badge stays in the image wrap */
.program-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--primary); color: #fff; font-size: 0.62rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.65rem;
}

/* content body — styled like about section */
.program-body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.program-name { font-family: var(--font-display); font-size: 1.65rem; color: #fff; line-height: 1; }
.program-desc-text { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }
.program-features { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.1rem; }
.program-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: #ddd; font-weight: 600; }
.program-feature-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ── MERITS ───────────────────────────────────── */
#merits { padding: 7rem 0; background: var(--bg2); }
.merits-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.merits-title-block { display: flex; flex-direction: column; gap: 1.5rem; }
.merits-big { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); color: #fff; line-height: 1.05; }
.merits-big span { color: var(--primary); }
.merits-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.8; }
.merits-list { display: flex; flex-direction: column; gap: 0.75rem; }
.merit-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.25rem; background: var(--bg3); border-left: 3px solid var(--primary);
  transition: transform 0.2s, background 0.2s;
}
.merit-item:hover { transform: translateX(6px); background: rgba(229,34,34,0.07); }
.merit-bullet {
  width: 28px; height: 28px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.merit-item span { font-size: 0.9rem; color: #ddd; font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 768px) { .merits-layout { grid-template-columns: 1fr; gap: 3rem; } }

/* ── COACHES ──────────────────────────────────── */
#coaches { padding: 7rem 0; background: var(--bg); }
.coaches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 3rem; margin-top: 3.5rem; }
.coach-card { display: grid; grid-template-columns: 160px 1fr; gap: 1.5rem; align-items: start; }
.coach-img-wrap { overflow: hidden; position: relative; }
.coach-img-wrap img { width: 160px; height: 200px; object-fit: cover; object-position: top; display: block; transition: transform 0.5s; }
.coach-card:hover .coach-img-wrap img { transform: scale(1.05); }
.coach-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.coach-card:hover .coach-accent { transform: scaleX(1); }
.coach-info { padding: 0.5rem 0; }
.coach-name { font-family: var(--font-display); font-size: 1.6rem; color: #fff; }
.coach-role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin: 0.3rem 0 0.75rem; }
.coach-bio { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }
.coach-medals { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.coach-medal { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #ddd; }
.coach-medal::before { content: ''; display: block; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 600px) { .coach-card { grid-template-columns: 1fr; } .coach-img-wrap img { width: 100%; height: 240px; } }

/* ── FACILITIES ───────────────────────────────── */
#facilities { padding: 7rem 0; background: var(--bg2); }
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }

/* photo card */
.facility-card {
  background: var(--bg3); border-top: 3px solid var(--primary);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.facility-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.facility-img-wrap { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.facility-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s; }
.facility-card:hover .facility-img-wrap img { transform: scale(1.05); }
.facility-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.facility-num-inline { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--primary); }
.facility-name { font-family: var(--font-display); font-size: 1.35rem; color: #fff; line-height: 1.1; }
.facility-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; margin-top: 0.2rem; }

/* ── CONTACT ──────────────────────────────────── */
#contact { padding: 7rem 0; background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-top: 3.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-tagline { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; line-height: 1.1; }
.contact-tagline span { color: var(--primary); }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon { color: var(--primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; font-weight: 700; }
.contact-detail-text strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 0.2rem; }
.contact-detail-text span { font-size: 0.95rem; color: var(--muted); }
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3); border: 1px solid var(--border); color: #fff;
  padding: 0.9rem 1rem; font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #222; }
.form-group textarea { resize: vertical; min-height: 90px; }
.success-msg {
  display: none; background: rgba(229,34,34,0.1); border: 1px solid var(--primary);
  color: var(--primary); padding: 1.25rem; text-align: center; font-weight: 700;
}
.success-msg.show { display: block; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } .form-row { grid-template-columns: 1fr; } }
/* ── DIRECTOR'S MESSAGE ───────────────────────── */
#director { padding: 7rem 0; background: var(--bg); }
.director-layout {
  display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 5rem;
  align-items: start; margin-top: 3.5rem;
}
.director-photo-col,
.director-msg-col { min-width: 0; }
.director-msg-col { overflow-wrap: break-word; }
.director-photo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.director-photo-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--bg3);
  border: 2px solid var(--border); display: flex;
  align-items: center; justify-content: center; overflow: hidden;
  color: var(--muted);
}
.director-photo-placeholder svg { width: 70%; height: 70%; }
.director-photo-label { text-align: center; }
.director-photo-name { display: block; font-family: var(--font-display); font-size: 1.3rem; color: #fff; letter-spacing: 0.05em; }
.director-photo-title { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; letter-spacing: 0.08em; text-transform: uppercase; }

.director-quote-mark { font-family: Georgia, serif; font-size: 6rem; color: var(--primary); line-height: 0.6; margin-bottom: 1.25rem; }
.director-greeting { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 1.5rem; }
.director-body { display: flex; flex-direction: column; gap: 1rem; }
.director-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.85; }
.director-highlight {
  margin: 1.75rem 0; padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--primary); background: var(--bg3);
  font-style: italic; font-size: 1rem; color: #fff; line-height: 1.7;
}
.director-closing { font-size: 0.92rem; color: var(--muted); line-height: 1.85; margin-bottom: 2rem; }
.director-sig { display: flex; align-items: center; gap: 1rem; }
.director-sig-line { width: 40px; height: 2px; background: var(--primary); flex-shrink: 0; }
.director-sig span { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); }

/* ── FOOTER ───────────────────────────────────── */
footer { background: #000; border-top: 2px solid rgba(229,34,34,0.3); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; color: var(--muted); margin-top: 1rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--primary); text-decoration: none; }
.footer-map {
  width: 100%; max-width: 100%; height: 220px; border: 0; display: block;
  border-radius: 4px;
}

/* ── BACK TO TOP ──────────────────────────────── */
#back-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px;
  background: var(--primary); color: #000; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; z-index: 50;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { transform: translateY(-4px); }
#back-top svg { width: 20px; height: 20px; }

/* ── LOGO TEXT ────────────────────────────────── */
.logo-main { color: #fff; }
.logo-sub { color: var(--primary); }

/* ── LOGIN / AUTH PAGE ────────────────────────── */
.page-login .auth-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5rem 1rem 3rem;
  background:
    radial-gradient(ellipse 90% 55% at 50% -35%, rgba(229, 34, 34, 0.14), transparent 52%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 45%, var(--bg) 100%);
}
.auth-page-inner { max-width: 480px; margin: 0 auto; }
.auth-card {
  width: 100%;
  background: var(--bg3);
  border-top: 3px solid var(--primary);
  padding: 2rem 2.25rem 2.25rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}
.auth-card .tag { margin-bottom: 0.75rem; }
.auth-card-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 2.25rem);
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.auth-card-lead {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.auth-form { margin-top: 0.25rem; }
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.25rem 0 0.5rem;
}
.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #ccc;
  cursor: pointer;
}
.auth-check input { width: 1rem; height: 1rem; accent-color: var(--primary); }
.auth-link-muted {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
}
.auth-link-muted:hover { color: var(--primary); }
.auth-submit { width: 100%; margin-top: 0.75rem; }
.auth-success {
  text-align: left;
  font-weight: 600;
  line-height: 1.65;
  margin-top: 0.5rem;
}
.auth-success a,
.auth-inline-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}
.auth-success a:hover,
.auth-inline-link:hover { text-decoration: underline; }
.auth-back { margin-top: 1.75rem; text-align: center; }
.auth-back-btn {
  width: 100%;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.auth-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2rem;
}
.auth-footer .footer-bottom {
  border-top: none;
  padding-top: 0;
  justify-content: center;
  text-align: center;
}
.nav-links a.nav-link-active,
.nav-links a[aria-current="page"] { color: var(--primary); }
.mobile-menu a[aria-current="page"] { color: var(--primary); }

/* ═══════════════════════════════════════════════
   MOBILE OVERRIDES  (≤ 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── OFFER BANNER ── */
  .offer-banner {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.75rem;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.35;
    min-height: 28px;
    height: auto;
  }
  .offer-banner span { font-size: 0.75rem; }

  /* ── NAV ── */
  #nav { top: 52px; padding: 0.6rem 0; }
  #nav.scrolled { padding: 0.5rem 0; }
  .nav-logo-img { height: 40px; width: 40px; }
  .container { padding: 0 1rem; }

  /* ── HERO ── */
  #hero {
    align-items: center;        /* vertically center on mobile */
    justify-content: center;
    padding-top: 112px;         /* clear banner + nav when banner may wrap */
    padding-bottom: 3rem;
    min-height: 100svh;
    text-align: left;
  }
  .hero-title { font-size: clamp(2.6rem, 12vw, 4.5rem); margin-bottom: 0.4rem; line-height: 0.95; }
  .hero-brand { font-size: clamp(1rem, 4.5vw, 1.6rem); margin-bottom: 1rem; letter-spacing: 0.05em; }
  .hero-sub { font-size: 0.86rem; margin-bottom: 1.5rem; }
  .hero-eyebrow { font-size: 0.7rem; margin-bottom: 1rem; }
  .hero-btns { gap: 0.75rem; }
  .hero-btns .btn { padding: 0.75rem 1.4rem; font-size: 0.78rem; }
  .hero-scroll { display: none; }

  /* ── STATS ── */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.5rem 1rem; }
  .stat-number { font-size: 2.5rem; }

  /* ── SECTION SPACING ── */
  #about, #programs, #merits, #coaches, #director, #facilities, #contact {
    padding: 4rem 0;
  }
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: clamp(2rem, 9vw, 3rem); }

  /* ── ABOUT ── */
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { aspect-ratio: 16/9; }
  .about-badge { right: 0; bottom: -1rem; }
  .about-badge .big { font-size: 2rem; }

  /* ── PROGRAMS ── */
  .programs-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .program-img-wrap { aspect-ratio: 16/9; }
  .program-body { padding: 1rem 1.1rem 1.25rem; }
  .program-name { font-size: 1.4rem; }
  .program-desc-text { font-size: 0.82rem; }
  .program-feature { font-size: 0.78rem; }

  /* ── MERITS ── */
  .merits-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .merits-big { font-size: clamp(2rem, 9vw, 3rem); }
  .merit-item { padding: 0.75rem 1rem; }
  .merit-item span { font-size: 0.82rem; }

  /* ── DIRECTOR ── */
  .director-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .director-photo-wrap { width: 100%; }
  .director-photo-placeholder {
    width: 100%;
    max-width: min(280px, 100%);
    margin-inline: auto;
    aspect-ratio: 3 / 4;
  }
  .director-photo-name { font-size: 1.15rem; }
  .director-quote-mark {
    font-size: clamp(2.75rem, 18vw, 4rem);
    line-height: 0.75;
    margin-bottom: 0.75rem;
  }
  .director-greeting { font-size: 0.95rem; margin-bottom: 1rem; }
  .director-body p { font-size: 0.88rem; line-height: 1.75; }
  .director-highlight {
    margin: 1.25rem 0;
    padding: 1rem 1rem 1rem 1.1rem;
    font-size: 0.92rem;
    border-left-width: 3px;
  }
  .director-closing { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .director-sig { flex-wrap: wrap; gap: 0.75rem; }
  .director-sig span { font-size: 0.75rem; line-height: 1.4; }

  /* ── COACHES ── */
  .coaches-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2rem; }
  .coach-card { grid-template-columns: 120px 1fr; gap: 1rem; }
  .coach-img-wrap img { width: 120px; height: 160px; }
  .coach-name { font-size: 1.3rem; }
  .coach-bio { font-size: 0.8rem; }
  .coach-medal { font-size: 0.75rem; }

  /* ── FACILITIES ── */
  .facilities-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }

  /* ── CONTACT ── */
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-tagline { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  /* 16px+ inputs avoid iOS Safari zoom-on-focus */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }

  /* ── FOOTER ── */
  footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-map { height: 200px; }

  /* ── MOBILE MENU ── */
  .mobile-menu a { font-size: clamp(1.35rem, 5.5vw, 2rem); }

  /* ── LOGIN PAGE ── */
  .page-login .auth-page { padding: 6.75rem 1rem 2.5rem; }
  .auth-card { padding: 1.5rem 1.25rem 1.75rem; }
  .auth-card-lead { font-size: 0.86rem; margin-bottom: 1.5rem; }
}

/* Notch / home indicator safe areas (iPhone etc.) */
#nav {
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}
#back-top {
  bottom: max(2rem, env(safe-area-inset-bottom));
  right: max(2rem, env(safe-area-inset-right));
}

/* Extra small phones */
@media (max-width: 380px) {
  .offer-banner { font-size: 0.58rem; }
  .hero-title { font-size: 2.5rem; }
  .coach-card { grid-template-columns: 1fr; }
  .coach-img-wrap img { width: 100%; height: 200px; }
}
