:root{
  --navy:    #0B1E3D;
  --blue:    #1A4A8A;
  --sky:     #2E8BC0;
  --ice:     #C8E6F5;
  --frost:   #EBF5FB;
  --white:   #FFFFFF;
  --dark:    #080F1E;
  --mid:     #2C4A6E;
  --muted:   #6B8BAE;
  --line:    rgba(42,107,184,0.12);
  --illus:   #E6F1FC;   /* the ground the specialty illustrations are drawn on */
  --nav-h:   68px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--white);color:var(--dark);-webkit-font-smoothing:antialiased;line-height:1.6}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

/* ── NAV (centered, minimal) ── */
#mainNav{
  position:fixed;top:0;left:0;right:0;z-index:300;
  height:var(--nav-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 48px;
  transition:background .3s,border-color .3s;
}
/* Over the hero the header sits on photography — including a wall carrying
   the center's own signage — which the white logo has to compete with. This
   scrim settles the top of the picture without darkening the whole hero. */
#mainNav::before{
  content:'';position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(8,15,30,.62) 0%,rgba(8,15,30,.28) 60%,rgba(8,15,30,0) 100%);
  transition:opacity .3s;
}
#mainNav.scrolled::before{opacity:0}
#mainNav.scrolled{
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line);
}
.nav-logo{display:block;line-height:0;flex-shrink:0}
.nav-logo img{height:40px;width:auto;display:block}
/* the wordmark sits over photography until the header solidifies */
.nav-logo .logo-light{filter:drop-shadow(0 1px 2px rgba(0,0,0,.55))}
.nav-logo .logo-dark{display:none}
#mainNav.scrolled .nav-logo .logo-light{display:none}
#mainNav.scrolled .nav-logo .logo-dark{display:block}
.nav-center{
  display:flex;align-items:center;gap:30px;list-style:none;
  position:absolute;left:50%;transform:translateX(-50%);
}
.nav-center a{
  font-size:13px;font-weight:400;letter-spacing:.3px;
  color:rgba(255,255,255,0.8);transition:color .2s;
}
#mainNav.scrolled .nav-center a{color:var(--mid)}
.nav-center a:hover{color:var(--white)}
#mainNav.scrolled .nav-center a:hover{color:var(--blue)}
.nav-right{display:flex;align-items:center;gap:16px}
.nav-tel{
  font-size:13px;font-weight:500;
  color:rgba(255,255,255,0.7);
  transition:color .2s;
}
#mainNav.scrolled .nav-tel{color:var(--muted)}
.nav-btn{
  background:var(--white);color:var(--navy);
  padding:8px 20px;border-radius:100px;
  font-size:13px;font-weight:500;
  transition:background .2s,color .2s;
  white-space:nowrap;
}
#mainNav.scrolled .nav-btn{background:var(--blue);color:var(--white)}
.nav-btn:hover{opacity:.9}
.hamburger{display:none;background:none;border:none;cursor:pointer;color:var(--white)}
.hamburger svg{width:22px;height:22px}
#mainNav.scrolled .hamburger{color:var(--navy)}
.mobile-nav{
  display:none;position:fixed;inset:0;top:var(--nav-h);
  background:var(--white);z-index:299;padding:28px 24px;
  flex-direction:column;gap:4px;
}
.mobile-nav.open{display:flex}
.mobile-nav a{padding:13px 16px;font-size:16px;color:var(--mid);border-radius:10px;transition:background .15s}
.mobile-nav a:hover{background:var(--frost)}

/* ── HERO (full-bleed, centred copy) ── */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:120px 48px 80px;
}

/* mosaic photo background */
.hero-bg{
  position:absolute;inset:0;z-index:0;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:2px;
}
.hero-bg img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.55) saturate(.8);
}
.hero-bg img:first-child{grid-row:1/3}

/* navy-to-transparent gradient over mosaic */
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(
    180deg,
    rgba(8,15,30,.65) 0%,
    rgba(11,30,61,.5) 40%,
    rgba(11,30,61,.72) 100%
  );
}

.hero-content{position:relative;z-index:2;max-width:780px;margin:0 auto}

.hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11px;font-weight:500;letter-spacing:2.5px;text-transform:uppercase;
  color:var(--ice);margin-bottom:28px;
}
.hero-eyebrow::before,.hero-eyebrow::after{
  content:'';display:inline-block;
  width:32px;height:1px;background:var(--ice);opacity:.5;
}

.hero-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(52px,6.5vw,88px);
  font-weight:300;line-height:1;
  letter-spacing:-1px;color:var(--white);
  margin-bottom:24px;
}
.hero-title em{
  font-style:italic;font-weight:300;
  color:var(--ice);
}

.hero-sub{
  font-size:16px;font-weight:300;
  color:rgba(255,255,255,.65);
  max-width:520px;margin:0 auto 48px;
  line-height:1.75;
  letter-spacing:.1px;
}

.hero-actions{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap}
.btn-hero-primary{
  background:var(--sky);color:var(--white);
  padding:14px 32px;border-radius:3px;
  font-size:14px;font-weight:500;letter-spacing:.3px;
  transition:background .2s;
}
.btn-hero-primary:hover{background:var(--blue)}
.btn-hero-ghost{
  display:flex;align-items:center;gap:8px;
  color:rgba(255,255,255,.75);font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.3);
  padding-bottom:2px;transition:color .2s,border-color .2s;
}
.btn-hero-ghost:hover{color:var(--white);border-color:var(--white)}

/* certification strip at bottom of hero */
.hero-strip{
  position:absolute;bottom:0;left:0;right:0;z-index:2;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;gap:48px;
  padding:18px 48px;
}
.hs-item{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.7);font-size:12.5px;letter-spacing:.3px}
.hs-item svg{width:16px;height:16px;color:var(--ice);flex-shrink:0}

/* ── INTRO (angled split) ── */
.intro{
  display:grid;grid-template-columns:5fr 4fr;
  min-height:600px;overflow:hidden;
}
.intro-text{
  padding:96px 80px 96px 80px;
  background:var(--white);
  display:flex;flex-direction:column;justify-content:center;
}
.eyebrow{font-size:10.5px;font-weight:500;text-transform:uppercase;letter-spacing:2.5px;color:var(--sky);margin-bottom:18px}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(32px,3vw,50px);
  font-weight:300;line-height:1.15;
  letter-spacing:-.5px;color:var(--dark);
  margin-bottom:28px;
}
.section-title em{font-style:italic;color:var(--blue)}
.intro-text p{font-size:15px;color:var(--mid);line-height:1.85;font-weight:300;margin-bottom:16px}
.intro-text strong{font-weight:500;color:var(--dark)}
.intro-text .btn-text{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--blue);font-size:14px;font-weight:500;
  margin-top:28px;border-bottom:1px solid var(--ice);
  padding-bottom:2px;transition:gap .2s,border-color .2s;
}
.intro-text .btn-text:hover{gap:13px;border-color:var(--blue)}
.intro-text .btn-text svg{width:14px;height:14px}

.intro-visual{
  position:relative;overflow:hidden;
  background:var(--navy);
  clip-path:polygon(8% 0,100% 0,100% 100%,0 100%);
}
.intro-visual img{
  width:100%;height:100%;object-fit:cover;
  opacity:.75;mix-blend-mode:luminosity;
}
.intro-visual::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(11,30,61,.6),rgba(46,139,192,.3));
}
.intro-stat{
  position:absolute;bottom:40px;left:20%;z-index:2;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:4px;
  padding:20px 28px;
}
.intro-stat .is-val{
  font-family:'Cormorant Garamond',serif;
  font-size:48px;font-weight:300;color:var(--white);
  line-height:1;letter-spacing:-1px;
}
.intro-stat .is-lbl{font-size:11px;color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:1px;margin-top:4px}

/* ── MISSION BLOCK ── */
.mission{
  background:var(--navy);
  padding:88px 80px;
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:2px;
}
.mission-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  padding:40px 36px;
  transition:background .2s;
}
.mission-card:hover{background:rgba(255,255,255,.06)}
.mc-num{
  font-family:'Cormorant Garamond',serif;
  font-size:56px;font-weight:300;
  color:rgba(46,139,192,.3);
  line-height:1;margin-bottom:20px;
  letter-spacing:-2px;
}
.mc-title{font-size:17px;font-weight:500;color:var(--white);margin-bottom:12px;letter-spacing:-.2px}
.mc-body{font-size:14px;color:rgba(255,255,255,.5);line-height:1.75;font-weight:300}

/* ── SPECIALTIES ── */
.spec{padding:96px 80px;background:var(--frost)}
.spec-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:56px;gap:32px}
.spec-header .sh-left{max-width:480px}
.spec-header .sh-right{font-size:13.5px;color:var(--muted);line-height:1.7;max-width:320px;font-weight:300;flex-shrink:0}
.spec-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:16px;
}
.spc{
  background:var(--white);
  border-radius:2px;
  overflow:hidden;
  border:1px solid var(--line);
  transition:box-shadow .2s,transform .2s;
  display:flex;flex-direction:column;
}
.spc:hover{box-shadow:0 12px 40px rgba(26,74,138,.1);transform:translateY(-2px)}
.spc-photo{
  aspect-ratio:3/2;overflow:hidden;background:var(--illus);
  position:relative;
}
.spc-photo img{width:100%;height:100%;object-fit:contain;transition:transform .4s}
.spc:hover .spc-photo img{transform:scale(1.04)}
.spc-photo-placeholder{
  width:100%;height:100%;
  background:linear-gradient(135deg,var(--navy) 0%,var(--sky) 100%);
  display:flex;align-items:center;justify-content:center;
}
.spc-photo-placeholder svg{width:32px;height:32px;color:rgba(255,255,255,.35)}
.spc-body{padding:22px 24px 24px}
.spc-body h3{font-size:15.5px;font-weight:500;color:var(--dark);margin-bottom:8px;letter-spacing:-.2px}
.spc-body p{font-size:13px;color:var(--muted);line-height:1.65;font-weight:300}

/* ── PATIENT JOURNEY ── */
.journey{padding:96px 80px;background:var(--white)}
.journey-header{text-align:center;max-width:560px;margin:0 auto 64px}
.journey-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--line);
  border:1px solid var(--line);
  max-width:1100px;margin:0 auto;
}
.jc{
  background:var(--white);
  padding:40px 36px;
}
.jc-phase{
  display:flex;align-items:center;gap:10px;
  margin-bottom:20px;
}
.jc-dot{
  width:32px;height:32px;border-radius:50%;
  background:var(--frost);border:1.5px solid var(--ice);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.jc-dot svg{width:14px;height:14px;color:var(--blue)}
.jc-label{font-size:10.5px;font-weight:500;text-transform:uppercase;letter-spacing:1.5px;color:var(--sky)}
.jc h3{font-size:18px;font-weight:400;color:var(--dark);margin-bottom:16px;letter-spacing:-.2px;font-family:'Cormorant Garamond',serif}
.jc ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.jc ul li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:13.5px;color:var(--mid);line-height:1.55;font-weight:300;
}
.jc ul li::before{
  content:'';width:4px;height:4px;background:var(--sky);border-radius:50%;
  flex-shrink:0;margin-top:7px;
}

/* ── ACCREDITATION BANNER ── */
.accred{
  background:var(--blue);
  padding:64px 80px;
  display:flex;align-items:center;justify-content:space-between;gap:48px;
  flex-wrap:wrap;
}
.accred-left{max-width:540px}
.accred-left .eyebrow{color:var(--ice)}
.accred-left .section-title{color:var(--white);margin-bottom:12px}
.accred-left .section-title em{color:var(--ice)}
.accred-left p{font-size:15px;color:rgba(255,255,255,.65);font-weight:300;line-height:1.7}
.accred-badges{display:flex;flex-direction:column;gap:14px;flex-shrink:0}
.ab{
  display:flex;align-items:center;gap:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:4px;padding:16px 24px;min-width:300px;
}
.ab-icon{width:40px;height:40px;background:rgba(255,255,255,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ab-icon svg{width:18px;height:18px;color:var(--ice)}
.ab-text .abt-t{font-size:14px;font-weight:500;color:var(--white)}
.ab-text .abt-s{font-size:12px;color:rgba(255,255,255,.5);margin-top:2px}

/* ── CONTACT ── */
.contact{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:600px;
}
.contact-left{
  background:var(--navy);
  padding:88px 72px;
  display:flex;flex-direction:column;justify-content:center;
}
.contact-left .eyebrow{color:var(--ice)}
.contact-left .section-title{color:var(--white);margin-bottom:12px}
.contact-left p.cl-sub{font-size:15px;color:rgba(255,255,255,.5);font-weight:300;line-height:1.7;margin-bottom:40px}
.ci{display:flex;align-items:flex-start;gap:14px;margin-bottom:20px}
.ci-icon{width:36px;height:36px;background:rgba(255,255,255,.06);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ci-icon svg{width:15px;height:15px;color:var(--ice)}
.ci-body .cib-l{font-size:10px;text-transform:uppercase;letter-spacing:1px;color:rgba(255,255,255,.35);margin-bottom:3px}
.ci-body a,.ci-body span{font-size:15px;font-weight:400;color:var(--white)}
.ci-body a:hover{color:var(--ice)}
.ci-hours{
  margin-top:26px;padding:18px 20px;max-width:420px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);border-radius:4px;
}
.ci-hours .ci-body{width:min(100%,330px)}
.ci-hours .ci-body .cib-l{font-size:11px;font-weight:600;color:var(--ice);margin-bottom:10px}
.hours-list{display:grid;gap:8px}
.hours-list>div{display:flex;align-items:baseline;justify-content:space-between;gap:24px}
.ci-body .hours-list span,.hours-list time{font-size:13px;line-height:1.5;color:rgba(255,255,255,.86);font-weight:400}
.hours-list time{color:var(--white);font-weight:600;white-space:nowrap}
.contact-addr{
  margin-top:28px;padding:20px 24px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:4px;
  font-size:13.5px;color:rgba(255,255,255,.5);line-height:1.7;font-weight:300;
}
.contact-addr strong{display:block;color:var(--white);font-size:14px;font-weight:500;margin-bottom:4px}
.contact-addr a{color:var(--ice);font-size:12.5px;margin-top:6px;display:inline-flex;align-items:center;gap:5px}
.contact-addr a svg{width:11px;height:11px}
.contact-links{display:flex;align-items:center;gap:18px;flex-wrap:wrap}

.contact-right{
  background:var(--frost);
  padding:88px 72px;
  display:flex;flex-direction:column;justify-content:center;
}
.cf-title{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:300;color:var(--dark);margin-bottom:28px;letter-spacing:-.3px}
.contact-requirement{
  margin:-16px 0 20px;color:var(--mid);
  font-size:12px;line-height:1.55;
}
.fg{margin-bottom:14px}
.fg label{display:block;font-size:10.5px;text-transform:uppercase;letter-spacing:.8px;color:var(--muted);margin-bottom:7px}
.fg input,.fg textarea{
  width:100%;background:var(--white);
  border:1px solid rgba(26,74,138,.15);
  border-radius:2px;
  padding:13px 15px;font-size:14px;color:var(--dark);
  font-family:'Inter',sans-serif;outline:none;
  transition:border-color .2s;font-weight:300;
}
.fg input:focus,.fg textarea:focus{border-color:var(--sky)}
.fg input.is-invalid,.fg textarea.is-invalid{
  border-color:#B3261E;
  box-shadow:0 0 0 2px rgba(179,38,30,.1);
}
.fg input.is-invalid:focus,.fg textarea.is-invalid:focus{border-color:#B3261E}
.field-error{
  display:block;margin-top:6px;color:#B3261E;
  font-size:12px;line-height:1.45;
}
.fg textarea{resize:vertical;min-height:96px}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.btn-submit{
  background:var(--navy);color:var(--white);border:none;
  padding:14px 32px;font-size:14px;font-weight:500;
  cursor:pointer;font-family:'Inter',sans-serif;
  margin-top:8px;transition:background .2s;
  border-radius:2px;letter-spacing:.3px;
  width:100%;
}
.btn-submit:hover{background:var(--blue)}
.form-note{font-size:11px;color:var(--muted);text-align:center;margin-top:10px;letter-spacing:.3px}

/* ── FOOTER ── */
footer{
  background:var(--dark);
  padding:36px 80px;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:20px;
  border-top:1px solid rgba(255,255,255,.05);
}
.footer-brand{
  font-family:'Cormorant Garamond',serif;
  font-size:18px;font-weight:300;color:var(--white);
  letter-spacing:.3px;
}
.footer-links{display:flex;gap:28px;list-style:none;flex-wrap:wrap}
.footer-links a{font-size:12.5px;color:rgba(255,255,255,.3);transition:color .2s;letter-spacing:.2px}
.footer-links a:hover{color:var(--white)}
.footer-copy{font-size:11.5px;color:rgba(255,255,255,.18)}

/* ── REVEAL ── */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  #mainNav{padding:0 20px}
  .nav-center,.nav-tel{display:none}
  .hamburger{display:block}
  .hero{padding:100px 24px 80px}
  .hero-bg{grid-template-columns:1fr 1fr}
  .hero-bg img:first-child{grid-row:1/3}
  .hero-strip{gap:20px;padding:14px 20px;flex-wrap:wrap;justify-content:flex-start}
  .intro{grid-template-columns:1fr}
  .intro-text{padding:64px 24px}
  .intro-visual{clip-path:none;min-height:280px}
  .mission{grid-template-columns:1fr;padding:64px 24px;gap:0}
  .mission-card{border-radius:0}
  .spec{padding:64px 24px}
  .spec-header{flex-direction:column;align-items:flex-start}
  .journey{padding:64px 24px}
  .journey-grid{grid-template-columns:1fr}
  .accred{padding:64px 24px;flex-direction:column}
  .accred-badges{width:100%}
  .ab{min-width:0}
  .contact{grid-template-columns:1fr}
  .contact-left,.contact-right{padding:64px 24px}
  .frow{grid-template-columns:1fr}
  footer{padding:32px 24px;flex-direction:column;text-align:center}
  .footer-links{justify-content:center}
  .intro-stat{left:10%;bottom:24px}
}

/* ═══════════════════════════════════════════════
   INTERIOR PAGES — same language as the home page
   ═══════════════════════════════════════════════ */

/* page hero: the mosaic treatment from .hero, at a shorter height */
.pagehero{
  position:relative;min-height:44vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;overflow:hidden;
  padding:calc(var(--nav-h) + 64px) 48px 64px;
}
.pagehero-content{position:relative;z-index:2;max-width:760px;margin:0 auto}
.pagehero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(38px,4.6vw,66px);
  font-weight:300;line-height:1.04;letter-spacing:-.5px;
  color:var(--white);margin-bottom:20px;
}
.pagehero h1 em{font-style:italic;color:var(--ice)}
.pagehero p{
  font-size:15px;font-weight:300;line-height:1.75;
  color:rgba(255,255,255,.65);max-width:560px;margin:0 auto;
}
.pagehero .hero-actions{margin-top:28px}

.section{padding:88px 80px;background:var(--white)}
.section--frost{background:var(--frost)}
.section--navy{background:var(--navy)}
.section--navy .eyebrow{color:var(--ice)}
.section--navy .section-title{color:var(--white)}
.section--navy p{color:rgba(255,255,255,.6)}
.section-head{max-width:720px;margin-bottom:48px}
.section-head p{font-size:15px;color:var(--mid);line-height:1.8;font-weight:300;margin-top:18px}

.layout{display:grid;grid-template-columns:210px minmax(0,1fr);gap:56px;align-items:start}
.subnav{position:sticky;top:calc(var(--nav-h) + 24px);display:flex;flex-direction:column}
.subnav .eyebrow{margin-bottom:12px}
.subnav a{
  font-size:13px;font-weight:300;color:var(--muted);
  padding:11px 0;border-top:1px solid var(--line);
  transition:color .2s,padding-left .2s;
}
.subnav a:last-child{border-bottom:1px solid var(--line)}
.subnav a:hover{color:var(--blue);padding-left:5px}

/* ── specialty detail entries ── */
.spx{
  display:grid;grid-template-columns:190px minmax(0,1fr);gap:36px;
  padding:40px 0;border-top:1px solid var(--line);align-items:start;
  scroll-margin-top:calc(var(--nav-h) + 16px);
}
.spx:last-child{border-bottom:1px solid var(--line)}
.spx-photo{aspect-ratio:3/2;overflow:hidden;border-radius:2px;background:var(--illus);border:1px solid var(--line)}
.spx-photo img{width:100%;height:100%;object-fit:contain}
.spx-num{
  font-size:10.5px;font-weight:500;letter-spacing:2.5px;
  text-transform:uppercase;color:var(--sky);display:block;margin-bottom:10px;
}
.spx h3{
  font-family:'Cormorant Garamond',serif;
  font-size:26px;font-weight:400;color:var(--navy);
  line-height:1.15;margin-bottom:14px;letter-spacing:-.3px;
}
.spx p{font-size:14.5px;font-weight:300;line-height:1.85;color:var(--mid)}
.spx-proc{
  margin-top:18px;padding-top:16px;border-top:1px solid var(--line);
  font-size:13px;font-weight:300;line-height:1.75;color:var(--muted);
}
.spx-proc strong{
  display:block;font-size:10px;font-weight:500;text-transform:uppercase;
  letter-spacing:2px;color:var(--sky);margin-bottom:8px;
}

/* ── FAQ ── */
.faq{border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{
  width:100%;display:grid;grid-template-columns:auto minmax(0,1fr) auto;
  gap:20px;align-items:start;text-align:left;
  padding:24px 0;background:none;border:0;cursor:pointer;font:inherit;color:inherit;
}
.fq-num{font-size:10.5px;font-weight:500;letter-spacing:2px;color:var(--sky);padding-top:7px}
.fq-text{
  font-family:'Cormorant Garamond',serif;
  font-size:21px;font-weight:400;color:var(--navy);line-height:1.3;
  transition:color .2s;
}
.faq-q:hover .fq-text{color:var(--blue)}
.fq-mark{width:12px;height:12px;position:relative;flex-shrink:0;margin-top:9px}
.fq-mark::before,.fq-mark::after{content:'';position:absolute;background:var(--sky);transition:transform .3s}
.fq-mark::before{left:0;top:5.5px;width:12px;height:1px}
.fq-mark::after{left:5.5px;top:0;width:1px;height:12px}
.faq-q[aria-expanded="true"] .fq-mark::after{transform:scaleY(0)}
.faq-a{display:grid;grid-template-rows:0fr;transition:grid-template-rows .4s ease}
.faq-item.is-open .faq-a{grid-template-rows:1fr}
.faq-a>div{overflow:hidden}
.faq-a p{font-size:14.5px;font-weight:300;line-height:1.85;color:var(--mid);max-width:70ch;padding-left:44px}
.faq-a p+p{margin-top:14px}
.faq-a p:last-child{padding-bottom:28px}
.faq-a a{color:var(--blue);border-bottom:1px solid var(--ice)}

/* ── prose ── */
.prose{max-width:74ch;scroll-margin-top:calc(var(--nav-h) + 16px)}
.prose+.prose{margin-top:64px}
.prose>.eyebrow{display:block;margin-bottom:14px}
.prose h3{
  font-family:'Cormorant Garamond',serif;
  font-size:30px;font-weight:400;color:var(--navy);
  line-height:1.15;margin-bottom:22px;letter-spacing:-.3px;
}
.prose h4{
  font-size:10.5px;font-weight:500;text-transform:uppercase;letter-spacing:2px;
  color:var(--sky);margin:30px 0 14px;
}
.prose p{font-size:15px;font-weight:300;line-height:1.9;color:var(--mid);margin-bottom:16px}
.prose p strong{font-weight:500;color:var(--dark)}
.prose ul{list-style:none;display:flex;flex-direction:column;gap:9px;margin-bottom:22px}
.prose ul li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:14px;color:var(--mid);line-height:1.7;font-weight:300;
}
.prose ul li::before{
  content:'';width:4px;height:4px;background:var(--sky);border-radius:50%;
  flex-shrink:0;margin-top:9px;
}
.prose a:not(.dl){color:var(--blue);border-bottom:1px solid var(--ice)}
.prose a:not(.dl):hover{border-color:var(--blue)}
.pullquote,.prose p.pullquote{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;font-size:24px;font-weight:300;line-height:1.45;
  color:var(--navy);margin:34px 0;padding-left:26px;
  border-left:2px solid var(--ice);max-width:36ch;
}

/* ── download buttons ── */
.dl-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
.dl{
  display:inline-flex;align-items:center;gap:14px;
  border:1px solid var(--line);border-radius:2px;padding:15px 22px;
  background:var(--white);transition:border-color .2s,box-shadow .2s;
}
.dl:hover{border-color:var(--sky);box-shadow:0 8px 28px rgba(26,74,138,.08)}
.dl svg{width:16px;height:16px;color:var(--sky);flex-shrink:0}
.dl b{display:block;font-size:13.5px;font-weight:500;color:var(--dark)}
.dl span{display:block;font-size:10px;text-transform:uppercase;letter-spacing:1.6px;color:var(--muted);margin-top:3px}
.dl.is-soon{opacity:.5;pointer-events:none}

@media(max-width:960px){
  .pagehero{min-height:34vh;padding:calc(var(--nav-h) + 44px) 24px 44px}
  .section{padding:64px 24px}
  .layout{grid-template-columns:1fr;gap:28px}
  .subnav{position:static}
  .spx{grid-template-columns:1fr;gap:18px}
  .faq-a p{padding-left:0}
  .dl{width:100%}
}


/* the header carries seven links now — reclaim space before wrapping */
@media(max-width:1280px){ .nav-tel{display:none} }
@media(max-width:1140px){
  .nav-center{gap:20px}
  .nav-center a{font-size:12.5px}
}
@media(max-width:1020px){
  .nav-center{gap:15px}
  .nav-center a{font-size:12px}
  .nav-logo img{height:36px}
}

/* on the narrowest phones the wordmark and the button were touching */
@media(max-width:420px){
  .nav-logo img{height:31px}
  .nav-btn{padding:7px 14px;font-size:12px}
  .nav-right{gap:10px}
}

/* current page marker in the header */
.nav-center a[aria-current="page"]{color:var(--white);border-bottom:1px solid rgba(255,255,255,.45);padding-bottom:2px}
#mainNav.scrolled .nav-center a[aria-current="page"]{color:var(--blue);border-bottom-color:var(--ice)}

/* Contact form status displayed on the frosted contact panel. */
.form-status{
  font-size:13px;line-height:1.6;margin-top:14px;text-align:center;
  color:var(--mid);
}
.form-status:empty{margin-top:0}
.form-status.is-ok{color:#1A6E42}
.form-status.is-err{color:#B3261E}
.btn-submit[disabled]{opacity:.6;cursor:progress}
