/* Dr. Sasha R. Sioni — Concept 2: Cinematic + Intimate
   Palette: dark forest, sage, warm sand, golden accent
*/

@font-face{
  font-family:"Inter";
  font-style:normal;font-weight:400;font-display:swap;
  src:url("/assets/fonts/Inter-Regular.woff2") format("woff2");
}
@font-face{
  font-family:"Inter";
  font-style:normal;font-weight:600;font-display:swap;
  src:url("/assets/fonts/Inter-SemiBold.woff2") format("woff2");
}

:root{
  --max-width:1140px;
  --body-width:800px;
  --pad:1.25rem;

  --bg:#FAF7F2;
  --bg-deep:#F3EDE3;
  --surface:#FFFFFF;
  --surface-tint:rgba(91,123,107,0.06);

  --text:#2C2C2A;
  --muted:#605F59;

  --primary:#5B7B6B;
  --primary-light:rgba(91,123,107,0.08);
  --primary-mid:rgba(91,123,107,0.15);

  --accent:#C4956A;
  --accent-light:rgba(196,149,106,0.12);

  --dark:#1E2A24;
  --dark-mid:#263530;

  --border:rgba(44,44,42,0.09);
  --radius:14px;
  --radius-sm:10px;
  --radius-pill:100px;

  --shadow-sm:0 1px 4px rgba(0,0,0,0.03);
  --shadow:0 2px 12px rgba(0,0,0,0.06);
  --focus:0 0 0 4px rgba(91,123,107,0.22);

  --serif:Georgia,"Iowan Old Style","Palatino Linotype",Palatino,serif;
  --sans:"Inter","Avenir Next","Segoe UI",system-ui,-apple-system,sans-serif;
}

*{box-sizing:border-box;}
img{max-width:100%;height:auto;}
html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family:var(--sans);
  font-size:16px;
  line-height:1.65;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:var(--primary);text-underline-offset:.18em;}
a:hover{color:#4a6a5a;}
a:focus-visible{outline:none;box-shadow:var(--focus);border-radius:6px;}

/* ── Layout ── */
.container{
  width:var(--max-width);
  max-width:100%;
  margin:0 auto;
  padding:0 var(--pad);
}
.body-narrow{
  max-width:var(--body-width);
  margin:0 auto;
  padding:0 var(--pad);
}
.body-wide{
  max-width:960px;
  margin:0 auto;
  padding:0 var(--pad);
}

/* ── Header / Nav ── */
.site-header{
  position:absolute;
  top:0;left:0;right:0;
  z-index:50;
  padding:0 var(--pad);
}
.site-header.is-sticky{
  position:sticky;
  background:var(--dark);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:60px;
}
.brand{
  font-weight:600;
  font-size:15px;
  color:rgba(255,255,255,0.92);
  text-decoration:none;
  letter-spacing:-0.01em;
  display:flex;
  align-items:center;
}
.brand svg{flex-shrink:0;}
.brand:hover{color:#fff;}

.nav-desktop ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:28px;
  padding:0;margin:0;
}
.nav-desktop a{
  text-decoration:none;
  color:rgba(255,255,255,0.7);
  font-size:13px;
  font-weight:450;
  padding:6px 0;
  transition:color .2s;
}
.nav-desktop a:hover{
  color:rgba(255,255,255,0.95);
}
.nav-desktop a[aria-current="page"]{
  color:#fff;
  border-bottom:2px solid rgba(255,255,255,0.6);
  padding-bottom:4px;
}

.nav-cta{
  display:inline-block;
  padding:9px 22px;
  border-radius:8px;
  background:var(--accent);
  border:1.5px solid var(--accent);
  color:#1E2A24;
  font-weight:600;
  font-size:13px;
  text-decoration:none;
  transition:background .2s,color .2s,border-color .2s;
}
.nav-cta:hover{background:#d4a57a;border-color:#d4a57a;color:#1E2A24;}

/* Mobile nav */
.nav-mobile{display:none;}
.nav-mobile-summary{
  list-style:none;
  cursor:pointer;
  padding:.4rem .7rem;
  border-radius:6px;
  color:#fff;
  font-weight:600;
}
.nav-mobile-summary::-webkit-details-marker{display:none;}
.nav-mobile-summary::after{content:"☰";font-size:1.8rem;}
.nav-mobile[open] .nav-mobile-summary::after{content:"✕";}
.nav-mobile-panel{
  position:absolute;
  top:56px;right:var(--pad);left:var(--pad);
  padding:1rem;
  border-radius:var(--radius);
  background:var(--surface);
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  z-index:60;
}
.nav-mobile-panel ul{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:2px;
}
.nav-mobile-panel a{
  display:block;padding:.6rem .75rem;
  border-radius:var(--radius-sm);
  color:var(--text);text-decoration:none;
  font-size:15px;font-weight:500;
}
.nav-mobile-panel a:hover{background:var(--primary-light);}
.nav-mobile-panel a[aria-current="page"]{background:var(--primary-light);color:var(--primary);}
.nav-mobile-panel .nav-cta{
  display:block;text-align:center;
  margin-top:.75rem;
  background:var(--primary);color:#fff;
  border:none;padding:12px;
  border-radius:var(--radius-sm);
}

/* ── Hero (homepage only) ── */
.hero-dark{
  background:var(--dark);
  padding:140px var(--pad) 80px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero-dark .hero-ring{
  position:absolute;
  top:50%;left:50%;
  border-radius:50%;
  border:1px solid rgba(91,123,107,0.07);
  transform:translate(-50%,-50%);
  pointer-events:none;
}
.hero-dark .hero-ring.lg{width:600px;height:600px;}
.hero-dark .hero-ring.sm{width:440px;height:440px;border-color:rgba(91,123,107,0.04);}

.hero-inner{
  position:relative;
  max-width:680px;
  margin:0 auto;
}
.hero-headshot{
  width:270px;height:270px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,0.12);
  box-shadow:0 8px 32px rgba(0,0,0,0.18);
  object-fit:cover;
  margin:0 auto 28px;
  display:block;
  background:var(--dark-mid);
}
.hero-kicker{
  font-family:var(--sans);
  font-size:11px;
  color:var(--accent);
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:20px;
}
.hero-dark h1{
  font-family:var(--serif);
  font-size:42px;
  font-weight:400;
  color:#fff;
  line-height:1.2;
  margin:0 auto 16px;
  letter-spacing:-0.02em;
}
.hero-quote{
  font-family:var(--serif);
  font-size:17px;
  color:rgba(255,255,255,0.65);
  font-style:italic;
  line-height:1.55;
  margin:0 auto 28px;
  max-width:520px;
}
.hero-sub{
  font-family:var(--sans);
  font-size:17px;
  color:rgba(255,255,255,0.72);
  line-height:1.6;
  margin:0 auto 36px;
  max-width:520px;
}
.hero-actions{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
}

/* ── Page Header (subpages) ── */
.page-header{
  background:var(--dark);
  padding:100px var(--pad) 48px;
}
.page-header .body-narrow{text-align:left;}
.page-header .kicker{
  font-family:var(--sans);
  font-size:11px;
  color:var(--accent);
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:600;
  display:block;
  margin-bottom:12px;
}
.page-header h1{
  font-family:var(--serif);
  font-size:36px;
  font-weight:400;
  color:#fff;
  line-height:1.2;
  margin:0 0 12px;
  letter-spacing:-0.02em;
}
.page-header .page-desc{
  font-size:15px;
  color:rgba(255,255,255,0.62);
  line-height:1.6;
  margin:0;
  max-width:560px;
}

/* ── Badge Strip ── */
.badge-strip{
  background:var(--primary);
  padding:14px var(--pad);
  display:flex;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
}
.badge-strip span{
  font-size:12px;color:#fff;font-weight:500;opacity:0.9;
}

/* ── Buttons ── */
.btn{
  display:inline-block;
  text-decoration:none;
  padding:14px 32px;
  border-radius:var(--radius-sm);
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:filter .2s,background .2s;
  border:none;
}
.btn-accent{background:var(--accent);color:#fff;}
.btn-accent:hover{filter:brightness(1.06);color:#fff;}
.btn-outline-light{
  background:transparent;
  color:rgba(255,255,255,0.85);
  border:1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover{background:rgba(255,255,255,0.06);color:#fff;}
.btn-primary{background:var(--primary);color:#fff;}
.btn-primary:hover{filter:brightness(1.05);color:#fff;}
.btn-secondary{
  background:transparent;
  color:var(--primary);
  border:1.5px solid var(--primary);
}
.btn-secondary:hover{background:var(--primary-light);color:var(--primary);}
.btn-sm{padding:10px 22px;font-size:13px;}
.btn-dark{background:var(--dark);color:#fff;}
.btn-dark:hover{background:var(--dark-mid);color:#fff;}
.btn-white{background:#fff;color:var(--dark);}
.btn-white:hover{background:rgba(255,255,255,0.9);color:var(--dark);}

.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:1.25rem;}

/* ── Cards ── */
.card{
  background:var(--surface);
  border-radius:var(--radius);
  padding:28px 28px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
}
.card-accent-left{border-left:4px solid var(--primary);border-radius:0;}
.card-accent-left.gold{border-left-color:var(--accent);}
.card-accent-left.steel{border-left-color:#7B8E9B;}
.card-accent-top{border-top:3px solid var(--primary);border-radius:0 0 var(--radius) var(--radius);}
.card-accent-top.gold{border-top-color:var(--accent);}
.card-accent-top.steel{border-top-color:#7B8E9B;}

.card-tinted{
  background:var(--primary-light);
  border:none;
  border-radius:var(--radius);
  padding:28px 28px;
}
.card-dark{
  background:var(--dark);
  border-radius:var(--radius);
  padding:28px 28px;
  color:#fff;
}

/* ── Typography ── */
h1{
  font-family:var(--serif);
  font-size:32px;
  font-weight:400;
  line-height:1.2;
  letter-spacing:-0.02em;
  margin:0 0 .75rem;
  color:var(--text);
}
h2{
  font-family:var(--serif);
  font-size:22px;
  font-weight:500;
  line-height:1.25;
  margin:1.75rem 0 .6rem;
  color:var(--text);
}
h3{
  font-family:var(--sans);
  font-size:16px;
  font-weight:600;
  line-height:1.35;
  margin:1.25rem 0 .4rem;
  color:var(--text);
}
.card h2:first-child,.card h3:first-child{margin-top:0;}

p{margin:.6rem 0;}
.muted{color:var(--muted);}
.tiny{font-size:14px;color:var(--muted);}
.kicker{
  font-size:11px;
  color:var(--primary);
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:600;
  display:block;
  margin-bottom:8px;
}

/* ── Section spacing ── */
main{padding:48px 0 56px;}
.section{margin-top:24px;}
.section-gap{margin-top:48px;}
.divider{
  width:40px;height:3px;
  background:var(--accent);
  border-radius:2px;
  margin:48px auto;
}
hr{border:0;border-top:1px solid var(--border);margin:1.75rem 0;}

/* ── Grids ── */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;}
@media(max-width:860px){.grid-2{grid-template-columns:1fr;}}
@media(max-width:980px){.grid-3{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.grid-3{grid-template-columns:1fr;}}

/* ── Lists ── */
.list-clean{padding-left:1.1rem;max-width:72ch;}
.list-clean li{
  color:var(--muted);font-size:15px;
  padding-bottom:10px;
  list-style:none;position:relative;
}
.list-clean li::before{
  content:'';position:absolute;
  width:6px;height:6px;
  background:var(--primary);
  left:-16px;top:9px;
  border-radius:50%;
}

/* ── Steps (how therapy works) ── */
.step-row{
  display:flex;gap:16px;align-items:flex-start;
  padding:16px 0;
}
.step-row+.step-row{border-top:1px solid var(--border);}
.step-num{
  width:36px;height:36px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  font-family:var(--serif);
  font-size:15px;font-weight:600;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.step-title{font-weight:600;font-size:15px;color:var(--text);margin-bottom:3px;}
.step-desc{font-size:13px;color:var(--muted);line-height:1.55;}

/* ── Practical details grid ── */
.detail-item{margin-bottom:12px;}
.detail-label{
  font-size:11px;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-weight:600;
  margin-bottom:2px;
}
.detail-value{font-size:14px;color:var(--text);line-height:1.5;}

/* ── Table-like (FAQ / steps) ── */
.table-like{border:1px solid var(--border);padding:16px;border-radius:var(--radius-sm);}
.table-row{
  display:flex;gap:40px;
  border-bottom:1px solid rgba(0,0,0,0.04);
  padding:14px 0;
}
.table-row:last-child{border-bottom:0;padding-bottom:0;}
.table-row .left{font-size:15px;color:var(--text);font-weight:500;width:30%;flex-shrink:0;}
.table-row .right{font-size:15px;color:var(--muted);}

/* ── Notice ── */
.notice{
  padding:16px 24px;
  background:var(--surface);
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  text-align:center;
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
}
.notice strong{color:var(--text);}

/* ── About headshot ── */
.about-headshot img{
  width:100%;max-width:280px;
  border-radius:var(--radius);
  border:3px solid var(--primary-mid);
  box-shadow:0 4px 20px rgba(91,123,107,0.12);
}

/* ── About credential summary ── */
.cred-summary{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
  margin:0 0 14px;
}
.cred-summary strong{color:var(--text);font-weight:600;}

/* ── Embed ── */
.embed-frame{
  width:100%;min-height:720px;
  border:0;border-radius:var(--radius-sm);
  background:#fff;
}

/* ── Trust band / badges ── */
.trust-band{
  display:flex;gap:10px;flex-wrap:wrap;
  margin:1rem 0;
}
.badge{
  display:inline-block;
  background:var(--primary-light);
  padding:8px 18px;
  border-radius:var(--radius-pill);
  color:var(--primary);
  font-size:13px;font-weight:500;
}

/* ── Footer ── */
.site-footer{
  background:var(--dark);
  padding:52px var(--pad) 0;
  margin-top:24px;
}
.footer-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:48px;
}
.footer-title{
  font-family:var(--serif);
  font-size:22px;font-weight:500;
  color:#fff;margin:0 0 5px;
}
.footer-tagline{
  font-size:12px;
  color:rgba(255,255,255,0.60);
  line-height:1.5;margin:0 0 18px;
}
.footer-divider{
  border:none;
  border-top:1px solid rgba(255,255,255,0.08);
  margin:0 0 16px;
}
.footer-cred-name{
  font-size:13px;
  color:rgba(255,255,255,0.6);
  margin:0 0 3px;
}
.footer-cred-ids{
  font-size:11.5px;
  color:rgba(255,255,255,0.48);
  letter-spacing:0.01em;
  margin:0 0 20px;
}
.footer-cred-ids a{
  color:rgba(255,255,255,0.48);
  text-decoration:none;
}
.footer-cred-ids a:hover{color:rgba(255,255,255,0.6);}
.footer-cta{
  display:inline-block;
  font-size:12px;font-weight:600;
  color:#1E2A24;background:var(--accent);
  border-radius:6px;padding:8px 16px;
  text-decoration:none;letter-spacing:0.01em;
}
.footer-col-label{
  font-size:11px;font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(255,255,255,0.55);
  margin:0 0 12px;
}
.footer-sub-label{
  font-size:11px;font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(255,255,255,0.52);
  margin:18px 0 10px;
}
.footer-links{
  list-style:none;padding:0;margin:0;
}
.footer-links li{margin-bottom:4px;}
.footer-links a{
  font-size:13px;
  color:rgba(255,255,255,0.52);
  text-decoration:none;
  display:inline-block;
  padding:4px 0;
}
.footer-links a:hover{color:#fff;}
.footer-links .footer-link-cta{
  color:var(--accent);font-weight:600;
}
.footer-bottom{
  max-width:var(--max-width);
  margin:36px auto 0;
  border-top:1px solid rgba(196,149,106,0.25);
  padding:15px 0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;flex-wrap:wrap;
}
.footer-crisis{
  font-size:12px;
  color:rgba(196,149,106,0.95);
}
.footer-crisis strong{color:var(--accent);}
.footer-bottom-right{
  display:flex;align-items:center;
  gap:20px;flex-wrap:wrap;
}
.footer-legal{
  font-size:11px;
  color:rgba(255,255,255,0.52);
  line-height:1.5;text-align:right;
  max-width:420px;margin:0;
}
.footer-copyright{
  font-size:11px;
  color:rgba(255,255,255,0.52);
  white-space:nowrap;margin:0;
}

/* ── Scroll Reveal ── */
.reveal{
  opacity:0;transform:translateY(16px);
  transition:opacity .55s ease,transform .55s ease;
}
.reveal.visible{opacity:1;transform:translateY(0);}

/* ── Forms ── */
form{display:grid;gap:.85rem;}
label{font-weight:600;}
input,textarea,select{
  width:100%;padding:.7rem .8rem;
  border-radius:var(--radius-sm);
  border:1px solid rgba(44,44,42,0.15);
  font:inherit;background:#fff;
}
input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:none;box-shadow:var(--focus);
  border-color:rgba(91,123,107,0.35);
}
textarea{min-height:130px;}

/* ── Skip link ── */
.skip-link{
  position:absolute;left:-999px;top:0;
  background:#000;color:#fff;
  padding:.6rem .9rem;border-radius:8px;z-index:999;
}
.skip-link:focus{left:1rem;top:1rem;}

/* ── Responsive ── */
@media(max-width:991px){
  .nav-desktop{display:none!important;}
  .nav-mobile{display:block;}
  .site-header .container{position:relative;}
}
@media(max-width:860px){
  .footer-inner{grid-template-columns:1fr 1fr 1fr;gap:1.5rem;}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:12px;}
  .footer-bottom-right{flex-direction:column;align-items:flex-start;gap:8px;}
  .footer-legal{text-align:left;}
  .table-row{flex-direction:column;gap:4px;}
  .table-row .left{width:100%;}
  .hero-dark h1{font-size:36px;}
}
@media(max-width:680px){
  .footer-inner{grid-template-columns:1fr 1fr;gap:1.5rem;}
  .footer-inner>div:first-child{grid-column:1/-1;}
}
@media(max-width:560px){
  .footer-inner{grid-template-columns:1fr;}
}
@media(max-width:600px){
  .hero-dark{padding:100px var(--pad) 40px;}
  .hero-dark h1{font-size:30px;}
  .hero-quote{font-size:15px;}
  .hero-headshot{width:210px;height:210px;}
  .page-header{padding:90px var(--pad) 36px;}
  .page-header h1{font-size:28px;}
  .badge-strip{gap:16px;padding:12px var(--pad);}
  .badge-strip span{font-size:12px;}
  .brand{font-size:14px;}
  .card{padding:20px;}
  .btn{padding:12px 24px;font-size:14px;}
  .grid-2{gap:12px;}
}

/* ── ADHD highlight card ── */
.adhd-highlight{
  background:#1E2A24;
  background:linear-gradient(135deg, #1E2A24 0%, #263530 100%);
  border-radius:var(--radius);
  padding:32px;
  position:relative;
  overflow:hidden;
}
.adhd-highlight::before{
  content:'';position:absolute;
  top:-60px;right:-60px;
  width:200px;height:200px;
  border-radius:50%;
  border:1px solid rgba(196,149,106,0.12);
  pointer-events:none;
}
.adhd-highlight::after{
  content:'';position:absolute;
  top:-20px;right:0;
  width:140px;height:140px;
  border-radius:50%;
  border:1px solid rgba(196,149,106,0.06);
  pointer-events:none;
}
.adhd-highlight h2{color:#fff;margin-top:0;font-family:var(--serif);}
.adhd-highlight p{color:rgba(255,255,255,0.8);font-size:14px;line-height:1.6;margin:0 0 8px;}
.adhd-highlight .accent-line{
  width:32px;height:3px;background:var(--accent);border-radius:2px;margin-bottom:16px;
}
.adhd-highlight .cta-row .btn{position:relative;z-index:2;}

/* ── Cross-link ── */
.crosslink{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:20px 24px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:14px;
  transition:border-color .2s, box-shadow .2s;
}
.crosslink:hover{
  border-color:var(--primary-mid);
  box-shadow:var(--shadow);
}
.crosslink-icon{
  width:40px;height:40px;
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:18px;
}
.crosslink-icon.teal{background:var(--primary-light);color:var(--primary);}
.crosslink-label{font-size:14px;font-weight:600;color:var(--text);}
.crosslink-sub{font-size:12px;color:var(--muted);margin-top:1px;}

/* ── Page header decorative rings ── */
.page-header{position:relative;overflow:hidden;}
.page-header .hero-ring{
  position:absolute;border-radius:50%;
  border:1px solid rgba(91,123,107,0.06);pointer-events:none;
}
.page-header .hero-ring.lg{width:500px;height:500px;top:-100px;right:-100px;}
.page-header .hero-ring.sm{width:340px;height:340px;top:-40px;right:-20px;border-color:rgba(91,123,107,0.03);}
.page-header .body-narrow{position:relative;z-index:2;}

/* ── About page: credential highlight ── */
.cred-highlight{
  background:linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius:var(--radius);
  padding:24px 28px;
  margin-top:16px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:flex-start;
  gap:20px;
}
.cred-highlight::before{
  content:'';position:absolute;
  top:-40px;right:-40px;
  width:160px;height:160px;
  border-radius:50%;
  border:1px solid rgba(196,149,106,0.1);
  pointer-events:none;
}
.cred-icon{
  width:44px;height:44px;
  border-radius:10px;
  background:var(--accent);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:20px;font-weight:700;
}
.cred-highlight-text{position:relative;z-index:2;}
.cred-highlight-text .label{font-size:11px;text-transform:uppercase;letter-spacing:0.1em;color:var(--accent);font-weight:600;margin:0 0 4px;}
.cred-highlight-text .title{font-size:15px;font-weight:600;color:#fff;margin:0 0 3px;}
.cred-highlight-text .sub{font-size:13px;color:rgba(255,255,255,0.45);margin:0;}

/* ── About page: education grid ── */
.edu-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.edu-item{
  background:var(--bg);
  border-radius:var(--radius-sm);
  padding:14px 16px;
  border:1px solid var(--border);
}
.edu-degree{font-size:14px;font-weight:600;color:var(--text);margin:0 0 2px;}
.edu-school{font-size:12px;color:var(--muted);margin:0;}

/* ── About page: publication list ── */
.pub-item{padding:14px 0;border-bottom:1px solid var(--border);}
.pub-item:last-child{border-bottom:none;}
.pub-title{font-size:14px;color:var(--text);line-height:1.5;margin:0 0 3px;}
.pub-journal{font-size:12px;color:var(--muted);font-style:italic;margin:0;}
.pub-tag{
  display:inline-block;font-size:11px;font-weight:600;
  text-transform:uppercase;letter-spacing:0.06em;
  padding:6px 12px;border-radius:4px;
  margin-left:6px;vertical-align:middle;
}
.pub-tag.new{background:var(--accent-light);color:var(--accent);}

@media(max-width:600px){
  .adhd-highlight{padding:24px;}
  .cred-highlight{flex-direction:column;gap:12px;}
  .edu-grid{grid-template-columns:1fr;}
}

/* ── Sticky Mobile CTA Bar (Rec 3) ── */
.mobile-cta-bar{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:80;
  background:var(--dark);
  border-top:1px solid rgba(196,149,106,0.18);
  padding:10px var(--pad);
  gap:10px;
  align-items:center;
  justify-content:center;
}
.mobile-cta-bar .btn{
  flex:1;max-width:200px;
  text-align:center;
  padding:12px 16px;
  font-size:13px;
}
.mobile-cta-bar .btn-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  background:transparent;
  border:1.5px solid rgba(255,255,255,0.2);
  color:rgba(255,255,255,0.75);
  border-radius:var(--radius-sm);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  padding:12px 16px;
  flex:0 0 auto;
}
.mobile-cta-bar .btn-call:hover{
  background:rgba(255,255,255,0.06);
  color:#fff;
}
@media(max-width:991px){
  .mobile-cta-bar{display:flex;}
  body{padding-bottom:64px;}
}

/* ── Credential Badges (Rec 7) ── */
.trust-strip{
  padding:24px var(--pad) 20px;
  text-align:center;
}
.trust-strip-label{
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:600;
  margin:0 0 12px;
}
.trust-badges{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.trust-badge{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:500;
  color:var(--text);
}
.trust-badge-icon{
  width:32px;height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
  flex-shrink:0;
  background:var(--primary-light);
  color:var(--primary);
}

/* ── Insurance Logo Strip (Rec 7) ── */
.insurance-strip{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
  padding:8px 0 4px;
}
.insurance-strip-item{
  font-size:13px;
  font-weight:600;
  color:var(--muted);
  letter-spacing:0.01em;
  opacity:0.7;
}
@media(max-width:600px){
  .trust-badges{gap:16px;}
  .trust-badge{font-size:12px;}
  .trust-badge-icon{width:28px;height:28px;font-size:12px;}
  .insurance-strip{gap:16px;}
  .insurance-strip-item{font-size:12px;}
}
