/* Owen Sound Stairlift - design system
   Plain HTML + CSS, no build step, opens offline.
   Brand: deep navy committed to full bands. One accent, locked.
   Type: Lexend (headings) + Source Sans 3 (body), self-hosted for offline + reading ease.
   Radius rule: buttons = pill, cards/panels = 14px, inputs = 10px.
   Motion: subtle, reduced-motion safe. */

/* ---------- Fonts (self-hosted, offline) ---------- */
@font-face{font-family:"Lexend";font-style:normal;font-weight:400;font-display:swap;src:url("fonts/lexend-latin-400-normal.woff2") format("woff2")}
@font-face{font-family:"Lexend";font-style:normal;font-weight:600;font-display:swap;src:url("fonts/lexend-latin-600-normal.woff2") format("woff2")}
@font-face{font-family:"Lexend";font-style:normal;font-weight:700;font-display:swap;src:url("fonts/lexend-latin-700-normal.woff2") format("woff2")}
@font-face{font-family:"Lexend";font-style:normal;font-weight:800;font-display:swap;src:url("fonts/lexend-latin-800-normal.woff2") format("woff2")}
@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:400;font-display:swap;src:url("fonts/source-sans-3-latin-400-normal.woff2") format("woff2")}
@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:600;font-display:swap;src:url("fonts/source-sans-3-latin-600-normal.woff2") format("woff2")}
@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:700;font-display:swap;src:url("fonts/source-sans-3-latin-700-normal.woff2") format("woff2")}

/* ---------- Tokens ---------- */
:root{
  --font-head:"Lexend", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body:"Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --wrap:1120px;

  --paper:#ffffff;
  --mist:#eef1f4;
  --surface:#ffffff;
  --ink:#161e28;
  --body:#3a4552;
  --muted:#566371;
  --line:#dbe1e8;
  --accent:#2c4a6e;
  --accent-2:#1b2f47;
  --ring:#1b2f47;

  /* brand bands stay navy in both themes */
  --band:linear-gradient(155deg,#2e5079 0%,#1b2f47 100%);
  --band-deep:#152233;
  --on-band:#ffffff;
  --on-band-soft:#d3ddea;

  --r-card:14px;
  --r-input:10px;
  --shadow:0 12px 34px rgba(15,25,40,.10);
  --shadow-soft:0 6px 18px rgba(15,25,40,.07);
}
@media (prefers-color-scheme:dark){
  :root{
    --paper:#0d1218;
    --mist:#131a22;
    --surface:#171f29;
    --ink:#e9edf2;
    --body:#bcc4cf;
    --muted:#8f9aa8;
    --line:#262f3b;
    --accent:#7ea6d6;
    --accent-2:#7ea6d6;
    --ring:#a9c4e6;
    --shadow:0 14px 36px rgba(0,0,0,.5);
    --shadow-soft:0 6px 18px rgba(0,0,0,.4);
  }
}

/* ---------- Base ---------- */
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}
body{
  margin:0;background:var(--paper);color:var(--body);
  font-family:var(--font-body);font-size:1.0625rem;line-height:1.6;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
h1,h2,h3,h4{font-family:var(--font-head);color:var(--ink);margin:0 0 .5em;line-height:1.12;letter-spacing:-.02em;text-wrap:balance}
h1{font-size:clamp(2.1rem,5vw,3.35rem);font-weight:800}
h2{font-size:clamp(1.7rem,3.6vw,2.5rem);font-weight:700}
h3{font-size:1.24rem;font-weight:700;letter-spacing:-.01em}
h4{font-size:.95rem;font-weight:700;letter-spacing:.01em}
p{margin:0 0 1rem;max-width:66ch;text-wrap:pretty}
a{color:var(--accent);text-underline-offset:3px}
strong{color:var(--ink)}
:focus-visible{outline:3px solid var(--ring);outline-offset:3px;border-radius:8px}
/* navy ring is invisible on navy bands; use the light ring there */
.band :focus-visible,.hero-photo :focus-visible,.footer :focus-visible,.callbar:focus-visible{outline-color:#a9c4e6}

.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:clamp(1rem,4vw,2rem)}
.section{padding-block:clamp(3.25rem,7vw,5.5rem)}
.section.mist{background:var(--mist)}
.section-lead{font-size:1.15rem;color:var(--muted);max-width:60ch;margin-bottom:2rem}

.skip{position:absolute;left:-9999px;top:0;background:var(--accent);color:#fff;padding:.75rem 1rem;border-radius:0 0 10px 0;z-index:200}
.skip:focus{left:0}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--font-head);font-weight:700;font-size:1.02rem;line-height:1;
  padding:.95rem 1.5rem;min-height:48px;border-radius:999px;border:1.5px solid transparent;
  text-decoration:none;cursor:pointer;white-space:nowrap;
  transition:transform .16s ease, background-color .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn svg{width:1.15em;height:1.15em;flex:none}
.btn--solid{background:var(--accent);color:#fff}
.btn--solid:hover{background:var(--accent-2);box-shadow:var(--shadow-soft);transform:translateY(-1px)}
.btn--ghost{background:transparent;color:var(--accent);border-color:var(--accent)}
.btn--ghost:hover{background:rgba(44,74,110,.08)}
.btn--onband{background:#fff;color:#1b2f47}
.btn--onband:hover{background:#eaf0f7;box-shadow:0 8px 22px rgba(0,0,0,.18)}
.btn--ghostband{background:transparent;color:#fff;border-color:rgba(255,255,255,.6)}
.btn--ghostband:hover{background:rgba(255,255,255,.14)}
.btn:active{transform:translateY(1px)}
@media (prefers-reduced-motion:reduce){.btn{transition:none}}

/* ---------- Header / nav ---------- */
.site-header{position:sticky;top:0;z-index:100;background:color-mix(in srgb,var(--paper) 90%,transparent);backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:72px}
.brand{display:flex;flex-direction:column;line-height:1.05;text-decoration:none}
.brand b{font-family:var(--font-head);font-size:1.18rem;font-weight:800;color:var(--ink);letter-spacing:-.02em}
.brand span{font-size:.74rem;color:var(--muted);margin-top:3px}
.nav-links{display:flex;align-items:center;gap:1.6rem}
.nav-links a{color:var(--ink);text-decoration:none;font-weight:600;font-size:1rem}
.nav-links a:hover{color:var(--accent)}
.nav-actions{display:flex;align-items:center;gap:.9rem}
.nav-phone{display:inline-flex;align-items:center;gap:.4rem;color:var(--ink);text-decoration:none;font-weight:700;font-family:var(--font-head)}
.nav-phone svg{width:1.1em;height:1.1em;color:var(--accent)}
.m-menu{position:relative}
.m-menu>summary{list-style:none;display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border:1.5px solid var(--line);border-radius:12px;cursor:pointer;color:var(--ink)}
.m-menu>summary::-webkit-details-marker{display:none}
.m-menu[open]>summary{background:var(--mist)}
.m-panel{position:absolute;right:0;top:calc(100% + .6rem);background:var(--surface);border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);padding:.6rem;display:grid;gap:.2rem;min-width:240px}
.m-panel a{color:var(--ink);text-decoration:none;font-weight:600;padding:.7rem .8rem;border-radius:10px}
.m-panel a:hover{background:var(--mist)}
.m-menu{display:none}
@media (max-width:900px){
  .nav-links,.nav-book{display:none}
  .m-menu{display:block}
}
@media (max-width:420px){.nav-phone span{display:none}}

/* ---------- Bands ---------- */
.band{background:var(--band);color:var(--on-band)}
.band h1,.band h2,.band h3{color:var(--on-band)}
.band p{color:var(--on-band-soft)}

/* ---------- Hero ---------- */
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);color:#fff;font-family:var(--font-head);font-weight:600;font-size:.86rem;padding:.4rem .8rem;border-radius:999px;margin-bottom:1.15rem}
.hero-badge svg{width:1em;height:1em}
.lead{font-size:1.24rem;line-height:1.5;max-width:34ch}
.hero-actions{display:flex;flex-wrap:wrap;gap:.85rem;margin-top:1.6rem}
@keyframes rise{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
@media (max-width:820px){
  .lead{max-width:60ch}
}

/* ---------- Chooser cards (inline cross-links) ---------- */
.choose-card{
  display:flex;flex-direction:column;gap:.3rem;text-decoration:none;color:var(--body);
  background:var(--surface);border:1px solid var(--line);border-radius:var(--r-card);
  padding:1.15rem;box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.choose-card h3{margin-bottom:.15em}
.choose-card p{margin-bottom:.5rem}
.choose-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:rgba(44,74,110,.4)}
.choose-go{display:inline-flex;align-items:center;gap:.4rem;color:var(--accent);font-family:var(--font-head);font-weight:700;margin-top:.9rem}
.choose-go svg{width:1.05em;height:1.05em;transition:transform .18s ease}
.choose-card:hover .choose-go svg{transform:translateX(4px)}
@media (max-width:720px){.btn:active{transform:none}}
@media (prefers-reduced-motion:reduce){.choose-card,.choose-go svg{transition:none}}

/* ---------- Why ---------- */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem 2.5rem}
.why-item{display:flex;gap:1rem;padding-top:1.25rem;border-top:1px solid var(--line)}
.why-ic{flex:none;width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:rgba(44,74,110,.1);color:var(--accent)}
.why-ic svg{width:24px;height:24px}
.why-item h3{margin-bottom:.25em}
.why-item p{margin:0;color:var(--body)}
@media (max-width:720px){.why-grid{grid-template-columns:1fr;gap:0}}

/* ---------- Steps ---------- */
.steps-grid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem;counter-reset:step}
.step{position:relative}
.step-n{display:grid;place-items:center;width:44px;height:44px;border-radius:999px;background:var(--accent);color:#fff;font-family:var(--font-head);font-weight:800;font-size:1.15rem;margin-bottom:1rem}
.step h3{margin-bottom:.3em}
.step p{margin:0}
@media (max-width:720px){.steps-grid{grid-template-columns:1fr;gap:1.5rem}}

/* ---------- Quotes ---------- */
.quote-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.quote{margin:0;background:var(--surface);border:1px solid var(--line);border-radius:var(--r-card);padding:1.5rem;box-shadow:var(--shadow-soft)}
.quote blockquote{margin:0 0 1rem;font-size:1.1rem;color:var(--ink);line-height:1.5}
.quote figcaption{font-family:var(--font-head);font-weight:600;color:var(--muted);font-size:.95rem}
@media (max-width:820px){.quote-grid{grid-template-columns:1fr}}

/* ---------- Book / CTA ---------- */
.cta-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(1.5rem,4vw,3rem);align-items:start}
.cta-phone{font-size:1.1rem;margin-top:1rem}
.cta-phone a{color:#fff;font-weight:700}
.form{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.22);border-radius:var(--r-card);padding:clamp(1.25rem,3vw,1.75rem);display:grid;gap:1rem}
.field{display:grid;gap:.4rem}
.field label{font-family:var(--font-head);font-weight:600;color:#fff;font-size:.98rem}
.req{color:#a9c4e6;text-decoration:none}
.field input,.field select,.field textarea{
  /* background is fixed white in both themes, so ink and UA controls must stay light-scheme */
  font-family:var(--font-body);font-size:1.02rem;color:#161e28;background:#fff;color-scheme:light;
  border:1px solid transparent;border-radius:var(--r-input);padding:.8rem .9rem;width:100%;
}
.field input:focus-visible,.field select:focus-visible,.field textarea:focus-visible{outline:3px solid #a9c4e6;outline-offset:2px}
.form .btn{margin-top:.25rem}
.form-fine{color:var(--on-band-soft);font-size:.85rem;margin:0}
.form-done{color:#fff;font-size:1.15rem;line-height:1.55;margin:0;padding-block:1rem}
.form-error{color:#fff;font-weight:600;margin:0}
.form button[disabled]{opacity:.7;cursor:wait}
@media (max-width:820px){.cta-grid{grid-template-columns:1fr}}

/* ---------- Footer ---------- */
.footer{background:var(--band-deep);color:#fff}
.footer .wrap{padding-block:clamp(2.5rem,5vw,3.5rem)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:2rem}
.footer h4{color:#fff;text-transform:uppercase;font-size:.8rem;letter-spacing:.08em;margin-bottom:.9rem;opacity:.85}
.footer p{color:var(--on-band-soft);margin:0 0 .5rem}
.foot-brand{font-family:var(--font-head);font-weight:800;font-size:1.2rem;color:#fff}
.foot-sub{color:#fff;font-weight:600}
.footer a{color:#fff;text-decoration:none;display:block;margin-bottom:.5rem}
.footer nav a{color:var(--on-band-soft)}
.footer a:hover{text-decoration:underline}
.foot-legal{border-top:1px solid rgba(255,255,255,.16);padding-top:1.25rem;margin-top:1.75rem}
.foot-legal p{font-size:.85rem;color:var(--on-band-soft);margin:0}
@media (max-width:720px){.footer-grid{grid-template-columns:1fr;gap:1.75rem}}

/* ---------- Mobile call bar ---------- */
.callbar{display:none}
@media (max-width:720px){
  .callbar{
    display:flex;align-items:center;justify-content:center;gap:.5rem;
    position:fixed;left:0;right:0;bottom:0;z-index:150;
    background:var(--accent);color:#fff;text-decoration:none;
    font-family:var(--font-head);font-weight:700;font-size:1.1rem;
    padding:.95rem 1rem;padding-bottom:calc(.95rem + env(safe-area-inset-bottom));
    box-shadow:0 -6px 20px rgba(0,0,0,.18);
  }
  .callbar svg{width:1.2em;height:1.2em}
  body{padding-bottom:64px}
}

/* ===== v2: photo-forward ===== */
.hero-photo{position:relative;isolation:isolate;overflow:hidden;background:var(--accent-2)}
.hero-photo .hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:72% center;z-index:0}
video.hero-bg{pointer-events:none}
/* Show the whole video frame (no crop), anchored right; navy fills the rest.
   The left edge feathers into the navy so there is no visible seam. */
.hero-photo video.hero-bg{
  object-fit:contain;object-position:right center;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 22%);
  mask-image:linear-gradient(90deg,transparent 0,#000 22%);
}
@media (max-width:820px){
  .hero-photo video.hero-bg{object-fit:cover;object-position:center;-webkit-mask-image:none;mask-image:none}
}
.hero-photo .scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(100deg,rgba(21,34,51,.96) 0%,rgba(27,47,71,.88) 40%,rgba(27,47,71,.48) 72%,rgba(27,47,71,.08) 100%)}
.hero-photo .wrap{position:relative;z-index:2}
.hero-inner{max-width:600px;color:#fff;padding-block:clamp(3.5rem,9vw,6.25rem)}
.hero-inner h1{color:#fff;margin-bottom:.4em}
.hero-inner .lead{color:var(--on-band-soft);max-width:38ch}
.hero-inner .hero-actions{margin-top:1.6rem}
@media (prefers-reduced-motion:no-preference){
  .hero-inner>*{animation:rise .6s cubic-bezier(.16,1,.3,1) both}
  .hero-inner>*:nth-child(2){animation-delay:.05s}
  .hero-inner>*:nth-child(3){animation-delay:.1s}
  .hero-inner>*:nth-child(4){animation-delay:.15s}
}
@media (max-width:820px){
  .hero-photo .scrim{background:linear-gradient(180deg,rgba(21,34,51,.4) 0%,rgba(21,34,51,.62) 42%,rgba(21,34,51,.94) 100%)}
  .hero-inner{max-width:none;padding-top:clamp(9rem,44vw,15rem)}
}

/* photo chooser cards */
.choose-card--photo{position:relative;overflow:hidden;padding:0;border:none;min-height:420px;display:flex;flex-direction:column;justify-content:flex-end;box-shadow:var(--shadow-soft)}
.choose-card--photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 25%;z-index:0;transition:transform .45s cubic-bezier(.16,1,.3,1)}
.choose-card--photo .cc-body{position:relative;z-index:1;width:100%;padding:1.75rem 1.4rem 1.5rem;color:#fff;background:linear-gradient(180deg,rgba(21,34,51,0) 0%,rgba(21,34,51,.55) 62%,rgba(21,34,51,.94) 100%)}
.choose-card--photo .cc-body h3,.choose-card--photo .cc-body p{color:#fff}
.choose-card--photo .choose-go{color:#fff}
.choose-card--photo:hover{transform:none}
.choose-card--photo:hover img{transform:scale(1.045)}
@media (prefers-reduced-motion:reduce){.choose-card--photo img{transition:none}}

/* split media band */
.split{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(1.5rem,4vw,3rem);align-items:center}
.split-media{display:grid;grid-template-columns:1fr 1fr;gap:1rem;align-items:end;background:var(--mist);border-radius:var(--r-card);padding:clamp(1.25rem,3vw,2rem)}
.split-media img{width:100%;height:auto;border-radius:14px;box-shadow:var(--shadow)}
.split-media img:first-child{align-self:start;transform:translateY(1.5rem)}
.split-copy h2{margin-bottom:.4em}
@media (max-width:820px){.split{grid-template-columns:1fr}.split-media img:first-child{transform:none}}
@media (max-width:520px){.split-media{grid-template-columns:1fr}.split-media img:first-child{display:none}}

/* ===== v3: subpage hero + gallery + inline chooser ===== */
.hero-photo--sub{min-height:clamp(320px,44vw,460px);display:flex;align-items:flex-end}
.hero-photo--sub .hero-bg{object-position:center 20%}
.hero-photo--sub .hero-inner{padding-block:clamp(2.75rem,7vw,4.5rem)}

.split--rev .split-media{order:2}
@media (max-width:820px){.split--rev .split-media{order:-1}}

.split-media--gallery{grid-template-columns:1.1fr .9fr}
.split-media--gallery img:first-child{transform:none;align-self:center}
.split-media--gallery img:last-child{align-self:center}
.split-media--single{grid-template-columns:1fr}
.split-media--single img:first-child{transform:none;align-self:center}
@media (max-width:520px){.split-media--gallery img:first-child{display:block}}

.choose-card--inline{max-width:460px;min-height:300px}

/* ===== v4: feature grid, product cards, gallery ===== */
.feature-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1.25rem}
.feature-card{display:flex;flex-direction:column;gap:.15rem}
.feature-card img{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;border-radius:var(--r-card);margin-bottom:.85rem;box-shadow:var(--shadow-soft);display:block}
.feature-card h3{font-size:1.05rem;margin-bottom:.25em}
.feature-card p{margin:0;font-size:.92rem;color:var(--muted)}
@media (max-width:980px){.feature-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.feature-grid{grid-template-columns:1fr}}

.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.product-grid--3{grid-template-columns:repeat(3,1fr)}
.product-grid--2{grid-template-columns:repeat(2,1fr);max-width:940px;margin-inline:auto}
.product-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-card);overflow:hidden;box-shadow:var(--shadow-soft);display:flex;flex-direction:column;transition:transform .18s ease,box-shadow .18s ease}
.product-card img{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;display:block}
.product-body{padding:1.1rem 1.2rem 1.35rem;display:flex;flex-direction:column;flex:1}
.product-body h3{margin-bottom:.3em}
.product-body p{flex:1;font-size:.95rem}
.product-body .btn{align-self:flex-start;margin-top:.4rem}
.product-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.section-cta{margin-top:2.25rem;text-align:center}
@media (max-width:980px){.product-grid,.product-grid--3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.product-grid,.product-grid--3{grid-template-columns:1fr}}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.gallery-grid img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--r-card);box-shadow:var(--shadow-soft)}
@media (max-width:780px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.gallery-grid{grid-template-columns:1fr}}

/* ===== v5: straight vs curved chooser strip ===== */
.compare-strip{background:var(--mist);border-bottom:1px solid var(--line)}
.compare-inner{padding-block:clamp(2.25rem,5vw,3.5rem)}
.compare-copy{max-width:620px;margin-inline:auto;text-align:center}
.compare-copy h2{margin-bottom:.35em}
.compare-copy p{color:var(--muted);margin-inline:auto}
.compare-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:.85rem;margin-top:1.35rem}

/* ===== v6: polish pass (impeccable) ===== */
/* Header lifts off the page once you scroll */
.site-header{transition:box-shadow .25s ease}
.site-header.scrolled{box-shadow:0 4px 18px rgba(15,25,40,.08)}

/* Gallery images respond to touch/hover, GPU transform only */
@media (prefers-reduced-motion:no-preference){
  .gallery-grid img{transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease}
  .gallery-grid img:hover{transform:scale(1.02);box-shadow:var(--shadow)}
}

/* Scroll reveal: JS opts elements in; without JS everything is simply visible.
   Scoped to screen so unrevealed sections never print blank. */
@media screen and (prefers-reduced-motion:no-preference){
  .reveal{opacity:0;transform:translateY(14px);transition:opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);transition-delay:var(--reveal-delay,0s)}
  .reveal.in-view{opacity:1;transform:none}
}

/* Google rating line above reviews */
.rating-line{font-family:var(--font-head);font-weight:700;color:var(--ink);font-size:1.05rem;margin-bottom:1.75rem}
.rating-line .stars{color:var(--accent);letter-spacing:.15em;margin-right:.35rem}

/* FAQ accordion (native details/summary, no JS required) */
.faq-list{max-width:820px;border-top:1px solid var(--line)}
.faq{border-bottom:1px solid var(--line)}
.faq summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1.1rem 0;font-family:var(--font-head);font-weight:700;color:var(--ink);font-size:1.08rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-size:1.5rem;line-height:1;color:var(--accent);flex:none}
.faq[open] summary::after{content:"\2212"}
.faq p{margin:0 0 1.15rem;color:var(--body)}
.faq summary:hover{color:var(--accent)}

/* ===== v7: compact mobile — card grids become horizontal swipe rows ===== */
@media (max-width:820px){
  .section{padding-block:2.4rem}
  .section-lead{margin-bottom:1.4rem}
  .feature-grid,.product-grid,.product-grid--2,.product-grid--3,.gallery-grid,.quote-grid{
    display:flex;overflow-x:auto;gap:.9rem;
    scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
    scrollbar-width:thin;padding-bottom:.6rem;margin-top:1.25rem;
  }
  .feature-card,.product-card,.quote{flex:0 0 76%;scroll-snap-align:start}
  .feature-card{flex-basis:62%}
  .gallery-grid img{flex:0 0 72%;width:72%;scroll-snap-align:start}
  /* assessment-band photos: side by side instead of stacked */
  .split-media--gallery{grid-template-columns:1fr 1fr}
  .split-media--gallery img:first-child{display:block}
  .section-cta{margin-top:1.4rem}
}

/* Power options: one compact row so it reads differently from the why-grid */
.power-grid{grid-template-columns:repeat(4,1fr);gap:1.5rem}
.power-grid .why-item{flex-direction:column;gap:.75rem}
@media (max-width:980px){.power-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.power-grid{grid-template-columns:1fr;gap:0}.power-grid .why-item{flex-direction:row;gap:1rem}}
