/* ────────────────────────────────────────────────────────────────────
   SDA Boots — main stylesheet
   Pixel-accurate clone of sdaboots.com (Squarespace 7.1).
   Tokens, header, footer, sections, buttons, forms, type, breakpoints.
   ──────────────────────────────────────────────────────────────────── */

/* ─── self-hosted fonts ───────────────────────────────────────────── */
/* Montserrat + Work Sans loaded via Google Fonts (see functions.php) — matches live sdaboots.com */

/* ─── tokens ──────────────────────────────────────────────────────── */
:root{
  --accent:#0bbfb8;
  --accent-hover:#099b95;
  --dark:#061a3a;
  --light:#f5f5f5;
  --white:#fff;
  --black:#000;
  --muted:#6b7585;

  --content:1080px;
  --wide:1400px;

  --pad-section:4rem;
  --pad-section-mobile:3rem;

  --bp-sm:480px;
  --bp-md:640px;
  --bp-lg:768px;
  --bp-xl:1024px;
  --bp-xxl:1512px;

  --ease:.25s cubic-bezier(.4,0,.2,1);

  --base-font-size:16px;
}

/* ─── reset (lean) ────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{margin:0;font-family:"Montserrat",Arial,Helvetica,sans-serif;font-weight:400;line-height:1.65;color:var(--dark);background:var(--white);-webkit-font-smoothing:antialiased}
img,picture,video,canvas,svg{display:block;max-width:100%;height:auto}
button,input,select,textarea{font:inherit;color:inherit}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,h5,h6{margin:0 0 .6em;font-family:"Montserrat",Arial,sans-serif;font-weight:700;letter-spacing:-.01em;line-height:1.15;color:var(--dark)}
h1{font-size:clamp(2.25rem,4.5vw,3.75rem)}
h2{font-size:clamp(2rem,3vw,2.75rem);line-height:1.2}
h3{font-size:clamp(1.25rem,2vw,1.5rem);line-height:1.3;font-weight:600}
h4{font-size:1.125rem;line-height:1.35;font-weight:600}
p{margin:0 0 1em}
ul,ol{padding-left:1.25em}

/* screen-reader-only */
.sr,.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip-link{position:absolute;left:-9999px;top:0;background:var(--dark);color:#fff;padding:.5em 1em;z-index:100000}
.skip-link:focus{left:0}

/* ─── containers ──────────────────────────────────────────────────── */
.container{width:100%;max-width:var(--content);margin:0 auto;padding-left:1.5rem;padding-right:1.5rem}
.container-wide{max-width:var(--wide)}

/* ─── header (sticky, always solid navy — matches custom.css on live) ─ */
.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  background:var(--dark);
  box-shadow:0 2px 0 rgba(0,0,0,.08);
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}

.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  max-width:var(--wide);margin:0 auto;
  padding:2.3125rem 1.5rem;gap:2rem;
}

.site-logo{display:flex;align-items:center;gap:.75rem}
.site-logo img{max-height:100px;width:auto}
@media (max-width:767px){.site-logo img{max-height:60px}}

.header-nav{display:flex;align-items:center;gap:2rem}
.header-nav-list{display:flex;align-items:center;gap:1.75rem}
.header-nav-items{display:flex;list-style:none;margin:0;padding:0;gap:1.75rem}
.header-nav-list a,
.header-nav-items a,
.site-header a:not(.btn-cta){color:#fff;font-family:"Montserrat",Arial,sans-serif;font-weight:700;font-size:1.0625rem;letter-spacing:.01em;transition:color var(--ease)}
.site-header .current-menu-item > a,
.site-header .current_page_item > a,
.site-header .current-menu-ancestor > a{text-decoration:underline;text-underline-offset:6px;text-decoration-thickness:1px}
.site-header a:not(.btn-cta):hover{color:var(--accent)}
.header-nav-item-link.is-active{color:var(--accent)}

.header-cta .btn-cta{
  display:inline-block;background:var(--accent);color:var(--dark);
  border:1px solid var(--accent);border-radius:0;
  padding:1.1em 2.2em;font-family:"Montserrat";font-weight:600;
  font-size:.9375rem;text-transform:uppercase;letter-spacing:.04em;
  transition:background-color var(--ease),color var(--ease),border-color var(--ease);
}
.header-cta .btn-cta:hover{background:var(--white);color:var(--dark);border-color:var(--white)}

/* mobile nav toggle */
.nav-toggle{display:none;background:none;border:0;padding:.5em;cursor:pointer}
.nav-toggle .bar{display:block;width:24px;height:2px;background:#fff;margin:5px 0;transition:transform var(--ease),opacity var(--ease)}

@media (max-width:1023px){
  .nav-toggle{display:block;z-index:10001;position:relative}
  .header-nav{
    position:fixed;inset:0;
    background:var(--dark);
    flex-direction:column;justify-content:center;gap:2rem;
    transform:translateX(100%);transition:transform var(--ease);
  }
  .header-nav-items,.header-nav-list{flex-direction:column;gap:1.75rem;font-size:1.5rem}
  body.nav-open .header-nav{transform:translateX(0)}
  body.nav-open .nav-toggle .bar:nth-child(1){transform:translateY(7px) rotate(45deg)}
  body.nav-open .nav-toggle .bar:nth-child(2){opacity:0}
  body.nav-open .nav-toggle .bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}

/* push first section past sticky header (live site does this in custom.css) */
.site-main > section:first-child,
.site-main > article > .section:first-child,
.site-main > .section:first-child{padding-top:120px}
@media (max-width:767px){
  .site-main > section:first-child,
  .site-main > article > .section:first-child,
  .site-main > .section:first-child{padding-top:110px}
}

/* ─── sections ────────────────────────────────────────────────────── */
.section{padding:var(--pad-section) 0;position:relative}
.section-light{background:var(--light)}
.section-dark{background:var(--dark);color:#fff}
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4{color:#fff}
.section-accent{background:var(--accent);color:#fff}
.section-accent h1,.section-accent h2,.section-accent h3{color:#fff}
@media (max-width:767px){.section{padding:var(--pad-section-mobile) 0}}

/* ─── hero (full-bleed cover with overlay) ────────────────────────── */
.hero{
  position:relative;min-height:78vh;
  display:flex;align-items:center;justify-content:flex-start;
  color:#fff;text-align:left;
  overflow:hidden;
}
.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(6,26,58,.35) 0%,rgba(6,26,58,.7) 100%);z-index:1}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero-inner{position:relative;z-index:2;max-width:var(--wide);width:100%;margin:0 auto;padding:120px 1.5rem 4rem}
.hero h1{color:#fff;max-width:18ch}
.hero p{color:#fff;font-size:clamp(1rem,1.4vw,1.25rem);font-weight:300;max-width:46ch}
.hero .eyebrow{color:var(--accent);margin-bottom:1rem}
@media (max-width:767px){.hero{min-height:62vh}.hero-inner{padding:110px 1.5rem 3rem}}

/* ─── investors hero (mirrors sdaboots.com/investors §686c8dbd5455dc5a9026b93a) ─── */
.hero-investors{
  min-height:602px;height:auto;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fff;
  padding:120px 1.5rem 3rem;
}
.hero-investors::before{
  content:"";position:absolute;inset:0;
  background:rgba(1,9,55,.45);
  z-index:1;
}
.hero-investors .hero-inner{
  position:relative;z-index:2;
  max-width:880px;margin:0 auto;padding:0;
  display:flex;flex-direction:column;gap:1.25rem;align-items:center;
}
.hero-investors .hero-eyebrow,
.hero-investors .hero-subtitle{color:#0abab5;margin:0;max-width:none;letter-spacing:normal}
.hero-investors h1,
.hero-investors .hero-tagline{color:#fff;margin:0;max-width:none;letter-spacing:normal}
.hero-investors .hero-eyebrow{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:clamp(1.5rem,2.03vw,1.83rem);line-height:1.344;font-weight:600;
}
.hero-investors h1{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:clamp(2rem,3.23vw,2.91rem);line-height:1.287;font-weight:600;
}
.hero-investors .hero-subtitle{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:clamp(1.5rem,2.03vw,1.83rem);line-height:1.344;font-weight:600;
}
.hero-investors .hero-tagline{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:clamp(1.125rem,1.55vw,1.398rem);line-height:1.366;font-weight:600;
  max-width:640px;
}
.hero-investors strong{font-weight:700}
@media (max-width:767px){
  .hero-investors{min-height:60vh;padding:110px 1.5rem 3rem}
  .hero-investors .hero-inner{gap:1rem;max-width:520px}
}

/* ─── homepage hero variant (text + circular framework diagram) ───── */
.hero-home{min-height:680px;max-height:780px;align-items:stretch}
.hero-home .hero-inner.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);
  grid-template-rows:1fr auto;
  align-items:start;
  gap:1rem 2.5rem;
  padding:40px 1.5rem 1.5rem;
}
.hero-home .hero-text{align-self:center;padding-top:0}
.hero-home .hero-text h1{font-size:clamp(1.5rem,2.4vw,2.25rem);line-height:1.2;margin:0;max-width:none;white-space:normal;font-weight:600}
.hero-home .hero-circle{display:flex;align-items:center;justify-content:center}
.hero-home .hero-circle img{width:424px;height:441px;max-width:100%;object-fit:contain;filter:drop-shadow(0 24px 60px rgba(0,0,0,.35))}
.hero-home .hero-boots{
  grid-column:1/-1;
  justify-content:center;
  flex-wrap:nowrap;
  padding:1.25rem 0 0;margin-top:1.25rem;
  gap:.6rem 1rem;
}
.hero-home .hero-boots span{color:#fff;letter-spacing:.16em;font-size:clamp(.7rem,.9vw,.875rem);white-space:nowrap}
.hero-home .hero-boots .sep{color:#fff;opacity:.55}
/* angled teal shape on left edge — mirrors live Squarespace overlay */
.hero-home .hero-shape{
  position:absolute;left:0;top:0;width:min(28vw,360px);height:78%;z-index:1;pointer-events:none;
  background:linear-gradient(135deg,rgba(11,191,184,.55) 0%,rgba(11,191,184,.18) 60%,rgba(11,191,184,0) 100%);
  clip-path:polygon(0 0,100% 0,0 100%);
}
@media (max-width:1023px){
  .hero-home .hero-inner.hero-grid{grid-template-columns:1fr;gap:1.5rem}
  .hero-home .hero-circle{order:-1}
  .hero-home .hero-circle img{width:min(72%,420px)}
  .hero-home .hero-text h1{text-align:center;margin-left:auto;margin-right:auto}
  .hero-home .hero-shape{width:60vw;height:38%}
}
@media (max-width:639px){
  .hero-home{min-height:78vh}
  .hero-home .hero-boots{flex-wrap:wrap;gap:.4rem .9rem}
  .hero-home .hero-boots span{font-size:.6875rem;letter-spacing:.18em}
}

.eyebrow{font-family:"Work Sans",Arial,sans-serif;font-weight:500;font-size:.8125rem;text-transform:uppercase;letter-spacing:.18em;color:var(--accent)}

/* ─── buttons ─────────────────────────────────────────────────────── */
.btn{
  display:inline-block;
  font-family:"Montserrat",Arial,sans-serif;font-weight:600;
  font-size:.875rem;text-transform:uppercase;letter-spacing:.04em;
  padding:.95em 2em;border:1px solid currentColor;border-radius:0;
  background:transparent;color:currentColor;cursor:pointer;
  transition:background-color var(--ease),color var(--ease),border-color var(--ease);
}
.btn:hover{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn-primary{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn-primary:hover{background:var(--accent-hover);border-color:var(--accent-hover)}
.btn-light{color:#fff;border-color:#fff}
.btn-light:hover{background:#fff;color:var(--dark);border-color:#fff}
.btn-row{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.5rem}

/* ─── grids / columns ─────────────────────────────────────────────── */
.grid{display:grid;gap:2rem}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.grid-5{grid-template-columns:repeat(5,minmax(0,1fr))}
@media (max-width:1023px){.grid-4,.grid-5{grid-template-columns:repeat(2,1fr)}}
@media (max-width:767px){.grid-2,.grid-3,.grid-4,.grid-5{grid-template-columns:1fr}}

/* ─── feature cards ───────────────────────────────────────────────── */
.feature-card{padding:2rem;background:var(--white);border:1px solid rgba(6,26,58,.08)}
.feature-card .icon{width:48px;height:48px;color:var(--accent);margin-bottom:1rem}
.feature-card h3{margin-bottom:.5rem}
.section-light .feature-card{background:var(--white)}

/* ─── stat row ────────────────────────────────────────────────────── */
.stat{text-align:center;padding:1.5rem 1rem}
.stat .num{font-family:"Montserrat",sans-serif;font-weight:700;font-size:clamp(2.5rem,4vw,3.5rem);color:var(--accent);line-height:1;display:block}
.stat .lbl{font-family:"Work Sans",sans-serif;font-weight:500;text-transform:uppercase;letter-spacing:.12em;font-size:.8125rem;margin-top:.5rem;display:block}

/* ─── BOOTS acronym strip ─────────────────────────────────────────── */
.boots-strip{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:1rem 1.5rem;padding:2rem 1.5rem;text-align:center}
.boots-strip span{font-family:"Montserrat";font-weight:600;font-size:.8125rem;text-transform:uppercase;letter-spacing:.18em;color:var(--accent)}
.boots-strip .sep{color:var(--dark);opacity:.3}

/* ─── testimonials ────────────────────────────────────────────────── */
.testimonial{background:var(--white);padding:2rem;border:1px solid rgba(6,26,58,.08);margin:0;display:flex;flex-direction:column;gap:1rem}
.testimonial .t-photo img{width:80px;height:80px;border-radius:50%;object-fit:cover}
.testimonial .t-quote{font-style:italic;font-size:1.0625rem;line-height:1.6;color:var(--dark);margin:0;font-family:"Montserrat"}
.testimonial .t-meta{display:flex;flex-direction:column;gap:.15rem}
.testimonial .t-meta strong{font-weight:600}
.testimonial .t-meta span{font-family:"Work Sans";font-size:.8125rem;color:var(--muted);text-transform:uppercase;letter-spacing:.08em}

/* ─── numbered journey list (Participants /participants) ──────────── */
.journey{counter-reset:journey;list-style:none;padding:0;display:grid;gap:1.5rem;grid-template-columns:1fr}
.journey li{counter-increment:journey;background:var(--white);padding:1.5rem 1.5rem 1.5rem 5rem;position:relative;border:1px solid rgba(6,26,58,.08)}
.journey li::before{content:counter(journey);position:absolute;left:1.5rem;top:1.25rem;width:2.5rem;height:2.5rem;display:flex;align-items:center;justify-content:center;background:var(--accent);color:#fff;font-family:"Montserrat";font-weight:700;font-size:1.125rem;border-radius:50%}
.journey li h3{margin:0 0 .25em;font-size:1.0625rem}

/* ─── news cards ──────────────────────────────────────────────────── */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
@media (max-width:1023px){.news-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:767px){.news-grid{grid-template-columns:1fr}}

.news-card{background:var(--white);border:1px solid rgba(6,26,58,.08);transition:transform var(--ease),box-shadow var(--ease);display:flex;flex-direction:column}
.news-card:hover{transform:translateY(-2px);box-shadow:0 12px 32px -16px rgba(6,26,58,.25)}
.news-card a{display:flex;flex-direction:column;height:100%}
.news-card .thumb{aspect-ratio:3/2;overflow:hidden}
.news-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.news-card:hover .thumb img{transform:scale(1.04)}
.news-card .body{padding:1.5rem;flex:1;display:flex;flex-direction:column;gap:.5rem}
.news-card time{font-family:"Work Sans";font-weight:500;text-transform:uppercase;letter-spacing:.12em;font-size:.75rem;color:var(--accent)}
.news-card h3{font-size:1.125rem;margin:0;line-height:1.3}

/* ─── single post ─────────────────────────────────────────────────── */
.single-post-header{padding:120px 1.5rem 3rem;text-align:center;background:var(--light)}
.single-post-header .meta{font-family:"Work Sans";text-transform:uppercase;letter-spacing:.12em;font-size:.75rem;color:var(--accent);margin-bottom:1rem}
.single-post-header h1{max-width:32ch;margin-left:auto;margin-right:auto}
.single-post-content{max-width:760px;margin:0 auto;padding:3rem 1.5rem}
.single-post-content img{margin:1.5rem 0}
.single-post-content h2{margin-top:2rem}

/* ─── forms (newsletter) ──────────────────────────────────────────── */
.sda-newsletter-form,
.fluentform .ff-el-form-control,
.newsletter-form{display:flex;gap:.5rem;max-width:520px;margin:0 auto;flex-wrap:wrap}
.sda-newsletter-form input[type=email],
.newsletter-form input[type=email],
.fluentform input[type=text],
.fluentform input[type=email],
.fluentform input[type=tel],
.fluentform textarea{
  flex:1;min-width:0;
  border:1px solid rgba(6,26,58,.2);border-radius:0;
  padding:.85em 1em;font-family:"Montserrat";font-size:1rem;
  background:#fff;color:var(--dark);
  transition:border-color var(--ease),box-shadow var(--ease);
}
.section-dark .sda-newsletter-form input[type=email],
.section-dark .fluentform input[type=email]{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.3)}
.sda-newsletter-form input:focus,
.fluentform input:focus,
.fluentform textarea:focus{border-color:var(--accent);outline:none;box-shadow:0 0 0 2px rgba(11,191,184,.18)}
.sda-newsletter-form button,
.fluentform .ff-btn,
.fluentform .ff-btn-submit{
  background:var(--accent);color:#fff;border:1px solid var(--accent);border-radius:0;
  padding:.85em 1.75em;font-family:"Montserrat";font-weight:600;
  font-size:.875rem;text-transform:uppercase;letter-spacing:.04em;cursor:pointer;
  transition:background-color var(--ease),border-color var(--ease);
}
.sda-newsletter-form button:hover,
.fluentform .ff-btn:hover{background:var(--accent-hover);border-color:var(--accent-hover)}

.fluentform .ff-el-input--label label,
.fluentform .ff-el-form-check label{
  font-family:"Work Sans";font-weight:500;
  text-transform:uppercase;letter-spacing:.08em;
  font-size:.75rem;color:var(--dark);
}

/* ─── footer ──────────────────────────────────────────────────────── */
.site-footer{background:var(--dark);color:#fff;font-size:.975rem;padding:4rem 0 2rem;font-family:"Montserrat",Arial,sans-serif}
.site-footer a{color:rgb(131,220,218);text-decoration:underline;transition:color var(--ease)}
.site-footer a:hover{color:#fff}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1.4fr) minmax(0,1.2fr);
  gap:3rem;
  align-items:start;
}
@media (max-width:1023px){.footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem}.footer-cta{grid-column:1/-1}}
@media (max-width:639px){.footer-grid{grid-template-columns:1fr;gap:2rem}}

/* LEFT — PNP logo + compliance + social */
.footer-brand{display:flex;flex-direction:column;gap:1.25rem}
.footer-brand-logo{display:block;width:100%;max-width:340px;height:auto}
.footer-compliance p{font-size:12px;line-height:19.2px;color:#fff;margin:0 0 12px}
.footer-compliance p:last-child{margin-bottom:0}
.footer-compliance a{color:rgb(131,220,218);text-decoration:underline}
.footer-social{list-style:none;padding:0;margin:.5rem 0 0;display:flex;gap:12px;align-items:center}
.footer-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:50%;
  color:#fff;background:transparent;text-decoration:none;
  box-shadow:0 0 0 2px #fff inset;
  transition:color var(--ease),box-shadow var(--ease);
}
.footer-social a:hover{color:rgb(131,220,218);box-shadow:0 0 0 2px rgb(131,220,218) inset}
.footer-social svg{display:block}

/* MID — 3 link columns */
.footer-nav{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,2fr);gap:1.5rem}
.footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.6rem}
.footer-col address{font-style:normal;line-height:1.6;font-size:15.6px;color:#fff}
.footer-col li,.footer-col li a{font-size:15.6px;line-height:24.96px}
.footer-heading{
  font-family:"Montserrat",Arial,sans-serif;font-weight:700;
  font-size:15.6px;line-height:24.96px;color:#fff;
  margin:0 0 .75rem;letter-spacing:normal;text-transform:none;
}
@media (max-width:639px){.footer-nav{grid-template-columns:1fr;gap:2rem}}

/* RIGHT — newsletter + NDIS badges */
.footer-cta{display:flex;flex-direction:column;gap:2rem}
.footer-newsletter h2.newsletter-form-header-title{
  font-family:"Montserrat",Arial,sans-serif;font-weight:600;
  font-size:19.2px;line-height:26.88px;color:#fff;
  margin:0 0 1rem;letter-spacing:normal;
}
.sda-newsletter-form{display:flex;flex-wrap:wrap;gap:.75rem;align-items:stretch}
.sda-newsletter-form input[type="email"]{
  flex:1 1 220px;min-width:200px;
  padding:14px 18px;font:400 13.2px/1.1 "Montserrat",Arial,sans-serif;
  background:#fff;color:#000;border:1px solid rgba(0,0,0,.12);
}
.sda-newsletter-form .btn{
  padding:14px 24px;font:600 18px/1 "Montserrat",Arial,sans-serif;
  background:rgb(131,220,218);color:#fff;border:0;
  text-transform:uppercase;cursor:pointer;text-decoration:none;
  transition:opacity .15s ease;
}
.sda-newsletter-form .btn:hover{opacity:.88}
.sda-newsletter-form .sr{position:absolute;left:-9999px}
.footer-newsletter .ff-el-input--label,
.footer-newsletter .ff-el-input--label label{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.footer-ndis-badges{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap}
.footer-ndis-cert{max-height:160px;width:auto;height:auto;display:block}
.footer-ndis-support{max-height:110px;width:auto;height:auto;display:block;border-radius:50%}

/* ─── youtube embeds ──────────────────────────────────────────────── */
.video-embed{position:relative;aspect-ratio:16/9;background:#000;overflow:hidden}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

/* ─── ESG-aligned intro section (mirrors sdaboots.com/investors §6948d0974df86e7048827222) ─── */
.esg-intro .esg-intro-head{
  max-width:1180px;margin:0 auto;text-align:center;
  display:flex;flex-direction:column;gap:1.25rem;
}
.esg-intro .esg-intro-head h2{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:clamp(1.5rem,2.4vw,2rem);line-height:1.25;
  font-weight:600;color:var(--dark);margin:0;
}
.esg-intro .esg-intro-head h2 strong{font-weight:700}
.esg-intro .esg-intro-head h3{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:clamp(1.125rem,1.6vw,1.375rem);line-height:1.35;
  font-weight:500;color:var(--dark);margin:0;
}
.esg-intro .esg-intro-head p{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:1rem;line-height:1.6;color:var(--dark);
  max-width:980px;margin:0 auto;
}
.esg-intro .esg-intro-video{
  max-width:980px;margin:2.5rem auto 0;
}
.esg-intro .esg-intro-caption{
  text-align:center;font-family:"Montserrat",Arial,sans-serif;
  font-size:1rem;line-height:1.55;color:var(--muted);
  margin:1.25rem auto 0;max-width:880px;
}
@media (max-width:767px){
  .esg-intro .esg-intro-head{gap:1rem}
  .esg-intro .esg-intro-head h2{font-size:1.375rem}
  .esg-intro .esg-intro-head h3{font-size:1.0625rem}
  .esg-intro .esg-intro-video{margin-top:2rem}
}

/* ─── 404 ─────────────────────────────────────────────────────────── */
.error-404{padding:120px 1.5rem 4rem;text-align:center;min-height:60vh;display:flex;flex-direction:column;justify-content:center;align-items:center}
.error-404 h1{font-size:clamp(3rem,8vw,6rem);color:var(--accent);margin-bottom:.5rem}

/* ─── HIA Apollo callout — mirrors live data-section-id 6941fe3ea68e11470812b5a5 ───
   2-col grid: left = badges row + heading; right = two big award images side-by-side.
   Background gray (live's full-bleed image dropped per design pref). */
.hia-callout{
  background-color:#f5f5f5;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  padding:6rem 0;
  position:relative;
}
.hia-callout .hia-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:2.5rem;
  align-items:center;
}
/* LEFT — badges (top, side-by-side) + heading (below) */
.hia-callout .hia-left{display:flex;flex-direction:column;align-items:center;gap:1.5rem;text-align:center}
.hia-callout .hia-badges{
  display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;
  align-items:center;justify-items:center;
  width:100%;max-width:380px;
}
.hia-callout .hia-badge{width:100%;max-width:170px;height:auto;object-fit:contain;border-radius:4px}
.hia-callout .hia-text{max-width:560px}
.hia-callout .hia-text h2{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:24px;line-height:32.256px;
  color:rgb(1,9,55);
  margin:0 0 24px;font-weight:600;letter-spacing:normal;
}
.hia-callout .hia-text h2 strong{font-weight:700}
.hia-callout .hia-text h4{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:15.6px;line-height:21.5779px;
  color:rgb(0,0,0);
  margin:24px 0 0;font-weight:600;letter-spacing:normal;
}
.hia-callout .hia-text h4 strong{font-weight:700}
/* RIGHT — two large award PNGs side-by-side */
.hia-callout .hia-right{
  display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;
  align-items:center;justify-items:center;
}
.hia-callout .hia-award{
  width:100%;max-width:320px;height:auto;
  object-fit:contain;
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.18));
}
@media (max-width:1023px){
  .hia-callout{padding:4rem 0;background-color:rgba(255,255,255,.85);background-blend-mode:lighten}
  .hia-callout .hia-grid{grid-template-columns:1fr;gap:2rem}
  .hia-callout .hia-right{order:2}
  .hia-callout .hia-left{order:1}
}
@media (max-width:639px){
  .hia-callout .hia-badges{max-width:300px}
  .hia-callout .hia-badge{max-width:140px}
  .hia-callout .hia-award{max-width:200px}
}

/* ─── Testimonials carousel — mirrors live section 6941e5fa60a3c77bd7331730 ─── */
.testimonials-section{background:#fff!important;padding:3.3vmax 0}
.testimonials-section .container-fluid{max-width:1500px;margin:0 auto;padding:0 4vw;position:relative}
.testimonial-carousel{position:relative;padding:0 76px}
.testimonial-track{
  display:flex;overflow-x:auto;scroll-snap-type:x mandatory;
  scrollbar-width:none;-ms-overflow-style:none;
  gap:0;
}
.testimonial-track::-webkit-scrollbar{display:none}
.testimonial-slide{
  flex:0 0 33.3333%;scroll-snap-align:start;
  display:flex;flex-direction:column;align-items:center;
  padding:0 1rem;
}
.testimonial-image{
  width:200px;height:200px;border-radius:50%;overflow:hidden;
  margin-bottom:16px;
}
.testimonial-image img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.testimonial-content{
  width:90%;max-width:300px;text-align:center;
}
.testimonial-content h2{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:1.6rem;line-height:25.8048px;font-weight:600;
  color:rgb(1,9,55);letter-spacing:normal;
  margin:0 0 8px;
}
.testimonial-content p{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:0.9rem;line-height:19.2px;font-weight:400;
  color:rgb(1,9,55);margin:0;
  white-space:pre-wrap;
}
.testimonial-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:60px;height:60px;border-radius:50%;
  background:rgb(10,186,181);border:0;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  z-index:2;transition:opacity .2s ease;
  padding:0;
}
.testimonial-nav:hover{opacity:.85}
.testimonial-prev{left:0}
.testimonial-next{right:0}
.testimonial-nav svg{display:block}
@media (max-width:1023px){
  .testimonial-slide{flex:0 0 50%}
  .testimonial-content{width:70%}
}
@media (max-width:639px){
  .testimonial-carousel{padding:0 50px}
  .testimonial-slide{flex:0 0 100%}
  .testimonial-content{width:80%}
  .testimonial-nav{width:44px;height:44px}
  .testimonial-nav svg{width:24px;height:24px}
}

/* ─── Ready to Take The Next Step? — mirrors live section ─── */
.next-step-section{background:var(--light)!important;padding:3.3vmax 0}
.next-step-section .container-wide{max-width:1500px}
.next-step-head{text-align:center;max-width:1112px;margin:0 auto 2.5rem;padding:0 4rem}
.next-step-head h2{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:24px;line-height:32.256px;font-weight:600;
  color:rgb(1,9,55);
  margin:0 0 .75rem;letter-spacing:normal;
}
.next-step-head p{
  font-family:"Montserrat",Arial,sans-serif;
  font-size:15.6px;line-height:24.96px;font-weight:400;
  color:#000;margin:0;letter-spacing:normal;
}
.audience-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:11px;max-width:1112px;margin:0 auto;
}
.audience-card{
  display:flex;flex-direction:column;text-decoration:none;
  position:relative;color:inherit;background:transparent;
}
.audience-card .audience-image{
  position:relative;width:100%;aspect-ratio:3/2;overflow:hidden;
}
.audience-card .audience-image img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .35s ease;
}
.audience-card .audience-overlay{
  position:absolute;inset:0;background:rgba(0,0,0,.5);opacity:0;
  transition:opacity .25s ease;pointer-events:none;
}
.audience-card:hover .audience-overlay{opacity:1}
.audience-card:hover .audience-image img{transform:scale(1.03)}
.audience-card .audience-button{
  display:flex;align-items:center;justify-content:center;
  width:100%;
  background:rgb(10,186,181);color:#fff;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:18px;font-weight:600;
  text-transform:uppercase;letter-spacing:normal;
  padding:0 57.6px;line-height:normal;
  min-height:69px;
  border:1px solid #fff;
  text-align:center;
  transition:background-color .2s ease;
}
.audience-card:hover .audience-button{background:#089b97}
@media (max-width:767px){
  .next-step-head{padding:0 1rem}
  .next-step-head h2{font-size:24px;line-height:1.3}
  .next-step-head p{font-size:15px;line-height:1.55}
  .audience-grid{grid-template-columns:1fr;gap:24px;max-width:480px}
  .audience-card .audience-button{font-size:17px}
}

/* ─── 3-up differentiator cards — mirrors sdaboots.com section 6941e5fa60a3c77bd733172a ─── */
.differentiator-eyebrow{margin-bottom:2rem}
.differentiator-eyebrow p{
  max-width:none;margin:0 auto;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:24px;line-height:1.6;font-weight:600;
  color:#000;
  letter-spacing:0;text-transform:none;
}
.differentiator-grid{gap:2rem;align-items:start}
.differentiator-card{
  background:transparent;border:0;padding:1rem .75rem;
  display:flex;flex-direction:column;align-items:center;gap:.75rem;
}
.differentiator-card .differentiator-icon{
  width:90px;height:90px;display:block;margin:0 auto;
  object-fit:contain;
}
.differentiator-card h2{
  font-size:14.4px;
  line-height:1.34;font-weight:600;color:#000;
  margin:0;max-width:none;
  font-family:"Montserrat",Arial,sans-serif;
}
@media (max-width:767px){
  .differentiator-card{padding:.75rem 0}
  .differentiator-card .differentiator-icon{width:100px;height:100px}
  .differentiator-card h2{font-size:.9375rem}
}

/* ─── About the program section (matches sdaboots.com left-headings + right-body) ─── */
.about-program-headings h3{
  font-family:"Montserrat",Arial,sans-serif;
  font-weight:700;
  font-size:clamp(1.5rem,2.2vw,2rem);
  line-height:1.2;
  color:var(--dark);
  margin:0;
}
.about-program-body p{
  font-size:1rem;
  line-height:1.65;
  margin:0 0 1rem;
}
.about-program-body p:last-child{margin-bottom:0}

/* ─── utility ─────────────────────────────────────────────────────── */
.text-center{text-align:center}
.muted{color:var(--muted)}
.hidden{display:none!important}
.lead{font-size:clamp(1.0625rem,1.4vw,1.25rem);font-weight:300;line-height:1.55}

/* ─── centered hero variant (matches sdaboots.com /investors, /about-us) ── */
body.hero--center .hero .hero-inner{
  text-align:center;
  max-width:880px;
  margin:0 auto;
}
body.hero--center .hero .hero-inner .lead,
body.hero--center .hero .hero-inner p{margin-left:auto;margin-right:auto}
body.hero--center .hero h1{
  color:var(--accent);
  margin-left:auto;margin-right:auto;
  max-width:18ch;
  line-height:1.05;
}
body.hero--center .hero .eyebrow{color:var(--accent)}
/* investors hero overrides body.hero--center — alternating teal/white to match sdaboots.com */
body.hero--center .hero-investors h1{color:#fff;max-width:none;line-height:1.287}
body.hero--center .hero-investors .hero-eyebrow,
body.hero--center .hero-investors .hero-subtitle{color:#0abab5}
body.hero--center .hero-investors .hero-tagline{color:#fff}
body.hero--center .hero .btn-row{justify-content:center}

/* /about-us — hero eyebrow hidden, "with you, for you" inline (matches live) */
body.page-about .hero .eyebrow{display:none}
body.page-about .hero .hero-inner img{margin:0 auto;max-width:340px}
body.page-about .hero h1{color:var(--accent)}
body.page-about .hero .hero-inner{text-align:center;max-width:980px;margin:0 auto}

/* ─── /investors — 5-up investment highlights cards ───────────────── */
.inv-highlights{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:1.25rem;
  margin-bottom:2.5rem;
}
.inv-highlights-card{
  background:var(--white);
  border:1px solid rgba(6,26,58,.08);
  padding:1.75rem 1.25rem;
  display:flex;flex-direction:column;
  text-align:center;
  min-height:220px;
}
.inv-highlights-card h3{
  font-size:.9375rem;
  text-transform:uppercase;letter-spacing:.08em;
  font-weight:600;color:var(--dark);
  margin:0 0 1rem;
}
.inv-highlights-card p{
  margin:0;
  font-size:.95rem;
  line-height:1.5;
  color:var(--dark);
}
.inv-highlights-card .inv-figure{
  font-family:"Montserrat",sans-serif;font-weight:700;
  font-size:clamp(1.75rem,2.6vw,2.25rem);
  color:var(--accent);
  line-height:1.1;
}
.inv-highlights-card sup{font-size:.5em;vertical-align:super;font-weight:600}
.inv-footnotes{
  max-width:880px;margin:0 auto;
  font-size:.8125rem;line-height:1.55;color:var(--muted);
  text-align:left;
}
@media (max-width:1023px){
  .inv-highlights{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:639px){
  .inv-highlights{grid-template-columns:1fr}
  .inv-highlights-card{min-height:0}
}

/* ─── /investors — contact cards (3-up, photo + role + quote) ─────── */
.contact-cards{align-items:stretch}
.contact-card{
  background:var(--white);
  border:1px solid rgba(6,26,58,.08);
  margin:0;
  padding:2rem 1.75rem;
  display:flex;flex-direction:column;gap:1.25rem;
  text-align:center;
}
.contact-card-photo{display:flex;justify-content:center}
.contact-card-photo img{
  width:140px;height:140px;border-radius:50%;
  object-fit:cover;display:block;
}
.contact-card h3{
  font-size:1.125rem;
  margin:0 0 .75rem;
  font-weight:700;color:var(--dark);
}
.contact-card blockquote{
  margin:0;padding:0;border:0;
  font-size:.95rem;line-height:1.6;
  font-style:italic;color:var(--dark);
  text-align:left;
}

/* ─── /investors — Disclaimer block ───────────────────────────────── */
.disclaimer{max-width:880px;margin:0 auto}
.disclaimer h3{
  font-size:1.125rem;font-weight:700;
  margin:0 0 1rem;
}
.disclaimer p{
  font-size:.8125rem;line-height:1.65;color:var(--muted);
  margin:0 0 1rem;
}
.disclaimer p:last-child{margin-bottom:0}
