/* ============================================================
   MAIN.CSS — Elite Training Academy (all styles in one file)
   ============================================================ */

/* ---- Base (formerly css/style.css) ---- */
/* ═══════════════════════════════════════════════════
   ELITE TRAINING ACADEMY — Global Stylesheet
   Colors: Red #C8102E | Navy #002147 | White
═══════════════════════════════════════════════════ */

:root {
  --red:          #C8102E;
  --red2:         #e8293f;
  --navy:         #002147;
  --navy2:        #003070;
  --bg:           #ffffff;
  --bg-alt:       #f4f6fb;
  --dark:         #07080f;
  --card-bg:      #111423;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --radius:       14px;
  --radius-sm:    8px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Lato', sans-serif;
  --nav-height:   76px;
  --transition:   0.32s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-alt); color: var(--dark); overflow-x: hidden; min-height: 100vh; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--red); color: #fff; }

/* ── Container ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════ NAVBAR ══════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-height);
  display: flex; align-items: center; padding: 0 2rem;
  background: rgba(7,8,15,0.0);
  backdrop-filter: blur(0px);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, border-color .4s;
  border-bottom: 2px solid transparent;
}
.navbar.scrolled {
  background: rgba(7,8,15,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  border-bottom-color: var(--red);
}
.navbar.solid {
  background: rgba(7,8,15,0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--red);
}
.nav-inner { max-width: 1180px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: .65rem; }
.nav-logo img { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; background: #fff; padding: 3px; box-shadow: 0 0 0 2px rgba(200,16,46,.5); transition: box-shadow .3s; }
.nav-logo:hover img { box-shadow: 0 0 0 3px rgba(200,16,46,.8); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-display); font-size: 1.12rem; font-weight: 900; color: #fff; letter-spacing: .02em; text-transform: uppercase; }
.logo-main em { font-style: normal; color: var(--red); }
.logo-sub { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.38); }

.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav-links a { font-family: var(--font-display); font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); padding: .5rem 1rem; border-radius: 8px; transition: color var(--transition), background var(--transition); }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--red); }

.nav-cta { display: inline-flex; align-items: center; gap: .4rem; background: linear-gradient(135deg,var(--red),var(--red2)); color: #fff; font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .6rem 1.5rem; border-radius: 999px; box-shadow: 0 4px 18px rgba(200,16,46,.4); transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(200,16,46,.58); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(7,8,15,.98); backdrop-filter: blur(22px); padding: 1.5rem 2rem 2.5rem; z-index: 999; border-top: 1px solid rgba(200,16,46,.2); flex-direction: column; gap: .2rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--red); }
.nav-cta-mobile { margin-top: 1.2rem; text-align: center !important; background: linear-gradient(135deg,var(--red),var(--red2)) !important; color: #fff !important; padding: .85rem !important; border-radius: 999px; border-bottom: none !important; }

/* ══════════════ FOOTER ══════════════ */
.footer { background: var(--navy); position: relative; overflow: hidden; }
.footer::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg,var(--red),var(--navy2),var(--red)); }

.footer-top { padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }

.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.2rem; }
.footer-logo img { width: 64px; height: 64px; object-fit: contain; border-radius: 50%; background: #fff; padding: 4px; box-shadow: 0 0 0 2px rgba(200,16,46,.5); }
.footer-logo-text .logo-main { display: block; font-size: 1.15rem; }
.footer-logo-text .logo-sub { display: block; }

.footer-desc { font-size: .88rem; color: rgba(255,255,255,.48); line-height: 1.75; margin-bottom: 1.5rem; max-width: 320px; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .9rem; transition: background .3s, color .3s, border-color .3s; }
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }

.footer-col-title { font-family: var(--font-display); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 1px solid rgba(200,16,46,.2); }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-nav-links a { font-size: .88rem; color: rgba(255,255,255,.48); display: flex; align-items: center; gap: .5rem; transition: color .2s, gap .2s; }
.footer-nav-links a::before { content: '›'; color: var(--red); font-size: 1rem; }
.footer-nav-links a:hover { color: #fff; gap: .75rem; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: rgba(255,255,255,.48); }
.footer-contact-list .fc-icon { width: 28px; height: 28px; flex-shrink: 0; background: rgba(200,16,46,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: .75rem; margin-top: 2px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.2rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.26); }
.footer-copy span { color: var(--red); }
.footer-badges { display: flex; gap: .5rem; }
.footer-badge { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.38); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 4px 10px; border-radius: 999px; }

/* ══════════════ SHARED COMPONENTS ══════════════ */
.section-tag { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--red); background: rgba(200,16,46,.1); border: 1px solid rgba(200,16,46,.28); padding: 5px 14px; border-radius: 999px; margin-bottom: .8rem; }
.section-tag.light { background: rgba(200,16,46,.15); border-color: rgba(200,16,46,.4); }

.section-title { font-family: var(--font-display); font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 900; text-transform: uppercase; line-height: 1.1; margin-bottom: .7rem; }
.section-title em { font-style: normal; background: linear-gradient(135deg,var(--red),var(--red2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-title.light { color: #fff; }
.section-title.dark  { color: var(--navy); }

.section-sub { font-size: .95rem; color: var(--muted); max-width: 580px; line-height: 1.78; margin-bottom: 2.5rem; }
.section-sub.light { color: rgba(255,255,255,.58); }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }

.btn-primary { display: inline-flex; align-items: center; gap: .5rem; background: linear-gradient(135deg,var(--red),var(--red2)); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2rem; border-radius: 999px; box-shadow: 0 6px 24px rgba(200,16,46,.38); transition: transform .2s, box-shadow .2s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,16,46,.58); }
.btn-ghost { display: inline-flex; align-items: center; gap: .5rem; border: 1.5px solid rgba(255,255,255,.25); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2rem; border-radius: 999px; transition: background .3s, border-color .3s; }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-navy { display: inline-flex; align-items: center; gap: .5rem; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; padding: .8rem 1.8rem; border-radius: 999px; transition: background .3s, transform .2s; }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--delay,0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--delay,0s); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--delay,0s); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════ PAGE HERO (Inner pages) ══════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #010810 58%, rgba(200,16,46,.1) 100%);
  min-height: 360px; display: flex; align-items: center;
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle,rgba(200,16,46,.1),transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: 1180px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.page-hero-breadcrumb { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.2rem; }
.page-hero-breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--red); }
.page-hero-breadcrumb .sep { color: rgba(255,255,255,.2); }
.page-hero-breadcrumb .current { color: var(--red); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,4rem); font-weight: 900; text-transform: uppercase; color:#fff; line-height: 1; margin-bottom: .9rem; }
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.62); max-width: 520px; line-height: 1.78; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ---- Shared styles (merged from inline blocks) ---- */
:root { --red: #c8102e; --red2: #ff4d6d; --navy: #002147; --dark: #080a10; --card-bg: rgba(255,255,255,.04); --muted: rgba(255,255,255,.58); --radius: 18px; --font-display: "Barlow Condensed",sans-serif; --font-body: "DM Sans",sans-serif; --red-dim: rgba(200,16,46,.12); --red-glow: rgba(200,16,46,.30); --gold: #d4a017; --gold-dim: rgba(212,160,23,.14); --panel: #0e1018; --glass: rgba(255,255,255,.042); --glass-b: rgba(255,255,255,.08); --subtle: rgba(255,255,255,.08); --font-h: 'Bebas Neue', sans-serif; --font-sub: 'Barlow Condensed', sans-serif; --font-b: 'DM Sans', sans-serif; --radius-lg: 28px; --navy2: #003a78; --dark2: #08111f; --white: #ffffff; --border: #e5e7eb; --bg-alt: #f5f7fb; --radius-sm: 14px; }
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
img{max-width:100%;display:block}
ul{list-style:none}
.reveal,.reveal-left,.reveal-right{
      opacity:0;
      transform:translateY(24px);
      transition:opacity .6s ease, transform .6s ease;
    }
.visible{opacity:1 !important; transform:none !important}
.section-tag,.s-tag{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      font-family:var(--font-display);
      font-size:.72rem;
      font-weight:800;
      letter-spacing:.14em;
      text-transform:uppercase;
      color:var(--red);
      margin-bottom:.65rem;
    }
.section-title em,.about-title em,.coach-name em{
      font-style:normal;
      color:var(--red);
    }
.section-sub{
      font-size:1rem;
      color:var(--muted);
      max-width:720px;
      margin:0 auto;
      line-height:1.85;
    }
.btn-primary,.btn-ghost,.btn-sm,.btn-outline,.btn-white,.btn-white-ghost,.nav-cta,.nav-cta-mobile{
      display:inline-flex;
      align-items:center;
      gap:.55rem;
      border-radius:999px;
      font-family:var(--font-display);
      font-weight:800;
      letter-spacing:.06em;
      text-transform:uppercase;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
.btn-primary,.btn-sm,.btn-white,.nav-cta,.nav-cta-mobile{
      background:linear-gradient(135deg,var(--red),var(--red2));
      color:#fff;
      box-shadow:0 10px 26px rgba(200,16,46,.25);
    }
.btn-primary,.nav-cta,.nav-cta-mobile{padding:.9rem 1.5rem}
.btn-sm{padding:.6rem 1.2rem;font-size:.85rem}
.btn-ghost,.btn-outline,.btn-white-ghost{
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      background:transparent;
      padding:.85rem 1.35rem;
    }
.btn-primary:hover,.btn-sm:hover,.btn-white:hover,.nav-cta:hover,.nav-cta-mobile:hover{transform:translateY(-2px)}
.btn-ghost:hover,.btn-outline:hover,.btn-white-ghost:hover{
      border-color:rgba(255,255,255,.4);
      background:rgba(255,255,255,.06);
    }
.nav-inner{
      max-width:1200px;
      margin:0 auto;
      padding:1rem 3rem;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
    }
.nav-links a.active,.nav-links a:hover{color:#fff}
.nav-hamburger{
      display:none;
      background:transparent;
      border:none;
      width:42px;
      height:42px;
      gap:5px;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      cursor:pointer;
    }
.nav-hamburger span{
      width:22px;
      height:2px;
      background:#fff;
      display:block;
      border-radius:2px;
    }
.nav-mobile{
      display:none;
      flex-direction:column;
      gap:.8rem;
      padding:1rem 1.5rem 1.5rem;
      background:rgba(8,10,16,.98);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
.nav-mobile a{
      color:rgba(255,255,255,.85);
      font-family:var(--font-display);
      font-size:1rem;
      text-transform:uppercase;
      font-weight:700;
    }
.hero{
      position:relative;
      height:100vh;
      min-height:620px;
      overflow:hidden;
    }
.hero-slider{
      display:flex;
      height:100%;
      transition:transform .85s cubic-bezier(.25,.46,.45,.94);
      will-change:transform;
    }
.hero-slide{
      min-width:100%;
      height:100%;
      position:relative;
    }
.hero-slide img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
.hero-slide::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(0,21,47,.90) 0%, rgba(0,21,47,.62) 50%, rgba(200,16,46,.20) 100%);
    }
.hero-content-inner{
      max-width:1180px;
      margin:0 auto;
      width:100%;
    }
.hero-logo-badge{
      width:34px;
      height:34px;
      object-fit:contain;
      border-radius:50%;
      background:rgba(255,255,255,.15);
      padding:2px;
    }
.hero-heading{
      font-family:var(--font-display);
      font-size:clamp(2.8rem,6vw,5.5rem);
      font-weight:900;
      line-height:1.02;
      color:#fff;
      margin-bottom:1rem;
      max-width:720px;
    }
.hero-heading em{
      font-style:normal;
      background:linear-gradient(135deg,var(--red),var(--red2));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      background-clip:text;
    }
.hero-sub{
      font-size:1.05rem;
      color:rgba(255,255,255,.76);
      max-width:520px;
      margin-bottom:2.2rem;
      line-height:1.78;
    }
.hero-btns{
      display:flex;
      gap:1rem;
      flex-wrap:wrap;
    }
.hero-arrow{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(8px);
      border:1px solid rgba(255,255,255,.15);
      color:#fff;
      width:52px;
      height:52px;
      border-radius:50%;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1rem;
      transition:background .3s, transform .25s, border-color .3s;
      z-index:10;
    }
.hero-arrow:hover{
      background:var(--red);
      border-color:var(--red);
      transform:translateY(-50%) scale(1.1);
    }
.hero-prev{left:24px}
.hero-next{right:24px}
.hero-dots{
      position:absolute;
      bottom:28px;
      left:50%;
      transform:translateX(-50%);
      display:flex;
      gap:8px;
      z-index:10;
    }
.hero-dot{
      width:8px;
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.3);
      cursor:pointer;
      transition:background .25s,width .25s;
      border:none;
    }
.hero-dot.active{
      background:var(--red);
      width:26px;
    }
.hero-counter{
      position:absolute;
      bottom:28px;
      right:28px;
      font-size:.8rem;
      font-weight:700;
      color:rgba(255,255,255,.4);
      z-index:10;
      letter-spacing:.06em;
      font-family:var(--font-display);
    }
.hero-counter span{color:#fff}
.stats-bar{
      background:var(--red);
      padding:1.2rem 2rem;
    }
.stats-inner{
      max-width:1180px;
      margin:0 auto;
      display:flex;
      justify-content:space-around;
      flex-wrap:wrap;
      gap:1rem;
    }
.stat-item{text-align:center}
.about-section{
      padding:6rem 0 5rem;
      background:var(--dark);
      position:relative;
      overflow:hidden;
    }
.about-section::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,16,46,.09) 0, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 80%, rgba(200,16,46,.05) 0, transparent 60%);
      pointer-events:none;
    }
.about-header{
      text-align:center;
      margin-bottom:3.5rem;
    }
.about-title{
      font-family:var(--font-display);
      font-size:clamp(2.8rem,5.5vw,5.5rem);
      line-height:.9;
      text-transform:uppercase;
      color:#fff;
      margin-bottom:.6rem;
    }
.about-lead{
      font-size:1rem;
      color:var(--muted);
      max-width:640px;
      margin:0 auto;
      line-height:1.85;
    }
.about-intro{
      display:grid;
      grid-template-columns:1fr auto;
      gap:3.5rem;
      align-items:center;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      border-radius:24px;
      padding:2.5rem 3rem;
      margin-bottom:5rem;
      position:relative;
      overflow:hidden;
    }
.about-intro::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:4px;
      background:linear-gradient(180deg,var(--red),transparent);
    }
.about-intro-text p{
      font-size:.97rem;
      color:rgba(255,255,255,.7);
      line-height:1.95;
      margin-bottom:1rem;
    }
.about-intro-text p:last-child{margin-bottom:0}
.about-intro-text strong{color:#fff}
.about-stats{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:1px;
      background:rgba(255,255,255,.08);
      border-radius:16px;
      overflow:hidden;
      min-width:280px;
    }
.stat-cell .stat-num{
      display:block;
      font-family:var(--font-display);
      font-size:2rem;
      color:var(--red);
      line-height:1;
    }
.stat-cell .stat-lbl{
      font-family:var(--font-display);
      font-size:.62rem;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
      color:var(--muted);
      margin-top:.35rem;
    }
.slider-section{margin-top:1rem}
.slider-header{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      margin-bottom:2.2rem;
      flex-wrap:wrap;
      gap:1rem;
    }
.slider-title{
      font-family:var(--font-display);
      font-size:clamp(2rem,4vw,3.5rem);
      line-height:.92;
      text-transform:uppercase;
    }
.slider-title em{font-style:normal;color:var(--red)}
.slider-outer{position:relative;overflow:hidden}
.slider-track{
      display:flex;
      gap:1.4rem;
      transition:transform .55s cubic-bezier(.4,0,.2,1);
      will-change:transform;
      cursor:grab;
      user-select:none;
    }
.slider-track:active{cursor:grabbing}
.diff-card{
      flex:0 0 320px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      border-radius:22px;
      padding:2rem 1.8rem;
      position:relative;
      overflow:hidden;
      transition:border-color .3s,transform .3s,box-shadow .3s;
      min-height:220px;
    }
.diff-card::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:3px;
      background:var(--red);
      transform:scaleX(0);
      transform-origin:left;
      transition:transform .4s ease;
    }
.diff-card:hover{
      border-color:rgba(200,16,46,.3);
      transform:translateY(-6px);
      box-shadow:0 24px 60px rgba(0,0,0,.28);
    }
.diff-card:hover::before{transform:scaleX(1)}
.card-watermark{
      position:absolute;
      right:1rem;
      top:.5rem;
      font-family:var(--font-display);
      font-size:5rem;
      color:rgba(255,255,255,.025);
      line-height:1;
      pointer-events:none;
      user-select:none;
    }
.card-icon-wrap{
      width:52px;
      height:52px;
      border-radius:14px;
      background:rgba(200,16,46,.12);
      border:1px solid rgba(200,16,46,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--red);
      font-size:1.2rem;
      margin-bottom:1.3rem;
      transition:background .3s,transform .3s;
    }
.diff-card:hover .card-icon-wrap{
      background:var(--red);
      color:#fff;
      transform:scale(1.08) rotate(-4deg);
    }
.card-heading{
      font-family:var(--font-display);
      font-size:1.15rem;
      font-weight:900;
      text-transform:uppercase;
      color:#fff;
      line-height:1.15;
      margin-bottom:.75rem;
    }
.card-heading em{font-style:normal;color:var(--red)}
.card-body{
      font-size:.88rem;
      color:var(--muted);
      line-height:1.82;
    }
.slider-dots{
      display:flex;
      justify-content:center;
      gap:.5rem;
      margin-top:2rem;
    }
.dot{
      width:6px;
      height:6px;
      border-radius:3px;
      background:rgba(255,255,255,.08);
      cursor:pointer;
      transition:width .3s, background .3s;
      border:none;
    }
.dot.active{
      width:28px;
      background:var(--red);
    }
.slider-progress{
      height:2px;
      background:rgba(255,255,255,.08);
      border-radius:2px;
      margin-top:1.5rem;
      overflow:hidden;
    }
.slider-progress-fill{
      height:100%;
      background:var(--red);
      border-radius:2px;
      transition:width .55s cubic-bezier(.4,0,.2,1);
      width:0;
    }
.coach-section{
      padding:5.5rem 0;
      background:
        radial-gradient(circle at 20% 0%, rgba(200,16,46,.13) 0, transparent 34%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,.05) 0, transparent 28%),
        linear-gradient(180deg,#10131f 0%,#090b12 100%);
      position:relative;
      overflow:hidden;
    }
.coach-grid{
      display:grid;
      grid-template-columns:minmax(320px,.88fr) minmax(0,1.12fr);
      gap:3rem;
      align-items:center;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.08);
      border-radius:28px;
      padding:1.2rem;
      box-shadow:0 28px 80px rgba(0,0,0,.28);
    }
.coach-mosaic{
      display:block;
      min-width:0;
    }
.mosaic-main{
      border-radius:24px;
      overflow:hidden;
      aspect-ratio:4/5;
      position:relative;
      box-shadow:0 24px 60px rgba(0,0,0,.34);
      background:#111521;
    }
.mosaic-main::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,transparent 45%,rgba(0,0,0,.5));
      pointer-events:none;
    }
.mosaic-main img{
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center top;
      transition:transform .55s;
    }
.mosaic-main:hover img{transform:scale(1.05)}
.mosaic-badge{
      position:absolute;
      bottom:14px;
      left:14px;
      z-index:2;
      background:linear-gradient(135deg,var(--red),var(--red2));
      color:#fff;
      font-family:var(--font-display);
      font-size:.72rem;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      padding:6px 14px;
      border-radius:999px;
      box-shadow:0 8px 24px rgba(200,16,46,.25);
    }
.coach-content{
      display:flex;
      flex-direction:column;
      gap:1.1rem;
      min-width:0;
      padding:1.2rem 1.1rem 1.2rem .3rem;
    }
.coach-bio{
      font-size:.98rem;
      color:rgba(255,255,255,.72);
      line-height:1.9;
      max-width:650px;
    }
.achievement-row{
      display:flex;
      gap:1rem;
      align-items:flex-start;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      padding:1rem 1.15rem;
      transition:transform .25s ease,border-color .25s ease,background .25s ease;
    }
.achievement-row:hover{
      transform:translateY(-3px);
      border-color:rgba(200,16,46,.28);
      background:rgba(200,16,46,.075);
    }
.ach-icon{
      width:40px;
      height:40px;
      background:rgba(200,16,46,.13);
      border:1px solid rgba(200,16,46,.2);
      border-radius:13px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--red);
      font-size:.92rem;
      flex-shrink:0;
    }
.ach-text{
      font-size:.9rem;
      color:rgba(255,255,255,.68);
      line-height:1.7;
      word-break:break-word;
    }
.ach-text strong{color:#fff}
.coach-btns{
      display:flex;
      gap:1rem;
      flex-wrap:wrap;
      margin-top:.35rem;
    }
.programs-section{
      padding:5rem 0;
      background:var(--dark);
    }
.prog-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:1.5rem;
    }
.prog-card{
      background:var(--card-bg);
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius);
      overflow:hidden;
      position:relative;
    }
.card-img-wrap{
      position:relative;
      overflow:hidden;
      aspect-ratio:16/9;
    }
.card-img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .55s;
    }
.prog-card:hover .card-img{transform:scale(1.06)}
.card-badge{
      position:absolute;
      top:14px;
      right:14px;
      background:linear-gradient(135deg,var(--red),var(--red2));
      color:#fff;
      font-family:var(--font-display);
      font-size:.7rem;
      font-weight:800;
      letter-spacing:.06em;
      text-transform:uppercase;
      padding:6px 12px;
      border-radius:999px;
    }
.card-body-section{padding:1.5rem}
.card-tag{
      font-family:var(--font-display);
      font-size:.68rem;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
      color:var(--red);
      margin-bottom:.5rem;
    }
.card-title{
      font-family:var(--font-display);
      font-size:1.25rem;
      font-weight:900;
      text-transform:uppercase;
      line-height:1.12;
      margin-bottom:.65rem;
      color:#fff;
    }
.card-desc{
      color:rgba(255,255,255,.6);
      font-size:.9rem;
      line-height:1.75;
      margin-bottom:.95rem;
    }
.card-features{
      display:flex;
      flex-direction:column;
      gap:.45rem;
      margin-bottom:1.1rem;
    }
.card-features li{
      display:flex;
      gap:.5rem;
      align-items:flex-start;
      color:rgba(255,255,255,.62);
      font-size:.84rem;
      line-height:1.55;
    }
.card-features li .fas{
      color:var(--red);
      font-size:.65rem;
      margin-top:5px;
    }
.card-actions{
      display:flex;
      gap:.8rem;
      align-items:center;
      flex-wrap:wrap;
    }
.card-bottom-line{
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:3px;
      background:linear-gradient(90deg,var(--red),#0f3d7a);
    }
.program-schedule-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:1.2rem;
      margin:0 0 2.2rem;
    }
.schedule-card{
      position:relative;
      overflow:hidden;
      background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.028));
      border:1px solid rgba(255,255,255,.09);
      border-radius:20px;
      padding:1.35rem;
      box-shadow:0 18px 44px rgba(0,0,0,.18);
    }
.schedule-card::before{
      content:"";
      position:absolute;
      inset:0 auto 0 0;
      width:4px;
      background:linear-gradient(180deg,var(--red),var(--red2));
    }
.schedule-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      color:var(--red);
      font-family:var(--font-display);
      font-size:.68rem;
      font-weight:900;
      letter-spacing:.12em;
      text-transform:uppercase;
      margin-bottom:.55rem;
    }
.schedule-title{
      font-family:var(--font-display);
      font-size:1.22rem;
      line-height:1.05;
      font-weight:900;
      text-transform:uppercase;
      color:#fff;
      margin-bottom:.85rem;
    }
.schedule-list{
      display:flex;
      flex-direction:column;
      gap:.58rem;
    }
.schedule-list li{
      display:flex;
      gap:.65rem;
      align-items:flex-start;
      color:rgba(255,255,255,.68);
      font-size:.88rem;
      line-height:1.55;
    }
.schedule-list i{
      color:var(--red);
      width:16px;
      margin-top:4px;
      flex-shrink:0;
    }
.gallery-section{
      padding:5rem 0 4rem;
      background:#0d0f1a;
    }
.gallery-wrap{
      position:relative;
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 20px 60px rgba(0,0,0,.55);
    }
.gallery-slider{
      display:flex;
      transition:transform .55s cubic-bezier(.25,.46,.45,.94);
      will-change:transform;
    }
.gallery-slide{
      min-width:100%;
      position:relative;
      aspect-ratio:16/9;
      overflow:hidden;
    }
.gallery-slide img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
.slide-caption{
      position:absolute;
      bottom:0;
      left:0;
      right:0;
      background:linear-gradient(transparent,rgba(0,21,47,.85));
      color:#fff;
      padding:2.5rem 2rem 1.5rem;
      font-family:var(--font-display);
      font-size:1.05rem;
      font-weight:700;
    }
.gallery-arrow{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,.12);
      color:#fff;
      width:50px;
      height:50px;
      border-radius:50%;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1rem;
      transition:background .3s, transform .25s, border-color .3s;
      z-index:10;
    }
.gallery-arrow:hover{
      background:var(--red);
      transform:translateY(-50%) scale(1.1);
      border-color:var(--red);
    }
.gallery-prev{left:18px}
.gallery-next{right:18px}
.gallery-dots{
      position:absolute;
      bottom:18px;
      left:50%;
      transform:translateX(-50%);
      display:flex;
      gap:8px;
      z-index:10;
    }
.gallery-dot{
      width:8px;
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.3);
      cursor:pointer;
      transition:background .25s,width .25s;
      border:none;
    }
.gallery-dot.active{
      background:var(--red);
      width:22px;
    }
.footer-nav-links,.footer-contact-list{
      display:flex;
      flex-direction:column;
      gap:.7rem;
    }
.footer-nav-links a,.footer-contact-list span{
      color:rgba(255,255,255,.66);
      font-size:.9rem;
    }
.footer-contact-list li{
      display:flex;
      gap:.7rem;
      align-items:flex-start;
    }
.fc-icon{
      width:26px;
      height:26px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:var(--red);
      flex-shrink:0;
    }
.footer-bottom .footer-dev{color:rgba(255,255,255,.55);font-size:.88rem}
.footer-bottom .footer-dev a{color:#fff;font-weight:800;text-decoration:none}
.footer-bottom .footer-dev a:hover{color:var(--red)}
.site-footer {
  background: #111;
  color: #aaa;
  padding: 1.5rem 2rem;
  margin-top: auto;
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-dev a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-dev a:hover {
  color: #4f98a3;
}
.about-section,.coach-section,.programs-section,.gallery-section{scroll-margin-top:92px}
@media (max-width:960px){
      .container,.nav-inner{padding-left:1.25rem;padding-right:1.25rem}
      .nav-inner{padding-top:.8rem;padding-bottom:.8rem}
      .nav-links,.nav-cta{display:none}
      .nav-hamburger{display:flex}
      .nav-mobile{
        display:none;
        flex-direction:column;
        gap:.8rem;
        padding:1rem 1.25rem 1.35rem;
        background:rgba(8,10,16,.98);
        border-bottom:1px solid rgba(255,255,255,.06);
      }
      .nav-mobile.is-open{display:flex}
      .nav-mobile a{
        width:100%;
        padding:.75rem .9rem;
        border-radius:12px;
        background:rgba(255,255,255,.04);
      }
      .nav-mobile .nav-cta-mobile{
        justify-content:center;
        background:linear-gradient(135deg,var(--red),var(--red2));
        margin-top:.2rem;
      }
      .about-intro,.prog-grid,.program-schedule-grid{grid-template-columns:1fr}
      .about-stats{grid-template-columns:repeat(4,1fr);min-width:unset}
      .coach-grid{
        grid-template-columns:1fr;
        gap:1.4rem;
        padding:1rem;
        border-radius:24px;
      }
      .coach-content{
        padding:.4rem .3rem .6rem;
        text-align:left;
      }
      .coach-mosaic{max-width:520px;width:100%;margin:0 auto}
      .mosaic-main{aspect-ratio:4/4.8}
      .coach-btns{flex-direction:row}
      .footer-grid{grid-template-columns:1fr}
      .diff-card{flex:0 0 280px}
    }
@media (max-width:600px){
      .container{padding-left:1rem;padding-right:1rem}
      .nav-logo img{width:36px;height:36px}
      .logo-main{font-size:1.08rem}
      .logo-sub{font-size:.62rem}
      .hero{
        height:auto;
        min-height:74vh;
      }
      .hero-slide,.hero-slider{min-height:74vh}
      .hero-slide::after{
        background:linear-gradient(180deg, rgba(0,21,47,.80) 0%, rgba(0,21,47,.55) 50%, rgba(0,21,47,.82) 100%);
      }
      .hero-content{
        padding:5.4rem 1rem 3rem;
        align-items:center;
      }
      .hero-heading{
        font-size:clamp(2.35rem,13vw,3.4rem);
        line-height:.96;
        max-width:92%;
      }
      .hero-sub{
        font-size:.92rem;
        line-height:1.7;
        max-width:92%;
        margin-bottom:1.45rem;
      }
      .hero-tag{
        font-size:.62rem;
        padding:5px 12px;
        margin-bottom:1rem;
      }
      .hero-btns{flex-direction:column;align-items:stretch;max-width:260px}
      .hero-btns a{justify-content:center}
      .hero-arrow{
        width:38px;
        height:38px;
        font-size:.8rem;
      }
      .hero-prev{left:10px}
      .hero-next{right:10px}
      .hero-counter{display:none}
      .stats-bar{padding:1rem}
      .stats-inner{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem}
      .stat-num{font-size:1.35rem}
      .stat-lbl{font-size:.62rem}

      .about-section{padding:4rem 0 3.5rem}
      .about-title{font-size:clamp(2.15rem,11vw,3rem);line-height:.95}
      .about-lead,.section-sub{font-size:.9rem;line-height:1.7}
      .about-intro{
        grid-template-columns:1fr;
        gap:1.15rem;
        padding:1.35rem 1rem;
        margin-bottom:3rem;
        border-radius:20px;
      }
      .about-intro-text p{font-size:.9rem;line-height:1.75}
      .about-stats{grid-template-columns:repeat(2,1fr);min-width:unset}
      .stat-cell{padding:1rem .65rem}
      .stat-cell .stat-num{font-size:1.55rem}

      .slider-track{gap:1rem}
      .diff-card{
        flex:0 0 82vw;
        padding:1.45rem 1.25rem;
        min-height:195px;
        border-radius:18px;
      }

      .coach-section{padding:4rem 0 3.75rem}
      .coach-grid{
        gap:1rem;
        padding:.75rem;
        border-radius:22px;
      }
      .section-header-center[style*="margin-bottom:3rem"]{margin-bottom:2rem !important}
      .mosaic-main{
        aspect-ratio:1/1.08;
        border-radius:20px;
      }
      .mosaic-main img{
        object-position:center top;
      }
      .mosaic-badge{
        bottom:10px;
        left:10px;
        font-size:.64rem;
        padding:5px 11px;
      }
      .coach-content{
        gap:.85rem;
        padding:.35rem .15rem .35rem;
      }
      .coach-bio{
        font-size:.88rem;
        line-height:1.72;
      }
      .achievement-row{
        padding:.85rem .85rem;
        gap:.75rem;
        border-radius:15px;
      }
      .ach-icon{
        width:34px;
        height:34px;
        border-radius:11px;
      }
      .ach-text{
        font-size:.82rem;
        line-height:1.55;
      }
      .coach-btns{
        flex-direction:column;
        gap:.75rem;
      }
      .coach-btns a{
        width:100%;
        justify-content:center;
        padding:.78rem 1rem;
      }

      .programs-section{padding:4rem 0}
      .program-schedule-grid{gap:1rem;margin-bottom:1.75rem}
      .schedule-card{padding:1.15rem}
      .schedule-title{font-size:1.08rem}
      .schedule-list li{font-size:.84rem}
      .prog-grid{gap:1.15rem}
      .card-body-section{padding:1.2rem}
      .card-title{font-size:1.12rem}
      .card-desc{font-size:.86rem;line-height:1.65}
      .card-actions{flex-direction:column;align-items:stretch}
      .card-actions a{justify-content:center}

      .gallery-section{padding:4rem 0 3.5rem}
      .gallery-wrap{border-radius:18px}
      .gallery-slide{aspect-ratio:4/4.8}
      .slide-caption{
        font-size:.9rem;
        padding:2rem 1rem 1rem;
      }
      .gallery-arrow{
        width:38px;
        height:38px;
        font-size:.8rem;
      }
      .gallery-prev{left:10px}
      .gallery-next{right:10px}
      .gallery-dots{bottom:12px}

      .cta-strip{padding:3.5rem 1rem}
      .cta-strip p{font-size:.9rem}
      .cta-btns{flex-direction:column}
      .cta-btns a{justify-content:center}

      .footer-top{padding:3rem 0 1.5rem}
      .footer-grid{gap:1.5rem}
      .footer-bottom-inner{flex-direction:column;align-items:flex-start}
    }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }
.navbar.scrolled { background: rgba(8,10,16,.92); border-color: var(--subtle); backdrop-filter: blur(18px); padding: .8rem 3rem; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { display: inline-flex; align-items: center; gap: .4rem; background: var(--red); color: #fff; font-family: var(--font-sub); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: .65rem 1.5rem; border-radius: 999px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(200,16,46,.35); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,16,46,.5); }
.page-hero { min-height: 42vh; display: flex; align-items: flex-end; padding: 7rem 3rem 3.5rem; position: relative; background: radial-gradient(ellipse 120% 80% at 60% 0%, rgba(200,16,46,.18) 0%, transparent 65%), radial-gradient(ellipse 60% 60% at 0% 100%, rgba(200,16,46,.07) 0%, transparent 60%); overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red-glow), transparent); }
.hero-bg-number { position: absolute; right: -2rem; top: 50%; transform: translateY(-50%); font-family: var(--font-h); font-size: clamp(14rem, 22vw, 22rem); color: rgba(255,255,255,.025); line-height: 1; pointer-events: none; user-select: none; }
.hero-dec-line { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, var(--red), transparent); opacity: .15; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-family: var(--font-sub); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--red); font-size: .55rem; }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(4rem, 9vw, 8rem); line-height: .9; letter-spacing: .01em; text-transform: uppercase; color: #fff; margin-bottom: .75rem; }
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p { font-size: 1rem; color: var(--muted); max-width: 500px; line-height: 1.8; }
.scroll-dot { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--subtle); display: flex; align-items: center; justify-content: center; }
.scroll-dot i { font-size: .6rem; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(2px); } }
.loc-strip { background: var(--red); padding: .9rem 3rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; position: relative; }
.loc-strip::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,.04) 40px, rgba(255,255,255,.04) 41px); }
.loc-chip { display: flex; align-items: center; gap: .5rem; font-family: var(--font-sub); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; position: relative; }
.loc-chip i { font-size: .7rem; opacity: .8; }
.loc-divider { width: 1px; height: 16px; background: rgba(255,255,255,.25); }
.s-tag { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-sub); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: .65rem; }
.s-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--red); }
.s-title { font-family: var(--font-h); font-size: clamp(2.8rem, 5vw, 5rem); line-height: .92; text-transform: uppercase; color: #fff; }
.s-title em { font-style: normal; color: var(--red); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right.visible { opacity: 1; transform: none; }
.camp-section { padding: 0; background: var(--panel); position: relative; overflow: hidden; }
.camp-hero-banner {
      position: relative; min-height: 72vh;
      display: grid; grid-template-columns: 1fr 1fr;
      overflow: hidden;
    }
.camp-hero-img {
      position: relative; overflow: hidden;
    }
.camp-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease; }
.camp-hero-img:hover img { transform: scale(1.04); }
.camp-hero-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(8,10,16,.1) 0%, rgba(8,10,16,.5) 100%);
    }
.camp-hero-content {
      background: var(--panel);
      padding: 4rem 3.5rem;
      display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
      position: relative; overflow: hidden;
    }
.camp-hero-content::before {
      content: 'CAMP'; position: absolute; right: -1rem; bottom: -1rem;
      font-family: var(--font-h); font-size: 18vw; color: rgba(255,255,255,.018);
      pointer-events: none; line-height: 1;
    }
.camp-title { font-family: var(--font-h); font-size: clamp(2.8rem, 4.5vw, 4.5rem); line-height: .9; text-transform: uppercase; }
.camp-title em { font-style: normal; color: var(--red); }
.camp-date-tag { font-family: var(--font-sub); font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.camp-desc { font-size: .93rem; color: var(--muted); line-height: 1.9; }
.camp-desc strong { color: #fff; }
.camp-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--subtle);
      border-radius: 16px; overflow: hidden;
    }
.focus-header { font-family: var(--font-sub); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .65rem; }
.focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.focus-item { display: flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.03); border: 1px solid var(--subtle); border-radius: 10px; padding: .55rem .8rem; font-size: .81rem; color: rgba(255,255,255,.72); transition: border-color .25s, background .25s; }
.focus-item:hover { border-color: rgba(200,16,46,.28); background: var(--red-dim); }
.focus-item i { color: var(--red); font-size: .62rem; flex-shrink: 0; }
.loc-inline { display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.03); border: 1px solid var(--subtle); border-radius: 12px; padding: .8rem 1rem; font-size: .88rem; color: rgba(255,255,255,.72); }
.loc-inline i { color: var(--red); }
.camp-mosaic-row {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      height: 260px;
    }
.camp-mosaic-row > div { overflow: hidden; position: relative; }
.camp-mosaic-row > div img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; filter: brightness(.75); }
.camp-mosaic-row > div:hover img { transform: scale(1.07); filter: brightness(.9); }
.camp-mosaic-row > div:first-child { grid-column: 1 / 2; }
.btn-red { display: inline-flex; align-items: center; gap: .5rem; background: var(--red); color: #fff; font-family: var(--font-sub); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .85rem 2rem; border-radius: 999px; text-decoration: none; width: fit-content; transition: transform .2s, box-shadow .2s; box-shadow: 0 6px 24px rgba(200,16,46,.38); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200,16,46,.55); }
.sched-section { padding: 6rem 0; background: var(--dark); position: relative; }
.sched-section::before { content: ''; position: absolute; left: 0; top: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red-glow), transparent); }
.sched-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }
.sched-note { font-family: var(--font-sub); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: right; max-width: 220px; line-height: 1.7; }
.sched-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sched-card { background: var(--panel); border: 1px solid var(--subtle); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color .3s, transform .3s, box-shadow .3s; }
.sched-card:hover { border-color: rgba(200,16,46,.32); transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0,0,0,.3); }
.sched-card.gold-card { border-color: rgba(212,160,23,.22); }
.sched-card.gold-card:hover { border-color: rgba(212,160,23,.5); }
.card-stripe { height: 4px; background: var(--red); }
.gold-card .card-stripe { background: linear-gradient(90deg, #d4a017, #f0c040); }
.sched-card-top { background: linear-gradient(135deg, rgba(200,16,46,.10) 0%, transparent 60%); padding: 1.5rem 1.5rem 1.1rem; border-bottom: 1px solid var(--subtle); }
.gold-card .sched-card-top { background: linear-gradient(135deg, rgba(212,160,23,.09) 0%, transparent 60%); }
.sched-card-num { font-family: var(--font-h); font-size: .68rem; letter-spacing: .22em; color: var(--red); text-transform: uppercase; margin-bottom: .25rem; }
.gold-card .sched-card-num { color: var(--gold); }
.sched-card-name { font-family: var(--font-sub); font-size: 1.25rem; font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.1; margin-bottom: .3rem; }
.sched-card-name i { font-size: .95rem; color: var(--red); margin-right: .3rem; }
.gold-card .sched-card-name i { color: var(--gold); }
.sched-card-age { font-size: .82rem; color: var(--muted); }
.sched-card-body { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.time-block { display: flex; flex-direction: column; gap: .4rem; }
.time-row { display: flex; align-items: center; gap: .6rem; font-size: .87rem; color: rgba(255,255,255,.72); }
.time-row i { color: var(--red); font-size: .7rem; width: 13px; flex-shrink: 0; }
.gold-card .time-row i { color: var(--gold); }
.day-pills { display: flex; gap: .35rem; flex-wrap: wrap; }
.pill { display: inline-block; background: var(--red-dim); border: 1px solid rgba(200,16,46,.2); color: rgba(255,255,255,.85); font-family: var(--font-sub); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .32rem .7rem; border-radius: 999px; }
.pill.gold-pill { background: var(--gold-dim); border-color: rgba(212,160,23,.25); }
.sched-loc { background: rgba(255,255,255,.03); border: 1px solid var(--subtle); border-radius: 12px; padding: .75rem .95rem; }
.sched-loc-label { font-family: var(--font-sub); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: .35rem; }
.gold-card .sched-loc-label { color: var(--gold); }
.sched-loc p { font-size: .83rem; color: rgba(255,255,255,.62); line-height: 1.55; }
.sched-note-box { display: flex; align-items: flex-start; gap: .5rem; background: var(--red-dim); border: 1px solid rgba(200,16,46,.16); border-radius: 10px; padding: .75rem .85rem; font-size: .81rem; color: rgba(255,255,255,.68); line-height: 1.5; }
.sched-note-box i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.sched-note-box.gold-note { background: var(--gold-dim); border-color: rgba(212,160,23,.18); }
.sched-note-box.gold-note i { color: var(--gold); }
.card-price-block {
      margin-top: auto;
      background: rgba(200,16,46,.08);
      border: 1px solid rgba(200,16,46,.18);
      border-radius: 14px;
      padding: 1rem 1.1rem;
      display: flex; align-items: center; justify-content: space-between; gap: .75rem;
      flex-wrap: wrap;
    }
.gold-card .card-price-block { background: rgba(212,160,23,.08); border-color: rgba(212,160,23,.2); }
.card-price-left {}
.card-price-amount {
      font-family: var(--font-h);
      font-size: 2.6rem; line-height: .85; color: var(--red);
      letter-spacing: -.5px;
    }
.gold-card .card-price-amount { color: var(--gold); }
.card-price-period {
      font-family: var(--font-sub); font-size: .6rem; font-weight: 800;
      letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
      margin-top: .2rem;
    }
.card-price-note {
      font-size: .76rem; color: rgba(255,255,255,.5); line-height: 1.5;
      max-width: 140px;
    }
.card-price-note strong { color: rgba(255,255,255,.72); display: block; }
.btn-card-reg {
      display: flex; align-items: center; justify-content: center; gap: .45rem;
      background: var(--red); color: #fff;
      font-family: var(--font-sub); font-size: .78rem; font-weight: 800;
      letter-spacing: .12em; text-transform: uppercase;
      padding: .75rem 1rem; border-radius: 12px;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s, background .2s;
      box-shadow: 0 4px 18px rgba(200,16,46,.32);
      margin-top: .5rem;
    }
.btn-card-reg:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,16,46,.5); }
.gold-card .btn-card-reg { background: linear-gradient(135deg, #d4a017, #c4900f); box-shadow: 0 4px 18px rgba(212,160,23,.35); }
.gold-card .btn-card-reg:hover { box-shadow: 0 8px 28px rgba(212,160,23,.55); }
.kit-note {
      margin-top: 1.5rem;
      display: flex; align-items: center; justify-content: center; gap: .65rem;
      background: rgba(255,255,255,.03); border: 1px solid var(--subtle);
      border-radius: 12px; padding: .9rem 1.2rem;
      font-size: .85rem; color: var(--muted);
    }
.kit-note i { color: var(--red); }
.kit-note strong { color: #fff; }
.sched-footer { margin-top: 2rem; background: var(--panel); border: 1px solid var(--subtle); border-radius: var(--radius); padding: 1.4rem 1.6rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.sched-footer-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--red-dim); border: 1px solid rgba(200,16,46,.2); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.1rem; flex-shrink: 0; }
.sched-footer h4 { font-family: var(--font-sub); font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: .2rem; }
.sched-footer p { font-size: .88rem; color: var(--muted); }
.one-section { padding: 6rem 0; background: var(--panel); position: relative; overflow: hidden; }
.one-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 100% 50%, rgba(200,16,46,.07) 0%, transparent 70%); pointer-events: none; }
.one-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.one-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,.35); }
.one-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.one-img:hover img { transform: scale(1.04); }
.one-img-overlay { position: absolute; inset: auto 0 0 0; background: linear-gradient(180deg, transparent 0%, rgba(8,10,16,.92) 100%); padding: 2.5rem 1.75rem 1.75rem; }
.one-img-badge { display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.10); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); color: #fff; font-family: var(--font-sub); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: .6rem; }
.one-img-text { font-family: var(--font-sub); font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1.4; max-width: 260px; }
.one-content { display: flex; flex-direction: column; gap: 1.5rem; }
.price-block { background: linear-gradient(135deg, rgba(200,16,46,.13) 0%, rgba(14,16,24,.95) 100%); border: 1px solid rgba(200,16,46,.2); border-radius: var(--radius); padding: 1.6rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.price-big { font-family: var(--font-h); font-size: 4.5rem; color: #fff; line-height: .85; letter-spacing: -1px; }
.price-small { font-family: var(--font-sub); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }
.price-details { flex: 1; }
.price-details p { font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: .3rem; }
.price-details strong { color: #fff; }
.avail-box { background: var(--glass); border: 1px solid var(--subtle); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
.avail-title { font-family: var(--font-sub); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: .5rem; margin-bottom: .9rem; }
.avail-days { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .9rem; }
.day-pill { background: var(--red-dim); border: 1px solid rgba(200,16,46,.22); color: #fff; font-family: var(--font-sub); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .45rem .9rem; border-radius: 999px; }
.avail-time { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: rgba(255,255,255,.75); }
.avail-time i { color: var(--red); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; background: var(--glass); border: 1px solid var(--subtle); border-radius: var(--radius); padding: 1.2rem; }
.feature-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .86rem; color: rgba(255,255,255,.72); line-height: 1.55; }
.feature-item i { color: var(--red); font-size: .65rem; margin-top: 5px; flex-shrink: 0; }
.pathway-section { padding: 6rem 0; background: var(--dark); position: relative; overflow: hidden; }
.pathway-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,16,46,.06) 0%, transparent 60%); }
.pathway-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.pathway-sidebar { position: sticky; top: 100px; }
.pathway-desc { font-size: .9rem; color: var(--muted); line-height: 1.9; margin-top: 1rem; }
.pathway-steps { display: flex; flex-direction: column; position: relative; }
.pathway-steps::before { content: ''; position: absolute; left: 21px; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, var(--red) 0%, rgba(200,16,46,.15) 80%, transparent); }
.path-item { display: flex; gap: 1.75rem; padding-bottom: 2rem; position: relative; }
.path-dot { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-h); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; z-index: 1; box-shadow: 0 0 0 4px var(--dark); transition: transform .3s, box-shadow .3s; }
.path-dot.gold { background: linear-gradient(135deg, #d4a017, #f0c040); color: #000; }
.path-item:hover .path-dot { transform: scale(1.12); box-shadow: 0 0 0 4px var(--dark), 0 0 20px rgba(200,16,46,.4); }
.path-card { flex: 1; background: var(--panel); border: 1px solid var(--subtle); border-radius: 16px; padding: 1.4rem; transition: border-color .3s, transform .3s; }
.path-card:hover { border-color: rgba(200,16,46,.3); transform: translateX(5px); }
.path-card.elite-card { background: rgba(200,16,46,.07); border-color: rgba(200,16,46,.25); }
.path-phase { font-family: var(--font-sub); font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: .3rem; }
.path-title { font-family: var(--font-sub); font-size: 1.15rem; font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.2; margin-bottom: .6rem; }
.path-title span { color: var(--muted); font-size: .82rem; font-weight: 500; text-transform: none; }
.path-body { font-size: .88rem; color: var(--muted); line-height: 1.75; }
.cta-strip::before { content: 'ELITE'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family: var(--font-h); font-size: 24vw; color: rgba(255,255,255,.04); pointer-events: none; white-space: nowrap; }
.cta-inner { max-width: 660px; margin: 0 auto; position: relative; }
.btn-ghost { display: inline-flex; align-items: center; gap: .45rem; border: 2px solid rgba(255,255,255,.4); color: #fff; font-family: var(--font-sub); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .9rem 2rem; border-radius: 999px; text-decoration: none; transition: background .25s, border-color .25s; }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .9rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: .65rem; }
.footer-contact-row { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; color: var(--muted); line-height: 1.6; }
.footer-contact-row i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
* { box-sizing: border-box; }
.contact-page-shell {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 15% 12%, rgba(200,16,46,.22), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(0,58,120,.42), transparent 33%),
        linear-gradient(180deg, #050914 0%, #071020 48%, #04070d 100%);
    }
.contact-page-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .09;
      background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, #000, transparent 82%);
    }
.contact-hero {
      position: relative;
      min-height: 520px;
      padding: 140px 0 84px;
      display: flex;
      align-items: center;
      isolation: isolate;
    }
.contact-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(4,7,13,.93), rgba(4,7,13,.72), rgba(4,7,13,.45)),
        url('./assessts/gallery1.jpeg') center/cover no-repeat;
      z-index: -2;
    }
.contact-hero::before {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 160px;
      background: linear-gradient(to bottom, transparent, var(--dark));
      z-index: -1;
    }
.hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border: 1px solid rgba(255,255,255,.17);
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(14px);
      font-family: var(--font-display);
      font-size: .9rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.82);
      margin-bottom: 1.2rem;
    }
.hero-kicker i { color: var(--red2); }
.contact-hero h1 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 8vw, 7rem);
      line-height: .88;
      font-weight: 900;
      letter-spacing: -.035em;
      text-transform: uppercase;
    }
.contact-hero h1 em { color: var(--red2); font-style: normal; }
.contact-hero p {
      max-width: 610px;
      margin: 1.3rem 0 0;
      color: rgba(255,255,255,.76);
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      line-height: 1.8;
    }
.hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 2rem;
    }
.hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
.hero-btn.primary { color: #fff; background: linear-gradient(135deg, var(--red), var(--red2)); box-shadow: 0 18px 40px rgba(200,16,46,.36); }
.hero-btn.secondary { color: #fff; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.hero-btn:hover { transform: translateY(-3px); }
.quick-contact-section { position: relative; padding: 0 0 58px; margin-top: -36px; z-index: 2; }
.contact-info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
.info-card {
      position: relative;
      overflow: hidden;
      min-height: 220px;
      border-radius: var(--radius);
      padding: 1.65rem;
      background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 22px 60px rgba(0,0,0,.26);
      backdrop-filter: blur(18px);
      transition: transform .3s ease, border-color .3s ease, background .3s ease;
    }
.info-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--navy2));
    }
.info-card::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      right: -60px;
      bottom: -60px;
      background: radial-gradient(circle, rgba(200,16,46,.28), transparent 62%);
    }
.info-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.22); background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.05)); }
.info-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--red), var(--red2));
      box-shadow: 0 14px 35px rgba(200,16,46,.32);
      font-size: 1.25rem;
      margin-bottom: 1.15rem;
    }
.info-card h3 {
      margin: 0 0 .55rem;
      color: #fff;
      font-family: var(--font-display);
      font-size: 1.35rem;
      line-height: 1;
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
.info-card p { margin: 0; color: rgba(255,255,255,.67); font-size: .94rem; line-height: 1.7; }
.info-card strong { color: #fff; }
.info-card a { color: #fff; font-weight: 900; word-break: break-word; }
.contact-main-section { position: relative; padding: 14px 0 76px; }
.section-intro {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 30px;
    }
.section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--red2);
      font-family: var(--font-display);
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
      font-size: .9rem;
      margin-bottom: .7rem;
    }
.section-intro h2 {
      margin: 0;
      color: #fff;
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 4.4rem);
      line-height: .95;
      text-transform: uppercase;
      letter-spacing: -.025em;
    }
.section-intro h2 em { color: var(--red2); font-style: normal; }
.section-intro p { max-width: 440px; margin: 0; color: rgba(255,255,255,.62); line-height: 1.75; }
.contact-main-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: stretch;
    }
.locations-panel,
    .contact-form-card {
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 28px 75px rgba(0,0,0,.34);
    }
.locations-panel {
      background: linear-gradient(180deg, rgba(0,21,47,.96), rgba(8,17,31,.96));
      border: 1px solid rgba(255,255,255,.1);
    }
.locations-panel-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.locations-panel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .75s ease; }
.locations-panel:hover .locations-panel-img img { transform: scale(1.06); }
.locations-panel-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,21,47,.96), rgba(0,21,47,.08)); }
.location-badge {
      position: absolute;
      left: 20px;
      bottom: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.15);
      color: #fff;
      backdrop-filter: blur(12px);
      font-family: var(--font-display);
      font-size: .95rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
.location-badge i { color: var(--red2); }
.locations-body { padding: 24px; display: grid; gap: 18px; }
.location-item {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.08);
    }
.loc-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--red), var(--red2));
    }
.loc-text h4 { margin: 0 0 6px; color: #fff; font-family: var(--font-display); font-size: 1.25rem; line-height: 1; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.loc-text p { margin: 0 0 7px; color: rgba(255,255,255,.64); line-height: 1.62; font-size: .92rem; }
.loc-text a { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 900; font-size: .86rem; }
.hours-box { margin: 0 24px 24px; padding: 18px; border-radius: 20px; background: rgba(200,16,46,.1); border: 1px solid rgba(200,16,46,.25); }
.hours-title { color: #fff; font-family: var(--font-display); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.hours-title i { color: var(--red2); margin-right: 7px; }
.hours-list { display: grid; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.64); font-size: .9rem; }
.hours-row strong { color: #fff; text-align: right; }
.social-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 24px 24px; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 44px; border-radius: 14px; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.055); font-family: var(--font-display); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; transition: .25s ease; }
.social-btn:hover { color: #fff; background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.contact-form-card {
      position: relative;
      background: #fff;
      border: 1px solid rgba(255,255,255,.65);
      padding: clamp(1.35rem, 4vw, 2.3rem);
    }
.contact-form-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 7px;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--navy2));
    }
.form-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.contact-form-title { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(2rem, 3.3vw, 3.1rem); line-height: .95; font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; }
.contact-form-title em { color: var(--red); font-style: normal; }
.contact-form-sub { margin: .7rem 0 0; color: var(--muted); line-height: 1.65; font-size: .95rem; }
.form-mini-badge { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 9px 12px; background: rgba(200,16,46,.08); color: var(--red); font-family: var(--font-display); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; white-space: nowrap; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }
.cf-group.full { grid-column: 1 / -1; }
.cf-label { color: var(--navy); font-family: var(--font-display); font-size: .85rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.cf-label .req { color: var(--red); }
.cf-input {
      width: 100%;
      min-height: 52px;
      padding: 0 15px;
      border: 1.5px solid #d9dee8;
      border-radius: 16px;
      background: #f9fafc;
      color: #111827;
      font-family: var(--font-body);
      font-size: .96rem;
      outline: none;
      transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
    }
textarea.cf-input { min-height: 132px; padding-top: 14px; resize: vertical; }
select.cf-input { appearance: none; padding-right: 44px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.cf-input:focus { background: #fff; border-color: var(--navy2); box-shadow: 0 0 0 4px rgba(0,58,120,.09); }
.cf-input.error { border-color: var(--red); background: #fff7f8; box-shadow: 0 0 0 4px rgba(200,16,46,.1); }
.cf-error { min-height: 16px; display: none; color: var(--red); font-size: .78rem; font-weight: 700; }
.cf-error.show { display: block; }
.cf-section-divider { grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; margin: 4px 0 0; color: var(--red); font-family: var(--font-display); font-size: .8rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.cf-section-divider::before, .cf-section-divider::after { content: ""; flex: 1; height: 1px; background: #e7eaf0; }
.cf-actions { margin-top: 22px; display: flex; gap: 12px; }
.cf-submit, .cf-reset { min-height: 54px; border-radius: 999px; cursor: pointer; font-family: var(--font-display); font-weight: 900; letter-spacing: .09em; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease; }
.cf-submit { flex: 1; border: 0; color: #fff; background: linear-gradient(135deg, var(--red), var(--red2)); box-shadow: 0 16px 35px rgba(200,16,46,.28); font-size: 1.02rem; }
.cf-submit:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(200,16,46,.38); }
.cf-reset { padding: 0 22px; color: var(--muted); border: 1.5px solid #d9dee8; background: #fff; font-size: .92rem; }
.cf-reset:hover { color: var(--navy); border-color: var(--navy); }
.form-note { margin-top: 18px; display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .86rem; line-height: 1.6; }
.form-note i { color: var(--red); margin-top: 3px; }
.map-section { padding: 72px 0; background: linear-gradient(180deg, var(--dark), #071020); }
.section-title.light { color: #fff; }
.section-title.dark { color: var(--navy); }
.section-title em { color: var(--red); font-style: normal; }
.section-header-center .section-tag { justify-content: center; }
.map-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
.map-card { overflow: hidden; border-radius: 28px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.055); box-shadow: 0 26px 70px rgba(0,0,0,.3); }
.map-card-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; background: rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.08); }
.map-card-header-left { display: flex; align-items: center; gap: 12px; }
.map-card-header i { color: var(--red2); font-size: 1.2rem; }
.map-card-header h4 { margin: 0; color: #fff; font-family: var(--font-display); font-size: 1.2rem; line-height: 1; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.map-card-header p { margin: 4px 0 0; color: rgba(255,255,255,.58); font-size: .86rem; }
.map-link { color: #fff; font-family: var(--font-display); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.map-frame { width: 100%; height: 390px; display: block; border: 0; filter: grayscale(.16) contrast(1.06); }
.faq-section { padding: 78px 0 88px; background: var(--bg-alt); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 980px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid #e6eaf2; border-radius: 20px; box-shadow: 0 16px 35px rgba(0,21,47,.055); overflow: hidden; transition: border-color .25s ease, transform .25s ease; }
.faq-item:hover { transform: translateY(-3px); border-color: rgba(200,16,46,.28); }
.faq-q { width: 100%; min-height: 72px; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; cursor: pointer; padding: 20px 22px; }
.faq-q-text { color: var(--navy); font-family: var(--font-display); font-size: 1.04rem; line-height: 1.1; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.faq-q-icon { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--red); background: rgba(200,16,46,.09); transition: .25s ease; }
.faq-item.open .faq-q-icon { color: #fff; background: var(--red); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 22px; color: var(--muted); line-height: 1.75; font-size: .93rem; }
.faq-item.open .faq-a { display: block; }
.navbar.solid { backdrop-filter: blur(18px); }
@media (max-width: 980px) {
      .contact-hero { padding-top: 125px; min-height: 500px; }
      .contact-info-grid, .contact-main-grid, .faq-grid { grid-template-columns: 1fr; }
      .section-intro { align-items: flex-start; flex-direction: column; }
      .contact-form-card { order: -1; }
    }
@media (max-width: 640px) {
      .container { width: min(100% - 22px, 1180px); }
      .contact-hero { min-height: auto; padding: 120px 0 70px; }
      .hero-actions, .cf-actions { flex-direction: column; }
      .hero-btn, .cf-submit, .cf-reset { width: 100%; }
      .contact-form-grid { grid-template-columns: 1fr; }
      .cf-group.full { grid-column: 1; }
      .form-head { flex-direction: column; }
      .form-mini-badge { white-space: normal; }
      .social-strip { grid-template-columns: 1fr; }
      .hours-row { flex-direction: column; gap: 3px; }
      .hours-row strong { text-align: left; }
      .map-frame { height: 310px; }
      .map-card-header { align-items: flex-start; flex-direction: column; }
    }
.reg-body { max-width: 1200px; margin: 0 auto; padding: clamp(2rem,5vw,4rem) clamp(1rem,3vw,2rem); display: flex; flex-direction: column; gap: 4rem; }
.pricing-banner { background: var(--navy); border-radius: 16px; padding: 2rem 2.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; border-left: 5px solid var(--red); position: relative; overflow: hidden; }
.pricing-banner::after { content: ''; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(200,16,46,.08); pointer-events: none; }
.pb-icon { width: 60px; height: 60px; flex-shrink: 0; background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.3); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--red); }
.pb-content { flex: 1; }
.pb-title { font-family: var(--font-display); font-size: 1rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }
.pb-text { font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.7; }
.pb-text strong { color: #fff; }
.pb-pills { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .9rem; }
.pb-pill { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); background: rgba(200,16,46,.1); border: 1px solid rgba(200,16,46,.25); padding: 5px 12px; border-radius: 999px; }
.pathway-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.pathway-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s, border-color .3s; }
.pathway-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,33,71,.15); border-color: rgba(200,16,46,.3); }
.pathway-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pathway-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.pathway-card:hover .pathway-card-img img { transform: scale(1.07); }
.pathway-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0,33,71,.2),rgba(0,33,71,.75)); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; }
.pathway-age { display: inline-block; font-family: var(--font-display); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); background: rgba(200,16,46,.2); border: 1px solid rgba(200,16,46,.5); padding: 4px 10px; border-radius: 999px; margin-bottom: .5rem; width: fit-content; }
.pathway-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.2; }
.pathway-body { padding: 1.1rem; flex: 1; }
.pathway-phase { font-family: var(--font-display); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; display: flex; align-items: center; gap: 6px; }
.pathway-phase::before { content: ''; width: 12px; height: 2px; background: var(--red); }
.pathway-body p { font-size: .83rem; color: var(--muted); line-height: 1.75; }
.pathway-footer { padding: 0 1.1rem 1.1rem; }
.pathway-feats { list-style: none; display: flex; flex-direction: column; gap: .4rem; border-top: 1px solid var(--border); padding-top: .8rem; }
.pathway-feats li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--dark); }
.pathway-feats .fas { color: var(--red); font-size: .6rem; }
.pathway-accent { height: 3px; background: linear-gradient(90deg,var(--red),var(--navy2)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.pathway-card:hover .pathway-accent { transform: scaleX(1); }
.form-section { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: start; }
.form-info-panel { background: var(--navy); border-radius: 16px; padding: 2.5rem 2rem; position: sticky; top: 94px; overflow: hidden; }
.form-info-panel::before { content: ''; position: absolute; right: -50px; top: -50px; width: 200px; height: 200px; border-radius: 50%; background: rgba(200,16,46,.1); pointer-events: none; }
.panel-img-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; aspect-ratio: 16/9; }
.panel-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.panel-tag { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); padding-left: 22px; position: relative; margin-bottom: 1rem; display: block; }
.panel-tag::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 14px; height: 2px; background: var(--red); }
.panel-heading { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.1; margin-bottom: .8rem; }
.panel-heading em { color: var(--red); font-style: normal; }
.panel-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 1.5rem; }
.panel-feats { display: flex; flex-direction: column; gap: .75rem; }
.panel-feat { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); font-size: .88rem; }
.panel-feat i { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; background: rgba(200,16,46,.18); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: .8rem; }
.panel-pricing-box { margin-top: 1.75rem; background: rgba(200,16,46,.12); border: 1px solid rgba(200,16,46,.25); border-radius: 12px; padding: 1.2rem; }
.panel-pricing-box .ppb-title { font-family: var(--font-display); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
.panel-pricing-box ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.panel-pricing-box ul li { font-size: .82rem; color: rgba(255,255,255,.65); display: flex; align-items: flex-start; gap: 8px; }
.panel-pricing-box ul li .fas { color: var(--red); font-size: .6rem; margin-top: 4px; flex-shrink: 0; }
.form-card { background: #fff; border-radius: 16px; padding: clamp(1.5rem,4vw,2.5rem); box-shadow: 0 8px 32px rgba(0,33,71,.1); }
.form-title { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px; }
.form-subtitle { font-size: .88rem; color: var(--muted); margin-bottom: 1.5rem; }
.form-progress { margin-bottom: 1.5rem; }
.progress-label { display: flex; justify-content: space-between; font-size: .75rem; font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.progress-bar { height: 4px; background: var(--border); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--red); border-radius: 999px; width: 0%; transition: width .4s ease; }
.form-divider { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin: 1.25rem 0 1rem; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }
label { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
label .req { color: var(--red); margin-left: 2px; }
input, select, textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .92rem; font-family: var(--font-body); color: var(--dark); background: #fff; outline: none; transition: border-color .25s, box-shadow .25s; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,33,71,.08); }
input.error, select.error, textarea.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.1); }
.field-err { font-size: .75rem; color: var(--red); display: none; }
.field-err.show { display: block; }
textarea { resize: vertical; min-height: 80px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 2px; }
.radio-opt { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.radio-opt input[type="radio"] { width: 18px; height: 18px; padding: 0; accent-color: var(--red); cursor: pointer; flex-shrink: 0; }
.radio-opt span { font-size: .9rem; color: var(--dark); }
.form-actions { margin-top: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-submit { flex: 1; min-width: 160px; padding: 14px 20px; background: linear-gradient(135deg,var(--red),var(--red2)); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; border: none; border-radius: 999px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 6px 20px rgba(200,16,46,.3); transition: transform .2s, box-shadow .25s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,16,46,.5); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-clear { padding: 14px 20px; background: transparent; color: var(--muted); font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; border: 1.5px solid var(--border); border-radius: 999px; cursor: pointer; transition: border-color .25s, color .25s; }
.btn-clear:hover { border-color: var(--muted); color: var(--dark); }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 3rem 1.5rem; }
.form-success.show { display: flex; animation: fadeUp .55s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,#10b981,#059669); color: #fff; font-size: 1.8rem; display: grid; place-items: center; margin-bottom: 1.5rem; box-shadow: 0 8px 28px rgba(16,185,129,.35); }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: .6rem; }
.form-success p { color: var(--muted); font-size: .92rem; line-height: 1.75; max-width: 360px; margin-bottom: 2rem; }
@media (max-width: 1024px) { .pathway-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px) { .pathway-grid { grid-template-columns: 1fr; } }

/* ---- Page-specific: index.html ---- */
html{scroll-behavior:smooth}
body.page-home {
      background:var(--dark);
      color:#fff;
      font-family:var(--font-body);
      line-height:1.7;
      overflow-x:hidden;
    }
body.page-home::before {
      content:"";
      position:fixed;
      inset:0;
      background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events:none;
      z-index:999;
    }
body.page-home a {text-decoration:none}
body.page-home .container {
      max-width:1200px;
      margin:0 auto;
      padding:0 3rem;
      position:relative;
      z-index:1;
    }
body.page-home .reveal-left {transform:translateX(-28px)}
body.page-home .reveal-right {transform:translateX(28px)}
body.page-home .section-header-center {text-align:center}
body.page-home .section-title {
      font-family:var(--font-display);
      font-size:clamp(2rem,4vw,3.5rem);
      font-weight:900;
      text-transform:uppercase;
      line-height:1.02;
      margin-bottom:.5rem;
    }
body.page-home .btn-white {background:#fff;color:var(--red);padding:.85rem 1.8rem}
body.page-home .navbar {
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(8,10,16,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
body.page-home .nav-logo {
      display:flex;
      align-items:center;
      gap:.8rem;
      color:#fff;
    }
body.page-home .nav-logo img {
      width:42px;
      height:42px;
      object-fit:contain;
    }
body.page-home .logo-main {
      display:block;
      font-family:var(--font-display);
      font-size:1.3rem;
      font-weight:900;
      line-height:1;
    }
body.page-home .logo-main em {color:var(--red);font-style:normal}
body.page-home .logo-sub {
      display:block;
      font-size:.72rem;
      color:var(--muted);
      text-transform:uppercase;
      letter-spacing:.08em;
    }
body.page-home .nav-links {
      display:flex;
      align-items:center;
      gap:1.4rem;
    }
body.page-home .nav-links a {
      color:rgba(255,255,255,.75);
      font-family:var(--font-display);
      font-size:.95rem;
      font-weight:700;
      letter-spacing:.05em;
      text-transform:uppercase;
    }
body.page-home .hero-content {
      position:absolute;
      inset:0;
      z-index:5;
      display:flex;
      align-items:center;
      padding:0 2rem;
    }
body.page-home .hero-tag {
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      font-family:var(--font-display);
      font-size:.72rem;
      font-weight:700;
      letter-spacing:.14em;
      text-transform:uppercase;
      color:#fff;
      background:rgba(200,16,46,.3);
      border:1px solid rgba(200,16,46,.6);
      padding:6px 16px;
      border-radius:999px;
      margin-bottom:1.4rem;
    }
body.page-home .stat-num {
      font-family:var(--font-display);
      font-size:1.5rem;
      font-weight:900;
      color:#fff;
      display:block;
    }
body.page-home .stat-lbl {
      font-family:var(--font-display);
      font-size:.68rem;
      font-weight:700;
      letter-spacing:.1em;
      text-transform:uppercase;
      color:rgba(255,255,255,.7);
    }
body.page-home .stat-cell {
      background:rgba(255,255,255,.03);
      padding:1.2rem 1rem;
      text-align:center;
      transition:background .25s;
    }
body.page-home .stat-cell:hover {background:rgba(200,16,46,.12)}
body.page-home .cta-strip {
      background:linear-gradient(135deg,var(--red) 0,#8b0818 100%);
      padding:4.5rem 2rem;
      text-align:center;
    }
body.page-home .cta-strip h2 {
      font-family:var(--font-display);
      font-size:clamp(2rem,4vw,3rem);
      font-weight:900;
      text-transform:uppercase;
      color:#fff;
      margin-bottom:.75rem;
    }
body.page-home .cta-strip p {
      color:rgba(255,255,255,.78);
      font-size:1rem;
      line-height:1.75;
      margin-bottom:2rem;
      max-width:560px;
      margin-left:auto;
      margin-right:auto;
    }
body.page-home .cta-btns {
      display:flex;
      gap:1rem;
      justify-content:center;
      flex-wrap:wrap;
    }
body.page-home .footer {
      background:#06070b;
      border-top:1px solid rgba(255,255,255,.06);
    }
body.page-home .footer-top {padding:4rem 0 2rem}
body.page-home .footer-grid {
      display:grid;
      grid-template-columns:1.4fr 1fr 1fr;
      gap:2rem;
    }
body.page-home .footer-logo {
      display:flex;
      align-items:center;
      gap:.8rem;
      margin-bottom:1rem;
    }
body.page-home .footer-logo img {
      width:42px;
      height:42px;
      object-fit:contain;
    }
body.page-home .footer-desc {
      color:rgba(255,255,255,.62);
      line-height:1.8;
      font-size:.92rem;
    }
body.page-home .footer-col-title {
      font-family:var(--font-display);
      font-size:1rem;
      font-weight:900;
      text-transform:uppercase;
      margin-bottom:1rem;
    }
body.page-home .footer-bottom {
      border-top:1px solid rgba(255,255,255,.06);
      padding:1rem 0;
    }
body.page-home .footer-bottom-inner {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      flex-wrap:wrap;
    }
body.page-home .footer-copy {color:rgba(255,255,255,.5);font-size:.88rem}
body.page-home .footer-badges {
      display:flex;
      gap:.5rem;
      flex-wrap:wrap;
    }
body.page-home .footer-badge {
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      color:rgba(255,255,255,.72);
      padding:.35rem .7rem;
      border-radius:999px;
      font-size:.72rem;
      font-family:var(--font-display);
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em;
    }
@media (max-width: 960px) {
  body.page-home .nav-links,
  body.page-home .nav-cta { display: none; }
  body.page-home .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  body.page-home .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- Page-specific: programs.html ---- */
html { scroll-behavior: smooth; }
body.page-programs { background: var(--dark); color: #fff; font-family: var(--font-b); font-weight: 400; line-height: 1.7; overflow-x: hidden; }
body.page-programs::before {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 1000; opacity: .5;
    }
body.page-programs .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      padding: 1.1rem 3rem; display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid transparent;
      transition: background .4s, border-color .4s, padding .3s;
    }
body.page-programs .nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
body.page-programs .nav-logo img { width: 38px; height: 38px; object-fit: contain; }
body.page-programs .logo-main { font-family: var(--font-sub); font-size: 1.05rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; color: #fff; }
body.page-programs .logo-main em { font-style: normal; color: var(--red); }
body.page-programs .logo-sub { font-size: .6rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
body.page-programs .nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
body.page-programs .nav-links a { font-family: var(--font-sub); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .25s; }
body.page-programs .hero-tag { display: inline-flex; align-items: center; gap: .4rem; background: var(--red-dim); border: 1px solid rgba(200,16,46,.22); color: #ff4d6d; font-family: var(--font-sub); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: .38rem .9rem; border-radius: 999px; margin-bottom: 1rem; }
body.page-programs .container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
body.page-programs .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .65s ease, transform .65s ease; }
body.page-programs .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .65s ease, transform .65s ease; }
body.page-programs .stat-cell {
      background: rgba(255,255,255,.03);
      padding: 1rem .75rem; text-align: center;
      transition: background .25s;
    }
body.page-programs .stat-cell:hover { background: var(--red-dim); }
body.page-programs .stat-num { display: block; font-family: var(--font-h); font-size: 1.7rem; color: var(--red); line-height: 1; }
body.page-programs .stat-lbl { font-family: var(--font-sub); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
body.page-programs .cta-strip { background: linear-gradient(135deg, var(--red) 0%, #8b0818 100%); padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden; }
body.page-programs .cta-strip h2 { font-family: var(--font-h); font-size: clamp(2.5rem, 5vw, 4.5rem); text-transform: uppercase; color: #fff; line-height: .95; margin-bottom: 1rem; }
body.page-programs .cta-strip p { font-size: .95rem; color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 2.2rem; }
body.page-programs .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
body.page-programs .btn-white { display: inline-flex; align-items: center; gap: .45rem; background: #fff; color: var(--red); font-family: var(--font-sub); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .9rem 2rem; border-radius: 999px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 8px 28px rgba(0,0,0,.25); }
body.page-programs .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.35); }
body.page-programs .footer { background: #050609; border-top: 1px solid var(--subtle); }
body.page-programs .footer-top { padding: 4rem 0 3rem; }
body.page-programs .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
body.page-programs .footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
body.page-programs .footer-logo img { width: 34px; object-fit: contain; }
body.page-programs .footer-desc { font-size: .88rem; color: var(--muted); line-height: 1.85; max-width: 280px; }
body.page-programs .footer-col-title { font-family: var(--font-sub); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.2rem; }
body.page-programs .footer-bottom { border-top: 1px solid var(--subtle); padding: 1.4rem 0; }
body.page-programs .footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
body.page-programs .footer-copy { font-size: .82rem; color: rgba(255,255,255,.3); }
body.page-programs .footer-badges { display: flex; gap: .5rem; }
body.page-programs .footer-badge { font-family: var(--font-sub); font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--subtle); color: var(--muted); padding: .3rem .7rem; border-radius: 999px; }
@media (max-width: 600px) {
  body.page-programs .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 960px) {
  body.page-programs .navbar { padding: 1rem 1.5rem; }
  body.page-programs .navbar.scrolled { padding: .8rem 1.5rem; }
  body.page-programs .nav-links { display: none; }
  body.page-programs .page-hero { padding: 7rem 1.5rem 3rem; }
  body.page-programs .container { padding: 0 1.5rem; }
  body.page-programs .camp-hero-banner { grid-template-columns: 1fr; min-height: auto; }
  body.page-programs .camp-hero-img { height: 320px; }
  body.page-programs .camp-hero-img::after { background: linear-gradient(180deg, transparent 0%, rgba(8,10,16,.7) 100%); }
  body.page-programs .camp-hero-content { padding: 2.5rem 1.5rem; }
  body.page-programs .camp-mosaic-row { height: 180px; }
  body.page-programs .one-layout, body.page-programs .pathway-layout { grid-template-columns: 1fr; }
  body.page-programs .pathway-sidebar { position: static; }
  body.page-programs .sched-grid { grid-template-columns: 1fr; }
  body.page-programs .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body.page-programs .focus-grid, body.page-programs .features-grid { grid-template-columns: 1fr; }
  body.page-programs .camp-stats { grid-template-columns: repeat(3,1fr); }
  body.page-programs .footer-grid { grid-template-columns: 1fr; }
  body.page-programs .camp-mosaic-row { height: 140px; }
}

/* ---- Page-specific: contact.html ---- */
body.page-contact { margin: 0; font-family: var(--font-body); color: #111827; background: var(--dark); }
body.page-contact a { text-decoration: none; }
body.page-contact .container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
body.page-contact .hero-content { max-width: 760px; color: #fff; }
body.page-contact .section-header-center { text-align: center; margin-bottom: 30px; }
body.page-contact .section-title { margin: 0; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: .95; text-transform: uppercase; letter-spacing: -.025em; }
body.page-contact .footer { background: #03050a; color: #fff; }

/* ---- Page-specific: registration.html ---- */
body.page-registration .cta-strip { background: linear-gradient(135deg,var(--red) 0%,#8b0818 100%); padding: 4rem 2rem; text-align: center; }
body.page-registration .cta-strip h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: .75rem; }
body.page-registration .cta-strip p { color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
body.page-registration .btn-white { display: inline-flex; align-items: center; gap: .5rem; background: #fff; color: var(--red); font-family: var(--font-display); font-weight: 800; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2rem; border-radius: 999px; transition: transform .2s, box-shadow .2s; box-shadow: 0 6px 24px rgba(0,0,0,.2); }
body.page-registration .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.3); }
@media (max-width: 960px) {
  body.page-registration .form-section { grid-template-columns: 1fr; }
  body.page-registration .form-info-panel { position: static; }
}
@media (max-width: 600px) {
  body.page-registration .pathway-grid { grid-template-columns: 1fr 1fr; }
  body.page-registration .form-grid { grid-template-columns: 1fr; }
  body.page-registration .fg.full { grid-column: 1; }
  body.page-registration .form-actions { flex-direction: column; }
}

/* ============================================================
   FIX: Contact page color tokens (scoped)
   The merged :root applied dark-theme values globally, which
   turned --muted near-white and made text invisible on the
   contact page's light form. Re-scope contact's own values.
   ============================================================ */
body.page-contact {
  --navy: #00152f;
  --navy2: #003a78;
  --red: #c8102e;
  --red2: #ff304f;
  --gold: #f5c451;
  --white: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg-alt: #f5f7fb;
}

/* ============================================================
   Newsletter band (footer) — styles were missing
   ============================================================ */
.nl-band {
  background: linear-gradient(180deg, #0a0d14, #07090f);
  border-top: 3px solid var(--red);
  padding: 40px 0;
}
.nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.nl-text { flex: 1 1 360px; min-width: 280px; }
.nl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red2, #ff304f);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 10px;
}
.nl-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
  line-height: 1.1;
  margin: 0 0 8px;
}
.nl-title em { color: var(--red2, #ff304f); font-style: normal; }
.nl-sub {
  color: rgba(255,255,255,.62);
  font-size: .98rem;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}
.nl-form {
  flex: 1 1 360px;
  min-width: 280px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.nl-field {
  position: relative;
  flex: 1 1 240px;
  min-width: 200px;
}
.nl-field-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa3b2;
  pointer-events: none;
  font-size: .95rem;
}
.nl-input {
  width: 100%;
  height: 56px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: #fff;
  color: #1a1d27;
  font-family: var(--font-body);
  font-size: .98rem;
  padding: 0 20px 0 46px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nl-input::placeholder { color: #9aa3b2; }
.nl-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200,16,46,.18);
}
.nl-btn {
  height: 56px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red2, #ff304f));
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .98rem;
  box-shadow: 0 14px 30px rgba(200,16,46,.30);
  transition: transform .25s ease, box-shadow .25s ease;
}
.nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(200,16,46,.42);
}
.nl-msg {
  flex: 1 0 100%;
  margin: 4px 0 0;
  font-size: .88rem;
  min-height: 1em;
  color: rgba(255,255,255,.7);
}
.nl-msg.ok { color: #46d17a; }
.nl-msg.err { color: #ff6b6b; }

@media (max-width: 760px) {
  .nl-inner { flex-direction: column; align-items: stretch; }
  .nl-btn { width: 100%; justify-content: center; }
}

/* ===== FOOTER RESPONSIVE FIX (all pages) ===== */
@media (max-width: 860px) {
  .footer-grid,
  body.page-home .footer-grid,
  body.page-programs .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.5rem !important;
  }
  .footer-grid > div:first-child,
  body.page-home .footer-grid > div:first-child,
  body.page-programs .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-grid,
  body.page-home .footer-grid,
  body.page-programs .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
    text-align: left;
  }
  .footer-top,
  body.page-home .footer-top,
  body.page-programs .footer-top {
    padding: 2.8rem 0 1.8rem !important;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: .6rem;
    text-align: center;
  }
  .nl-inner {
    text-align: left;
  }
}

/* ===== HOMEPAGE FAQ SECTION (scoped to page-home to avoid clashing with contact-page FAQ) ===== */
body.page-home .faq-section {
  padding: 5.5rem 0;
  background: #0a0c12;
  position: relative;
}
body.page-home .faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
body.page-home .faq-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,.03);
  box-shadow: none;
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
body.page-home .faq-item:hover {
  transform: none;
  border-color: rgba(200,16,46,.3);
}
body.page-home .faq-item.active {
  border-color: rgba(200,16,46,.45);
  background: rgba(200,16,46,.05);
}
body.page-home .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .01em;
  color: #fff;
  user-select: none;
}
body.page-home .faq-question .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,16,46,.14);
  color: #c8102e;
  transition: transform .3s ease, background .3s ease, color .3s ease;
  font-size: .85rem;
}
body.page-home .faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #c8102e;
  color: #fff;
}
body.page-home .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.6rem;
}
body.page-home .faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.6rem 1.4rem;
}
body.page-home .faq-answer p {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: .98rem;
  margin: 0;
}
@media (max-width: 560px) {
  body.page-home .faq-section { padding: 3.5rem 0; }
  body.page-home .faq-question { padding: 1.1rem 1.2rem; font-size: 1.02rem; }
  body.page-home .faq-answer { padding: 0 1.2rem; }
  body.page-home .faq-item.active .faq-answer { padding: 0 1.2rem 1.2rem; }
}