:root {
  --navy:#0E2A47;
  --navy-2:#143358;
  --ink:#0D1B2A;
  --gold:#C89B3C;
  --gold-2:#B0812A;
  --teal:#0FB6A2;
  --slate:#4A5568;
  --slate-2:#6B7686;
  --cream:#F8F4EC;
  --paper:#FBFAF6;
  --rule:#E5E2DA;
  --white:#FFFFFF;
  --maxw:1140px;
  --gap:clamp(20px,4vw,40px);
}
* { box-sizing:border-box; }
html, body { margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
.wrap { max-width:var(--maxw); margin:0 auto; padding: 0 clamp(18px,4vw,32px); }
h1, h2, h3, h4 { font-family: "Inter", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif; color:var(--navy); letter-spacing:-0.01em; }
h1 { font-size: clamp(36px, 5.6vw, 64px); line-height:1.05; margin:0 0 18px; font-weight:700; letter-spacing:-0.02em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); line-height:1.15; margin:0 0 14px; font-weight:700; letter-spacing:-0.015em; }
h3 { font-size: clamp(18px, 2vw, 22px); line-height:1.25; margin:0 0 8px; font-weight:600; }
p  { font-size: clamp(15px, 1.1vw, 17px); margin: 0 0 14px; color:var(--slate); }
a  { color:inherit; text-decoration:none; }
.kicker {
  font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold);
  font-weight:700;
}

/* ---------- TOP NAV ---------- */
nav {
  position:sticky; top:0; z-index:50;
  background:rgba(251,250,246,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--rule);
  transition: box-shadow 200ms ease, background 200ms ease;
}
nav.scrolled {
  background:rgba(251,250,246,0.97);
  box-shadow: 0 6px 24px rgba(14,42,71,0.08);
}
nav .row {
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.logo {
  display:flex; align-items:center; gap:10px;
  margin-left: clamp(8px, 2vw, 20px);
  font-weight:800; letter-spacing:-0.01em; color:var(--navy); font-size:18px;
}
.logo-img {
  width:38px; height:38px; border-radius:50%;
  object-fit:cover; object-position: 78% 22%;
  border:2px solid var(--gold);
  display:block; flex:0 0 auto;
}
.logo .dot { color:var(--gold); }
.nav-links { display:flex; gap:28px; align-items:center; margin-right: clamp(8px, 2vw, 20px); }
.nav-links a {
  font-size:14px; color:var(--slate); font-weight:500;
}
.nav-links a:hover { color:var(--navy); }
.nav-links .nav-cta {
  background:var(--gold); color:var(--ink);
  border:none;
  padding: 9px 16px; border-radius: 999px;
  font-size:13px; font-weight:600;
}
.nav-links .nav-cta:hover { background:#D8AA48; color:var(--ink); }

/* ----- Burger toggle (hidden on desktop) ----- */
.nav-toggle {
  display:none;
  flex-direction:column; justify-content:center; gap:5px;
  width:42px; height:42px; padding:9px;
  margin-right: clamp(8px, 2vw, 20px);
  background:transparent; border:1px solid var(--rule); border-radius:10px;
  cursor:pointer;
}
.nav-toggle:hover { border-color:var(--gold); }
.nav-toggle-bar {
  display:block; width:100%; height:2px; border-radius:2px;
  background:var(--navy);
  transition: transform 200ms ease, opacity 150ms ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ============================================================
   RESPONSIVE — single breakpoint (desktop vs mobile only)
   Desktop:  > 900px
   Mobile:  <= 900px   (burger nav + every layout grid stacks)
   The same 900px boundary is used everywhere so the whole
   design switches at one consistent point.
   ============================================================ */

/* ----- Mobile nav: collapse links into the burger dropdown ----- */
@media (max-width:900px){
  .nav-toggle { display:flex; }
  .nav-links {
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    margin-right:0;
    padding:4px clamp(18px,4vw,32px) 14px;
    background:rgba(251,250,246,0.98);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--rule);
    box-shadow:0 12px 24px rgba(14,42,71,0.10);
    display:none;
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:13px 2px; font-size:15px; border-top:1px solid var(--rule); }
  .nav-links a:first-child { border-top:none; }
  .nav-links a.nav-cta { align-self:flex-start; margin-top:12px; padding:11px 22px; border-top:none; }
}

/* ---------- HERO ---------- */
header.hero {
  background:
    linear-gradient(90deg, rgba(14,42,71,0.94) 0%, rgba(14,42,71,0.82) 42%, rgba(11,35,61,0.55) 100%),
    url("images/602e07a1-8001-41b1-93aa-cad397511040.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  color:var(--white);
  padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 10vw, 130px);
  overflow:hidden;
  position:relative;
}
@media (max-width:900px){
  header.hero {
    background:
      linear-gradient(180deg, rgba(14,42,71,0.92) 0%, rgba(11,35,61,0.86) 100%),
      url("images/602e07a1-8001-41b1-93aa-cad397511040.jpg");
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
  }
}
header.hero::after {
  content:"";
  position:absolute; right:-100px; top:-100px;
  width:480px; height:480px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,155,60,0.16), transparent 70%);
  pointer-events:none;
}
.hero-grid {
  display:grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items:center;
}
@media (max-width:900px){ .hero-grid { grid-template-columns:1fr; gap: 32px; } }
.hero h1 { color:var(--white); }
.hero p.lead {
  color:#D9DFE8; font-size: clamp(16px, 1.4vw, 19px); max-width: 640px; margin-bottom: 28px;
}
.hero .ctas {
  display:flex; gap:12px; flex-wrap:wrap;
}
.btn {
  display:inline-block; padding: 13px 22px; border-radius: 999px;
  font-weight:600; font-size:15px;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}
.btn-primary { background:var(--gold); color:var(--ink); }
.btn-primary:hover { background:#D8AA48; transform:translateY(-1px); }
.btn-ghost { background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background:rgba(255,255,255,0.08); }

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px 26px 22px;
  backdrop-filter: blur(8px);
}
.hero-card h4 { color:var(--gold); font-size:12px; letter-spacing:0.16em; text-transform:uppercase; margin:0 0 14px; font-weight:700; }
.hero-card .stat-row { display:flex; gap:18px; padding: 10px 0; border-top:1px solid rgba(255,255,255,0.08); }
.hero-card .stat-row:first-of-type { border-top:none; padding-top:0; }
.hero-card .stat-row strong { color:var(--white); font-size:22px; font-weight:700; flex: 0 0 96px; }
.hero-card .stat-row span { color:#C8D0DC; font-size:14px; line-height:1.45; padding-top:3px; }

/* ---------- SECTION CHROME ---------- */
section { padding: clamp(60px, 8vw, 110px) 0; }
section.alt { background:var(--white); border-top:1px solid var(--rule); border-bottom:1px solid var(--rule); }
section.cream { background: var(--cream); }
.section-head { max-width:760px; margin: 0 0 44px; }
.section-head .kicker { display:block; margin-bottom:10px; }
.section-head h2, .section-head p { text-align:left; }

/* Coaching headings span the full width, matching the package cards below */
#remote-coaching .section-head,
#in-person .section-head { max-width:none; }
#remote-coaching .section-head p,
#in-person .section-head p { max-width:760px; }

/* ---------- TWO-LANE INTRO TILES ---------- */
.lanes { display:grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 18px; }
.lanes.single { grid-template-columns: 1fr; max-width: 640px; }
.lanes.triple { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){ .lanes, .lanes.triple { grid-template-columns: 1fr; } }
.lane {
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--rule);
  background: var(--white);
  position:relative;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.lane:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(14,42,71,0.08); }
.lane.coach { border-top: 4px solid var(--gold); }
.lane.vr    { border-top: 4px solid var(--teal); }
.lane h3 { color:var(--navy); margin-bottom:6px; }
.lane .lane-tag { font-size:12px; letter-spacing:0.15em; text-transform:uppercase; font-weight:700; }
.lane.coach .lane-tag { color:var(--gold); }
.lane.vr    .lane-tag { color:var(--teal); }
.lane ul { padding-left:18px; margin: 12px 0 18px; color: var(--slate); font-size:15px; }
.lane ul li { margin-bottom:6px; }
.lane .lane-cta { font-weight:600; font-size:14px; }
.lane.coach .lane-cta { color:var(--gold-2); }
.lane.vr    .lane-cta { color:#0a8f7f; }

/* ---------- COACHING SECTION ---------- */
.pillar-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 28px;
}
@media (max-width:900px){ .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  background:var(--white);
  border:1px solid var(--rule);
  border-radius: 14px;
  padding: 26px;
}
.pillar h4 { color:var(--navy); font-size:18px; margin: 0 0 8px; font-weight:600; }
.pillar p { color:var(--slate); font-size:15px; margin:0; }
.pillar .num {
  color:var(--gold); font-weight:800; font-size:14px; letter-spacing:0.16em;
  display:block; margin-bottom:10px;
}

.quote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px; margin: 28px 0 0;
  font-size: clamp(18px, 1.6vw, 22px); font-style:italic; color:var(--navy);
  line-height:1.45;
}
.quote cite { display:block; margin-top:10px; font-size:13px; color:var(--slate); font-style:normal; letter-spacing:0.04em; }

/* ---------- PEDIGREE STATS ---------- */
.stats {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin: 30px 0 0;
}
@media (max-width:900px){ .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: var(--navy); color:var(--white);
  border-radius: 14px; padding: 22px;
}
.stat-card strong { display:block; font-size: 30px; color:var(--gold); font-weight:700; line-height:1; margin-bottom:6px; }
.stat-card span { font-size: 14px; color:#CDD3DD; line-height:1.4; }

/* ---------- VR SECTION ---------- */
.vr-section { background: linear-gradient(180deg, #0D1B2A 0%, #11253B 100%); color: var(--white); }
.vr-section h2 { color:var(--white); }
.vr-section .kicker { color:var(--teal); }
.vr-section p { color:#C8D2DD; }
.vr-grid { display:grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items:flex-start; }
@media (max-width:900px){ .vr-grid { grid-template-columns: 1fr; gap: 36px; } }
.vr-stats { display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; }
.vr-stat {
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  border-radius: 14px; padding: 18px;
}
.vr-stat strong {
  display:block; color: var(--teal); font-size: 24px; font-weight:700; line-height:1; margin-bottom:6px;
}
.vr-stat span { font-size:13px; color:#B7C2CF; line-height:1.4; }

.vr-services { margin-top: 28px; }
.vr-service {
  border-top:1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
  display:grid; grid-template-columns: 28px 1fr; gap: 14px; align-items:flex-start;
}
.vr-service:last-child { border-bottom:1px solid rgba(255,255,255,0.10); }
.vr-service .arrow { color:var(--teal); font-weight:700; padding-top:1px; }
.vr-service h4 { margin:0 0 4px; color:var(--white); font-size: 17px; font-weight:600; }
.vr-service p { margin:0; font-size: 14.5px; color: #BCC7D4; }

/* ---------- SOCIAL PROOF ---------- */
.logos { display:flex; flex-wrap:wrap; gap: 26px 36px; align-items:center; opacity:0.8; }
.logos span { font-size:14px; color:var(--slate-2); font-weight:600; letter-spacing:0.04em; }

/* ---------- TIMELINE ---------- */
.timeline { display:grid; grid-template-columns: 1fr; gap: 0; margin-top: 26px; border-left:2px solid var(--rule); padding-left:22px; }
.t-item { position:relative; padding: 14px 0; }
.t-item:before {
  content:""; position:absolute; left:-31px; top: 22px;
  width:14px; height:14px; border-radius:50%;
  background:var(--white); border: 3px solid var(--gold);
}
.t-item h4 { margin:0 0 2px; color:var(--navy); font-size:16px; font-weight:600; }
.t-item p  { margin:0; font-size:14px; color:var(--slate); }
.t-item span.year { display:inline-block; font-size:12px; color:var(--gold-2); font-weight:700; letter-spacing:0.06em; margin-bottom:2px; }

/* ---------- CONTACT ---------- */
.contact-grid { display:grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items:center; }
@media (max-width:900px){ .contact-grid { grid-template-columns:1fr; } }
.contact-card {
  background:var(--navy);
  color:var(--white);
  padding: 36px;
  border-radius: 18px;
}
.contact-card h3 { color:var(--white); font-size:22px; margin: 0 0 10px; font-weight:700; }
.contact-card p { color:#C8D2DD; }
.contact-card .row {
  display:flex; gap:14px; flex-wrap:wrap; align-items:center;
  padding: 14px 0; border-top:1px solid rgba(255,255,255,0.10);
}
.contact-card .row:first-of-type { border-top: 1px solid rgba(255,255,255,0.10); margin-top: 18px; }
.contact-card .row strong { color:var(--gold); font-size:13px; min-width:78px; letter-spacing:0.06em; text-transform:uppercase; }
.contact-card .row span { font-size:15px; color:var(--white); font-weight:500; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink); color: #B7C2CF;
  padding: 36px 0;
  font-size:13px;
}
footer .row { display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; }
footer a { color: var(--gold); }
