/** Site Theme Tokens **/

:root {
    --core-site-font-body: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    --core-site-color-text: var(--color-text);
    --core-site-color-link: var(--color-slate-dark);
    --core-accent: var(--color-brand);
    --core-radius: 12px;
}
body { font-family: var(--core-site-font-body); }
body { color: var(--core-site-color-text); }
a { color: var(--core-site-color-link); }


/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ============================================================
   Objective Psychology — site-wide styles
   Deep ink navy base + slate accent. Outfit body font, Gloock
   display serif. Section-specific CSS lives on each section.
   ============================================================ */ /* ---- design tokens: primitive palette + semantic anchors ---- */ :root  {
  /* Ink navy — the brand base. Dark field for heroes and bands. */ --color-navy: #142639;
  --color-navy-dark: #0E1A2B;
  --color-navy-light: #1B3149;
  /* Slate — the accent. Muted blue-grey used for emphasis + actions. */ --color-slate: #5B6B82;
  --color-slate-dark: #455366;
  --color-slate-light: #B5BCC7;
  --color-slate-lightest: #E5E7EB;
  /* Mist — cool light neutrals for alternating light bands. */ --color-mist: #EFF2F5;
  --color-mist-light: #F7F9FB;
  --color-white: #FFFFFF;
  /* Semantic anchors */ --color-brand: var(--color-slate);
  --color-text: #16273A;
  --color-bg: var(--color-mist);
  /* Supporting text tones */ --color-text-2: #4C5C6E;
  --color-text-muted: #7C8896;
  --color-on-dark: #F1EBE0;
  --color-on-dark-2: #C2CDDA;
  --color-on-dark-muted: #8B99AB;
  /* Lines + radii + motion */ --line-on-light: rgba(16,32,52,0.10);
  --line-on-dark: rgba(233,226,214,0.14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --pill: 999px;
  --ease: cubic-bezier(0.2,0.8,0.2,1);
  --shadow-soft: 0 18px 48px -24px rgba(14,26,43,0.45);
  /* Core component anchors without a theme-token knob */ --core-border: var(--line-on-light);
  --core-muted: var(--color-text-muted);
}
/* ---- background utilities (one per selectable primitive) ---- */ .bg-navy  {
  background-color:var(--color-navy)
}
.bg-navy-dark  {
  background-color:var(--color-navy-dark)
}
.bg-navy-light  {
  background-color:var(--color-navy-light)
}
.bg-slate  {
  background-color:var(--color-slate)
}
.bg-slate-light  {
  background-color:var(--color-slate-light)
}
.bg-slate-lightest  {
  background-color:var(--color-slate-lightest)
}
.bg-mist  {
  background-color:var(--color-mist)
}
.bg-mist-light  {
  background-color:var(--color-mist-light)
}
.bg-white  {
  background-color:var(--color-white)
}
/* ---- base ---- */ body  {
  background:var(--color-bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility
}
h1,h2,h3,h4,p  {
  text-wrap:pretty
}
a:hover  {
  color:var(--color-slate)
}
::selection  {
  background:var(--color-slate-light);
  color:var(--color-navy-dark)
}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,summary:focus-visible  {
  outline:2.5px solid var(--color-slate);
  outline-offset:3px;
  border-radius:6px
}
/* Material Symbols */ .material-symbols-outlined  {
  font-variation-settings:'FILL' 0,'wght' 300,'GRAD' 0,'opsz' 24;
  vertical-align:middle;
  user-select:none;
  line-height:1
}
/* ---- shared atoms (used across many sections) ---- */ .op-eyebrow  {
  margin:0 0 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--color-slate-dark)
}
.op-eyebrow.on-dark  {
  color:var(--color-slate-light)
}
.op-eyebrow.centered  {
  text-align:center
}
.accentword  {
  color:var(--color-slate-light)
}
.op-btn  {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:none;
  border-radius:var(--pill);
  font-family:inherit;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  letter-spacing:.01em;
  transition:background .2s var(--ease),color .2s var(--ease),border-color .2s var(--ease),transform .18s var(--ease);
  white-space:nowrap
}
.op-btn:active  {
  transform:translateY(1px)
}
.op-btn--lg  {
  font-size:16.5px;
  padding:16px 30px
}
.op-btn--sm  {
  font-size:14px;
  padding:11px 22px
}
.op-btn--primary  {
  background:var(--color-slate);
  color:#fff
}
.op-btn--primary:hover  {
  background:var(--color-slate-dark);
  color:#fff
}
.op-btn--ghost-light  {
  background:transparent;
  color:var(--color-on-dark);
  border:1px solid #fff
}
.op-btn--ghost-light:hover  {
  background:rgba(255,255,255,.1);
  color:#fff
}
.op-btn--ghost-dark  {
  background:transparent;
  color:var(--color-text);
  box-shadow:inset 0 0 0 1.5px var(--color-text-2)
}
.op-btn--ghost-dark:hover  {
  box-shadow:inset 0 0 0 1.5px var(--color-slate);
  color:var(--color-slate-dark)
}
.op-link  {
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:none;
  border:none;
  padding:0;
  font-family:inherit;
  font-size:15px;
  font-weight:600;
  color:var(--color-slate-dark);
  cursor:pointer;
  text-decoration:none
}
.op-link:hover  {
  color:var(--color-slate)
}
.op-link .material-symbols-outlined  {
  font-size:18px
}
.op-trust  {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px 34px;
  font-size:14px;
  font-weight:500
}
.op-trust.on-dark  {
  color:var(--color-on-dark-2)
}
.op-trust.on-light  {
  color:var(--color-text-2)
}
.op-trust-item  {
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap
}
.op-trust-item .material-symbols-outlined  {
  font-size:19px;
  color:var(--color-slate-light)
}
.op-trust.on-light .op-trust-item .material-symbols-outlined  {
  color:var(--color-slate)
}
/* CTA button rows (home hero + CTA banner) */ .hero-ctas  {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  margin-top:38px
}
/* ---- section heads + prose (shared across sections) ---- */ .op-sechead  {
  max-width:64ch
}
.op-sechead h2,.section-h2  {
  margin:6px 0 0;
  font-weight:600;
  letter-spacing:-.02em;
  font-size:clamp(30px,3.4vw,46px);
  line-height:1.08
}
.op-sechead-lead  {
  margin:16px 0 0;
  font-size:18px;
  line-height:1.6;
  color:var(--color-text-2);
  max-width:52ch
}
.on-dark-band .op-sechead-lead  {
  color:var(--color-on-dark-2)
}
.on-dark-band .op-sechead h2 .accentword  {
  color:var(--color-slate-light)
}
.op-sechead h2 .accentword  {
  color:var(--color-slate-dark)
}
.op-prose .op-prose-lead  {
  font-size:21px;
  line-height:1.55;
  font-weight:500;
  color:var(--color-text);
  margin:0 0 20px;
  letter-spacing:-.01em
}
.op-prose p  {
  margin:0 0 18px;
  font-size:17px;
  line-height:1.68;
  color:var(--color-text-2)
}
.op-prose p:last-child  {
  margin-bottom:0
}
/* ---- page hero (internal pages; background image set per section) ---- */ .page-hero  {
  color:var(--color-on-dark)
}
.page-hero h1  {
  margin:14px 0 0;
  max-width:19ch;
  font-family:"Gloock",Georgia,serif;
  font-weight:400;
  font-size:clamp(40px,5vw,68px);
  line-height:1.1;
  color:var(--color-on-dark);
  text-shadow:0 2px 30px rgba(6,14,24,.4)
}
.page-hero h1 .accentword  {
  color:var(--color-slate-light)
}
.page-hero-sub  {
  margin:22px 0 0;
  max-width:56ch;
  font-size:19px;
  line-height:1.6;
  color:var(--color-on-dark-2)
}
.page-hero .op-trust  {
  margin-top:38px
}
/* ---- sign cards (ADHD / legal / course sections) ---- */ .signs-grid  {
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px
}
.sign-card  {
  padding:30px 28px;
  background:var(--color-white);
  border:1px solid var(--line-on-light);
  border-radius:var(--radius);
  transition:border-color .2s var(--ease),transform .2s var(--ease),box-shadow .2s var(--ease)
}
.sign-card:hover  {
  border-color:var(--color-slate);
  transform:translateY(-3px);
  box-shadow:var(--shadow-soft)
}
.sign-ico  {
  width:52px;
  height:52px;
  border-radius:14px;
  place-items:center;
  margin-bottom:20px;
  background:var(--color-slate);
  color:#fff;
  display:grid
}
.sign-ico .material-symbols-outlined  {
  font-size:28px
}
.sign-card h3  {
  margin:0 0 9px;
  font-size:18px;
  font-weight:600;
  letter-spacing:-.01em;
  line-height:1.25
}
.sign-card p  {
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:var(--color-text-2)
}
.signs-note  {
  margin:32px auto 0;
  max-width:64ch;
  text-align:center;
  font-size:15.5px;
  line-height:1.6;
  color:var(--color-text-muted)
}
/* ---- two-col "why" sections (ADHD + legal) ---- */ .why-band .why-grid  {
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:clamp(32px,6vw,88px);
  align-items:start
}
/* ---- photo panels (used on 5 pages) ---- */ .photo-panel-head  {
  max-width:60ch;
  margin-bottom:40px
}
.photo-panel-head h2  {
  margin:6px 0 0;
  font-family:"Gloock",Georgia,serif;
  font-weight:400;
  font-size:clamp(28px,3.2vw,42px);
  line-height:1.1
}
.photo-panel-lead  {
  margin:14px 0 0;
  font-size:17px;
  line-height:1.6;
  color:var(--color-text-2);
  max-width:50ch
}
.photo-grid img  {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  display:block;
  box-shadow:var(--shadow-soft)
}
.photo-grid-one img  {
  height:clamp(280px,42vw,520px)
}
.photo-grid-two  {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}
.photo-grid-two img  {
  height:clamp(260px,30vw,420px)
}
.photo-grid-three  {
  display:grid;
  grid-template-columns:1.45fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:20px
}
.photo-grid-three img:nth-child(1)  {
  grid-row:1/3;
  height:100%;
  min-height:clamp(340px,42vw,540px)
}
.photo-grid-three img:nth-child(2),.photo-grid-three img:nth-child(3)  {
  height:clamp(160px,20vw,260px)
}
.photo-grid-four  {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  align-items:start
}
.photo-grid-four img  {
  height:clamp(220px,24vw,320px)
}
.photo-grid-four img:nth-child(even)  {
  margin-top:36px
}
.photo-grid-split  {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:clamp(24px,4vw,56px);
  align-items:stretch
}
.photo-grid-split img  {
  height:clamp(300px,38vw,460px)
}
.photo-caption  {
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px
}
.photo-caption .material-symbols-outlined  {
  font-size:38px;
  color:var(--color-slate-dark)
}
.photo-caption p  {
  margin:0;
  font-family:"Gloock",Georgia,serif;
  font-size:clamp(20px,2.2vw,27px);
  line-height:1.32;
  color:var(--color-text)
}
/* ---- enquiry tray (auto-injected snippet; uses core-tray-modal) ---- */ .core-tray-panel  {
  padding:3rem 2.5rem
}
.tray-head h3  {
  margin:0;
  font-size:24px;
  font-weight:600;
  letter-spacing:-.01em;
  color:var(--color-text)
}
.tray-head p  {
  margin:10px 0 0;
  font-size:15px;
  line-height:1.55;
  color:var(--color-text-2)
}
.tray-form  {
  margin-top:28px
}
.tray-form label  {
  font-size:14px;
  font-weight:600;
  color:var(--color-text)
}
.chip-set  {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px
}
.chip-set input[type="checkbox"],.chip-set input[type="radio"]  {
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  border:0;
  clip-path:inset(50%);
  overflow:hidden
}
.chip-set label  {
  display:inline-flex;
  align-items:center;
  padding:8px 16px;
  border-radius:var(--pill);
  border:1px solid var(--line-on-light);
  background:var(--color-mist-light);
  font-size:13.5px;
  font-weight:600;
  color:var(--color-text-2);
  cursor:pointer;
  transition:all .16s var(--ease)
}
.chip-set label:hover  {
  border-color:var(--color-slate);
  color:var(--color-slate-dark)
}
.chip-set input:checked+label  {
  background:var(--color-slate);
  border-color:var(--color-slate);
  color:#fff
}
.chip-set input:focus-visible+label  {
  outline:2.5px solid var(--color-slate);
  outline-offset:2px
}
.tray-note  {
  display:flex;
  align-items:center;
  gap:9px;
  margin-top:18px;
  font-size:13px;
  color:var(--color-text-muted)
}
.tray-note .material-symbols-outlined  {
  font-size:16px;
  color:var(--color-slate-dark)
}
.tray-success  {
  display:none;
  text-align:center;
  padding:48px 0
}
.tray-success h3  {
  margin:0 0 12px;
  font-size:24px;
  font-weight:600
}
.tray-success p  {
  font-size:15.5px;
  line-height:1.6;
  color:var(--color-text-2)
}
.tray-sent .tray-success  {
  display:block
}
.tray-sent .tray-form,.tray-sent .tray-head p  {
  display:none
}
/* ---- site-wide responsive ---- */ @media (max-width:1023px)  {
  .signs-grid  {
    grid-template-columns:repeat(2,1fr)
  }
  .why-band .why-grid  {
    grid-template-columns:1fr;
    gap:32px
  }
}
@media (max-width:767px)  {
  .hero-ctas  {
    flex-direction:column;
    align-items:stretch
  }
  .photo-grid-two,.photo-grid-three,.photo-grid-four,.photo-grid-split  {
    grid-template-columns:1fr
  }
  .photo-grid-three img:nth-child(1)  {
    grid-row:auto;
    min-height:0;
    height:clamp(240px,50vw,360px)
  }
  .photo-grid-four img:nth-child(even)  {
    margin-top:0
  }
}
@media (max-width:639px)  {
  .signs-grid  {
    grid-template-columns:1fr
  }
}


 /** Content Section Styles **/ 

.content-section-2804  {
  &.content-section  {
    border-bottom:1px solid var(--line-on-dark)
  }
  .content-section-inner  {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding-top:16px;
    padding-bottom:16px
  }
  .site-logo  {
    display:inline-flex;
    align-items:center
  }
  .site-logo img  {
    height:45px;
    width:auto;
    display:block
  }
  .core-menu-link  {
    font-weight:500;
    transition:color .18s var(--ease)
  }
  .header-cta  {
    display:flex;
    align-items:center;
    gap:12px;
    flex:none
  }
  .header-phone  {
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:14.5px;
    font-weight:600;
    color:var(--color-on-dark);
    text-decoration:none;
    padding:8px 10px
  }
  .header-phone .material-symbols-outlined  {
    font-size:19px;
    color:var(--color-slate-light)
  }
  .header-phone:hover  {
    color:var(--color-slate-light)
  }
  @media (max-width: 1279px)  {
    .core-menu:not(.is-collapsed)  {
      --core-menu-gap:16px;
      --core-menu-font-size:14px
    }
  }
}
.content-section-2805  {
  padding-top: 64px;
  padding-bottom: 36px;
  &.content-section  {
    color:var(--color-on-dark-2)
  }
  .content-section-inner  {
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px
  }
  .footer-bottom  {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:12px 24px;
    margin-top:48px;
    padding-top:24px;
    border-top:1px solid var(--line-on-dark);
    font-size:13px;
    color:var(--color-on-dark-muted);
    grid-column:1/-1
  }
  .site-logo  {
    display:inline-flex;
    align-items:center
  }
  .site-logo img  {
    width:auto;
    display:block
  }
  .footer-blurb  {
    margin:18px 0 0;
    font-size:14.5px;
    line-height:1.6;
    max-width:34ch
  }
  h3  {
    margin:4px 0 16px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--color-on-dark)
  }
  ul  {
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:11px
  }
  ul a,.footer-static  {
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14.5px;
    color:var(--color-on-dark-2);
    text-decoration:none
  }
  ul a:hover  {
    color:var(--color-on-dark)
  }
  ul .material-symbols-outlined  {
    font-size:18px;
    color:var(--color-slate-light)
  }
  .core-menu-list  {
    display:grid;
    gap:11px
  }
  .footer-cta  {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    margin-top:18px
  }
  .footer-call  {
    color:var(--color-on-dark-2);
    font-size:13.5px
  }
  .footer-call:hover  {
    color:var(--color-slate-light)
  }
  .footer-bottom .material-symbols-outlined  {
    font-size:16px
  }
  @media (max-width: 1023px)  {
    .content-section-inner  {
      grid-template-columns:1fr 1fr
    }
  }
  @media (max-width: 639px)  {
    .content-section-inner  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2806  {
  background: linear-gradient(180deg,rgba(9,18,30,.64) 0%,rgba(9,18,30,.40) 30%,rgba(11,21,34,.46) 60%,rgba(7,14,24,.72) 100%),url('/site-assets/images/mountain-hero.jpg') center 38%/cover no-repeat;
  &.content-section  {
    color:var(--color-on-dark);
    text-align:center;
    min-height:82vh;
    display:flex;
    align-items:center
  }
  .content-section-inner  {
    width:100%
  }
  h1  {
    margin:0 auto;
    max-width:22ch;
    font-family:"Gloock",Georgia,serif;
    font-weight:400;
    font-size:clamp(40px,5vw,70px);
    line-height:1.08;
    color:#fff;
    text-shadow:0 2px 30px rgba(6,14,24,.55)
  }
  .hero-lede  {
    margin:24px auto 0;
    max-width:56ch;
    font-size:19px;
    line-height:1.6;
    color:#fff;
    text-shadow:0 1px 18px rgba(6,14,24,.6)
  }
  .hero-trust  {
    margin-top:65px;
    display:flex;
    justify-content:center
  }
  .hero-trust .op-trust  {
    justify-content:center
  }
  @media (max-width: 767px)  {
    &.content-section  {
      min-height:70vh
    }
  }
}
.content-section-2807  {
  &.content-section  {
    color:var(--color-on-dark)
  }
  h2  {
    margin:0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(32px,3.6vw,50px);
    line-height:1.06
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .conditions-head  {
    max-width:720px
  }
  .conditions-lead  {
    margin:18px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .cond-grid  {
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px
  }
  .cond-card  {
    display:flex;
    flex-direction:column;
    gap:0;
    text-align:left;
    padding:24px 22px;
    border-radius:var(--radius);
    background:var(--color-navy-light);
    border:1px solid var(--line-on-dark);
    color:var(--color-on-dark);
    font-family:inherit;
    cursor:pointer;
    transition:transform .2s var(--ease),border-color .2s var(--ease),background .2s var(--ease);
    text-decoration:none
  }
  .cond-card:hover  {
    transform:translateY(-3px);
    border-color:var(--color-slate-light);
    background:var(--color-navy-light);
    color:var(--color-on-dark)
  }
  .cond-ico  {
    width:46px;
    height:46px;
    border-radius:12px;
    display:grid;
    place-items:center;
    margin-bottom:16px;
    background:var(--color-slate);
    color:#fff
  }
  .cond-ico .material-symbols-outlined  {
    font-size:25px
  }
  .cond-title  {
    font-size:17.5px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .cond-tag  {
    display:block;
    margin-top:7px;
    font-size:13px;
    line-height:1.5;
    color:var(--color-on-dark-muted)
  }
  .cond-arrow  {
    margin-top:12px;
    color:var(--color-slate-light);
    opacity:0;
    transform:translateX(-6px);
    transition:opacity .2s var(--ease),transform .2s var(--ease)
  }
  .cond-card:hover .cond-arrow  {
    opacity:1;
    transform:none
  }
  .cond-foothelp  {
    margin-top:38px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px 14px;
    font-size:15px;
    color:var(--color-on-dark-2)
  }
  .cond-foothelp .op-link  {
    color:var(--color-slate-light)
  }
  @media (max-width: 1279px)  {
    .cond-grid  {
      grid-template-columns:repeat(3,1fr)
    }
  }
  @media (max-width: 767px)  {
    .cond-grid  {
      grid-template-columns:repeat(2,1fr)
    }
  }
  @media (max-width: 639px)  {
    .cond-grid  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2808  {
  .approach-grid  {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:clamp(40px,6vw,88px);
    align-items:start
  }
  h2  {
    margin:0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.2vw,44px);
    line-height:1.08
  }
  .approach-lead  {
    margin:18px 0 0;
    font-size:17px;
    line-height:1.65;
    color:var(--color-text-2)
  }
  .approach-list  {
    display:flex;
    flex-direction:column;
    gap:14px
  }
  .approach-item  {
    display:flex;
    gap:18px;
    padding:24px 26px;
    border-radius:var(--radius);
    background:var(--color-mist-light);
    border:1px solid var(--line-on-light)
  }
  .approach-ico  {
    flex:none;
    width:48px;
    height:48px;
    border-radius:13px;
    display:grid;
    place-items:center;
    background:var(--color-slate-lightest);
    color:var(--color-slate-dark)
  }
  .approach-ico .material-symbols-outlined  {
    font-size:26px
  }
  .approach-item h3  {
    margin:2px 0 7px;
    font-size:18px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .approach-item p  {
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:var(--color-text-2)
  }
  @media (max-width: 1023px)  {
    .approach-grid  {
      grid-template-columns:1fr;
      gap:32px
    }
  }
}
.content-section-2809  {
  padding-top: 0rem;
  padding-bottom: 6.5rem;
  .cta-strip-card  {
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:nowrap;
    gap:24px 40px;
    padding:22px 32px;
    border-radius:var(--radius);
    background:linear-gradient(90deg,rgba(20,38,57,.88),rgba(20,38,57,.72)),url('/site-assets/images/cta-hills.jpg') center 42%/cover no-repeat;
    color:var(--color-on-dark)
  }
  .cta-strip-card p  {
    margin:0;
    font-size:18px;
    font-weight:500;
    line-height:1.4;
    letter-spacing:-.01em;
    color:#fff
  }
  .cta-strip-ctas  {
    display:flex;
    align-items:center;
    gap:18px;
    flex:none
  }
  .cta-strip-call  {
    color:var(--color-on-dark-2);
    font-size:14px;
    white-space:nowrap
  }
  .cta-strip-call:hover  {
    color:var(--color-slate-light)
  }
  @media (max-width: 1023px)  {
    .cta-strip-card  {
      flex-wrap:wrap;
      flex-direction:column;
      align-items:flex-start
    }
  }
}
.content-section-2810  {
  &.content-section  {
    color:var(--color-on-dark)
  }
  .about-grid  {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:clamp(36px,4vw,68px);
    align-items:start
  }
  h2  {
    margin:0 0 22px;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.2vw,44px);
    line-height:1.08
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .op-about-body  {
    margin:0 0 16px;
    font-size:16.5px;
    line-height:1.66;
    color:var(--color-on-dark-2)
  }
  .op-about-link  {
    color:var(--color-slate-light);
    font-weight:600;
    text-decoration:underline;
    text-underline-offset:3px;
    background:none;
    border:none;
    padding:0;
    font-family:inherit;
    font-size:inherit;
    cursor:pointer
  }
  .op-about-link:hover  {
    color:#fff
  }
  .about-portrait  {
    position:relative;
    max-width:420px;
    justify-self:end
  }
  .about-portrait img  {
    width:100%;
    border-radius:var(--radius-lg);
    display:block;
    position:relative;
    z-index:1
  }
  .frame-accent  {
    position:absolute;
    inset:auto -18px -18px auto;
    width:62%;
    height:62%;
    border:1.5px solid var(--color-slate);
    border-radius:var(--radius-lg);
    z-index:0
  }
  .about-credchips  {
    position:relative;
    z-index:2;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:16px
  }
  .about-cred  {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 16px;
    border-radius:var(--pill);
    background:var(--color-navy-light);
    border:1px solid var(--line-on-dark);
    font-size:13.5px;
    font-weight:600;
    color:var(--color-on-dark)
  }
  .about-cred .material-symbols-outlined  {
    font-size:18px;
    color:var(--color-slate-light)
  }
  @media (max-width: 1023px)  {
    .about-grid  {
      grid-template-columns:1fr;
      gap:32px
    }
    .about-portrait  {
      justify-self:start
    }
  }
}
.content-section-2811  {
  &.content-section  {
    position:relative;
    overflow:hidden;
    color:var(--color-on-dark)
  }
  .process-glow  {
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.5;
    background:radial-gradient(55% 110% at 18% 0%,rgba(91,107,130,.35),transparent 60%)
  }
  .process-body  {
    position:relative;
    z-index:1
  }
  h2  {
    margin:0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.08
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .process-head  {
    max-width:64ch
  }
  .process-lead  {
    margin:16px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .process-steps  {
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:clamp(20px,3vw,40px)
  }
  .process-step  {
    padding-top:26px;
    border-top:2px solid var(--line-on-dark)
  }
  .process-top  {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px
  }
  .process-ico  {
    width:52px;
    height:52px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:rgba(91,107,130,.28);
    color:var(--color-slate-light)
  }
  .process-ico .material-symbols-outlined  {
    font-size:28px
  }
  .process-n  {
    font-size:14px;
    font-weight:700;
    letter-spacing:.14em;
    color:var(--color-slate-light);
    opacity:.8
  }
  .process-step h3  {
    margin:0 0 9px;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .process-step p  {
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  @media (max-width: 1023px)  {
    .process-steps  {
      grid-template-columns:1fr;
      gap:0
    }
    .process-step  {
      padding:24px 0
    }
  }
}
.content-section-2812  {
  .services-head  {
    max-width:64ch
  }
  h2  {
    margin:0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.08
  }
  .services-lead  {
    margin:16px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-text-2)
  }
  .services-grid  {
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px
  }
  .service-card  {
    padding:30px 28px;
    background:var(--color-white);
    border:1px solid var(--line-on-light);
    border-radius:var(--radius);
    transition:border-color .2s var(--ease),transform .2s var(--ease),box-shadow .2s var(--ease)
  }
  .service-card:hover  {
    border-color:var(--color-slate);
    transform:translateY(-2px);
    box-shadow:var(--shadow-soft)
  }
  .service-ico  {
    width:52px;
    height:52px;
    border-radius:14px;
    display:grid;
    place-items:center;
    margin-bottom:20px;
    background:var(--color-slate);
    color:#fff
  }
  .service-ico .material-symbols-outlined  {
    font-size:28px
  }
  .service-card h3  {
    margin:0 0 9px;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .service-card p  {
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:var(--color-text-2)
  }
  .service-tags  {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:16px
  }
  .service-tag  {
    font-size:12px;
    font-weight:600;
    padding:5px 12px;
    border-radius:var(--pill);
    background:var(--color-slate-lightest);
    color:var(--color-slate-dark)
  }
  @media (max-width: 767px)  {
    .services-grid  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2813  {
  .faq-grid  {
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:clamp(32px,6vw,88px);
    align-items:start
  }
  h2  {
    margin:6px 0 0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.08
  }
  .faq-lead  {
    margin:18px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-text-2);
    max-width:38ch
  }
  .core-accordion-01>*+*  {
    margin-top:0
  }
  .core-accordion-01 details  {
    padding:0;
    border-top:1px solid var(--line-on-light)
  }
  .core-accordion-01 details:last-child  {
    border-bottom:1px solid var(--line-on-light)
  }
  .core-accordion-01 details summary  {
    padding:26px 40px 26px 4px;
    font-family:inherit;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.01em;
    color:var(--color-text);
    line-height:1.32
  }
  .core-accordion-01 details summary:hover  {
    color:var(--color-slate-dark)
  }
  .core-accordion-01 details summary::after  {
    color:var(--color-slate-dark);
    right:8px
  }
  .core-accordion-01 details[open] summary  {
    margin-bottom:0
  }
  .core-accordion-01 details p  {
    margin:0;
    padding:0 56px 28px 4px;
    font-size:16px;
    line-height:1.62;
    color:var(--color-text-2)
  }
  @media (max-width: 1023px)  {
    .faq-grid  {
      grid-template-columns:1fr;
      gap:28px
    }
  }
}
.content-section-2814  {
  background: linear-gradient(180deg,rgba(14,26,43,.78),rgba(14,26,43,.66)),url('/site-assets/images/cta-hills.jpg') center 38%/cover no-repeat;
  &.content-section  {
    color:var(--color-on-dark);
    text-align:center
  }
  h2  {
    margin:0 auto;
    max-width:26ch;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.6vw,48px);
    line-height:1.1;
    color:#fff
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .cta-banner-lede  {
    margin:20px auto 0;
    max-width:58ch;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .hero-ctas  {
    margin-top:34px
  }
  .op-trust  {
    margin-top:34px;
    justify-content:center
  }
}
.content-section-2815  {
  background: linear-gradient(180deg,rgba(20,38,57,.80) 0%,rgba(20,38,57,.70) 45%,rgba(20,38,57,.90) 100%),url('/site-assets/images/cta-hills.jpg') center 40%/cover no-repeat;
}
.content-section-2816  {
  .about-story-grid  {
    display:grid;
    grid-template-columns:.86fr 1.14fr;
    gap:clamp(36px,6vw,88px);
    align-items:start
  }
  .about-story-photo  {
    position:relative
  }
  .about-story-photo img  {
    width:100%;
    border-radius:var(--radius-lg);
    display:block;
    position:relative;
    z-index:1
  }
  @media (max-width: 1023px)  {
    .about-story-grid  {
      grid-template-columns:1fr;
      gap:32px
    }
    .about-story-photo  {
      max-width:420px
    }
  }
}
.content-section-2817  {
  &.content-section  {
    color:var(--color-on-dark)
  }
  .creds-grid  {
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px
  }
  .cred-card  {
    padding:28px 26px;
    border-radius:var(--radius);
    border:1px solid var(--line-on-dark);
    background:rgba(255,255,255,.04)
  }
  .cred-ico  {
    width:50px;
    height:50px;
    border-radius:13px;
    display:grid;
    place-items:center;
    margin-bottom:18px;
    background:rgba(91,107,130,.28);
    color:var(--color-slate-light)
  }
  .cred-ico .material-symbols-outlined  {
    font-size:27px
  }
  .cred-card h3  {
    margin:0 0 8px;
    font-size:18px;
    font-weight:600;
    letter-spacing:-.01em;
    line-height:1.25
  }
  .cred-card p  {
    margin:0;
    font-size:14.5px;
    line-height:1.55;
    color:var(--color-on-dark-2)
  }
  @media (max-width: 1023px)  {
    .creds-grid  {
      grid-template-columns:repeat(2,1fr)
    }
  }
  @media (max-width: 639px)  {
    .creds-grid  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2818  {
  .approach-grid  {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:clamp(40px,6vw,88px);
    align-items:start
  }
  h2  {
    margin:0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.2vw,44px);
    line-height:1.08
  }
  .approach-lead  {
    margin:18px 0 0;
    font-size:17px;
    line-height:1.65;
    color:var(--color-text-2)
  }
  .approach-list  {
    display:flex;
    flex-direction:column;
    gap:14px
  }
  .approach-item  {
    display:flex;
    gap:18px;
    padding:24px 26px;
    border-radius:var(--radius);
    background:var(--color-mist-light);
    border:1px solid var(--line-on-light)
  }
  .approach-ico  {
    flex:none;
    width:48px;
    height:48px;
    border-radius:13px;
    display:grid;
    place-items:center;
    background:var(--color-slate-lightest);
    color:var(--color-slate-dark)
  }
  .approach-ico .material-symbols-outlined  {
    font-size:26px
  }
  .approach-item h3  {
    margin:2px 0 7px;
    font-size:18px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .approach-item p  {
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:var(--color-text-2)
  }
  @media (max-width: 1023px)  {
    .approach-grid  {
      grid-template-columns:1fr;
      gap:32px
    }
  }
}
.content-section-2819  {
}
.content-section-2820  {
  background: linear-gradient(180deg,rgba(14,26,43,.78),rgba(14,26,43,.66)),url('/site-assets/images/cta-hills.jpg') center 38%/cover no-repeat;
  &.content-section  {
    color:var(--color-on-dark);
    text-align:center
  }
  h2  {
    margin:0 auto;
    max-width:26ch;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.6vw,48px);
    line-height:1.1;
    color:#fff
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .cta-banner-lede  {
    margin:20px auto 0;
    max-width:58ch;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .hero-ctas  {
    margin-top:34px
  }
  .op-trust  {
    margin-top:34px;
    justify-content:center
  }
}
.content-section-2821  {
  background: linear-gradient(180deg,rgba(20,38,57,.80) 0%,rgba(20,38,57,.70) 45%,rgba(20,38,57,.90) 100%),url('/site-assets/images/cta-hills.jpg') center 40%/cover no-repeat;
}
.content-section-2822  {
  .services-head  {
    max-width:64ch
  }
  h2  {
    margin:0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.08
  }
  .services-lead  {
    margin:16px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-text-2)
  }
  .services-grid  {
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px
  }
  .service-card  {
    padding:30px 28px;
    background:var(--color-white);
    border:1px solid var(--line-on-light);
    border-radius:var(--radius);
    transition:border-color .2s var(--ease),transform .2s var(--ease),box-shadow .2s var(--ease)
  }
  .service-card:hover  {
    border-color:var(--color-slate);
    transform:translateY(-2px);
    box-shadow:var(--shadow-soft)
  }
  .service-ico  {
    width:52px;
    height:52px;
    border-radius:14px;
    display:grid;
    place-items:center;
    margin-bottom:20px;
    background:var(--color-slate);
    color:#fff
  }
  .service-ico .material-symbols-outlined  {
    font-size:28px
  }
  .service-card h3  {
    margin:0 0 9px;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .service-card p  {
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:var(--color-text-2)
  }
  .service-tags  {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:16px
  }
  .service-tag  {
    font-size:12px;
    font-weight:600;
    padding:5px 12px;
    border-radius:var(--pill);
    background:var(--color-slate-lightest);
    color:var(--color-slate-dark)
  }
  @media (max-width: 767px)  {
    .services-grid  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2823  {
}
.content-section-2824  {
  &.content-section  {
    color:var(--color-on-dark)
  }
  h2  {
    margin:0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(32px,3.6vw,50px);
    line-height:1.06
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .conditions-head  {
    max-width:720px
  }
  .conditions-lead  {
    margin:18px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .cond-grid  {
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px
  }
  .cond-card  {
    display:flex;
    flex-direction:column;
    gap:0;
    text-align:left;
    padding:24px 22px;
    border-radius:var(--radius);
    background:var(--color-navy-light);
    border:1px solid var(--line-on-dark);
    color:var(--color-on-dark);
    font-family:inherit;
    cursor:pointer;
    transition:transform .2s var(--ease),border-color .2s var(--ease),background .2s var(--ease);
    text-decoration:none
  }
  .cond-card:hover  {
    transform:translateY(-3px);
    border-color:var(--color-slate-light);
    background:var(--color-navy-light);
    color:var(--color-on-dark)
  }
  .cond-ico  {
    width:46px;
    height:46px;
    border-radius:12px;
    display:grid;
    place-items:center;
    margin-bottom:16px;
    background:var(--color-slate);
    color:#fff
  }
  .cond-ico .material-symbols-outlined  {
    font-size:25px
  }
  .cond-title  {
    font-size:17.5px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .cond-tag  {
    display:block;
    margin-top:7px;
    font-size:13px;
    line-height:1.5;
    color:var(--color-on-dark-muted)
  }
  .cond-arrow  {
    margin-top:12px;
    color:var(--color-slate-light);
    opacity:0;
    transform:translateX(-6px);
    transition:opacity .2s var(--ease),transform .2s var(--ease)
  }
  .cond-card:hover .cond-arrow  {
    opacity:1;
    transform:none
  }
  .cond-foothelp  {
    margin-top:38px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px 14px;
    font-size:15px;
    color:var(--color-on-dark-2)
  }
  .cond-foothelp .op-link  {
    color:var(--color-slate-light)
  }
  @media (max-width: 1279px)  {
    .cond-grid  {
      grid-template-columns:repeat(3,1fr)
    }
  }
  @media (max-width: 767px)  {
    .cond-grid  {
      grid-template-columns:repeat(2,1fr)
    }
  }
  @media (max-width: 639px)  {
    .cond-grid  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2825  {
  &.content-section  {
    position:relative;
    overflow:hidden;
    color:var(--color-on-dark)
  }
  .process-glow  {
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.5;
    background:radial-gradient(55% 110% at 18% 0%,rgba(91,107,130,.35),transparent 60%)
  }
  .process-body  {
    position:relative;
    z-index:1
  }
  h2  {
    margin:0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.08
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .process-head  {
    max-width:64ch
  }
  .process-lead  {
    margin:16px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .process-steps  {
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:clamp(20px,3vw,40px)
  }
  .process-step  {
    padding-top:26px;
    border-top:2px solid var(--line-on-dark)
  }
  .process-top  {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px
  }
  .process-ico  {
    width:52px;
    height:52px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:rgba(91,107,130,.28);
    color:var(--color-slate-light)
  }
  .process-ico .material-symbols-outlined  {
    font-size:28px
  }
  .process-n  {
    font-size:14px;
    font-weight:700;
    letter-spacing:.14em;
    color:var(--color-slate-light);
    opacity:.8
  }
  .process-step h3  {
    margin:0 0 9px;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .process-step p  {
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  @media (max-width: 1023px)  {
    .process-steps  {
      grid-template-columns:1fr;
      gap:0
    }
    .process-step  {
      padding:24px 0
    }
  }
}
.content-section-2826  {
  .faq-grid  {
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:clamp(32px,6vw,88px);
    align-items:start
  }
  h2  {
    margin:6px 0 0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.08
  }
  .faq-lead  {
    margin:18px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-text-2);
    max-width:38ch
  }
  .core-accordion-01>*+*  {
    margin-top:0
  }
  .core-accordion-01 details  {
    padding:0;
    border-top:1px solid var(--line-on-light)
  }
  .core-accordion-01 details:last-child  {
    border-bottom:1px solid var(--line-on-light)
  }
  .core-accordion-01 details summary  {
    padding:26px 40px 26px 4px;
    font-family:inherit;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.01em;
    color:var(--color-text);
    line-height:1.32
  }
  .core-accordion-01 details summary:hover  {
    color:var(--color-slate-dark)
  }
  .core-accordion-01 details summary::after  {
    color:var(--color-slate-dark);
    right:8px
  }
  .core-accordion-01 details[open] summary  {
    margin-bottom:0
  }
  .core-accordion-01 details p  {
    margin:0;
    padding:0 56px 28px 4px;
    font-size:16px;
    line-height:1.62;
    color:var(--color-text-2)
  }
  @media (max-width: 1023px)  {
    .faq-grid  {
      grid-template-columns:1fr;
      gap:28px
    }
  }
}
.content-section-2827  {
  background: linear-gradient(180deg,rgba(14,26,43,.78),rgba(14,26,43,.66)),url('/site-assets/images/cta-hills.jpg') center 38%/cover no-repeat;
  &.content-section  {
    color:var(--color-on-dark);
    text-align:center
  }
  h2  {
    margin:0 auto;
    max-width:26ch;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.6vw,48px);
    line-height:1.1;
    color:#fff
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .cta-banner-lede  {
    margin:20px auto 0;
    max-width:58ch;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .hero-ctas  {
    margin-top:34px
  }
  .op-trust  {
    margin-top:34px;
    justify-content:center
  }
}
.content-section-2828  {
  background: linear-gradient(180deg,rgba(20,38,57,.80) 0%,rgba(20,38,57,.70) 45%,rgba(20,38,57,.90) 100%),url('/site-assets/images/cta-hills.jpg') center 40%/cover no-repeat;
}
.content-section-2829  {
}
.content-section-2830  {
}
.content-section-2831  {
  &.content-section  {
    position:relative;
    overflow:hidden;
    color:var(--color-on-dark)
  }
  .adhd-steps-glow  {
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.5;
    background:radial-gradient(55% 110% at 18% 0%,rgba(91,107,130,.35),transparent 60%)
  }
  .adhd-steps-body  {
    position:relative;
    z-index:1
  }
  .adhd-steps-grid  {
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:clamp(18px,2.4vw,32px)
  }
  .adhd-step  {
    padding-top:26px;
    border-top:2px solid var(--line-on-dark)
  }
  .adhd-step-top  {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px
  }
  .adhd-step-ico  {
    width:52px;
    height:52px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:rgba(91,107,130,.28);
    color:var(--color-slate-light)
  }
  .adhd-step-ico .material-symbols-outlined  {
    font-size:28px
  }
  .adhd-step-n  {
    font-size:14px;
    font-weight:700;
    letter-spacing:.14em;
    color:var(--color-slate-light);
    opacity:.8
  }
  .adhd-step h3  {
    margin:0 0 9px;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .adhd-step p  {
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  @media (max-width: 1023px)  {
    .adhd-steps-grid  {
      grid-template-columns:repeat(2,1fr);
      gap:28px 24px
    }
  }
  @media (max-width: 639px)  {
    .adhd-steps-grid  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2832  {
}
.content-section-2833  {
  background: linear-gradient(180deg,rgba(14,26,43,.78),rgba(14,26,43,.66)),url('/site-assets/images/cta-hills.jpg') center 38%/cover no-repeat;
  &.content-section  {
    color:var(--color-on-dark);
    text-align:center
  }
  h2  {
    margin:0 auto;
    max-width:26ch;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.6vw,48px);
    line-height:1.1;
    color:#fff
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .cta-banner-lede  {
    margin:20px auto 0;
    max-width:58ch;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .hero-ctas  {
    margin-top:34px
  }
  .op-trust  {
    margin-top:34px;
    justify-content:center
  }
}
.content-section-2834  {
  background: linear-gradient(180deg,rgba(20,38,57,.80) 0%,rgba(20,38,57,.70) 45%,rgba(20,38,57,.90) 100%),url('/site-assets/images/cta-hills.jpg') center 40%/cover no-repeat;
}
.content-section-2835  {
}
.content-section-2836  {
}
.content-section-2837  {
  background: linear-gradient(180deg,rgba(14,26,43,.78),rgba(14,26,43,.66)),url('/site-assets/images/cta-hills.jpg') center 38%/cover no-repeat;
  &.content-section  {
    color:var(--color-on-dark);
    text-align:center
  }
  h2  {
    margin:0 auto;
    max-width:26ch;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.6vw,48px);
    line-height:1.1;
    color:#fff
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .cta-banner-lede  {
    margin:20px auto 0;
    max-width:58ch;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .hero-ctas  {
    margin-top:34px
  }
  .op-trust  {
    margin-top:34px;
    justify-content:center
  }
}
.content-section-2838  {
  background: linear-gradient(180deg,rgba(20,38,57,.80) 0%,rgba(20,38,57,.70) 45%,rgba(20,38,57,.90) 100%),url('/site-assets/images/cta-hills.jpg') center 40%/cover no-repeat;
}
.content-section-2839  {
  .fee-cards  {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    align-items:stretch
  }
  .fee-card  {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:32px 30px;
    background:var(--color-white);
    border:1px solid var(--line-on-light);
    border-radius:var(--radius-lg)
  }
  .fee-card.featured  {
    background:var(--color-navy);
    border-color:var(--color-navy);
    color:var(--color-on-dark)
  }
  .fee-card-tag  {
    font-size:11.5px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--color-slate-dark);
    padding:5px 12px;
    border-radius:var(--pill);
    background:var(--color-slate-lightest)
  }
  .fee-card.featured .fee-card-tag  {
    background:rgba(91,107,130,.3);
    color:var(--color-slate-light)
  }
  .fee-card h3  {
    margin:20px 0 0;
    font-size:22px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .fee-card-price  {
    margin-top:8px;
    font-size:16px;
    font-weight:600;
    color:var(--color-slate-dark)
  }
  .fee-card.featured .fee-card-price  {
    color:var(--color-slate-light)
  }
  .fee-card p  {
    margin:14px 0 26px;
    font-size:15px;
    line-height:1.6;
    color:var(--color-text-2);
    flex:1
  }
  .fee-card.featured p  {
    color:var(--color-on-dark-2)
  }
  .fee-card.featured .op-btn--ghost-dark  {
    color:var(--color-on-dark);
    box-shadow:inset 0 0 0 1.5px var(--color-on-dark-2)
  }
  .fees-disclaimer  {
    margin:32px 0 0;
    display:flex;
    gap:11px;
    align-items:flex-start;
    font-size:14px;
    line-height:1.55;
    color:var(--color-text-muted);
    max-width:80ch
  }
  .fees-disclaimer .material-symbols-outlined  {
    font-size:19px;
    color:var(--color-slate-dark);
    flex:none;
    margin-top:1px
  }
  @media (max-width: 1023px)  {
    .fee-cards  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2840  {
  &.content-section  {
    color:var(--color-on-dark)
  }
  .fee-notes-grid  {
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px
  }
  .fee-note  {
    display:flex;
    gap:18px;
    padding:28px;
    border-radius:var(--radius);
    border:1px solid var(--line-on-dark);
    background:rgba(255,255,255,.04)
  }
  .fee-note-ico  {
    flex:none;
    width:50px;
    height:50px;
    border-radius:13px;
    display:grid;
    place-items:center;
    background:rgba(91,107,130,.28);
    color:var(--color-slate-light)
  }
  .fee-note-ico .material-symbols-outlined  {
    font-size:27px
  }
  .fee-note h3  {
    margin:4px 0 8px;
    font-size:18px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .fee-note p  {
    margin:0;
    font-size:14.5px;
    line-height:1.58;
    color:var(--color-on-dark-2)
  }
  @media (max-width: 1023px)  {
    .fee-notes-grid  {
      grid-template-columns:1fr
    }
  }
}
.content-section-2841  {
  .faq-grid  {
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:clamp(32px,6vw,88px);
    align-items:start
  }
  h2  {
    margin:6px 0 0;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.08
  }
  .faq-lead  {
    margin:18px 0 0;
    font-size:17px;
    line-height:1.6;
    color:var(--color-text-2);
    max-width:38ch
  }
  .core-accordion-01>*+*  {
    margin-top:0
  }
  .core-accordion-01 details  {
    padding:0;
    border-top:1px solid var(--line-on-light)
  }
  .core-accordion-01 details:last-child  {
    border-bottom:1px solid var(--line-on-light)
  }
  .core-accordion-01 details summary  {
    padding:26px 40px 26px 4px;
    font-family:inherit;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.01em;
    color:var(--color-text);
    line-height:1.32
  }
  .core-accordion-01 details summary:hover  {
    color:var(--color-slate-dark)
  }
  .core-accordion-01 details summary::after  {
    color:var(--color-slate-dark);
    right:8px
  }
  .core-accordion-01 details[open] summary  {
    margin-bottom:0
  }
  .core-accordion-01 details p  {
    margin:0;
    padding:0 56px 28px 4px;
    font-size:16px;
    line-height:1.62;
    color:var(--color-text-2)
  }
  @media (max-width: 1023px)  {
    .faq-grid  {
      grid-template-columns:1fr;
      gap:28px
    }
  }
}
.content-section-2842  {
}
.content-section-2843  {
  background: linear-gradient(180deg,rgba(14,26,43,.78),rgba(14,26,43,.66)),url('/site-assets/images/cta-hills.jpg') center 38%/cover no-repeat;
  &.content-section  {
    color:var(--color-on-dark);
    text-align:center
  }
  h2  {
    margin:0 auto;
    max-width:26ch;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.6vw,48px);
    line-height:1.1;
    color:#fff
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .cta-banner-lede  {
    margin:20px auto 0;
    max-width:58ch;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .hero-ctas  {
    margin-top:34px
  }
  .op-trust  {
    margin-top:34px;
    justify-content:center
  }
}
.content-section-2844  {
  background: linear-gradient(180deg,rgba(20,38,57,.80) 0%,rgba(20,38,57,.70) 45%,rgba(20,38,57,.90) 100%),url('/site-assets/images/cta-hills.jpg') center 40%/cover no-repeat;
}
.content-section-2845  {
  .contact-grid  {
    display:grid;
    grid-template-columns:1fr .92fr;
    gap:clamp(36px,6vw,80px);
    align-items:start
  }
  .contact-list  {
    list-style:none;
    margin:32px 0 0;
    padding:0;
    display:grid;
    gap:22px
  }
  .contact-list li  {
    display:flex;
    align-items:center;
    gap:18px
  }
  .contact-ico  {
    flex:none;
    width:52px;
    height:52px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:var(--color-slate-lightest);
    color:var(--color-slate-dark)
  }
  .contact-ico .material-symbols-outlined  {
    font-size:27px
  }
  .contact-h  {
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--color-text-muted)
  }
  .contact-v  {
    display:block;
    margin-top:3px;
    font-size:18px;
    font-weight:600;
    color:var(--color-text);
    letter-spacing:-.01em;
    text-decoration:none
  }
  a.contact-v:hover  {
    color:var(--color-slate-dark)
  }
  .contact-trust  {
    margin-top:40px;
    padding-top:28px;
    border-top:1px solid var(--line-on-light)
  }
  .contact-card  {
    background:var(--color-navy);
    color:var(--color-on-dark);
    border-radius:var(--radius-lg);
    padding:clamp(32px,4vw,48px)
  }
  .contact-card h3  {
    margin:0;
    font-size:24px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .contact-card p  {
    margin:12px 0 22px;
    font-size:15.5px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .contact-card .op-btn  {
    width:100%;
    justify-content:center
  }
  .contact-or  {
    display:flex;
    align-items:center;
    gap:16px;
    margin:30px 0;
    color:var(--color-on-dark-muted);
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase
  }
  .contact-or::before,.contact-or::after  {
    content:"";
    flex:1;
    height:1px;
    background:var(--line-on-dark)
  }
  .contact-note  {
    display:flex;
    align-items:center;
    gap:9px;
    margin-top:26px;
    font-size:13.5px;
    color:var(--color-on-dark-muted)
  }
  .contact-note .material-symbols-outlined  {
    font-size:17px;
    color:var(--color-slate-light)
  }
  .contact-note strong  {
    color:var(--color-on-dark)
  }
  @media (max-width: 1023px)  {
    .contact-grid  {
      grid-template-columns:1fr;
      gap:32px
    }
  }
}
.content-section-2846  {
  .admin-grid  {
    display:grid;
    grid-template-columns:1.35fr 1fr;
    gap:20px;
    align-items:stretch
  }
  .admin-card  {
    display:flex;
    gap:28px;
    align-items:center;
    padding:clamp(26px,3vw,40px);
    background:var(--color-white);
    border:1px solid var(--line-on-light);
    border-radius:var(--radius-lg)
  }
  .admin-photo  {
    flex:none;
    width:130px;
    height:130px;
    border-radius:50%;
    background:var(--color-slate-lightest);
    color:var(--color-slate-dark);
    display:grid;
    place-items:center;
    font-size:34px;
    font-weight:600;
    letter-spacing:.04em
  }
  .admin-card h3  {
    margin:6px 0 2px;
    font-size:23px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .admin-role  {
    margin:0 0 12px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--color-slate-dark)
  }
  .admin-blurb  {
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:var(--color-text-2)
  }
  .portal-note  {
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:clamp(26px,3vw,36px);
    background:var(--color-navy);
    color:var(--color-on-dark);
    border-radius:var(--radius-lg)
  }
  .portal-ico  {
    flex:none;
    width:50px;
    height:50px;
    border-radius:13px;
    display:grid;
    place-items:center;
    background:rgba(91,107,130,.28);
    color:var(--color-slate-light)
  }
  .portal-ico .material-symbols-outlined  {
    font-size:27px
  }
  .portal-note h3  {
    margin:4px 0 8px;
    font-size:18px;
    font-weight:600;
    letter-spacing:-.01em
  }
  .portal-note p  {
    margin:0;
    font-size:14.5px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  @media (max-width: 1023px)  {
    .admin-grid  {
      grid-template-columns:1fr
    }
    .admin-card  {
      flex-direction:column;
      align-items:flex-start
    }
  }
}
.content-section-2847  {
}
.content-section-2848  {
  background: linear-gradient(180deg,rgba(20,38,57,.80) 0%,rgba(20,38,57,.70) 45%,rgba(20,38,57,.90) 100%),url('/site-assets/images/cta-hills.jpg') center 40%/cover no-repeat;
}
.content-section-2849  {
}
.content-section-2850  {
  background: linear-gradient(180deg,rgba(14,26,43,.78),rgba(14,26,43,.66)),url('/site-assets/images/cta-hills.jpg') center 38%/cover no-repeat;
  &.content-section  {
    color:var(--color-on-dark);
    text-align:center
  }
  h2  {
    margin:0 auto;
    max-width:26ch;
    font-weight:600;
    letter-spacing:-.02em;
    font-size:clamp(30px,3.6vw,48px);
    line-height:1.1;
    color:#fff
  }
  h2 .accentword  {
    color:var(--color-slate-light)
  }
  .cta-banner-lede  {
    margin:20px auto 0;
    max-width:58ch;
    font-size:17px;
    line-height:1.6;
    color:var(--color-on-dark-2)
  }
  .hero-ctas  {
    margin-top:34px
  }
  .op-trust  {
    margin-top:34px;
    justify-content:center
  }
}
