:root{
  --pink:#881238;
  --gold:#dfc69b;
  --off:#FBF7F4;
  --ink:#0b0b0b;
  --muted:rgba(11,11,11,.72);
  --surface:rgba(255,255,255,.72);
  --surface2:rgba(255,255,255,.88);
  --border:rgba(11,11,11,.12);
  --shadow:0 18px 50px rgba(0,0,0,.18);
  --radius:22px;
  --radius2:30px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--off);
  line-height:1.55;
  overflow-x:hidden;
}

/* blueprint overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:url("../assets/img/blueprint-gold.svg");
  background-size:1200px 800px;
  background-repeat:repeat;
  opacity:.46;
  pointer-events:none;
  mix-blend-mode:multiply;
  filter:saturate(1.05);
}

a{color:inherit; text-decoration:none}
.container{width:min(var(--max), 92vw); margin:0 auto}
.section{padding:84px 0}
.section.tight{padding:56px 0}

.kicker{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:700;
  font-size:1.03rem;
  color:rgba(136,18,56,.86);
}

h1,h2,h3{font-family: "Fraunces", ui-serif, Georgia, serif; line-height:1.08; margin:0 0 14px}
h1{font-size:clamp(2.5rem, 4.3vw, 4.4rem)}
h2{font-size:clamp(1.9rem, 2.7vw, 3rem)}
h3{font-size:clamp(1.25rem, 1.55vw, 1.75rem)}
p{margin:0 0 14px; color:var(--muted)}
.lead{font-size:clamp(1.05rem,1.15vw,1.18rem); color:rgba(11,11,11,.78)}

.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(223,198,155,.22);
  border:1px solid rgba(223,198,155,.55);
}

.btn-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  border:1px solid var(--border);
  background:var(--surface2);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{transform:translateY(-2px); box-shadow:var(--shadow)}
.btn.primary{
  background:linear-gradient(135deg, rgba(136,18,56,.96), rgba(136,18,56,.78));
  color:#fff;
  border-color:rgba(136,18,56,.25);
}
.btn.ghost{
  background:rgba(251,247,244,.3);
  border-color:rgba(136,18,56,.18);
}

.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(251,247,244,.74);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(11,11,11,.08);
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit}
.nav-links a{font-weight:700; color:rgba(11,11,11,.82)}
.nav-links a:hover{color:rgba(136,18,56,.92)}
.menu-btn{display:none}

.hero{
  padding:56px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(11,11,11,.14);
  border-radius:var(--radius2);
  padding:22px;
  box-shadow:0 18px 55px rgba(0,0,0,.12);
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute; inset:-30px -30px auto auto;
  width:220px; height:220px;
  background:radial-gradient(circle at 30% 30%, rgba(223,198,155,.62), rgba(223,198,155,0));
  opacity:.55;
  pointer-events:none;
}
.hero-side{
  display:flex; flex-direction:column; gap:16px;
}
.pill{
  display:flex; align-items:flex-start; gap:12px;
  padding:14px 14px;
  border-radius:18px;
  background:rgba(251,247,244,.55);
  border:1px solid rgba(11,11,11,.08);
}
.pill strong{display:block; margin-bottom:2px}
.pill span{color:rgba(11,11,11,.72); font-size:.95rem}

.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:22px; align-items:start}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.card.hover{transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease}
.card.hover:hover{transform:translateY(-3px); box-shadow:0 22px 60px rgba(0,0,0,.16); border-color:rgba(136,18,56,.22)}
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(136,18,56,.18);
  background:rgba(136,18,56,.06);
  color:rgba(136,18,56,.90);
  font-weight:800;
  font-size:1.01rem;
}

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:26px; align-items:center;
}
.photo{
  aspect-ratio: 4 / 5;
  border-radius:var(--radius2);
  background:
    radial-gradient(circle at 30% 20%, rgba(223,198,155,.72), rgba(223,198,155,0) 60%),
    linear-gradient(135deg, rgba(136,18,56,.14), rgba(0,0,0,.05));
  border:1px solid rgba(11,11,11,.12);
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
}
.headshot{
  width:min(420px, 86%);
  height:auto;
  border-radius:999px;
  border:4px solid rgba(223,198,155,.70);
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  background:rgba(255,255,255,.8);
}


.hr{
  height:1px; background:rgba(11,11,11,.12); margin:18px 0;
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:var(--radius2);
  border:1px solid rgba(11,11,11,.12);
  background:rgba(255,255,255,.68);
}
.table th, .table td{
  padding:14px 14px;
  border-bottom:1px solid rgba(11,11,11,.08);
  vertical-align:top;
  text-align:left;
}
.table th{background:rgba(223,198,155,.20); font-weight:900}
.table tr:last-child td{border-bottom:none}

.accordion-item{border-top:1px solid rgba(11,11,11,.12)}
.acc-btn{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  background:transparent; border:none;
  padding:16px 0;
  font-weight:900;
  font-size:1.02rem;
  cursor:pointer;
}
.acc-panel{max-height:0; overflow:hidden; transition:max-height .25s ease}
.acc-panel .acc-inner{padding:0 0 16px; color:rgba(11,11,11,.78)}
.chev{transition:transform .2s ease}
.acc-btn[aria-expanded="true"] .chev{transform:rotate(180deg)}

.footer{
  padding:34px 0 46px;
  border-top:1px solid rgba(11,11,11,.08);
  background:rgba(251,247,244,.74);
  backdrop-filter: blur(10px);
}
.footer a{color:rgba(11,11,11,.76)}
.footer a:hover{color:rgba(136,18,56,.92)}
small{color:rgba(11,11,11,.65)}

.notice{
  font-size:.92rem;
  color:rgba(11,11,11,.70);
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(11,11,11,.12);
  background:rgba(223,198,155,.16);
}

.form{
  display:grid; gap:12px;
}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(11,11,11,.14);
  background:rgba(255,255,255,.86);
  font-size:1rem;
}
.input:focus{outline:none; border-color:rgba(136,18,56,.35); box-shadow:0 0 0 4px rgba(136,18,56,.08)}
.select-row{display:grid; grid-template-columns: .38fr 1fr; gap:10px}
.help{font-size:.9rem; color:rgba(11,11,11,.70)}
blockquote{
  margin:0;
  padding:14px 14px;
  border-left:4px solid rgba(136,18,56,.55);
  background:rgba(136,18,56,.05);
  border-radius:16px;
  color:rgba(11,11,11,.78);
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr
  /* Mobile navbar spacing */
  .brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit}
  .brand > div{line-height:1.15}
  .brand > div > div:first-child{font-size:1rem}
  .brand > div > div:last-child{display:block}
  .menu-btn{padding:10px 12px; font-size:.92rem; white-space:nowrap}
  .nav [data-menu] .btn-row{gap:10px}

}
  .split{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .menu-btn{display:inline-flex}
}

/* Navbar + Footer logo (centered coin crop) */
.nav .footer .badge img{
  width:50px;
  height:50px;
  object-fit:contain;
  border-radius:999px;
  display:block;
}

/* Calendly styling */
.cal-card{
  padding:0 !important;
  overflow:hidden;
}
.cal-head{
  padding:16px 16px 10px;
}
.cal-head .kicker{margin:0}
.cal-wrap{
  position:relative;
  border-top:1px solid rgba(11,11,11,.12);
  background:
    radial-gradient(circle at 20% 10%, rgba(223,198,155,0.12), rgba(223,198,155,0) 55%),
    linear-gradient(135deg, rgba(136,18,56,.08), rgba(0,0,0,.02));
}
.cal-wrap::before{
  content:"";
  position:absolute; inset:0;
  background-image:url("assets/img/blueprint-gold.svg");
  background-size:760px;
  background-position:center;
  opacity:.045;
  pointer-events:none;
  mix-blend-mode:multiply;
}
.calendly-styled{
  min-width:320px;
  height:760px;
  position:relative;
  z-index:1;
}
.calendly-styled iframe{
  border:0 !important;
  width:100% !important;
  height:100% !important;
  border-radius:0;
}
@media (max-width: 980px){
  .calendly-styled{height:680px}
}

/* Brand title sizing */
.brand > div > div:first-child{ font-size:1.08rem; }
.brand > div > div:last-child{ font-size:.86rem; letter-spacing:.2px; opacity:.75; font-weight:800; }
@media (max-width: 980px){
  .brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit}
  .brand > div > div:first-child{font-size:1.0rem}
  .brand > div > div:last-child{display:block; font-size:.78rem}
  .nav }

/* Brand copy */
.brand .brand-copy{display:flex; flex-direction:column}
.brand .brand-title{font-family:Fraunces,serif; font-weight:900; letter-spacing:.02em}
.brand .brand-subtitle{font-size:.82rem; color:rgba(11,11,11,.66); font-weight:800}
.brand .brand-cred{font-size:.78rem; color:rgba(11,11,11,.62); font-weight:800}

/* Home hero intro row */
.home-hero-top{display:flex; align-items:center; justify-content:space-between; gap:14px; margin-top:14px; margin-bottom:18px}


.home-hero-name{font-weight:950; letter-spacing:.08em; text-transform:uppercase; font-size:.98rem}
.home-hero-title{font-weight:850; opacity:.85; font-size:.86rem}
.home-hero-badges{display:flex; gap:10px; align-items:center; justify-content:center}
.home-hero-badges img{height:36px; width:auto; display:block}

.home-hero-h1{margin-top:0}
@media (max-width: 820px){
  .home-hero-top{flex-direction:column; align-items:center; text-align:center}
  
  
  
}

/* Home body intro row */



.home-body-top + .hero{padding-top:10px}

/* Home body intro row mobile stacking */
@media (max-width: 820px){
  
  .home-body-top-inner 
  .home-body-top-inner 
  .home-body-top-inner 
  
}


/* HOME BODY TOP ROW — V17 centered layout */
.home-body-top{padding-top:18px; padding-bottom:14px; margin-bottom:12px}
.home-body-top-inner{
  display:grid;
  grid-template-columns:auto auto auto;
  align-items:center;
  justify-content:center;
  column-gap:26px;
  row-gap:12px;
  max-width:760px;
  margin:0 auto;
}
.home-hero-logo{width:46px; height:46px; border-radius:999px; object-fit:contain}
.home-hero-center{display:flex; flex-direction:column; align-items:center; text-align:center; gap:6px}
.home-hero-headshot{width:116px; height:116px; border-radius:999px; object-fit:cover}
.home-hero-badges img{height:36px; width:auto; display:block}

@media (max-width: 820px){
  .home-body-top-inner{grid-template-columns:1fr; justify-items:center; max-width:520px}
  .home-hero-headshot{width:128px; height:128px}
}

}

/* HOMEPAGE NAV CENTER (v19 redo2) */
.nav.nav-home .grid-2 > .card{height:auto}

/* Smaller button for forms */
.btn.sm{padding:10px 14px; font-size:.92rem}

/* Badge links (Credly) */
.badge-link{display:inline-flex; align-items:center; justify-content:center; text-decoration:none; cursor:pointer; pointer-events:auto; position:relative; z-index:3}
.badge-link:hover{transform:translateY(-1px)}
.badge-link:focus{outline:2px solid rgba(0,0,0,.25); outline-offset:3px; border-radius:10px}

/* Mobile stack */
@media (max-width: 820px){
  }

/* Homepage intro row (v23) — left cluster + right headshot */
.home-intro-v18{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  max-width:1160px;
  margin:0 auto 22px;
}
.home-intro-left{
  display:flex;
  align-items:center;
  gap:18px;
}
.home-intro-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}
.home-intro-name{
  font-size:clamp(2rem, 3vw, 3.1rem);
  line-height:1.02;
  margin:0;
  font-family:Fraunces,serif;
  font-weight:950;
  letter-spacing:0;
}
.home-intro-title{
  font-weight:850;
  opacity:.9;
  font-size:clamp(1.05rem, 1.4vw, 1.35rem);
}
.home-intro-badges{display:none}
.home-intro-badges img{
  height:92px;
  width:auto;
  display:block;
}
/* Mobile stack */
@media (max-width: 820px){
  .home-intro-v18{
    flex-direction:column;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
  }
  .home-intro-left{
    flex-direction:column;
    align-items:center;
    gap:12px;
  }
  .home-intro-center{
    align-items:center;
    text-align:center;
  }
  }

.home-intro-credline{
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.85;
  font-size:1rem;
}

/* Homepage nav centering (v24 redo) */
.nav.nav-home .nav.nav-home /* === Header logo sizing (redo) === */
/* === Homepage top logo + headshot sizing (redo) === */
.home-intro-headshot{width:260px; height:260px; border-radius:999px; object-fit:cover; display:block}
@media (max-width: 820px){
  .home-intro-headshot{width:210px; height:210px}
}


/* Homepage logo frame + logo sizing (redo12) */
.home-intro-logo-frame{width:260px; height:260px; border-radius:999px; overflow:hidden; display:block; flex:0 0 auto}
.home-intro-logo{width:100% !important; height:100% !important; border-radius:999px !important; object-fit:cover !important; display:block !important; transform:none !important}
@media (max-width: 820px){
  .home-intro-logo-frame{width:210px; height:210px}
}

/* Footer layout + badge sizing (redo12) */
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:26px;
  align-items:start;
  justify-items:center;
  text-align:center;
}
.footer-brand-col{display:flex; flex-direction:column; align-items:center}
.footer-col{display:flex; flex-direction:column; align-items:center}
.footer-title{font-weight:900; margin-bottom:10px}
.footer-links{display:grid; gap:8px; justify-items:center}
.footer-bottom{margin-top:18px}
.footer-tagline{margin-top:12px; max-width:44ch}

.footer-badge{padding:16px 18px; border-radius:18px; background:rgba(255,255,255,.72); border:1px solid rgba(11,11,11,.12)}
.footer-cred-badges{display:flex; gap:14px; align-items:center; justify-content:center; flex-wrap:wrap}
.footer-cred-badges img{height:96px !important; width:auto !important; display:block}

@media (max-width: 820px){
  .footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:26px;
  align-items:start;
  justify-items:center;
  text-align:center;
}
.footer-brand-col,.footer-col{display:flex; flex-direction:column; align-items:center}
  .footer-links{display:grid; gap:8px; justify-items:center}
  .footer-cred-badges{display:flex; gap:14px; align-items:center; justify-content:center; flex-wrap:wrap}
  .footer-cred-badges img{height:96px !important; width:auto !important; display:block}
}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit}
  .brand-copy{display:flex; flex-direction:column}
  }

/* Intro grid guard */
.intro-grid{grid-template-columns:1.1fr .9fr; align-items:center}
@media (max-width: 820px){.intro-grid{grid-template-columns:1.1fr .9fr; align-items:center}}

.menu-btn{justify-self:end}
}

@media (max-width: 820px){.footer-grid{grid-template-columns:1fr}.footer-cred-badges img{height:96px !important; width:auto !important; display:block}}

.nav-links{display:flex; gap:14px; align-items:center; justify-content:flex-end; flex-wrap:wrap}
.brand img{width:104px; height:104px; border-radius:999px; object-fit:cover; display:block}

@media (min-width: 821px){
  .nav-inner{display:grid; grid-template-columns:auto 1fr auto; align-items:center}
  .brand{justify-self:start}
  .nav-links{justify-self:center; justify-content:center}
  .menu-btn{justify-self:end}
}

.intro-photo{width:100% !important; height:auto !important; border-radius:18px !important; object-fit:cover !important; display:block !important}
@media (max-width: 900px){
  .intro-grid{grid-template-columns:1fr}
}


/* ===== Header behavior (V.29 reset) ===== */
/* Homepage: center the nav links */
.nav.nav-home .nav-inner{justify-content:center}
.nav.nav-home .nav-links{justify-content:center}

/* Non-home pages: larger logo and top-aligned title */
.nav:not(.nav-home) .brand{align-items:flex-start}
.nav:not(.nav-home) .brand-copy{align-items:flex-start}
.nav:not(.nav-home) .brand-title{line-height:1; margin-top:0}
.nav:not(.nav-home) .brand img{width:96px; height:96px; border-radius:999px; object-fit:cover; display:block}

/* ===== Homepage avatars (V.29) ===== */
.home-intro-logo-frame{width:240px; height:240px; border-radius:999px; overflow:hidden}
.home-intro-logo{width:100% !important; height:100% !important; border-radius:999px !important; object-fit:cover !important; display:block !important; transform:none !important}
.home-intro-headshot{width:240px; height:240px; border-radius:999px; object-fit:cover; display:block}

@media (max-width: 820px){
  .home-intro-logo-frame{width:200px; height:200px}
  .home-intro-headshot{width:200px; height:200px}
}

/* Homepage nav centering (v30) */
.nav.nav-home .nav-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
}
.nav.nav-home .nav-links{
  justify-self:center;
  justify-content:center;
}
.nav.nav-home .menu-btn{
  justify-self:end;
}

/* Non-home header brand sizing (v30) */
.nav:not(.nav-home) .brand{align-items:flex-start}
.nav:not(.nav-home) .brand-copy{align-items:flex-start}
.nav:not(.nav-home) .brand img{width:120px; height:120px}
.nav:not(.nav-home) .brand-title{margin-top:0; line-height:1}


/* ===== Header alignment + sizing overrides (V.31) ===== */
/* Homepage header: center nav links */
.nav.nav-home .nav-inner{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  position:relative;
}
.nav.nav-home .nav-links{
  justify-content:center !important;
  margin:0 auto;
}
.nav.nav-home .menu-btn{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
}

/* Non-home header: vertically center logo + title group */
.nav:not(.nav-home) .nav-inner{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
}
.nav:not(.nav-home) .brand{
  align-items:center !important;
}
.nav:not(.nav-home) .brand-copy{
  justify-content:center;
}
.nav:not(.nav-home) .brand-title{
  line-height:1.02;
}

/* Bigger header logo on non-home pages */
.nav:not(.nav-home) .brand img{
  width:132px !important;
  height:132px !important;
}

/* ===== Homepage avatars ===== */
/* Keep both circles same size; remove logo scaling */
.home-intro-logo-frame{width:260px; height:260px}
.home-intro-logo{width:100% !important; height:100% !important; border-radius:999px !important; object-fit:cover !important; display:block !important; transform:none !important}
.home-intro-headshot{width:260px; height:260px}

@media (max-width: 820px){
  .home-intro-logo-frame{width:210px; height:210px}
  .home-intro-headshot{width:210px; height:210px}
}


.nav:not(.nav-home) .brand img{
  margin-top:0 !important;
}
.nav:not(.nav-home) .brand-copy{
  justify-content:flex-start !important;
  padding-top:0 !important;
}
.nav:not(.nav-home) .brand-title{
  margin-top:0 !important;
  line-height:1 !important;
}


.nav:not(.nav-home) .brand-copy{height:var(--header-logo)}
  .nav:not(.nav-home) .brand-subtitle{top:calc(50% + 18px)}
  .nav:not(.nav-home) .brand-cred{top:calc(50% + 36px)}
}

/* ===== Header title centered on logo (V.33 redo) ===== */
@media (min-width: 821px){
  .nav:not(.nav-home) .nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .nav:not(.nav-home) .brand{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .nav:not(.nav-home) .brand img{
    width:120px;
    height:120px;
    border-radius:999px;
    object-fit:cover;
    display:block;
  }
  .nav:not(.nav-home) .brand-copy{
    position:relative;
    height:120px;
    display:block;
  }
  .nav:not(.nav-home) .brand-title,
  .nav:not(.nav-home) .brand-subtitle,
  .nav:not(.nav-home) .brand-cred{
    position:absolute;
    left:0;
    margin:0;
  }
  .nav:not(.nav-home) .brand-title{
    top:50%;
    transform:translateY(-50%);
    line-height:1.05;
  }
  .nav:not(.nav-home) .brand-subtitle{
    top:calc(50% + 22px);
  }
  .nav:not(.nav-home) .brand-cred{
    top:calc(50% + 42px);
  }
}
/* Mobile: return to normal flow to avoid overlap */
@media (max-width: 820px){
  .nav:not(.nav-home) .brand{align-items:center}
  .nav:not(.nav-home) .brand img{width:84px; height:84px}
  .nav:not(.nav-home) .brand-copy{position:static; height:auto}
  .nav:not(.nav-home) .brand-title,
  .nav:not(.nav-home) .brand-subtitle,
  .nav:not(.nav-home) .brand-cred{position:static; transform:none}
}

/* ===== Header logo nudge (V.33 redo3) ===== */
.nav:not(.nav-home) .brand img{margin-top:-6px !important}



/* ===== Header + homepage alignment fixes (V.33 redo4) ===== */
/* Non-home header: center logo + text together */
.nav:not(.nav-home) .brand{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
}
.nav:not(.nav-home) .brand img{
  margin-top:0 !important;   /* override prior nudges */
  align-self:center !important;
}
.nav:not(.nav-home) .brand-copy{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  gap:6px !important;
}
.nav:not(.nav-home) .brand-title{
  margin:0 !important;
  line-height:1.1 !important;
}

/* Homepage: make logo frame match headshot size */
.home-intro-logo-frame{
  width:260px !important;
  height:260px !important;
}
.home-intro-headshot{
  width:260px !important;
  height:260px !important;
}
@media (max-width: 820px){
  .home-intro-logo-frame{width:210px !important; height:210px !important}
  .home-intro-headshot{width:210px !important; height:210px !important}
}


/* ===== Header + homepage logo visual match (V.33 redo5) ===== */
/* Non-home header: lift logo slightly to align with title baseline */
.nav:not(.nav-home) .brand img{margin-top:-4px !important}

/* Homepage logo: fill circle like headshot (compensate for internal transparent margins) */
.home-intro-logo{width:100% !important; height:100% !important; border-radius:999px !important; object-fit:cover !important; display:block !important; transform:none !important}

/* ===== Homepage nav centered (V.34) ===== */
.nav.nav-home .nav-inner{display:flex !important; justify-content:center !important; align-items:center !important}
.nav.nav-home .nav-links{justify-content:center !important}


/* ===== Header brand alignment reset (V.34) ===== */
.nav:not(.nav-home) .nav-inner{display:flex !important; align-items:center !important; justify-content:space-between !important}
.nav:not(.nav-home) .brand{display:flex !important; align-items:center !important; gap:12px !important}
.nav:not(.nav-home) .brand img{width:84px !important; height:84px !important; margin:0 !important; border-radius:999px !important; object-fit:cover !important; display:block}
.nav:not(.nav-home) .brand-copy{display:flex !important; flex-direction:column !important; justify-content:center !important; gap:6px !important}
.nav:not(.nav-home) .brand-title,.nav:not(.nav-home) .brand-subtitle,.nav:not(.nav-home) .brand-cred{position:static !important; transform:none !important; margin:0 !important}


/* ===== Homepage avatar sizing (V.34) ===== */
.home-intro-logo-frame{width:240px !important; height:240px !important; border-radius:999px; overflow:hidden}
.home-intro-headshot{width:240px !important; height:240px !important; border-radius:999px; object-fit:cover; display:block}
@media (max-width: 820px){
  .home-intro-logo-frame{width:200px !important; height:200px !important}
  .home-intro-headshot{width:200px !important; height:200px !important}
}


/* ===== Definitive header + homepage sizing (V.35) ===== */

/* Header (non-home): keep logo + text vertically centered, no bleed */
.nav:not(.nav-home) .nav-inner{display:flex !important; align-items:center !important; justify-content:space-between !important}
.nav:not(.nav-home) .brand{display:flex !important; align-items:center !important; gap:12px !important}
.nav:not(.nav-home) .brand img{
  width:88px !important;
  height:88px !important;
  border-radius:999px !important;
  object-fit:cover !important;
  display:block !important;
  transform:translateY(-2px); /* tiny lift to align with title baseline */
}
.nav:not(.nav-home) .brand-copy{display:flex !important; flex-direction:column !important; justify-content:center !important; gap:6px !important}
.nav:not(.nav-home) .brand-title,.nav:not(.nav-home) .brand-subtitle,.nav:not(.nav-home) .brand-cred{
  position:static !important; transform:none !important; margin:0 !important;
}

/* Homepage header: center nav links */
.nav.nav-home .nav-inner{display:flex !important; align-items:center !important; justify-content:center !important; position:relative}
.nav.nav-home .nav-links{justify-content:center !important}
.nav.nav-home .menu-btn{position:absolute; right:0; top:50%; transform:translateY(-50%)}

/* Homepage logo + headshot: identical frames so they match visually */
.home-intro-logo-frame,
.home-intro-headshot-frame{
  width:240px !important;
  height:240px !important;
  border-radius:999px !important;
  overflow:hidden !important;
  display:block !important;
  flex:0 0 auto !important;
}
.home-intro-logo,
.home-intro-headshot{
  width:100% !important;
  height:100% !important;
  border-radius:999px !important;
  object-fit:cover !important;
  display:block !important;
  transform:none !important;
}

@media (max-width: 820px){
  .home-intro-logo-frame,
  .home-intro-headshot-frame{width:200px !important; height:200px !important}
}


/* ===== Homepage avatar frame lock (V.35 redo2) ===== */
.home-intro-logo-frame,
.home-intro-headshot-frame{
  width:240px !important;
  height:240px !important;
  border-radius:999px !important;
  overflow:hidden !important;
}
@media (max-width: 820px){
  .home-intro-logo-frame,
  .home-intro-headshot-frame{
    width:200px !important;
    height:200px !important;
  }
}



/* ===== Homepage avatar final lock (V.35 redo3) ===== */
.home-intro-logo-frame,.home-intro-headshot-frame{width:240px !important; height:240px !important}
@media (max-width: 820px){.home-intro-logo-frame,.home-intro-headshot-frame{width:200px !important; height:200px !important}}


/* ===== Homepage avatar frames clean + larger (V.35 redo4) ===== */
.home-intro-logo-frame,
.home-intro-headshot-frame{
  width:280px !important;
  height:280px !important;
  border-radius:999px !important;
  overflow:hidden !important;
  padding:0 !important;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
}
.home-intro-logo,
.home-intro-headshot{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  border-radius:999px !important;
  display:block !important;
  transform:none !important;
}
@media (max-width: 820px){
  .home-intro-logo-frame,
  .home-intro-headshot-frame{
    width:220px !important;
    height:220px !important;
  }
}


/* ===== Mobile responsiveness pass (V.36) ===== */
@media (max-width: 820px){
  .container{padding-left:16px !important; padding-right:16px !important}
  .nav{position:sticky; top:0; z-index:50}
  .nav-inner{padding:10px 0 !important}
  .nav-links{gap:10px !important}
  .brand img{width:64px !important; height:64px !important}
  .brand-title{font-size:22px !important}
  .brand-subtitle{font-size:13px !important}

  .hero h1{font-size:34px !important; line-height:1.1 !important}
  .hero .lead{font-size:16px !important}

  .grid-2, .grid-3, .grid-4{grid-template-columns:1fr !important}
  .card{padding:18px !important}
  .section{padding:52px 0 !important}
  .section.tight{padding:42px 0 !important}

  .home-intro-v18{gap:18px !important}
  .home-intro-left,.home-intro-center,.home-intro-right{justify-content:center !important}
  .home-intro-name{font-size:28px !important; text-align:center !important}
  .home-intro-title{font-size:15px !important; text-align:center !important}

  .btn, .btn.primary{width:100% !important; justify-content:center !important}
  .btn-row{flex-direction:column !important; gap:10px !important}
  .input{font-size:16px !important} /* prevents iOS zoom */
  .footer-grid{grid-template-columns:1fr !important; text-align:center !important; justify-items:center !important}
  .footer-col,.footer-brand-col{align-items:center !important}
}

@media (max-width: 820px){
  .home-intro-logo-frame,.home-intro-headshot-frame{margin-left:auto !important; margin-right:auto !important}
}


/* ===== Header logo alignment fix (V.36 redo header) ===== */
@media (min-width: 821px){
  .nav .nav-inner{
    display:flex !important;
    align-items:center !important;
  }
  .nav:not(.nav-home) .brand{
    align-items:center !important;
  }
  .nav:not(.nav-home) .brand img{
    width:96px !important;
    height:96px !important;
    margin:0 !important;
    transform:none !important;
  }
  .nav:not(.nav-home) .brand-copy{
    justify-content:center !important;
  }
  .nav:not(.nav-home) .brand-title{
    margin:0 !important;
    line-height:1.08 !important;
  }
}


/* ===== Logo asset consistency (V.37) ===== */
.brand img, .brand-logo{object-fit:cover !important; border-radius:999px !important; display:block}
.home-intro-logo{object-fit:cover !important}


/* ===== Mobile refinement (V.36 redo2) ===== */
@media (max-width: 820px){
  /* Prevent horizontal overflow */
  html, body { overflow-x: hidden; }

  /* Containers */
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  /* Nav: keep readable and centered */
  .nav-links { justify-content: center !important; flex-wrap: wrap !important; gap: 10px !important; }
  .nav-inner { align-items: center !important; }

  /* Typography scaling */
  .hero h1 { font-size: 32px !important; line-height: 1.12 !important; }
  .home-intro-name { font-size: 28px !important; line-height: 1.1 !important; }

  /* Stack columns cleanly */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Home intro row */
  .home-intro-v18 { flex-direction: column !important; align-items: center !important; gap: 18px !important; }
  .home-intro-left, .home-intro-center, .home-intro-right { width: 100% !important; justify-content: center !important; text-align: center !important; }
  .home-intro-logo-frame, .home-intro-headshot-frame { margin: 0 auto !important; }

  /* Forms + buttons */
  input, select, textarea { font-size: 16px !important; } /* stop iOS zoom */
  .btn, .btn.primary { width: 100% !important; justify-content: center !important; }
  .btn-row { flex-direction: column !important; gap: 10px !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; justify-items: center !important; text-align: center !important; }
  .footer-col, .footer-brand-col { align-items: center !important; }
}


/* ===== Mobile fixes (V.36 mobile rebuild) ===== */

/* Default (desktop): show nav links, hide menu button and dropdown */
.nav-links{display:flex !important}
.menu-btn{display:none !important}
[data-menu]{display:none !important}

/* Mobile: hide nav links, show menu button; dropdown opens when data-open=true */
@media (max-width: 820px){
  .nav-links{display:none !important}
  .menu-btn{display:inline-flex !important}
  [data-menu][data-open="true"]{display:block !important}
  [data-menu]{padding-bottom:14px}

  /* Hero layout: stack to avoid elongated/truncated section */
  .hero-grid{grid-template-columns:1fr !important; gap:16px !important}
  .hero .card{padding:18px !important}
  .hero-side{order:2}
  .hero h1{font-size:32px !important; line-height:1.12 !important}
  .hero .lead{font-size:16px !important}
  .pill{gap:10px !important}
  .pill span{display:block}

  /* Homepage intro row: stack and center */
  .home-intro-v18{flex-direction:column !important; align-items:center !important; gap:16px !important}
  .home-intro-left,.home-intro-center,.home-intro-right{width:100% !important; justify-content:center !important; text-align:center !important}
  .home-intro-logo-frame,.home-intro-headshot-frame{width:220px !important; height:220px !important; margin:0 auto !important}
}


/* ===== Header menu + homepage mobile fixes (V.36 final) ===== */
.nav-links{display:flex}
.menu-btn{display:none}
[data-menu]{display:none}
[data-menu][data-open="true"]{display:block}

@media (max-width: 820px){
  .nav-links{display:none !important}
  .menu-btn{display:inline-flex !important}
  [data-menu]{display:none !important}
  [data-menu][data-open="true"]{display:block !important}
  [data-menu] .card{padding:14px !important}
  [data-menu] .btn-row{flex-direction:column !important}
  [data-menu] .btn{width:100% !important}

  /* Homepage hero compact + not elongated */
  .hero{padding:34px 0 10px !important}
  .hero-grid{grid-template-columns:1fr !important; gap:14px !important}
  .hero .card{padding:16px !important}
  .hero-side{order:2}
  .section{padding:44px 0 !important}
  .section.tight{padding:36px 0 !important}
}


/* ===== Portrait-phone fixes (V.36 portrait) ===== */
@media (max-width: 520px){
  .container{padding-left:14px !important; padding-right:14px !important}
  .brand img{width:54px !important; height:54px !important}
  .brand-title{font-size:18px !important}
  .brand-subtitle,.brand-cred{font-size:11px !important}
  .menu-btn{padding:10px 12px !important}

  .hero h1{font-size:28px !important; line-height:1.12 !important}
  .hero .lead{font-size:15px !important}

  .pill{flex-wrap:wrap !important}
  .pill span{white-space:normal !important}

  .home-intro-logo-frame,.home-intro-headshot-frame{width:190px !important; height:190px !important}
  .home-intro-name{font-size:24px !important}
  .home-intro-title{font-size:13px !important}

  [data-menu] .grid-2{grid-template-columns:1fr !important}
  [data-menu] .card{margin:0 auto !important; width:100% !important}
}


/* ===== Homepage portrait fixes (V.36 home portrait) ===== */
@media (max-width: 520px){
  /* Stack the top branding row cleanly */
  .home-intro-v18{
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:16px !important;
    margin:0 auto 14px !important;
  }
  .home-intro-left{
    flex-direction:column !important;
    align-items:center !important;
    gap:12px !important;
  }
  .home-intro-center{gap:6px !important}
  .home-intro-logo-frame,
  .home-intro-headshot-frame{
    width:200px !important;
    height:200px !important;
  }
  .home-intro-name{font-size:24px !important}
  .home-intro-title{font-size:13px !important}
  .home-intro-credline{font-size:12px !important}

  /* Stack hero content to prevent elongation/truncation */
  .hero-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
    align-items:start !important;
  }
  .hero-side{display:block !important}
  .hero-side .card{margin-top:12px !important}
  .hero h1{font-size:28px !important; line-height:1.12 !important}
  .hero .lead{font-size:15px !important}

  /* Quick paths pills: allow wrapping */
  .pill{flex-wrap:wrap !important}
  .pill span{display:block; white-space:normal !important}

  /* Buttons stack nicely */
  .btn-row{flex-direction:column !important}
  .btn-row .btn{width:100% !important}
}


/* ===== Header overlap hardening (V.36 header-fix) ===== */
.nav-inner{display:flex; align-items:center}
.nav-inner .nav-links{margin-left:auto}
.nav-inner .menu-btn{margin-left:auto}

@media (max-width: 980px){
  /* If media queries fail for any reason, prevent overlap by wrapping */
  .nav-inner{flex-wrap:wrap !important; gap:10px !important}
  .nav-inner .nav-links{width:100% !important; justify-content:center !important; flex-wrap:wrap !important}
  .nav-inner .menu-btn{margin-left:auto !important}
}

@media (max-width: 820px){
  /* Force nav-links hidden on mobile (extra specificity) */
  header.nav .nav-links, header.nav-home .nav-links{display:none !important}
  header.nav .menu-btn, header.nav-home .menu-btn{display:inline-flex !important}
}


/* ===== Logo rendering safeguard (V.36 logo-safe) ===== */
.brand img{object-fit:cover !important; border-radius:999px !important; background:transparent !important}



/* V.46 requested refinements */
.home-hero-centered{grid-template-columns:minmax(0, 1fr) !important; justify-items:center !important;}
.home-hero-centered > .card{max-width:980px; width:100%; text-align:center;}
.home-hero-centered .btn-row{justify-content:center;}
.footer-links a{white-space:nowrap;}

.offer-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch}
.offer-card{padding:24px}
.offer-card h3{margin-top:12px; margin-bottom:10px}
.offer-card .lead{font-size:clamp(1.05rem,1.15vw,1.18rem)}
@media (max-width: 980px){.offer-grid{grid-template-columns:1fr}}


/* V.48 logo + FAQ mobile consistency */
.footer-logo{
  width:112px;
  height:112px;
  border-radius:0;
  object-fit:contain;
  display:block;
  margin:0 auto 14px;
  background:transparent !important;
}
.acc-btn,
.acc-btn span{
  color:var(--ink) !important;
  text-align:left;
}
.acc-btn:visited,
.acc-btn:active,
.acc-btn:hover,
.acc-btn:focus{
  color:var(--ink) !important;
}
@media (max-width: 820px){
  .acc-btn,
  .acc-btn span{
    color:var(--ink) !important;
    -webkit-text-fill-color:var(--ink) !important;
  }
  .footer-logo{
    width:104px;
    height:104px;
  }
}

/* V.48 footer logo removal + iOS FAQ button color fix */
.footer-logo{display:none !important;}
.accordion-item button.acc-btn,
.accordion-item button.acc-btn span,
.accordion-item button.acc-btn .chev{
  color:var(--ink) !important;
  -webkit-text-fill-color:var(--ink) !important;
  font-family:inherit !important;
  text-decoration:none !important;
}
.accordion-item button.acc-btn{
  -webkit-appearance:none !important;
  appearance:none !important;
  background:transparent !important;
  border:0 !important;
}
@media (max-width: 820px){
  .accordion-item button.acc-btn,
  .accordion-item button.acc-btn span,
  .accordion-item button.acc-btn .chev{
    color:var(--ink) !important;
    -webkit-text-fill-color:var(--ink) !important;
  }
}

/* V.48 recreation: center homepage intro text between logo and portrait */
.home-intro-v18{
  display:grid !important;
  grid-template-columns:minmax(190px, 240px) minmax(260px, 1fr) minmax(190px, 240px) !important;
  align-items:center !important;
  justify-content:center !important;
  column-gap:34px !important;
}
.home-intro-v18 > .home-intro-left{
  display:contents !important;
}
.home-intro-v18 .home-intro-logo-frame{
  grid-column:1 !important;
  justify-self:center !important;
}
.home-intro-v18 .home-intro-center{
  grid-column:2 !important;
  justify-self:center !important;
  align-self:center !important;
  text-align:center !important;
}
.home-intro-v18 > .home-intro-headshot-frame{
  grid-column:3 !important;
  justify-self:center !important;
}
@media (max-width: 820px){
  .home-intro-v18{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:16px !important;
  }
  .home-intro-v18 > .home-intro-left{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:12px !important;
  }
  .home-intro-v18 .home-intro-logo-frame,
  .home-intro-v18 .home-intro-center,
  .home-intro-v18 > .home-intro-headshot-frame{
    grid-column:auto !important;
  }
}


/* V.48 mobile menu scroll + FAQ mobile color hardening */
@media (max-width: 820px){
  body.menu-open{
    overflow:hidden !important;
    height:100vh !important;
    touch-action:none;
  }
  header.nav [data-menu],
  header.nav-home [data-menu]{
    display:none !important;
  }
  header.nav [data-menu][data-open="true"],
  header.nav-home [data-menu][data-open="true"]{
    display:block !important;
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    top:var(--mobile-menu-top, 128px) !important;
    bottom:0 !important;
    z-index:999 !important;
    width:100vw !important;
    max-height:calc(100vh - var(--mobile-menu-top, 128px)) !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    overscroll-behavior:contain !important;
    touch-action:pan-y !important;
    background:rgba(251,247,244,.98) !important;
    border-top:1px solid rgba(11,11,11,.08) !important;
    padding:14px 4vw 32px !important;
  }
  header.nav [data-menu] .card,
  header.nav-home [data-menu] .card{
    max-height:none !important;
    overflow:visible !important;
    margin:0 auto !important;
  }
}

html body .accordion-item > button.acc-btn,
html body .accordion-item > button.acc-btn span,
html body .accordion-item > button.acc-btn .chev,
html body .accordion-item > button.acc-btn:link,
html body .accordion-item > button.acc-btn:visited,
html body .accordion-item > button.acc-btn:hover,
html body .accordion-item > button.acc-btn:active,
html body .accordion-item > button.acc-btn:focus{
  color:#0b0b0b !important;
  -webkit-text-fill-color:#0b0b0b !important;
  text-decoration:none !important;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}
html body .accordion-item > button.acc-btn{
  font-weight:900 !important;
  font-size:1.02rem !important;
}


/* V.48 hard fix: mobile landscape menu must scroll; FAQ buttons must not inherit iOS blue */
@media (max-width: 820px){
  html.menu-lock,
  body.menu-open{
    overflow:hidden !important;
    height:100% !important;
  }
  body.menu-open{
    position:fixed !important;
    width:100% !important;
    left:0 !important;
    right:0 !important;
  }
  header.nav [data-menu][data-open="true"],
  header.nav-home [data-menu][data-open="true"]{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    top:var(--mobile-menu-top, 128px) !important;
    bottom:0 !important;
    height:auto !important;
    max-height:none !important;
    overflow-y:scroll !important;
    overflow-x:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    overscroll-behavior:contain !important;
    touch-action:pan-y !important;
    z-index:2147483000 !important;
  }
  header.nav [data-menu][data-open="true"] .btn-row,
  header.nav-home [data-menu][data-open="true"] .btn-row{
    padding-bottom:48px !important;
  }
}
@media (max-width: 920px) and (max-height: 520px) and (orientation: landscape){
  header.nav [data-menu][data-open="true"],
  header.nav-home [data-menu][data-open="true"]{
    top:0 !important;
    height:100dvh !important;
    max-height:100dvh !important;
    padding-top:12px !important;
    padding-bottom:24px !important;
  }
}
html body.faq-page .accordion-item > button.acc-btn,
html body.faq-page .accordion-item > button.acc-btn *,
html body.faq-page .accordion-item > button.acc-btn span,
html body.faq-page .accordion-item > button.acc-btn .chev{
  color:#0b0b0b !important;
  -webkit-text-fill-color:#0b0b0b !important;
  text-decoration:none !important;
  background:transparent !important;
  border-color:transparent !important;
}
html body.faq-page .accordion-item > button.acc-btn{
  -webkit-appearance:none !important;
  appearance:none !important;
  border:none !important;
  outline-color:#0b0b0b !important;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight:900 !important;
}

/* V.48 definitive mobile menu + FAQ fixes */
@media (max-width: 920px){
  html.menu-lock,
  body.menu-open{
    overflow:hidden !important;
    height:100% !important;
  }
  body.menu-open{
    position:relative !important;
    top:auto !important;
    touch-action:none !important;
  }
  header.nav [data-menu][data-open="true"],
  header.nav-home [data-menu][data-open="true"]{
    display:block !important;
    position:fixed !important;
    z-index:2147483647 !important;
    left:0 !important;
    right:0 !important;
    top:0 !important;
    bottom:0 !important;
    width:100vw !important;
    height:100dvh !important;
    max-height:100dvh !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    overscroll-behavior:contain !important;
    touch-action:pan-y !important;
    background:rgba(251,247,244,.99) !important;
    padding:16px 4vw calc(56px + env(safe-area-inset-bottom)) !important;
  }
  header.nav [data-menu][data-open="true"] .card,
  header.nav-home [data-menu][data-open="true"] .card{
    min-height:calc(100dvh - 32px) !important;
    overflow:visible !important;
  }
  header.nav [data-menu][data-open="true"] .btn-row,
  header.nav-home [data-menu][data-open="true"] .btn-row{
    display:flex !important;
    flex-direction:column !important;
    gap:12px !important;
    padding-bottom:96px !important;
  }
}

body.faq-page .acc-btn,
body.faq-page .acc-btn *,
body.faq-page [data-acc-btn],
body.faq-page [data-acc-btn] *{
  color:#0b0b0b !important;
  -webkit-text-fill-color:#0b0b0b !important;
  text-decoration:none !important;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}
body.faq-page .acc-btn{
  -webkit-appearance:none !important;
  appearance:none !important;
  border:0 !important;
  background:transparent !important;
}

/* V.48 final mobile menu repair: native iOS scrolling inside the menu, not behind it */
@media (max-width: 920px){
  html.menu-lock,
  body.menu-open{
    overflow:hidden !important;
    height:100% !important;
  }

  header.nav [data-menu],
  header.nav-home [data-menu]{
    display:none !important;
  }

  header.nav [data-menu][data-open="true"],
  header.nav-home [data-menu][data-open="true"]{
    display:block !important;
    position:fixed !important;
    z-index:2147483647 !important;
    inset:0 !important;
    width:100vw !important;
    height:100vh !important;
    height:100dvh !important;
    overflow-y:scroll !important;
    overflow-x:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    overscroll-behavior:contain !important;
    touch-action:pan-y !important;
    background:rgba(251,247,244,.99) !important;
    padding:18px 4vw calc(96px + env(safe-area-inset-bottom)) !important;
  }

  header.nav [data-menu][data-open="true"] .card,
  header.nav-home [data-menu][data-open="true"] .card{
    width:100% !important;
    min-height:auto !important;
    max-height:none !important;
    overflow:visible !important;
    margin:0 auto 80px !important;
  }

  header.nav [data-menu][data-open="true"] .btn-row,
  header.nav-home [data-menu][data-open="true"] .btn-row{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:12px !important;
    padding-bottom:120px !important;
  }

  header.nav [data-menu][data-open="true"] .btn,
  header.nav-home [data-menu][data-open="true"] .btn{
    width:100% !important;
    min-height:48px !important;
  }
}

/* V.48 final FAQ mobile color repair: override iOS forced blue button/link color */
html body.faq-page .accordion-item .acc-btn,
html body.faq-page .accordion-item .acc-btn:link,
html body.faq-page .accordion-item .acc-btn:visited,
html body.faq-page .accordion-item .acc-btn:hover,
html body.faq-page .accordion-item .acc-btn:active,
html body.faq-page .accordion-item .acc-btn:focus,
html body.faq-page .accordion-item .acc-btn span,
html body.faq-page .accordion-item .acc-btn .chev,
html body.faq-page .accordion-item [data-acc-btn],
html body.faq-page .accordion-item [data-acc-btn] *{
  color:#0b0b0b !important;
  -webkit-text-fill-color:#0b0b0b !important;
  text-decoration:none !important;
  -webkit-appearance:none !important;
  appearance:none !important;
  accent-color:#0b0b0b !important;
}

/* V.48 definitive mobile menu fix: no overlay, no body lock, no internal scroll trap. The menu opens in normal document flow so native page scrolling reveals all menu items immediately. */
html.menu-lock, body.menu-open{overflow:auto !important; height:auto !important; position:static !important; top:auto !important; width:auto !important;}
@media (max-width: 920px){
  header.nav [data-menu],
  header.nav-home [data-menu]{
    display:none !important;
    position:static !important;
    inset:auto !important;
    width:auto !important;
    height:auto !important;
    max-height:none !important;
    overflow:visible !important;
    background:transparent !important;
    padding:0 0 14px !important;
    z-index:auto !important;
  }
  header.nav [data-menu][data-open="true"],
  header.nav-home [data-menu][data-open="true"]{
    display:block !important;
    position:static !important;
    inset:auto !important;
    width:auto !important;
    height:auto !important;
    max-height:none !important;
    overflow:visible !important;
    background:transparent !important;
    padding:0 0 14px !important;
  }
  header.nav [data-menu][data-open="true"] .card,
  header.nav-home [data-menu][data-open="true"] .card{
    width:100% !important;
    max-height:none !important;
    overflow:visible !important;
    margin:0 auto !important;
  }
  header.nav [data-menu][data-open="true"] .btn-row,
  header.nav-home [data-menu][data-open="true"] .btn-row{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:12px !important;
    padding-bottom:0 !important;
  }
  header.nav [data-menu][data-open="true"] .btn,
  header.nav-home [data-menu][data-open="true"] .btn{
    width:100% !important;
    min-height:48px !important;
  }
}

/* V.48 definitive FAQ mobile color fix: FAQ questions are plain black text, not link-blue, on all mobile browsers. */
body.faq-page .faq-question,
body.faq-page .faq-question *,
body.faq-page .faq-question:link,
body.faq-page .faq-question:visited,
body.faq-page .faq-question:hover,
body.faq-page .faq-question:active,
body.faq-page .faq-question:focus{
  color:#0b0b0b !important;
  -webkit-text-fill-color:#0b0b0b !important;
  text-decoration:none !important;
  background:transparent !important;
  box-shadow:none !important;
  -webkit-appearance:none !important;
  appearance:none !important;
}
