/* =============================================================
   Han Basketball Academy — Design System
   Clean, high-fidelity, athletic-premium. Mobile-first.
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — Han dragon-crest blue palette */
  --ink:        #0a1430;   /* deep navy (logo shield) */
  --ink-soft:   #13214c;
  --court:      #1d52d6;   /* royal blue — primary action */
  --court-dark: #123bb0;
  --court-glow: rgba(29, 82, 214, 0.15);
  --amber:      #3ba9f4;   /* electric sky-blue accent (dragon highlights) */
  --amber-glow: rgba(59, 169, 244, 0.2);
  --paper:      #f5f8fd;   /* cool off-white */
  --paper-2:    #e9eff9;
  --line:       #dbe3f1;
  --muted:      #56607a;
  --muted-2:    #8893aa;
  --white:      #ffffff;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  --gradient-court: linear-gradient(135deg, var(--court) 0%, var(--court-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--court) 0%, var(--amber) 100%);
  --gradient-glow: radial-gradient(circle, var(--court-glow) 0%, transparent 70%);

  /* Typography */
  --font-display: "Archivo", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "Inter", "Helvetica Neue", system-ui, sans-serif;
  --font-zh:      "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;

  /* Spacing / layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-sm: 10px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(10,20,48,.04);
  --shadow-md: 0 12px 32px rgba(10,20,48,.08);
  --shadow-lg: 0 30px 70px rgba(10,20,48,.15);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
[hidden] { display: none !important; }

/* ---------- Bilingual visibility ---------- */
/* Both languages live in the DOM; only the selected language is visible. */
body:not([data-lang="zh"]) [lang="zh"],
body[data-lang="zh"] [lang="en"] { display: none !important; }
body[data-lang="zh"] [lang="zh"] { display: inline; }
body[data-lang="zh"] .brand small[lang="zh"] { display: block; }
body[data-lang="zh"] { font-family: var(--font-zh); }
body[data-lang="zh"] h1,
body[data-lang="zh"] h2,
body[data-lang="zh"] h3,
body[data-lang="zh"] .eyebrow { font-family: var(--font-zh); letter-spacing: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 800; letter-spacing: 0; }
.h-xl { font-size: clamp(2.6rem, 6.5vw, 5rem); }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.3rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }
p { color: var(--ink); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }

.text-gradient {
  background: linear-gradient(135deg, var(--white) 30%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.text-gradient--dark {
  background: linear-gradient(135deg, var(--ink) 30%, var(--court) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--court);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--court); display: inline-block; }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }

/* ---------- Ambient Effects ---------- */
.glow-wrapper { position: relative; overflow: hidden; }
.glow-blob {
  position: absolute;
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 8s ease-in-out infinite alternate;
}
.glow-blob--court {
  background: radial-gradient(circle, var(--court) 0%, transparent 70%);
}
.glow-blob--amber {
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
}
@keyframes pulse-glow {
  0% { transform: scale(0.9) translate(0px, 0px); opacity: 0.25; }
  100% { transform: scale(1.1) translate(20px, -20px); opacity: 0.35; }
}

.grid-bg {
  position: relative;
}
.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(29, 82, 214, 0.03) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(29, 82, 214, 0.03) 1.5px, transparent 1.5px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink p, .section--ink .lead { color: #b8bfca; }
.section--paper2 { background: var(--paper-2); }
.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.text-center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .95em 1.6em;
  font-family: var(--font-display);
  font-weight: 700; font-size: .98rem;
  border-radius: 12px; border: 2px solid transparent;
  transition: var(--transition-premium);
  white-space: nowrap;
}
.btn svg { width: 1em; height: 1em; }
.btn--primary {
  background: var(--court);
  color: var(--white);
  box-shadow: 0 8px 24px -6px rgba(29,82,214,.4);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -6px rgba(29,82,214,.5);
  background: var(--court-dark);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(10, 20, 48, 0.25);
}
.btn--dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -6px rgba(10, 20, 48, 0.35);
  background: var(--ink-soft);
}
.btn--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.btn--light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--lg { padding: 1.1em 2.2em; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: var(--transition-premium);
  padding-block: 22px;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 20, 48, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -10px rgba(10, 20, 48, 0.3);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: 0; transition: var(--transition-premium); }
.brand .logo {
  height: 50px; width: auto; flex: none; display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(10,20,48,.25));
  transition: var(--transition-premium);
}
.header:not(.scrolled) .brand .logo { filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
.footer .brand .logo { height: 46px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); transition: var(--transition-premium); }

/* Header is dark themed in all active states */
.header .brand,
.header .nav-links a { color: var(--paper); }
.header .brand small { color: rgba(255,255,255,.7); }
.header.scrolled .brand small { color: rgba(255,255,255,.5); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; font-size: .95rem; position: relative; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2.5px; width: 0; background: var(--amber); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.nav-tools { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: inline-flex; border: 1.5px solid rgba(255,255,255,.2); border-radius: 100px; overflow: hidden;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; background: rgba(255,255,255,.08);
  transition: var(--transition-premium);
}
.header.scrolled .lang-toggle { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.05); }
.lang-toggle button { padding: .4em .95em; background: transparent; color: var(--paper); border: 0; transition: background .2s, color .2s; }
.lang-toggle button.active { background: var(--court); color: #fff; }
.lang-toggle button:hover:not(.active) { background: rgba(255,255,255,.1); }

.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 6px; color: var(--paper); }
.nav-toggle span { width: 26px; height: 2.5px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--paper); overflow: hidden; padding-top: 90px;
  background: linear-gradient(135deg, #081027 0%, #122249 55%, #0a2f63 100%);
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(180deg, rgba(13,17,23,.55), rgba(13,17,23,.82)), var(--hero-img, none);
  background-size: cover; background-position: center; opacity: .55;
}
.hero__glow { position: absolute; width: 60vw; height: 60vw; border-radius: 50%; filter: blur(80px); opacity: .5; z-index: 0; }
.hero__glow.a { background: radial-gradient(circle, rgba(45,108,255,.55), transparent 60%); top: -10%; right: -10%; }
.hero__glow.b { background: radial-gradient(circle, rgba(59,169,244,.40), transparent 60%); bottom: -20%; left: -5%; }
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__inner { max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px);
  font-size: .85rem; font-weight: 600; margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #38d39f; box-shadow: 0 0 0 4px rgba(56,211,159,.25); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--amber); }
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: #d4d9e0; max-width: 600px; margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 56px); margin-top: 56px; }
.hero__stats .stat strong { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); display: block; line-height: 1; }
.hero__stats .stat span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #aab2bd; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll::after { content: ""; width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: scrollline 2s var(--ease) infinite; }
@keyframes scrollline { 0%{transform: scaleY(0); transform-origin: top;} 50%{transform: scaleY(1); transform-origin: top;} 50.1%{transform-origin: bottom;} 100%{transform: scaleY(0); transform-origin: bottom;} }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: var(--paper); padding-block: 26px; }
.trustbar .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 40px; }
.trustbar .ti { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .95rem; color: #cfd5dd; }
.trustbar .ti svg { width: 22px; height: 22px; color: var(--amber); flex: none; }

/* ---------- Camp inquiry flow ---------- */
.section--process { background: linear-gradient(180deg, var(--paper), #fff); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.process-step {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm); min-height: 210px;
  transition: var(--transition-premium);
  z-index: 2;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 82, 214, 0.2);
}
.process-step::after {
  content: ""; position: absolute; top: 48px; right: -24px; width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gradient-court); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; margin-bottom: 22px;
  box-shadow: 0 4px 10px rgba(29, 82, 214, 0.3);
}
.process-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); }

/* ---------- Cards / Programs ---------- */
.cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition-premium);
  display: flex; flex-direction: column;
  z-index: 2;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 82, 214, 0.3);
  box-shadow: 0 20px 40px -15px rgba(10, 20, 48, 0.12);
}
.card__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background-color: var(--paper-2);
}
.card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-img);
  background-position: center;
  background-size: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.card:hover .card__media::before {
  transform: scale(1.08);
}
.card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 2;
}
.card__tag.amber { background: var(--amber); color: var(--ink); }
.card__body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; z-index: 2; }
.card__body h3 { font-size: 1.35rem; }
.card__price { font-family: var(--font-display); font-weight: 800; color: var(--court); font-size: 1.05rem; }
.card__price small { color: var(--muted); font-weight: 500; font-family: var(--font-body); font-size: .85rem; }
.card ul.feat { display: flex; flex-direction: column; gap: 8px; margin: 6px 0; }
.card ul.feat li { display: flex; gap: 10px; font-size: .92rem; color: var(--muted); }
.card ul.feat li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: rgba(29,82,214,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d52d6' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.card .card__foot { margin-top: auto; padding-top: 6px; }

/* ---------- Coach / About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--paper-2); box-shadow: var(--shadow-lg); }
.split__media picture { display: block; width: 100%; height: 100%; }
.split__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.split__media .badge-float {
  position: absolute; bottom: 18px; left: 18px; right: 18px; background: rgba(13,17,23,.82); backdrop-filter: blur(8px);
  color: #fff; border-radius: var(--radius-sm); padding: 16px 18px; display: flex; gap: 16px; align-items: center;
}
.badge-float .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--amber); line-height: 1; }
.quote { font-family: var(--font-display); font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 700; line-height: 1.3; border-left: 4px solid var(--court); padding-left: 20px; margin: 24px 0; }
.cred-list { display: grid; gap: 14px; margin-top: 24px; }
.cred-list li { display: flex; gap: 14px; align-items: flex-start; }
.cred-list .ic { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--paper-2); display: grid; place-items: center; color: var(--court); }
.cred-list .ic svg { width: 20px; height: 20px; }
.cred-list b { display: block; font-family: var(--font-display); }
.cred-list span { color: var(--muted); font-size: .92rem; }

/* ---------- Stats strip ---------- */
.stats-strip { grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); text-align: center; gap: 28px; }
.stats-strip .s strong { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.6rem); display: block; line-height: 1; color: var(--white); }
.stats-strip .s span { color: #aab2bd; font-size: .9rem; letter-spacing: .04em; }
.section--ink .stats-strip .s strong { color: var(--amber); }

/* ---------- Testimonials ---------- */
.testi-grid { grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); }
.testi {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow-sm);
}
.testi .stars { color: var(--amber); letter-spacing: 2px; font-size: 1.05rem; }
.testi p { font-size: 1.02rem; line-height: 1.6; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .av { width: 46px; height: 46px; border-radius: 50%; background: var(--court); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; flex: none; }
.testi .who b { display: block; }
.testi .who span { color: var(--muted); font-size: .85rem; }

/* ---------- Camp CTA banner ---------- */
.camp-banner {
  position: relative; border-radius: var(--radius); overflow: hidden; color: #fff;
  background: linear-gradient(120deg, var(--court-dark), var(--court) 60%, var(--amber));
  padding: clamp(40px, 6vw, 72px); box-shadow: var(--shadow-lg);
}
.camp-banner::before { content: "🏀"; position: absolute; font-size: 16rem; right: -2rem; bottom: -4rem; opacity: .12; }
.camp-banner .wrap-in { position: relative; z-index: 1; max-width: 640px; }
.camp-banner h2 { color: #fff; }
.camp-banner p { color: rgba(255,255,255,.9); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.pill { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); padding: 7px 15px; border-radius: 8px; font-size: .85rem; font-weight: 600; }

/* ---------- Locations ---------- */
.loc-grid { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.loc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px;
  transition: var(--transition-premium); display: flex; flex-direction: column; gap: 6px;
  z-index: 2; position: relative;
}
.loc[data-map-query] { cursor: pointer; }
.loc:hover { border-color: var(--court); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.loc.active { border-color: var(--court); background: var(--paper-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.loc .pin { color: var(--court); }
.loc b { font-family: var(--font-display); font-size: 1.05rem; }
.loc span { color: var(--muted); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.faq__q .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq__item.open .faq__q .chev { transform: rotate(45deg); background: var(--court); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 0 22px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-info .ci { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .ci .ic { flex: none; width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: var(--amber); }
.contact-info .ci b { font-family: var(--font-display); display: block; }
.contact-info .ci a, .contact-info .ci span { color: #cfd5dd; }
.coach-mini {
  display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: center;
  margin-top: 26px; padding: 16px; border-radius: var(--radius); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.coach-mini img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: center 28%; }
.coach-mini b { display: block; color: #fff; font-family: var(--font-display); line-height: 1.2; margin-bottom: 4px; }
.coach-mini span { color: #cfd5dd; font-size: .92rem; }
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px,4vw,40px);
  box-shadow: 0 24px 64px -12px rgba(10, 20, 48, 0.12);
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.form .field { margin-bottom: 18px; }
.form label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink-soft); }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; background: var(--paper); transition: var(--transition-premium);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--court);
  box-shadow: 0 0 0 4px var(--court-glow);
  background: #fff;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form button { width: 100%; justify-content: center; margin-top: 6px; }

/* ---------- Footer ---------- */
.footer { background: #080b10; color: #aab2bd; padding-block: clamp(48px,6vw,80px) 30px; position: relative; z-index: 2; }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em; }
.footer a { display: block; padding: 5px 0; color: #aab2bd; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .socials { display: flex; gap: 12px; margin-top: 16px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; padding: 0; transition: var(--transition-premium); }
.footer .socials a:hover { background: var(--court); color: #fff; transform: translateY(-2px); }
.footer .socials svg { width: 18px; height: 18px; }
.footer .legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: none; padding: 12px var(--gutter); background: rgba(10, 20, 48, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.08); box-shadow: 0 -6px 20px rgba(0,0,0,.15); }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; }
.reveal[data-delay="8"] { transition-delay: .64s; }

/* ---------- Page hero (subpages) ---------- */
.pagehero {
  background: linear-gradient(135deg,#081027,#102a57);
  color: var(--paper);
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.pagehero .hero__glow.a { top: -30%; }
.pagehero .crumbs { font-size: .85rem; color: #aab2bd; margin-bottom: 14px; }
.pagehero .crumbs a:hover { color: #fff; }
.pagehero h1 { max-width: 800px; z-index: 1; position: relative; }
.pagehero p { color: #cfd5dd; max-width: 620px; margin-top: 16px; z-index: 1; position: relative; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.notice { background: #fff7e6; border: 1px dashed var(--court); color: #92600a; font-size: .82rem; padding: 4px 10px; border-radius: 8px; display: inline-block; }

/* ---------- Pin Bounce Keyframes ---------- */
@keyframes pin-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}
.loc .pin svg {
  animation: pin-bounce 0.6s ease-in-out infinite alternate;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 0; }
  .process-step::after { display: none; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: var(--ink); padding: 40px; transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav-links a { color: var(--paper) !important; font-size: 1.3rem; font-family: var(--font-display); }
  body.nav-open .nav-links { transform: none; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-toggle { display: flex; color: var(--paper); }
  .header.scrolled .nav-toggle { color: var(--paper); }
  .desktop-cta { display: none; }
  .sticky-cta { display: block; }
  .lang-toggle { font-size: 0.95rem; }
  .lang-toggle button { padding: 0.65em 1.25em; }
  body { padding-bottom: 70px; }
}
@media (max-width: 560px) {
  .footer .cols { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-block: 120px 64px; }
  .hero__badge { margin-bottom: 18px; }
  .hero h1 { margin-bottom: 16px; }
  .hero .h-xl { font-size: 2.25rem; line-height: 1.06; }
  .hero__lead { font-size: 1rem; line-height: 1.5; margin-bottom: 24px; }
  .hero__cta { gap: 10px; }
  .hero__stats { margin-top: 34px; gap: 20px 28px; }
  .hero__stats .stat strong { font-size: 1.55rem; }
  .hero__stats .stat span { font-size: .72rem; }
  .hero__scroll { display: none; }
  .section { padding-block: 56px; }
  .brand small { display: none; }
  .brand { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .loc .pin svg { animation: none; }
}
