:root{
    --navy-950:#041642;
    --navy-900:#19192e;
    --navy-800:#002063;
    --navy-700:#003e91;
    --navy-600:#003e91;
    --ink:#0F1730;
    --ink-muted:#4B5779;
    --silver-500:#8791A6;
    --silver-300:#C1C9D8;
    --silver-100:#EEF1F6;
    --silver-glow:#E7ECF5;
    --silver-glow-dim:#A9B4CC;
    --paper:#FAFBFD;
    --white:#FFFFFF;
    --royal:#003e91;
    --royal-dim:#002063;
    --royal-light:#A7B8F5;
    --serif:'Fraunces', serif;
    --sans:'Inter', sans-serif;
    --mono:'IBM Plex Mono', monospace;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{
    scroll-behavior:smooth;
    overflow-x:hidden;
    overscroll-behavior-x:none;
  }
  body{
    background:var(--navy-900);
    color:var(--silver-100);
    font-family:var(--sans);
    line-height:1.6;
    overflow-x:hidden;
    overscroll-behavior-x:none;
    -webkit-font-smoothing:antialiased;
    position:relative;
  }
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  ::selection{background:var(--royal); color:var(--white);}

  .wrap{max-width:1180px; margin:0 auto; padding:0 32px; position:relative; z-index:2;}
  @media(max-width:640px){.wrap{padding:0 20px;}}

  /* ---------- NAV ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:rgba(11,20,64,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(185,196,207,0.15);
    transition:background .3s ease, box-shadow .3s ease, padding .3s ease;
  }
  header.scrolled{
    background:rgba(11,20,64,0.97);
    box-shadow:0 6px 30px rgba(0,0,0,0.18);
  }
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 32px;
    max-width:1400px; margin:0 auto;
  }
  .brand-mark{
    font-family:var(--serif); font-weight:500; font-size:22px; letter-spacing:0.01em; color:var(--white);
  }
  .brand-mark span{color:var(--royal-light); font-style:italic; font-weight:400; font-size:19px;}
  .nav-links{display:flex; gap:36px; font-size:14px; color:var(--silver-300);}
  .nav-links a{transition:color .2s;}
  .nav-links a:hover{color:var(--white);}
  .nav-cta{
    font-size:13px; padding:10px 20px; border:1px solid var(--royal);
    background:var(--royal); color:var(--white); border-radius:2px; letter-spacing:0.03em;
    transition:border-color .25s, color .25s;
    animation:navCtaGlow 4.5s ease-in-out infinite;
  }
  .nav-cta:hover{
    background:var(--royal-light); border-color:var(--royal-light); color:var(--navy-950);
    animation-play-state:paused;
  }
  @keyframes navCtaGlow{
    0%, 100%{background:var(--royal); box-shadow:0 6px 18px -6px rgba(0,62,145,0.55);}
    50%{background:#2F6FE0; box-shadow:0 6px 26px -2px rgba(47,111,224,0.85);}
  }
  .nav-toggle{
    display:none; flex-direction:column; gap:5px; background:none; border:none;
    cursor:pointer; padding:6px;
  }
  .nav-toggle span{width:22px; height:1.5px; background:var(--silver-100); transition:transform .25s, opacity .25s;}
  .nav-toggle.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
  .nav-toggle.open span:nth-child(2){opacity:0;}
  .nav-toggle.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}

  .mobile-menu{
    max-height:0; overflow:hidden; display:flex; flex-direction:column;
    background:var(--navy-900); border-top:1px solid rgba(185,196,207,0.12);
    transition:max-height .35s ease;
  }
  .mobile-menu.open{max-height:calc(100vh - 70px); overflow-y:auto;}
  .mobile-menu a{
    padding:16px 32px; font-size:15px; color:var(--silver-100);
    border-bottom:1px solid rgba(185,196,207,0.1);
  }
  .mobile-menu .nav-cta{margin:16px 32px; display:inline-block; text-align:center; border-bottom:none;}

  @media(max-width:1120px){
    .nav-links{display:none;}
    .nav-cta-desktop{display:none;}
    .nav-toggle{display:flex;}
  }
  @media(min-width:1121px){
    .mobile-menu{display:none;}
  }
  @media(max-width:420px){
    nav{padding:16px 20px;}
    .brand-mark{font-size:16px;}
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex; flex-direction:column; justify-content:center;
    padding-top:140px; padding-bottom:0;
    overflow:hidden;
    background:var(--navy-900);
  }
  .hero-inner{padding-bottom:110px; width:100%;}

  /* full-bleed photo background */
  .hero-bg{
    position:absolute; inset:0; z-index:0;
  }
  .hero-bg picture{display:block; width:100%; height:100%;}
  .hero-bg img{
    width:100%; height:100%; object-fit:cover; object-position:78% 22%;
    filter:grayscale(0.1) contrast(1.05) brightness(0.92);
  }
  .hero-bg-overlay{
    position:absolute; inset:0;
    background:
      linear-gradient(90deg,
        var(--navy-900) 0%,
        var(--navy-900) 34%,
        rgba(25,25,46,0.75) 46%,
        rgba(25,25,46,0.3) 58%,
        rgba(25,25,46,0.08) 70%,
        transparent 82%),
      linear-gradient(180deg, rgba(4,22,66,0.15), rgba(4,22,66,0.55) 85%, var(--navy-900) 100%);
  }
  @media(max-width:900px){
    .hero{display:block; padding-top:0;}
    .hero-inner{padding-top:400px; padding-bottom:70px;}
    .hero-bg-overlay{
      background:
        linear-gradient(180deg,
          rgba(25,25,46,0.35) 0%,
          rgba(25,25,46,0.5) 28%,
          rgba(25,25,46,0.85) 42%,
          var(--navy-900) 52%,
          var(--navy-900) 100%);
    }
    .hero-bg img{object-position:50% 6%;}
  }
  @media(max-width:480px){
    .hero-inner{padding-top:370px;}
  }

  .hero-copy{position:relative; z-index:1; max-width:640px;}

  .eyebrow{
    font-family:var(--mono); font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
    color:var(--royal-light); margin-bottom:28px;
  }
  .hero h1{
    font-family:var(--serif); font-weight:400;
    font-size:clamp(38px, 6vw, 72px);
    line-height:1.08; letter-spacing:-0.01em;
    max-width:920px;
    color:var(--white);
    text-shadow:0 2px 24px rgba(0,0,0,0.25);
  }
  .hero h1 em{
    font-style:italic; font-weight:300; color:var(--royal-light);
  }
  .hero-sub{
    margin-top:28px; max-width:560px; font-size:18px; color:var(--silver-300); font-weight:400;
  }
  .hero-ctas{
    margin-top:44px; display:flex; gap:16px; flex-wrap:wrap; align-items:center;
  }
  .btn-primary{
    background:var(--royal); color:var(--white); font-weight:600; font-size:14px;
    padding:16px 30px; border-radius:2px; letter-spacing:0.02em;
    transition:transform .25s, box-shadow .25s;
    box-shadow:0 10px 28px -8px rgba(0,62,145,0.5);
  }
  .btn-primary:hover{transform:translateY(-2px);}
  .btn-ghost{
    color:var(--silver-100); font-size:14px; padding:16px 6px; border-bottom:1px solid var(--silver-500);
    letter-spacing:0.02em; transition:border-color .2s, color .2s;
  }
  .btn-ghost:hover{color:var(--white); border-color:var(--white);}

  /* ledger line signature element */
  .ledger{
    margin-top:64px; position:relative; height:120px; max-width:560px;
  }
  .ledger svg{width:100%; height:100%; overflow:visible;}
  .ledger-path{
    fill:none; stroke:var(--silver-300); stroke-width:1.25;
    stroke-dasharray:1400; stroke-dashoffset:1400;
    animation:draw 2.4s ease forwards .3s;
  }
  .ledger-node{
    fill:var(--royal); opacity:0; animation:fadein .6s ease forwards 2.1s;
  }
  .ledger-label{
    font-family:var(--mono); font-size:11px; fill:var(--silver-300); opacity:0;
    animation:fadein .6s ease forwards 2.3s;
  }
  .ledger-label.accent-label{fill:var(--royal-light);}
  @keyframes draw{to{stroke-dashoffset:0;}}
  @keyframes fadein{to{opacity:1;}}
  @media (prefers-reduced-motion: reduce){
    .ledger-path, .ledger-node, .ledger-label{animation:none !important; stroke-dashoffset:0 !important; opacity:1 !important;}
  }

  /* hero skyline silhouette */
  .hero-skyline{
    position:absolute; left:0; right:0; bottom:0; width:100%; height:auto;
    z-index:1; pointer-events:none;
  }
  .hero-skyline path{fill:var(--navy-700);}
  .hero-skyline .layer-back path{fill:var(--navy-700); opacity:0.55;}
  .hero-skyline .layer-mid path{fill:var(--navy-800); opacity:0.7;}
  .hero-skyline .layer-front path{fill:var(--navy-950); opacity:0.95;}
  .hero-skyline rect.window{fill:var(--silver-glow); opacity:0.7;}

  /* ---------- SECTION GENERIC ---------- */
  section{padding:120px 0;}
  @media(max-width:640px){section{padding:80px 0;}}
  .section-head{max-width:640px; margin-bottom:64px;}
  .section-tag{
    font-family:var(--mono); font-size:12px; letter-spacing:0.16em; text-transform:uppercase;
    color:var(--royal-light); margin-bottom:18px;
  }
  h2{
    font-family:var(--serif); font-weight:400; font-size:clamp(28px,3.6vw,42px);
    letter-spacing:-0.01em; color:var(--white); line-height:1.15;
  }
  .lede{color:var(--silver-300); font-size:17px; margin-top:18px; max-width:560px;}

  /* ---------- TWO LEVELS ---------- */
  .levels{border-top:1px solid rgba(255,255,255,0.08); border-bottom:1px solid rgba(255,255,255,0.08);}
  .levels-grid{
    display:grid; grid-template-columns:1fr 1px 1fr; gap:0; margin-top:20px;
  }
  @media(max-width:760px){.levels-grid{grid-template-columns:1fr;}}
  .level-divider{background:linear-gradient(transparent, var(--silver-300), transparent); opacity:0.5;}
  @media(max-width:760px){.level-divider{display:none;}}
  .level-col{padding:8px 56px;}
  .level-col:first-child{padding-left:0;}
  .level-col:last-child{padding-right:0;}
  @media(max-width:760px){.level-col{padding:32px 0 !important; border-bottom:1px solid rgba(255,255,255,0.12);}}
  .level-name{
    font-family:var(--serif); font-style:italic; font-size:26px; color:var(--white); margin-bottom:20px;
  }
  .level-col:first-child .level-name{color:var(--royal-light);}
  .level-list{list-style:none;}
  .level-list li{
    padding:13px 0; border-top:1px solid rgba(255,255,255,0.1);
    font-size:15px; color:var(--silver-300); display:flex; align-items:center; gap:12px;
  }
  .level-list li:first-child{border-top:none;}
  .level-list li::before{content:'—'; color:var(--silver-500); font-size:13px;}

  /* ---------- MEET THE ADVISORS ---------- */
  
  .advisor-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-top:20px;
  }
  @media(max-width:700px){.advisor-grid{grid-template-columns:1fr; max-width:360px; margin-left:auto; margin-right:auto;}}
  .advisor-card{
    background:var(--silver-100); border:1px solid rgba(255,255,255,0.12);
    border-radius:14px; overflow:hidden; position:relative;
    box-shadow:0 20px 40px -22px rgba(0,0,0,0.45);
    transition:transform .35s ease, box-shadow .35s ease;
  }
  .advisor-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:4px; z-index:2;
    background:linear-gradient(90deg, var(--royal), var(--royal-light));
  }
  .advisor-card:hover{transform:translateY(-6px); box-shadow:0 32px 56px -22px rgba(0,0,0,0.55);}
  .advisor-photo{aspect-ratio:4/5; overflow:hidden;}
  .advisor-photo img{
    width:100%; height:100%; object-fit:cover; object-position:top center;
    filter:grayscale(0.06) contrast(1.02);
    transition:transform .5s ease;
  }
  .advisor-card:hover .advisor-photo img{transform:scale(1.04);}
  .advisor-name{
    font-family:var(--serif); font-size:22px; color:var(--ink); margin:22px 26px 6px;
  }
  .advisor-role{
    font-family:var(--mono); font-size:11.5px; letter-spacing:0.05em; color:var(--royal-dim);
    margin:0 26px 26px; text-transform:uppercase;
  }

  /* ---------- WHO / IDEAL CLIENT ---------- */

  .quotes-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
    margin-top:10px;
  }
  @media(max-width:700px){.quotes-grid{grid-template-columns:1fr;}}
  .quote-cell{
    background:var(--silver-100); padding:34px 32px 30px;
    border-radius:12px; border:1px solid rgba(255,255,255,0.12);
    position:relative; overflow:hidden;
    box-shadow:0 16px 32px -22px rgba(0,0,0,0.4);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .quote-cell:hover{transform:translateY(-4px); box-shadow:0 24px 42px -22px rgba(0,0,0,0.5);}
  .quote-cell::before{
    content:'\201C'; position:absolute; top:-18px; right:14px;
    font-family:var(--serif); font-size:96px; font-style:italic; font-weight:700;
    color:var(--royal); opacity:0.1; line-height:1; pointer-events:none;
  }
  .quote-cell p{
    position:relative; z-index:1;
    font-family:var(--serif); font-style:italic; font-size:19px; color:var(--ink); line-height:1.4;
  }

  .tag-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:36px;}
  .tag{
    font-family:var(--mono); font-size:12.5px; color:var(--silver-300);
    border:1px solid rgba(255,255,255,0.25); padding:8px 14px; border-radius:20px;
  }

  /* ---------- PROGRAMS ---------- */

  .program-cards{display:grid; grid-template-columns:1fr auto 1fr; gap:28px; margin-top:20px; align-items:center;}
  @media(max-width:800px){.program-cards{grid-template-columns:1fr;}}
  .program-connector{
    display:flex; align-items:center; justify-content:center;
    width:56px; height:56px; border-radius:50%;
    border:1px solid rgba(255,255,255,0.18); background:rgba(0,62,145,0.18);
  }
  .program-connector span{
    font-family:var(--mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--royal-light);
  }
  @media(max-width:800px){
    .program-connector{width:auto; height:auto; border:none; background:none; margin:-8px auto;}
  }
  .program-card{
    background:var(--silver-100);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:16px;
    padding:44px 38px; position:relative; overflow:hidden;
    box-shadow:0 20px 40px -28px rgba(0,0,0,0.4);
    transition:transform .35s ease, box-shadow .35s ease;
  }
  .program-card:hover{transform:translateY(-6px); box-shadow:0 32px 56px -26px rgba(0,0,0,0.5);}
  .program-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:4px;
    background:linear-gradient(90deg, var(--royal), var(--royal-light));
  }
  .program-card::after{
    content:''; position:absolute; top:-40%; right:-20%; width:220px; height:220px;
    background:radial-gradient(circle, rgba(0,62,145,0.16), transparent 70%);
  }
  .program-num{font-family:var(--mono); font-size:12px; color:var(--royal-dim); letter-spacing:0.1em;}
  .program-card h3{
    font-family:var(--serif); font-weight:500; font-size:26px; margin:16px 0 10px; color:var(--ink);
  }
  .program-purpose{color:var(--ink-muted); font-size:15px; margin-bottom:24px;}
  .program-list{list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:8px 16px;}
  .program-list li{
    font-size:13.5px; color:var(--ink); padding-left:14px; position:relative;
  }
  .program-list li::before{
    content:''; position:absolute; left:0; top:8px; width:5px; height:1px; background:var(--royal);
  }

  /* ---------- FREEDOM NUMBER ---------- */
  .freedom{
    display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  }
  @media(max-width:800px){.freedom{grid-template-columns:1fr;}}
  .freedom-visual{
    border:1px solid rgba(255,255,255,0.12); padding:40px; background:var(--silver-100);
    border-radius:16px; position:relative; overflow:hidden;
    font-family:var(--mono);
    box-shadow:0 24px 50px -30px rgba(0,0,0,0.4);
  }
  .freedom-visual::before{
    content:''; position:absolute; top:0; left:0; right:0; height:4px;
    background:linear-gradient(90deg, var(--royal), var(--royal-light));
  }
  .fv-row{display:flex; justify-content:space-between; padding:14px 0; border-bottom:1px solid rgba(18,32,51,0.08); font-size:13px; color:var(--ink-muted);}
  .fv-row:last-child{border-bottom:none;}
  .fv-row span:last-child{color:var(--ink);}
  .fv-row.highlight{color:var(--royal-dim);}
  .fv-row.highlight span:last-child{color:var(--royal-dim); font-weight:600;}
  .fv-row.fv-link{cursor:pointer; transition:opacity .2s;}
  .fv-row.fv-link:hover{opacity:0.72;}
  .fv-caption{margin-top:18px; font-size:11.5px; color:var(--silver-500); letter-spacing:0.03em;}
  .fv-cta{display:block; text-align:center; margin-top:22px; width:100%; box-shadow:none; border-radius:8px;}

  /* ---------- PROCESS ---------- */
  
  .process-steps{margin-top:20px;}
  .step{
    display:grid; grid-template-columns:70px 1fr; gap:24px; padding:28px 0;
    border-top:1px solid rgba(255,255,255,0.12);
  }
  .process-steps .step:last-child{border-bottom:1px solid rgba(255,255,255,0.12);}
  .step-num{font-family:var(--mono); font-size:13px; color:var(--royal-light); padding-top:4px;}
  .step-body h4{font-family:var(--serif); font-weight:500; font-size:21px; color:var(--white); margin-bottom:6px;}
  .step-body p{font-size:14.5px; color:var(--silver-300); max-width:520px;}

  /* ---------- PHILOSOPHY (the one dark, dramatic section) ---------- */
  .philosophy{
    text-align:center; position:relative; overflow:hidden;
    background:var(--navy-950);
  }
  .philosophy-glow{
    position:absolute; inset:0; z-index:0;
    background:radial-gradient(ellipse 700px 420px at 50% 30%, rgba(0,62,145,0.14), transparent 65%);
  }
  .philosophy-skyline{
    position:absolute; left:0; right:0; bottom:0; width:100%; height:auto; z-index:1; pointer-events:none;
  }
  .philosophy-skyline .layer-back path{fill:var(--navy-800); opacity:0.7;}
  .philosophy-skyline .layer-mid path{fill:var(--navy-700); opacity:0.85;}
  .philosophy-skyline .layer-front path{fill:#060D18;}
  .philosophy-skyline rect.window{fill:var(--silver-glow);}
  .philosophy-skyline rect.window.dim{fill:var(--silver-glow-dim); opacity:0.7;}
  .philosophy blockquote{
    position:relative; z-index:2;
    font-family:var(--serif); font-weight:300; font-style:italic;
    font-size:clamp(26px,4vw,44px); line-height:1.3; max-width:820px; margin:0 auto;
    color:var(--white);
  }
  .philosophy blockquote .accent{color:var(--royal-light); font-style:normal; font-weight:500;}
  .philosophy .attribution{position:relative; z-index:2; margin-top:28px; font-family:var(--mono); font-size:12px; letter-spacing:0.1em; color:var(--silver-300); text-transform:uppercase;}
  .philosophy .wrap{padding-bottom:180px;}
  @media(max-width:640px){.philosophy .wrap{padding-bottom:120px;}}

  /* ---------- CONTENT PILLARS ---------- */
  
  .pillars-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
    margin-top:20px;
  }
  @media(max-width:860px){.pillars-grid{grid-template-columns:repeat(2,1fr);}}
  @media(max-width:560px){.pillars-grid{grid-template-columns:1fr;}}
  .pillar{
    background:var(--silver-100); padding:32px 28px 30px;
    border-radius:12px; border:1px solid rgba(255,255,255,0.12);
    position:relative; overflow:hidden;
    box-shadow:0 16px 32px -24px rgba(0,0,0,0.4);
    transition:background .25s, transform .3s ease, box-shadow .3s ease;
  }
  .pillar::before{
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg, var(--royal), var(--royal-light));
    opacity:0.7; transition:opacity .25s;
  }
  .pillar:hover{background:var(--silver-300); transform:translateY(-5px); box-shadow:0 24px 40px -22px rgba(0,0,0,0.48);}
  .pillar:hover::before{opacity:1;}
  .pillar-title{font-family:var(--serif); font-size:19px; color:var(--ink); margin-bottom:10px;}
  .pillar-take{font-size:13px; color:var(--royal-dim); font-style:italic; margin-top:14px;}
  .pillar-topics{font-size:13px; color:var(--ink-muted); line-height:1.7;}

  /* ---------- JOURNEY / DIFFERENCE ---------- */
  
  .difference-grid{
    display:grid; grid-template-columns:0.8fr 1fr; gap:60px; align-items:center;
  }
  @media(max-width:800px){.difference-grid{grid-template-columns:1fr;}}
  .difference-photo{
    aspect-ratio:3/4; overflow:hidden; border:1px solid rgba(255,255,255,0.15);
    border-radius:14px;
    box-shadow:0 24px 50px -28px rgba(0,0,0,0.4);
  }
  .difference-photo img{
    width:100%; height:100%; object-fit:cover; object-position:top center;
  }
  @media(max-width:800px){.difference-photo{max-width:360px; margin:0 auto;}}
  .difference-list{list-style:none; margin-top:24px;}
  .difference-list li{
    font-size:15px; color:var(--white); padding:16px 0; border-top:1px solid rgba(255,255,255,0.15);
    display:flex; gap:14px; align-items:baseline;
  }
  .difference-list li:last-child{border-bottom:1px solid rgba(255,255,255,0.15);}
  .difference-list li::before{content:'◆'; font-size:7px; color:var(--royal-light); transform:translateY(-2px);}

  /* ---------- CTA / FOOTER ---------- */
  .cta-final{
    text-align:center; padding:140px 0 100px;
  }
  .cta-final h2{max-width:700px; margin:0 auto;}
  .cta-final .lede{margin-left:auto; margin-right:auto;}
  .cta-final .hero-ctas{justify-content:center; margin-top:40px;}

  /* ---------- SCHEDULER (placeholder now, live embed later) ---------- */
  .scheduler-card{
    position:relative; max-width:720px; margin:56px auto 0;
    background:var(--silver-100); border:1px solid rgba(255,255,255,0.12); border-radius:6px;
    overflow:hidden; box-shadow:0 30px 60px -24px rgba(0,0,0,0.4);
    text-align:left;
  }
  .scheduler-head{
    display:flex; align-items:center; gap:10px;
    padding:20px 28px; background:var(--navy-950); color:var(--white);
    font-family:var(--mono); font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase;
  }
  .scheduler-dot{
    width:8px; height:8px; border-radius:50%; background:var(--royal-light);
    box-shadow:0 0 0 4px rgba(216,190,138,0.18);
  }

  .scheduler-placeholder{
    display:grid; grid-template-columns:1.3fr 1fr; gap:0;
  }
  @media(max-width:560px){.scheduler-placeholder{grid-template-columns:1fr;}}

  .sp-calendar{padding:26px 28px; border-right:1px solid rgba(18,32,51,0.08);}
  @media(max-width:560px){.sp-calendar{border-right:none; border-bottom:1px solid rgba(18,32,51,0.08);}}
  .sp-cal-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:16px;}
  .sp-cal-month{font-family:var(--serif); font-size:16px; color:var(--ink);}
  .sp-cal-nav{display:flex; gap:14px; font-size:14px; color:var(--silver-500);}
  .sp-cal-grid{
    display:grid; grid-template-columns:repeat(7,1fr); gap:6px 4px;
    font-size:12px; text-align:center; color:var(--ink-muted);
  }
  .sp-cal-dow{font-family:var(--mono); font-size:10px; color:var(--silver-500); letter-spacing:0.04em;}
  .sp-day{
    padding:5px 0; border-radius:3px; color:var(--silver-500);
    background:var(--paper);
  }
  .sp-day.available{
    background:rgba(0,62,145,0.14); color:var(--royal-dim); font-weight:600;
    position:relative;
  }
  .sp-day.available::after{
    content:''; position:absolute; bottom:2px; left:50%; transform:translateX(-50%);
    width:3px; height:3px; border-radius:50%; background:var(--royal);
  }

  .sp-times{padding:26px 28px; display:flex; flex-direction:column; gap:12px;}
  .sp-times-label{
    font-family:var(--mono); font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--silver-500); margin-bottom:4px;
  }
  .sp-slot{
    height:34px; border-radius:3px;
    background:linear-gradient(90deg, var(--silver-100) 25%, #F3F5F7 37%, var(--silver-100) 63%);
    background-size:400% 100%;
    animation:shimmer 2.2s ease-in-out infinite;
  }
  @keyframes shimmer{
    0%{background-position:100% 0;}
    100%{background-position:0 0;}
  }
  @media (prefers-reduced-motion: reduce){
    .sp-slot{animation:none; background:var(--silver-100);}
  }

  .scheduler-footer{
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
    padding:16px 28px; border-top:1px solid rgba(18,32,51,0.08); background:var(--paper);
  }
  .scheduler-badge{
    font-family:var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase;
    color:var(--royal-dim); border:1px solid rgba(0,62,145,0.35); border-radius:20px; padding:5px 12px;
  }
  .scheduler-fallback{font-size:13px; color:var(--ink-muted);}

  /* Live embed — drop the real <iframe> straight into a .scheduler-live wrapper
     (in place of .scheduler-card) and this will size and frame it correctly. */
  .scheduler-live{
    position:relative; max-width:720px; margin:56px auto 0;
    background:var(--silver-100); border-radius:14px; overflow:hidden;
    box-shadow:0 30px 60px -24px rgba(0,0,0,0.4);
  }
  .scheduler-live iframe{
    display:block; width:100%; height:900px; border:none;
  }
  @media(max-width:560px){
    .scheduler-live iframe{height:950px;}
  }

  footer{
    background:var(--navy-950); border-top:1px solid rgba(185,196,207,0.14);
    padding:56px 0 40px;
  }
  .footer-grid{display:flex; justify-content:space-between; flex-wrap:wrap; gap:32px;}
  .footer-brand{
    font-family:var(--serif); font-weight:500; font-size:19px; letter-spacing:0.01em; color:var(--white);
  }
  .footer-brand span{color:var(--royal-light); font-style:italic; font-weight:400;}
  .footer-tagline{color:var(--silver-500); font-size:13.5px; margin-top:8px; max-width:340px;}
  .footer-social{display:flex; gap:12px; margin-top:20px;}
  .footer-social a{
    display:flex; align-items:center; justify-content:center;
    width:36px; height:36px; border-radius:50%;
    border:1px solid rgba(255,255,255,0.18); color:var(--silver-300);
    transition:background .2s, border-color .2s, color .2s, transform .2s;
  }
  .footer-social a:hover{
    background:var(--royal); border-color:var(--royal); color:var(--white);
    transform:translateY(-2px);
  }
  .footer-links{display:flex; gap:40px; flex-wrap:wrap;}
  .footer-col h5{
    font-family:var(--mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--silver-500); margin-bottom:14px;
  }
  .footer-col a{display:block; font-size:14px; color:var(--silver-100); margin-bottom:10px;}
  .footer-bottom{
    margin-top:56px; padding-top:24px; border-top:1px solid rgba(185,196,207,0.12);
    font-size:12.5px; color:var(--silver-500); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  }

  /* focus visibility */
  a:focus-visible, button:focus-visible{outline:2px solid var(--royal); outline-offset:3px;}

  /* ---------- CLIENT STORIES ---------- */
  .stories-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:20px;
  }
  @media(max-width:900px){.stories-grid{grid-template-columns:repeat(2,1fr);}}
  @media(max-width:520px){.stories-grid{grid-template-columns:1fr; max-width:280px; margin-left:auto; margin-right:auto;}}

  .story-card{
    background:var(--silver-100); border:1px solid rgba(255,255,255,0.12);
    border-radius:14px; overflow:hidden; position:relative; cursor:pointer;
    box-shadow:0 20px 40px -24px rgba(0,0,0,0.4);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .story-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:4px; z-index:2;
    background:linear-gradient(90deg, var(--royal), var(--royal-light));
  }
  .story-card:hover, .story-card:focus-visible{
    transform:translateY(-6px); box-shadow:0 32px 56px -24px rgba(0,0,0,0.5);
    outline:none;
  }
  .story-thumb{
    aspect-ratio:9/16; position:relative;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(0,62,145,0.35), transparent 60%),
      linear-gradient(135deg, var(--navy-900), var(--navy-950));
    display:flex; align-items:center; justify-content:center;
  }
  .story-play{
    width:56px; height:56px; border-radius:50%;
    background:var(--royal); border:none; color:var(--white);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 28px -6px rgba(0,62,145,0.6);
    transition:transform .25s ease, background .25s ease;
    pointer-events:none;
  }
  .story-play svg{margin-left:3px;}
  .story-card:hover .story-play{transform:scale(1.1); background:var(--royal-light); color:var(--navy-950);}
  .story-caption{padding:18px 18px 20px;}
  .story-name{font-family:var(--serif); font-size:15.5px; color:var(--ink); margin-bottom:4px;}
  .story-quote{font-family:var(--serif); font-style:italic; font-size:12.5px; color:var(--ink-muted); line-height:1.4;}

  .story-lightbox{
    position:fixed; inset:0; z-index:200; background:rgba(4,22,66,0.92);
    display:flex; align-items:center; justify-content:center;
    opacity:0; pointer-events:none; transition:opacity .25s ease;
    padding:40px;
  }
  .story-lightbox.open{opacity:1; pointer-events:auto;}
  .story-lightbox-inner{
    width:auto; height:min(85vh, 800px); aspect-ratio:9/16;
    border-radius:12px; overflow:hidden; box-shadow:0 40px 80px -20px rgba(0,0,0,0.6);
  }
  @media(max-width:600px){
    .story-lightbox{padding:16px;}
    .story-lightbox-inner{height:auto; width:100%; max-height:90vh;}
  }
  .story-lightbox-inner video{width:100%; height:100%; background:#000;}
  .story-lightbox-close{
    position:absolute; top:24px; right:32px; width:44px; height:44px; border-radius:50%;
    background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.25); color:var(--white);
    font-size:26px; line-height:1; cursor:pointer; transition:background .2s;
  }
  .story-lightbox-close:hover{background:rgba(255,255,255,0.2);}

  /* ---------- LEAD MAGNET ---------- */
  .leadmagnet-card{
    display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center;
  }
  @media(max-width:800px){.leadmagnet-card{grid-template-columns:1fr; gap:36px;}}

  .leadmagnet-visual{
    display:flex; justify-content:center;
  }
  .leadmagnet-visual img{
    width:100%; max-width:320px; border-radius:6px;
    box-shadow:0 40px 70px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
    transform:rotate(-2.5deg);
    transition:transform .4s ease;
  }
  .leadmagnet-visual:hover img{transform:rotate(0deg) scale(1.02);}

  .leadmagnet-points{list-style:none; margin:24px 0 28px;}
  .leadmagnet-points li{
    font-size:14.5px; color:var(--silver-300); padding:10px 0 10px 26px; position:relative;
    border-top:1px solid rgba(255,255,255,0.1);
  }
  .leadmagnet-points li:last-child{border-bottom:1px solid rgba(255,255,255,0.1);}
  .leadmagnet-points li::before{
    content:'✓'; position:absolute; left:0; top:10px; color:var(--royal-light); font-size:13px; font-weight:700;
  }

  .leadmagnet-form-live{
    max-width:440px; border-radius:14px; overflow:hidden; position:relative;
    background:var(--silver-100); border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 24px 50px -28px rgba(0,0,0,0.4);
  }
  .leadmagnet-form-live::before{
    content:''; position:absolute; top:0; left:0; right:0; height:4px; z-index:2;
    background:linear-gradient(90deg, var(--royal), var(--royal-light));
  }
  .leadmagnet-form-live iframe{display:block; width:100%; height:780px; border:none;}

  /* ---------- SHORT LANDSCAPE PHONES ---------- */
  /* min-height:100vh hero + a fixed nav is fine in portrait, but on a phone rotated to
     landscape (short viewport height) it eats the whole screen and crowds the nav/menu.
     Compact both based on actual available vertical space, not just width. */
  @media (orientation:landscape) and (max-height:500px){
    header{padding-top:0;}
    nav{padding:10px 24px;}
    .brand-mark{font-size:16px;}
    .nav-toggle span{width:18px;}

    .mobile-menu.open{max-height:340px; overflow-y:auto;}
    .mobile-menu a{padding:10px 24px; font-size:14px;}

    .hero{min-height:auto;}
    .hero-inner{padding-top:180px; padding-bottom:40px;}
    .hero-bg img{object-position:50% 2%;}
  }

  /* ---------- SITE-WIDE FIXED BACKGROUND (behind everything except hero, which has its own) ---------- */
  .site-bg{
    position:fixed; inset:0; z-index:-1; overflow:hidden;
  }
  .site-bg img{
    width:100%; height:100%; object-fit:cover; object-position:center 25%;
    filter:saturate(0.75) brightness(0.55) contrast(1.05);
  }
  .site-bg-overlay{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(4,22,66,0.55), rgba(25,25,46,0.75) 50%, rgba(4,22,66,0.85));
  }
  /* Fixed backgrounds can cause scroll jank on phones/tablets — let it scroll with the page there instead */
  @media(max-width:900px){
    .site-bg{position:absolute;}
  }

  /* ---------- SCROLL REVEAL ---------- */
  .reveal-on-scroll{
    opacity:0; transform:translateY(28px);
    transition:opacity .9s ease, transform .9s ease;
  }
  .reveal-on-scroll.is-visible{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .reveal-on-scroll{opacity:1; transform:none; transition:none;}
  }
