/* ============================================================
   FORM — 피트니스 디자인 시스템
   삼성 라이트 블루 톤 · Pretendard · 미니멀 프리미엄
   ============================================================ */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

:root {
  /* Blue — 밝은 라이트 블루 액센트 */
  --blue-700: #1145b8;
  --blue-600: #1557d6;
  --blue-500: #1e6bff;   /* primary */
  --blue-400: #4d8bff;
  --blue-300: #80abff;
  --blue-100: #e6f0ff;
  --blue-50:  #f2f7ff;

  /* Cool neutrals */
  --ink-900: #0a1626;
  --ink-700: #1f3043;
  --ink-500: #56697e;
  --ink-400: #8395a8;
  --ink-300: #b9c5d2;
  --line:    #e4eaf1;
  --line-soft:#eef2f7;

  --bg:      #f6f9fd;
  --surface: #ffffff;
  --navy:    #081628;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(13, 44, 92, 0.05);
  --shadow:    0 14px 40px rgba(13, 44, 92, 0.08);
  --shadow-lg: 0 30px 70px rgba(13, 44, 92, 0.14);
  --shadow-blue: 0 16px 40px rgba(30, 107, 255, 0.28);

  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 { text-wrap: pretty; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

section { position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-500);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--blue-500);
  border-radius: 2px;
}
.eyebrow.center::before { display: none; }

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px); margin: 18px 0 16px; color: var(--ink-900);
}
.section-head p { font-size: 18px; color: var(--ink-500); }

.section-pad { padding: 110px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; padding: 15px 26px;
  border-radius: 999px; transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-500); color: #fff; box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 20px 46px rgba(30,107,255,0.36); }
.btn-ghost {
  background: var(--surface); color: var(--ink-900); border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue-300); color: var(--blue-600); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.14); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.22); }
.btn-light:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Placeholder imagery ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--blue-50) 0 14px, var(--blue-100) 14px 28px);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-600);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; letter-spacing: 0.06em; font-weight: 600;
  padding: 7px 12px; background: rgba(255,255,255,0.82);
  border-radius: 999px; box-shadow: var(--shadow-sm); color: var(--blue-600);
}
.ph.dark {
  background: repeating-linear-gradient(135deg, #122a4d 0 14px, #0c2241 14px 28px);
}
.ph.dark::after { background: rgba(8,22,40,0.7); color: var(--blue-300); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav.scrolled {
  background: rgba(246, 249, 253, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -0.03em; color: var(--ink-900); white-space: nowrap; }
.logo-img { width: 34px; height: 34px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15.5px; font-weight: 600; color: var(--ink-700); transition: color 0.25s; white-space: nowrap; }
.nav-links a:hover { color: var(--blue-500); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 15px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: all 0.3s var(--ease); }

/* Nav over dark hero (top, not scrolled) */
.nav:not(.scrolled) .logo { color: #fff; }
.nav:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.92); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav:not(.scrolled) .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.28); }
.nav:not(.scrolled) .btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.nav:not(.scrolled) .nav-burger span { background: #fff; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  display: flex; flex-direction: column; padding: 100px 28px 40px;
  gap: 6px; transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: all 0.45s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 24px; font-weight: 700; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink-900); }
.mobile-menu .btn { margin-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 150px 0 90px; overflow: hidden; }

/* Full-bleed title screen */
.hero-bg {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 110px;
  background: #07111f url("img/gym-hero.jpg") center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,16,32,0.6) 0%, rgba(8,26,55,0.34) 40%, rgba(12,40,86,0.08) 72%, rgba(12,40,86,0) 100%),
    linear-gradient(to bottom, rgba(6,16,32,0.26) 0%, rgba(6,16,32,0) 26%, rgba(6,16,32,0) 64%, rgba(6,16,32,0.22) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; text-shadow: 0 2px 20px rgba(4,12,26,0.6); }
.hero.hero-bg h1 { font-size: clamp(42px, 6vw, 78px); color: #fff; letter-spacing: -0.035em; }
.hero.hero-bg h1 .accent { color: var(--blue-300); }
.hero-bg .hero-sub { margin: 26px 0 36px; max-width: 600px; display: flex; flex-direction: column; gap: 6px; }
.hero-bg .hero-sub .line { font-size: clamp(17px, 1.9vw, 21px); font-weight: 600; color: #fff; line-height: 1.4; }
.hero-bg .hero-sub .line:first-child { color: rgba(255,255,255,0.8); font-weight: 500; }
.hero-bg .hero-badge {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; backdrop-filter: blur(8px);
}
.hero-bg .hero-stats { display: flex; gap: 44px; margin-top: 52px; }
.hero.hero-bg .hero-stats .num { font-size: 38px; font-weight: 800; color: #fff; letter-spacing: -0.03em; text-shadow: 0 2px 16px rgba(4,12,26,0.7); }
.hero.hero-bg .hero-stats .num .u { color: var(--blue-300); }
.hero.hero-bg .hero-stats .lbl { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.92); margin-top: 3px; text-shadow: 0 1px 12px rgba(4,12,26,0.85); white-space: nowrap; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px); animation: heroBounce 2s var(--ease) infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes heroBounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px 8px 10px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--blue-600);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 0 4px rgba(30,107,255,0.18); }
.hero h1 { font-size: clamp(40px, 5.6vw, 70px); color: var(--ink-900); letter-spacing: -0.035em; }
.hero h1 .accent { color: var(--blue-500); }
.hero-sub { font-size: 19px; color: var(--ink-500); margin: 26px 0 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 52px; }
.hero-stats .stat .num { font-size: 34px; font-weight: 800; color: var(--ink-900); letter-spacing: -0.03em; }
.hero-stats .stat .lbl { font-size: 14px; color: var(--ink-500); margin-top: 2px; }

.hero-visual { position: relative; }
.hero-visual .ph, .hero-photo { aspect-ratio: 4/5; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; object-position: top center; }
.hero-float {
  position: absolute; background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 18px; display: flex; align-items: center; gap: 13px;
}
.hero-float.one { bottom: 30px; left: -28px; }
.hero-float.two { top: 36px; right: -22px; }
.hero-float .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-50); display: grid; place-items: center; color: var(--blue-500); flex-shrink: 0; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float .ft-t { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.hero-float .ft-s { font-size: 12.5px; color: var(--ink-500); }

/* logos strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-inner { display: flex; align-items: center; gap: 30px; padding: 26px 0; flex-wrap: wrap; }
.trust-label { font-size: 13.5px; font-weight: 600; color: var(--ink-400); white-space: nowrap; }
.trust-logos { display: flex; gap: 38px; flex-wrap: wrap; flex: 1; }
.trust-logos .feat { display: inline-flex; align-items: center; gap: 9px; font-size: 15.5px; font-weight: 700; color: var(--ink-700); letter-spacing: -0.01em; }
.trust-logos .feat i { width: 9px; height: 9px; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 0 4px rgba(30,107,255,0.14); flex-shrink: 0; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prog-grid-3 { grid-template-columns: repeat(3, 1fr); }
.prog-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.prog-card .ic {
  width: 56px; height: 56px; border-radius: 15px; background: var(--blue-50);
  display: grid; place-items: center; color: var(--blue-500); margin-bottom: 22px;
  transition: all 0.4s var(--ease);
}
.prog-card:hover .ic { background: var(--blue-500); color: #fff; transform: scale(1.05); }
.prog-card .ic svg { width: 28px; height: 28px; }
.prog-card h3 { font-size: 21px; color: var(--ink-900); margin-bottom: 10px; }
.prog-card p { font-size: 15.5px; color: var(--ink-500); }
.prog-card .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.prog-card .tags span { font-size: 12.5px; font-weight: 600; color: var(--blue-600); background: var(--blue-50); padding: 5px 11px; border-radius: 999px; }
.prog-card[data-gallery] { cursor: pointer; }
.prog-card[data-gallery]:focus-visible { outline: 2px solid var(--blue-400); outline-offset: 3px; }
.prog-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-size: 14.5px; font-weight: 700; color: var(--blue-600); transition: gap 0.3s var(--ease); }
.prog-more .arrow { transition: transform 0.3s var(--ease); }
.prog-card[data-gallery]:hover .prog-more { gap: 11px; }
.prog-card[data-gallery]:hover .prog-more .arrow { transform: translateX(3px); }

/* Program photo modal */
.pmodal { position: fixed; inset: 0; z-index: 200; display: none; }
.pmodal.open { display: block; }
.pmodal-backdrop { position: absolute; inset: 0; background: rgba(6,16,32,0.66); backdrop-filter: blur(4px); animation: pmFade 0.3s var(--ease); }
.pmodal-box {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(940px, calc(100vw - 40px)); max-height: calc(100vh - 56px); overflow-y: auto;
  background: var(--surface); border-radius: var(--radius-xl); padding: 38px;
  box-shadow: var(--shadow-lg); animation: pmPop 0.35s var(--ease);
}
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pmPop { from { opacity: 0; transform: translate(-50%, -46%) scale(0.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.pmodal-close {
  position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg); color: var(--ink-700); display: grid; place-items: center; transition: all 0.25s var(--ease);
}
.pmodal-close:hover { background: var(--blue-50); color: var(--blue-600); }
.pmodal-close svg { width: 20px; height: 20px; }
.pmodal-head { margin-bottom: 26px; }
.pmodal-head h3 { font-size: clamp(24px, 3vw, 32px); color: var(--ink-900); margin-top: 12px; }
.pmodal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pmodal-item { margin: 0; }
.pmodal-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); display: block; background: var(--blue-50); }
.pmodal-item figcaption { font-size: 13.5px; color: var(--ink-500); margin-top: 10px; text-align: center; }
@media (max-width: 720px) {
  .pmodal-box { padding: 24px; }
  .pmodal-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* Image lightbox */
.lightbox { position: fixed; inset: 0; z-index: 260; display: none; }
.lightbox.open { display: block; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(6,16,32,0.88); backdrop-filter: blur(4px); animation: pmFade 0.25s var(--ease); }
.lightbox img {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  max-width: calc(100vw - 48px); max-height: calc(100vh - 48px); width: auto; height: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); animation: pmPop 0.3s var(--ease); cursor: zoom-out;
}
.lightbox-close {
  position: absolute; top: 22px; right: 22px; z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.14); color: #fff; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.25); transition: all 0.25s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.26); }
.lightbox-close svg { width: 22px; height: 22px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-band { background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery-grid .ph { border-radius: var(--radius); height: 100%; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.gph { border-radius: var(--radius); overflow: hidden; height: 100%; }
.gph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.gph:hover img { transform: scale(1.05); }
.testi-note { text-align: center; font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 28px; }

/* Parking highlight */
.park-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-top: 52px; }
.park-photo { display: block; }
.park-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); cursor: zoom-in; transition: transform 0.5s var(--ease); }
.park-photo img:hover { transform: scale(1.02); }
.park-info h3 { font-size: clamp(23px, 2.8vw, 33px); color: var(--ink-900); margin: 16px 0 24px; }
.park-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.park-list li { display: flex; gap: 14px; align-items: flex-start; }
.park-list .chk { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-50); color: var(--blue-500); display: grid; place-items: center; margin-top: 2px; }
.park-list .chk svg { width: 15px; height: 15px; }
.park-list b { display: block; font-size: 17px; font-weight: 700; color: var(--ink-900); }
.park-list div span { font-size: 14.5px; color: var(--ink-500); }

/* ============================================================
   MEMBERSHIP / PRICING
   ============================================================ */
.price-toggle { display: inline-flex; align-items: center; gap: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 5px; margin: 0 auto 14px; }
.price-toggle button { padding: 10px 22px; border-radius: 999px; font-size: 15px; font-weight: 700; color: var(--ink-500); transition: all 0.3s var(--ease); white-space: nowrap; }
.price-toggle button.active { background: var(--blue-500); color: #fff; box-shadow: var(--shadow-blue); }
.price-save { display: block; text-align: center; font-size: 13.5px; font-weight: 600; color: var(--blue-500); margin-bottom: 48px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 32px; display: flex; flex-direction: column; transition: all 0.4s var(--ease); position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: #173a6e; border-color: #173a6e; box-shadow: var(--shadow-lg); }
.price-card.featured * { color: #fff; }
.price-badge { position: absolute; top: 24px; right: 28px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--blue-500); color: #fff !important; padding: 6px 13px; border-radius: 999px; white-space: nowrap; }
.price-card .plan { font-size: 15px; font-weight: 700; color: var(--blue-500); letter-spacing: 0.02em; }
.price-card.featured .plan { color: var(--blue-300); }
.price-card .price { display: flex; align-items: flex-end; gap: 5px; margin: 18px 0 6px; }
.price-card .price .amt { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink-900); }
.price-card.featured .price .amt, .price-card.featured .per { color: #fff !important; }
.permo { font-size: 14px; font-weight: 600; color: var(--blue-600); margin: -2px 0 14px; }
.permo b { font-weight: 800; }
.price-card.featured .permo { color: var(--blue-300); }
.price-card .price .per { font-size: 16px; color: var(--ink-500); margin-bottom: 10px; }
.price-card .desc { font-size: 15px; color: var(--ink-500); margin-bottom: 26px; }
.reco { font-size: 15px; color: var(--ink-700); margin-bottom: 26px; line-height: 1.55; }
.reco-tag { display: block; width: fit-content; white-space: nowrap; font-size: 12.5px; font-weight: 800; color: var(--blue-600); background: var(--blue-50); padding: 5px 11px; border-radius: 999px; margin-bottom: 9px; }
.price-card.featured .reco { color: rgba(255,255,255,0.86); }
.price-card.featured .reco-tag { color: var(--blue-300); background: rgba(255,255,255,0.12); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-700); }
.price-card.featured li { color: rgba(255,255,255,0.84); }
.price-card li .chk { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--blue-50); color: var(--blue-500); display: grid; place-items: center; margin-top: 2px; }
.price-card.featured li .chk { background: rgba(30,107,255,0.25); color: var(--blue-300); }
.price-card li .chk svg { width: 12px; height: 12px; }
.price-card .btn { width: 100%; }

/* FULL PACKAGE banner */
.full-pkg {
  margin-top: 22px; background: var(--navy); border-radius: var(--radius-lg);
  padding: 40px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.full-pkg::before {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,107,255,0.42), transparent 70%);
  top: -150px; left: -80px;
}
.fp-left { position: relative; z-index: 1; flex: 1; min-width: 280px; }
.fp-tag { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 0.1em; color: var(--blue-300); margin-bottom: 12px; }
.fp-left h3 { font-size: clamp(20px, 2.4vw, 27px); color: #fff; margin-bottom: 10px; letter-spacing: -0.02em; }
.fp-left p { font-size: 15.5px; color: rgba(255,255,255,0.7); max-width: 480px; }
.fp-right { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fp-price { display: flex; align-items: flex-end; gap: 6px; color: #fff; }
.fp-amt { font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.fp-unit { font-size: 22px; font-weight: 700; margin-bottom: 8px; }

/* Coach photo */
.coach-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ============================================================
   TRAINERS
   ============================================================ */
.trainer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trainer-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.4s var(--ease); }
.trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.trainer-card .ph { aspect-ratio: 1/1.1; }
.trainer-card .tbody { padding: 20px 22px 24px; }
.trainer-card .tname { font-size: 19px; font-weight: 800; color: var(--ink-900); }
.trainer-card .trole { font-size: 14px; color: var(--blue-500); font-weight: 600; margin-top: 2px; }
.trainer-card .tspec { font-size: 14px; color: var(--ink-500); margin-top: 12px; line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-band { background: var(--navy); color: #fff; }
.testi-band .section-head h2 { color: #fff; }
.testi-band .section-head p { color: rgba(255,255,255,0.6); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 30px; }
.testi-card .stars { display: flex; gap: 3px; color: var(--blue-400); margin-bottom: 18px; }
.testi-card .stars svg { width: 18px; height: 18px; }
.testi-card .quote { font-size: 16.5px; line-height: 1.62; color: rgba(255,255,255,0.9); }
.testi-card .who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.testi-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: repeating-linear-gradient(135deg, #173153 0 8px, #0f2540 8px 16px); flex-shrink: 0; }
.testi-card .who .n { font-size: 15px; font-weight: 700; color: #fff; }
.testi-card .who .m { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ============================================================
   LOCATION
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.loc-map .ph { aspect-ratio: 5/4; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.loc-map-link { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.loc-map-link img { width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.loc-map-link:hover img { transform: scale(1.04); }
.loc-map-link::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,16,32,0.5), rgba(6,16,32,0) 45%); }
.loc-map-pin {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-500); color: #fff; font-size: 15px; font-weight: 700;
  padding: 12px 18px; border-radius: 999px; box-shadow: var(--shadow-blue);
  transition: transform 0.3s var(--ease); white-space: nowrap;
}
.loc-map-link:hover .loc-map-pin { transform: translateY(-3px); }
.loc-map-pin svg { width: 18px; height: 18px; }
.testi-cta { text-align: center; margin-top: 44px; }
.loc-info h2 { font-size: clamp(28px, 3.6vw, 42px); color: var(--ink-900); margin-bottom: 22px; }
.loc-list { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }
.loc-row { display: flex; gap: 15px; align-items: flex-start; }
.loc-row .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue-500); display: grid; place-items: center; flex-shrink: 0; }
.loc-row .ic svg { width: 22px; height: 22px; }
.loc-row .lt { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.loc-row .ls { font-size: 15px; color: var(--ink-500); margin-top: 2px; }

/* ============================================================
   CTA / CONTACT FORM
   ============================================================ */
.contact-band { padding: 110px 0; }
.contact-card {
  background: var(--navy); border-radius: var(--radius-xl); padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.contact-card::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,107,255,0.4), transparent 70%);
  top: -160px; right: -120px;
}
.contact-left { position: relative; z-index: 1; }
.contact-left .eyebrow { color: var(--blue-300); }
.contact-left .eyebrow::before { background: var(--blue-300); }
.contact-left h2 { font-size: clamp(30px, 3.8vw, 44px); color: #fff; margin: 18px 0 16px; }
.contact-left p { font-size: 17px; color: rgba(255,255,255,0.7); }
.contact-left .perks { display: flex; flex-direction: column; gap: 13px; margin-top: 30px; }
.contact-left .perks div { display: flex; align-items: center; gap: 11px; font-size: 15.5px; color: rgba(255,255,255,0.85); }
.contact-left .perks .chk { width: 22px; height: 22px; border-radius: 50%; background: rgba(30,107,255,0.3); color: var(--blue-300); display: grid; place-items: center; }
.contact-left .perks .chk svg { width: 13px; height: 13px; }

.contact-form { position: relative; z-index: 1; background: #fff; border-radius: var(--radius-lg); padding: 32px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-700); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; font-size: 15px; font-family: inherit;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg);
  color: var(--ink-900); transition: all 0.25s;
}
.field textarea {
  width: 100%; padding: 13px 15px; font-size: 15px; font-family: inherit;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg);
  color: var(--ink-900); transition: all 0.25s; resize: vertical; min-height: 84px; line-height: 1.5;
}
.field textarea:focus { outline: none; border-color: var(--blue-400); background: #fff; box-shadow: 0 0 0 3px rgba(30,107,255,0.12); }
.field textarea::placeholder { color: var(--ink-400); }
.field label .opt { font-weight: 500; color: var(--ink-400); }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue-400); background: #fff; box-shadow: 0 0 0 3px rgba(30,107,255,0.12); }
.field input::placeholder { color: var(--ink-400); }
.contact-form .btn { width: 100%; margin-top: 8px; }
.form-note { font-size: 12.5px; color: var(--ink-400); text-align: center; margin-top: 14px; }
.form-success { text-align: center; padding: 40px 0; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--blue-50); color: var(--blue-500); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .ok svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 24px; color: var(--ink-900); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--ink-500); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-band { background: var(--surface); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; text-align: left; font-size: 18px; font-weight: 700; color: var(--ink-900); }
.faq-q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--blue-50); color: var(--blue-500); display: grid; place-items: center; flex-shrink: 0; transition: all 0.35s var(--ease); }
.faq-q .pm svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.faq-item.open .pm { background: var(--blue-500); color: #fff; }
.faq-item.open .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 4px 26px; font-size: 16px; color: var(--ink-500); line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .logo { margin-bottom: 16px; }
.footer-about { font-size: 15px; color: var(--ink-500); max-width: 280px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--ink-900); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--ink-500); padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-500); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13.5px; color: var(--ink-400); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-500); transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--blue-500); color: #fff; border-color: var(--blue-500); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .prog-grid, .price-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .trainer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gph.g-tall { grid-row: auto; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; padding: 44px; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .section-pad { padding: 76px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero-stats { gap: 18px; }
  .hero-stats .stat .num { font-size: 28px; }
  .hero.hero-bg .hero-stats { gap: 16px; justify-content: space-between; max-width: 420px; }
  .hero.hero-bg .hero-stats .num { font-size: 28px; }
  .hero.hero-bg .hero-stats .lbl { font-size: 12.5px; letter-spacing: -0.01em; }
  .trust-inner { gap: 14px 0; }
  .trust-label { flex-basis: 100%; }
  .trust-logos { gap: 11px 16px; flex: none; width: 100%; }
  .trust-logos .feat { white-space: nowrap; font-size: 14px; }
  .hero-float.one { left: 8px; }
  .hero-float.two { right: 8px; }
  .prog-grid, .price-grid, .testi-grid, .trainer-grid, .gallery-grid, .loc-grid, .footer-top { grid-template-columns: 1fr; }
  .park-row { grid-template-columns: 1fr; gap: 28px; }
  .gph.g-wide, .gph.g-tall { grid-column: auto; grid-row: auto; }
  .price-card.featured { order: -1; }
  .contact-card { padding: 32px 24px; }
  .contact-form { padding: 24px; }
  .footer-top { gap: 32px; }
  .full-pkg { padding: 30px 26px; }
  .fp-right { align-items: flex-start; width: 100%; }
  .fp-amt { font-size: 52px; }
  .fp-right .btn { width: 100%; }
}
