/* ==========================================================================
   Acosta Pro Aluminum Screen — stylesheet
   Tokens first. Change a token, the whole site follows. Swap the --brand-*
   values for colors sampled from the logo and nothing else needs to move.
   ========================================================================== */

:root{
  /* Brand — sampled from the Acosta Pro logo. There is no orange in this
     identity; the accent is the logo's cyan-blue apex. ------------------- */
  --navy-900:#04121F;   /* the logo's own background */
  --navy-800:#072742;
  --navy-700:#0B3A63;   /* primary surface. white text on this = 11.6:1 */
  --navy-600:#0F4E86;
  --blue-700:#0B57A4;
  --blue-600:#1273CE;   /* links on white = 4.8:1 */
  --blue-500:#3FA9F5;   /* CTA fill. navy-900 text on this = 7.4:1 */
  --blue-400:#7FD9FF;   /* the logo's apex — CTA hover, accents on dark */
  --blue-100:#E4F2FD;
  --blue-line:#BBDDF7;
  --amber-400:#FBBF24;  /* review stars: a rating colour, not a brand colour */
  --green-700:#15803D;

  /* Neutrals ------------------------------------------------------------- */
  --ink:#0F172A;
  --ink-2:#334155;
  --ink-3:#5B6B7F;      /* on white = 5.3:1, safe for secondary text */
  --line:#E2E8F0;
  --bg-2:#F1F5F9;
  --bg-3:#F8FAFC;
  --white:#fff;

  /* Type ----------------------------------------------------------------- */
  --f-head:'Poppins',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  --f-body:'Open Sans',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;

  /* Space / shape -------------------------------------------------------- */
  --wrap:1200px;
  --gut:clamp(1rem,4vw,2rem);
  --r-sm:6px; --r:10px; --r-lg:16px; --r-pill:999px;
  --sh-1:0 1px 2px rgba(6,25,46,.06),0 1px 3px rgba(6,25,46,.08);
  --sh-2:0 4px 12px rgba(6,25,46,.08),0 2px 4px rgba(6,25,46,.04);
  --sh-3:0 12px 32px rgba(6,25,46,.12);
  --t:170ms cubic-bezier(.4,0,.2,1);
  --head-h:78px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:calc(var(--head-h) + 16px)}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;
    transition-duration:.01ms!important;scroll-behavior:auto!important}
}
body{
  margin:0;font-family:var(--f-body);font-size:1rem;line-height:1.65;color:var(--ink-2);
  background:var(--white);-webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img,svg,video{max-width:100%;height:auto;display:block}
.shot img,.hero-media img,.split-media img{background:var(--bg-2)}

h1,h2,h3,h4{font-family:var(--f-head);color:var(--ink);line-height:1.18;margin:0 0 .5em;
  font-weight:700;letter-spacing:-.015em;text-wrap:balance}
h1{font-size:clamp(2rem,1.35rem + 2.7vw,3.25rem);font-weight:800}
h2{font-size:clamp(1.5rem,1.15rem + 1.5vw,2.25rem)}
h3{font-size:clamp(1.15rem,1.05rem + .5vw,1.4rem)}
h4{font-size:1.0625rem}
p{margin:0 0 1.1em;text-wrap:pretty}
p:last-child{margin-bottom:0}
a{color:var(--blue-600);text-decoration-thickness:1px;text-underline-offset:2px}
a:hover{color:var(--navy-700)}
strong{color:var(--ink);font-weight:700}
ul,ol{padding-left:1.15em}
:focus-visible{outline:3px solid var(--blue-500);outline-offset:2px;border-radius:3px}

.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gut)}
.section{padding:clamp(3rem,7vw,5.5rem) 0}
.section-tight{padding:clamp(2rem,4vw,3rem) 0}
.section-alt{background:var(--bg-3);border-block:1px solid var(--line)}
.muted{color:var(--ink-3)}
.eyebrow{font-family:var(--f-head);font-weight:700;font-size:.8125rem;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue-600);margin:0 0 .6rem}
.lede{font-size:clamp(1.0625rem,1rem + .3vw,1.1875rem);color:var(--ink-2)}
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:1.5rem;
  flex-wrap:wrap;margin-bottom:2rem}
.sec-head h2{margin:0}
.center{text-align:center}
.center .sec-head{flex-direction:column;align-items:center;text-align:center}
.narrow{max-width:52rem;margin-inline:auto}
.skip{position:absolute;left:-9999px;top:0;z-index:200;background:var(--navy-700);color:#fff;
  padding:.75rem 1.25rem;border-radius:0 0 var(--r) 0;font-weight:700}
.skip:focus{left:0}

/* Buttons ----------------------------------------------------------------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--f-head);font-weight:700;font-size:.9375rem;line-height:1;
  padding:.875rem 1.35rem;min-height:48px;border-radius:var(--r);border:2px solid transparent;
  cursor:pointer;text-decoration:none;transition:background var(--t),border-color var(--t),
  color var(--t),transform var(--t),box-shadow var(--t);white-space:nowrap}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn .ico{flex:none}
.btn-accent{background:var(--blue-500);color:var(--navy-900);box-shadow:var(--sh-2)}
.btn-accent:hover{background:var(--blue-400);color:var(--navy-900);box-shadow:var(--sh-3)}
.btn-primary{background:var(--navy-700);color:#fff;box-shadow:var(--sh-2)}
.btn-primary:hover{background:var(--navy-600);color:#fff;box-shadow:var(--sh-3)}
.btn-outline{background:transparent;color:var(--navy-700);border-color:var(--navy-700)}
.btn-outline:hover{background:var(--navy-700);color:#fff}
.btn-outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.btn-outline-light:hover{background:#fff;color:var(--navy-800);border-color:#fff}
.btn-ghost-light{background:rgba(255,255,255,.1);color:#fff;border-color:rgba(255,255,255,.28)}
.btn-ghost-light:hover{background:rgba(255,255,255,.2);color:#fff}
.btn-lg{font-size:1rem;padding:1.05rem 1.75rem;min-height:56px}
.btn-block{display:flex;width:100%}
.link-arrow{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--f-head);
  font-weight:700;text-decoration:none;color:var(--blue-600)}
.link-arrow .ico{transition:transform var(--t)}
.link-arrow:hover .ico{transform:translateX(3px)}

.stars{display:inline-flex;gap:1px;color:var(--amber-400);vertical-align:-2px}
.rating-pill{display:inline-flex;align-items:center;gap:.5rem;background:var(--white);
  border:1px solid var(--line);border-radius:var(--r-pill);padding:.4rem .9rem;
  font-size:.875rem;box-shadow:var(--sh-1)}
.rating-pill strong{font-family:var(--f-head)}

/* Topbar + header --------------------------------------------------------- */
.topbar{background:var(--navy-900);color:#C6D5E6;font-size:.8125rem}
.topbar-in{display:flex;align-items:center;gap:.85rem;min-height:40px;flex-wrap:wrap}
.tb-item{display:inline-flex;align-items:center;gap:.4rem}
.tb-item .ico{color:#7FA6CE;flex:none}
.tb-sep{width:1px;height:14px;background:rgba(255,255,255,.18)}
.tb-grow{flex:1}
.tb-rating strong{color:#fff}
@media (max-width:960px){.topbar{display:none}}

.site-head{position:sticky;top:0;z-index:60;background:#fff;border-bottom:1px solid var(--line);
  transition:box-shadow var(--t)}
.site-head.is-stuck{box-shadow:var(--sh-2)}
.head-in{display:flex;align-items:center;gap:1.25rem;min-height:var(--head-h)}
.logo{flex:none;display:block}
/* --logo-h is set per build from the logo's real aspect ratio. */
.logo img{height:clamp(36px,var(--logo-h,46px),var(--logo-h,46px));width:auto;max-width:min(60vw,280px);object-fit:contain}
.nav{margin-left:auto}
.nav>ul{display:flex;align-items:center;gap:.15rem;list-style:none;margin:0;padding:0}
.nav a{display:flex;align-items:center;gap:.25rem;white-space:nowrap;padding:.65rem .7rem;border-radius:var(--r-sm);
  font-family:var(--f-head);font-weight:600;font-size:.9375rem;color:var(--ink);
  text-decoration:none;transition:color var(--t),background var(--t)}
.nav a:hover{color:var(--navy-700);background:var(--bg-2)}
.nav .nav-chev{opacity:.55;transition:transform var(--t)}
.has-sub{position:relative}
.sub{position:absolute;top:calc(100% + 6px);left:0;min-width:270px;background:#fff;
  border:1px solid var(--line);border-radius:var(--r);box-shadow:var(--sh-3);padding:.4rem;
  list-style:none;margin:0;opacity:0;visibility:hidden;transform:translateY(-6px);
  transition:opacity var(--t),transform var(--t),visibility var(--t)}
.has-sub:hover>.sub,.has-sub:focus-within>.sub{opacity:1;visibility:visible;transform:none}
.has-sub:hover>a .nav-chev{transform:rotate(180deg)}
.sub a{font-weight:600;font-size:.9rem;padding:.6rem .7rem}
.head-cta{display:flex;align-items:center;gap:.75rem;flex:none}
.head-phone{display:flex;align-items:center;gap:.55rem;text-decoration:none;color:var(--ink);
  padding:.35rem .5rem;border-radius:var(--r-sm)}
.head-phone:hover{background:var(--bg-2)}
.head-phone .ico{color:var(--blue-600);flex:none}
.head-phone span{display:flex;flex-direction:column;line-height:1.2}
.head-phone em{font-style:normal;font-size:.6875rem;color:var(--ink-3);letter-spacing:.02em}
.head-phone strong{font-family:var(--f-head);font-size:1.0625rem;color:var(--navy-700)}
.burger{display:none;align-items:center;justify-content:center;width:48px;height:48px;
  border:1px solid var(--line);border-radius:var(--r-sm);background:#fff;color:var(--ink);
  cursor:pointer;margin-left:auto}
.burger .b-close{display:none}
.burger[aria-expanded="true"] .b-open{display:none}
.burger[aria-expanded="true"] .b-close{display:block}

@media (max-width:1100px){
  .head-phone em{display:none}
  .nav a{padding:.6rem .5rem;font-size:.875rem}
}
@media (max-width:980px){
  .burger{display:flex;margin-left:0;order:3}
  .head-in{gap:.5rem}
  .head-cta{margin-left:auto;order:2;gap:.45rem}
  .head-cta .btn{display:none}
  .head-phone{width:48px;height:48px;justify-content:center;padding:0;
    border:1px solid var(--line);border-radius:var(--r-sm)}
  .head-phone span{display:none}
  .nav{order:4;flex-basis:100%;margin:0;display:none}
  .nav.is-open{display:block;padding-bottom:1rem}
  .nav>ul{flex-direction:column;align-items:stretch;gap:0}
  .nav>ul>li{border-top:1px solid var(--line)}
  .nav a{padding:.9rem .25rem;font-size:1rem;justify-content:space-between;border-radius:0}
  .sub{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;
    padding:0 0 .5rem .9rem;min-width:0;display:none}
  .has-sub.is-open>.sub{display:block}
  .has-sub.is-open>a .nav-chev{transform:rotate(180deg)}
  .sub a{padding:.6rem .25rem;font-weight:500;color:var(--ink-2)}
}

/* Breadcrumbs ------------------------------------------------------------- */
.crumbs{background:var(--bg-3);border-bottom:1px solid var(--line);font-size:.8125rem}
.crumbs ol{display:flex;flex-wrap:wrap;gap:.4rem;list-style:none;margin:0;padding:.7rem 0}
.crumbs li+li::before{content:"/";margin-right:.4rem;color:var(--ink-3)}
.crumbs a{color:var(--ink-3);text-decoration:none}
.crumbs a:hover{color:var(--navy-700);text-decoration:underline}
.crumbs [aria-current]{color:var(--ink);font-weight:600}

/* Hero -------------------------------------------------------------------- */
.hero{position:relative;background:var(--navy-800);color:#E8EFF7;overflow:hidden}
.hero::before{content:"";position:absolute;inset:0;
  background:linear-gradient(105deg,var(--navy-900) 0%,var(--navy-800) 46%,var(--navy-700) 100%)}
.hero::after{content:"";position:absolute;inset:0;opacity:.16;
  background-image:linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px);
  background-size:26px 26px;
  mask-image:radial-gradient(ellipse 80% 70% at 78% 40%,#000 20%,transparent 72%);
  -webkit-mask-image:radial-gradient(ellipse 80% 70% at 78% 40%,#000 20%,transparent 72%)}
.hero-in{position:relative;z-index:1;display:grid;grid-template-columns:1.08fr .92fr;
  gap:clamp(2rem,5vw,4rem);align-items:center;
  padding-block:clamp(2.75rem,6vw,5rem)}
.hero h1{color:#fff}
.hero .lede{color:#C6D8EA;font-size:clamp(1.0625rem,1rem + .45vw,1.25rem);max-width:36rem}
.hero-badges{display:flex;flex-wrap:wrap;gap:.5rem;margin:0 0 1.25rem;padding:0;list-style:none}
.hero-badges li{display:inline-flex;align-items:center;gap:.4rem;font-size:.8125rem;
  font-weight:600;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.16);
  color:#DCE8F4;border-radius:var(--r-pill);padding:.35rem .8rem}
.hero-badges .ico{color:var(--blue-400)}
.hero-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.5rem}
.hero-proof{display:flex;align-items:center;gap:.75rem;margin-top:1.5rem;
  padding-top:1.4rem;border-top:1px solid rgba(255,255,255,.14);font-size:.9375rem;color:#C6D8EA}
.hero-proof strong{color:#fff}
.hero-media{position:relative}
.hero-media img{border-radius:var(--r-lg);box-shadow:0 24px 60px rgba(0,0,0,.4);
  aspect-ratio:4/3;object-fit:cover;width:100%}
.hero-tag{position:absolute;left:-14px;bottom:22px;background:#fff;color:var(--ink);
  border-radius:var(--r);padding:.75rem 1rem;box-shadow:var(--sh-3);max-width:230px;
  font-size:.8125rem;line-height:1.45}
.hero-tag strong{display:block;font-family:var(--f-head);font-size:1.375rem;color:var(--navy-700)}
@media (max-width:900px){
  /* Headline and the call button come before the photo on phones. On a
     lead-gen page the value proposition above the fold outranks the image. */
  .hero-in{grid-template-columns:1fr}
  .hero-media{margin-top:.5rem}
  .hero-media img{aspect-ratio:16/10}
  .hero-tag{left:auto;right:10px;bottom:10px;max-width:250px;padding:.6rem .8rem}
  .hero-tag strong{font-size:1.2rem}
}

.page-head{background:var(--navy-800);color:#DCE8F4;position:relative;overflow:hidden}
.page-head::before{content:"";position:absolute;inset:0;
  background:linear-gradient(105deg,var(--navy-900),var(--navy-700))}
.page-head .wrap{position:relative;z-index:1;padding-block:clamp(2.25rem,5vw,3.5rem)}
.page-head h1{color:#fff;margin-bottom:.35rem}
.page-head .lede{color:#C6D8EA;max-width:48rem}
.page-head-actions{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.4rem}

/* Answer capsule — the block AI engines lift. Keep it self-contained. ------ */
.answer-capsule{background:var(--blue-100);border:1px solid var(--blue-line);
  border-left:5px solid var(--navy-700);border-radius:var(--r);
  padding:1.25rem 1.4rem;margin:0 0 2rem}
.answer-capsule h2,.answer-capsule p:first-child.ac-t{font-family:var(--f-head);font-size:.8125rem;
  letter-spacing:.09em;text-transform:uppercase;color:var(--navy-700);margin:0 0 .5rem;font-weight:700}
.answer-capsule p{margin:0;color:var(--ink);font-size:1.0625rem;line-height:1.6}
/* --blue-600 is 4.8:1 on white but only 4.2:1 on the capsule's tint, so
   links inside tinted blocks step down a shade. */
.answer-capsule a,.note a,.form-alt a{color:var(--blue-700)}

/* Trust bar --------------------------------------------------------------- */
.trust-bar{background:var(--bg-3);border-bottom:1px solid var(--line)}
.trust-bar ul{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;list-style:none;
  margin:0;padding:1.1rem 0}
.trust-bar li{display:flex;align-items:center;gap:.6rem;font-size:.875rem}
.trust-bar .ico{color:var(--navy-700);flex:none}
.trust-bar span{display:flex;flex-direction:column;line-height:1.3}
.trust-bar strong{font-family:var(--f-head);font-size:.9375rem}
.trust-bar em{font-style:normal;color:var(--ink-3);font-size:.8125rem}
@media (max-width:1000px){.trust-bar ul{grid-template-columns:repeat(2,1fr)}
  .trust-bar li:last-child{grid-column:1/-1}}
@media (max-width:460px){.trust-bar ul{grid-template-columns:1fr}
  .trust-bar li:last-child{grid-column:auto}}

/* Cards / grids ----------------------------------------------------------- */
.grid{display:grid;gap:1.25rem}
.g-2{grid-template-columns:repeat(2,1fr)}
.g-3{grid-template-columns:repeat(3,1fr)}
.g-4{grid-template-columns:repeat(4,1fr)}
@media (max-width:1000px){.g-4{grid-template-columns:repeat(2,1fr)}
  .g-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:680px){.g-2,.g-3,.g-4{grid-template-columns:1fr}}

.card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.5rem;
  box-shadow:var(--sh-1);transition:box-shadow var(--t),transform var(--t),border-color var(--t)}
.card h3{margin-bottom:.5rem}
.card p{font-size:.9375rem;margin-bottom:1rem}
a.card{text-decoration:none;color:inherit;display:flex;flex-direction:column}
a.card:hover{box-shadow:var(--sh-3);transform:translateY(-3px);border-color:var(--blue-line)}
.card-ico{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;
  border-radius:var(--r);background:var(--blue-100);color:var(--navy-700);margin-bottom:1rem}
.card .link-arrow{margin-top:auto;font-size:.9375rem}

/* Checklists -------------------------------------------------------------- */
.checks{list-style:none;padding:0;margin:0;display:grid;gap:.7rem}
.checks li{display:flex;gap:.65rem;align-items:flex-start;font-size:.9688rem}
.checks .ico{color:var(--green-700);flex:none;margin-top:3px}
.checks-2{grid-template-columns:repeat(2,1fr)}
@media (max-width:680px){.checks-2{grid-template-columns:1fr}}

/* Tables — deliberately extraction-friendly for AI answer engines ---------- */
.table-wrap:focus-visible{outline:3px solid var(--blue-500);outline-offset:2px}
.table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--r-lg);
  background:#fff;-webkit-overflow-scrolling:touch}
table{border-collapse:collapse;width:100%;min-width:560px;font-size:.9375rem}
caption{text-align:left;padding:1rem 1.15rem .25rem;font-size:.875rem;color:var(--ink-3)}
th,td{padding:.85rem 1.15rem;text-align:left;vertical-align:top;border-bottom:1px solid var(--line)}
thead th{background:var(--navy-700);color:#fff;font-family:var(--f-head);font-weight:600;
  font-size:.875rem;letter-spacing:.01em;border-bottom:0}
tbody tr:last-child td{border-bottom:0}
tbody tr:nth-child(even){background:var(--bg-3)}
tbody th{font-weight:700;color:var(--ink)}

/* Process ----------------------------------------------------------------- */
.steps{list-style:none;counter-reset:s;padding:0;margin:0;display:grid;gap:1.25rem;
  grid-template-columns:repeat(4,1fr)}
.steps-5{grid-template-columns:repeat(5,1fr)}
.steps li{counter-increment:s;position:relative;padding-top:3.25rem}
.steps li::before{content:counter(s);position:absolute;top:0;left:0;
  width:44px;height:44px;border-radius:var(--r-pill);background:var(--navy-700);color:#fff;
  font-family:var(--f-head);font-weight:700;font-size:1.125rem;
  display:flex;align-items:center;justify-content:center}
.steps li::after{content:"";position:absolute;top:22px;left:52px;right:-8px;height:2px;
  background:var(--line)}
.steps li:last-child::after{display:none}
.steps h3{font-size:1.0625rem;margin-bottom:.35rem}
.steps p{font-size:.9375rem;margin:0;color:var(--ink-2)}
@media (max-width:980px){.steps,.steps-5{grid-template-columns:repeat(2,1fr)}
  .steps li::after{display:none}}
@media (max-width:560px){.steps,.steps-5{grid-template-columns:1fr}}

/* Reviews ----------------------------------------------------------------- */
.review{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.5rem;margin:0;box-shadow:var(--sh-1);display:flex;flex-direction:column;gap:.9rem;
  break-inside:avoid}
.review blockquote{margin:0;font-size:.9688rem;color:var(--ink-2)}
.review-lg blockquote{font-size:1.0313rem}
.review figcaption{display:flex;align-items:center;gap:.7rem;margin-top:auto;
  padding-top:.9rem;border-top:1px solid var(--line)}
.avatar{width:40px;height:40px;border-radius:var(--r-pill);background:var(--navy-700);color:#fff;
  display:flex;align-items:center;justify-content:center;font-family:var(--f-head);
  font-weight:700;font-size:.875rem;flex:none}
.review .who{display:flex;flex-direction:column;line-height:1.35}
.review .who strong{font-family:var(--f-head);font-size:.9375rem}
.review .who em{font-style:normal;font-size:.8125rem;color:var(--ink-3)}
.reviews-masonry{columns:3;column-gap:1.25rem}
.reviews-masonry .review{margin-bottom:1.25rem;display:block}
.reviews-masonry .review figcaption{margin-top:.9rem}
@media (max-width:980px){.reviews-masonry{columns:2}}
@media (max-width:640px){.reviews-masonry{columns:1}}

.rating-summary{display:flex;flex-wrap:wrap;align-items:center;gap:1.5rem;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.5rem;
  box-shadow:var(--sh-1);margin-bottom:2rem}
.rating-score{text-align:center;padding-right:1.5rem;border-right:1px solid var(--line)}
.rating-score b{display:block;font-family:var(--f-head);font-size:3rem;line-height:1;color:var(--ink)}
.rating-score .rc-count{display:block;font-size:.8125rem;color:var(--ink-3)}
@media (max-width:560px){.rating-score{border-right:0;border-bottom:1px solid var(--line);
  padding:0 0 1rem;width:100%}}

/* Gallery ----------------------------------------------------------------- */
.shots{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.shots-3{grid-template-columns:repeat(3,1fr)}
.shot{margin:0;position:relative;border-radius:var(--r);overflow:hidden;background:var(--bg-2);
  box-shadow:var(--sh-1)}
.shot img{aspect-ratio:4/3;object-fit:cover;width:100%;transition:transform 300ms ease}
.shot:hover img{transform:scale(1.04)}
.shot figcaption{position:absolute;left:0;right:0;bottom:0;padding:1.75rem .85rem .7rem;
  color:#fff;font-size:.8125rem;font-family:var(--f-head);font-weight:600;
  background:linear-gradient(transparent,rgba(6,25,46,.85))}
@media (max-width:900px){.shots,.shots-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.shots,.shots-3{grid-template-columns:1fr}}

/* FAQ --------------------------------------------------------------------- */
.faq-list{border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;background:#fff}
.faq{border-bottom:1px solid var(--line)}
.faq:last-child{border-bottom:0}
.faq summary{display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.1rem 1.35rem;cursor:pointer;list-style:none;transition:background var(--t)}
.faq summary::-webkit-details-marker{display:none}
.faq summary:hover{background:var(--bg-3)}
.faq summary h3,.faq summary h2{margin:0;font-size:1.0313rem;font-weight:600}
.faq-chev{flex:none;color:var(--ink-3);transition:transform var(--t)}
.faq[open] .faq-chev{transform:rotate(180deg)}
.faq[open] summary{background:var(--bg-3)}
.faq-a{padding:0 1.35rem 1.25rem;max-width:62ch}
.faq-a p{margin:0;font-size:.9688rem}

/* CTA band ---------------------------------------------------------------- */
.cta-band{position:relative;overflow:hidden;color:#DCE8F4}
.cta-navy{background:linear-gradient(105deg,var(--navy-900),var(--navy-700))}
.cta-inner{display:grid;grid-template-columns:1.15fr .85fr;gap:2rem;align-items:center;
  padding-block:clamp(2.5rem,5vw,3.75rem);position:relative;z-index:1}
.cta-band h2{color:#fff;margin-bottom:.5rem}
.cta-band p{margin:0;color:#C6D8EA}
.cta-actions{display:flex;flex-direction:column;gap:.7rem}
.cta-actions .btn{width:100%}
@media (max-width:820px){.cta-inner{grid-template-columns:1fr}}

/* Forms ------------------------------------------------------------------- */
.form-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:clamp(1.4rem,3vw,2rem);box-shadow:var(--sh-2)}
.field{margin-bottom:1.1rem}
.field label{display:block;font-family:var(--f-head);font-weight:600;font-size:.875rem;
  color:var(--ink);margin-bottom:.35rem}
.field .req{color:var(--blue-600)}
.field .hint{display:block;font-size:.8125rem;color:var(--ink-3);font-weight:400;margin-top:.2rem}
.field input,.field select,.field textarea{width:100%;font:inherit;font-size:1rem;
  color:var(--ink);background:#fff;border:1.5px solid var(--line);border-radius:var(--r);
  padding:.75rem .9rem;min-height:48px;transition:border-color var(--t),box-shadow var(--t)}
.field textarea{min-height:120px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--navy-700);
  box-shadow:0 0 0 3px rgba(18,58,99,.14);outline:none}
.field input:user-invalid{border-color:#B91C1C}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media (max-width:600px){.field-row{grid-template-columns:1fr}}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-note{font-size:.8125rem;color:var(--ink-3);margin-top:.9rem}
.form-alt{display:flex;align-items:center;gap:.75rem;padding:1rem;background:var(--bg-3);
  border:1px solid var(--line);border-radius:var(--r);margin-bottom:1.5rem;font-size:.9375rem}
.form-alt .ico{color:var(--blue-600);flex:none}

/* Contact cards ----------------------------------------------------------- */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(1.5rem,4vw,3rem);
  align-items:start}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr}}
.contact-list{list-style:none;padding:0;margin:0;display:grid;gap:1rem}
.contact-list li{display:flex;gap:.85rem;align-items:flex-start}
.contact-list .ico{color:var(--navy-700);flex:none;margin-top:3px}
.contact-list a{font-family:var(--f-head);font-weight:700;font-size:1.125rem;
  text-decoration:none;color:var(--navy-700)}
.contact-list a:hover{color:var(--blue-600);text-decoration:underline}
.contact-list em{font-style:normal;display:block;font-size:.8125rem;color:var(--ink-3)}

/* Prose ------------------------------------------------------------------- */
.prose{max-width:70ch}
.prose h2{margin-top:2.5rem}
.prose h3{margin-top:1.75rem}
.prose h2:first-child,.prose h3:first-child{margin-top:0}
.prose ul{display:grid;gap:.5rem;margin-bottom:1.25rem}

/* Footer ------------------------------------------------------------------ */
.site-foot{background:var(--navy-900);color:#A9C0D8;font-size:.9375rem;
  padding-top:clamp(2.5rem,5vw,3.5rem)}
.foot-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:2rem}
.site-foot h2{color:#fff;font-size:.875rem;letter-spacing:.09em;text-transform:uppercase;
  margin-bottom:1rem}
.site-foot ul{list-style:none;padding:0;margin:0;display:grid;gap:.6rem}
.site-foot a:not(.btn){color:#A9C0D8;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem}
.site-foot a:not(.btn):hover{color:#fff;text-decoration:underline}
.site-foot .btn-accent{color:var(--navy-900)}
.foot-brand img{height:46px;width:auto;max-width:240px;object-fit:contain;margin-bottom:1rem}
/* Only one logo file supplied: show the dark mark on a light chip so it
   stays legible against the navy footer. */
.foot-logo.on-chip{background:#fff;border-radius:var(--r);padding:.6rem .8rem;box-sizing:content-box}
.foot-brand p{font-size:.875rem;line-height:1.6}
.foot-rating{display:flex;align-items:center;gap:.5rem;font-size:.875rem}
.foot-rating strong{color:#fff}
.foot-contact .ico{color:#7FA6CE;flex:none}
.foot-contact .btn{margin-top:1.25rem}
.social{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.1rem}
.profile-link{display:inline-flex;align-items:center;gap:.45rem;padding:.5rem .85rem;
  border-radius:var(--r-sm);background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);font-size:.8438rem;font-weight:600}
.profile-link:hover{background:rgba(255,255,255,.16)}
.profile-link .ico{color:var(--amber-400);flex:none}
/* Visually hidden but announced — used for "opens in a new tab". */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;gap:1rem;
  flex-wrap:wrap;margin-top:clamp(2rem,4vw,3rem);padding-block:1.25rem;
  border-top:1px solid rgba(255,255,255,.1);font-size:.8125rem}
.foot-bottom p{margin:0}
.foot-bottom ul{display:flex;flex-wrap:wrap;gap:1.1rem;list-style:none;padding:0;margin:0}
@media (max-width:900px){.foot-grid{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.foot-grid{grid-template-columns:1fr}}

/* Sticky mobile call bar -------------------------------------------------- */
.callbar{display:none;position:fixed;left:0;right:0;bottom:0;z-index:70;
  background:#fff;border-top:1px solid var(--line);
  box-shadow:0 -4px 16px rgba(6,25,46,.12);
  padding:.5rem .6rem calc(.5rem + env(safe-area-inset-bottom))}
.cb{flex:1;display:flex;align-items:center;justify-content:center;gap:.45rem;min-height:50px;
  border-radius:var(--r);font-family:var(--f-head);font-weight:700;font-size:.9375rem;
  text-decoration:none}
.cb-call{background:var(--blue-500);color:var(--navy-900)}
.cb-quote{background:var(--navy-700);color:#fff}
@media (max-width:768px){
  .callbar{display:flex;gap:.5rem}
  body{padding-bottom:70px}
}

/* Misc -------------------------------------------------------------------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,3.5rem);align-items:center}
.split-top{align-items:start}
.split-top .split-media{position:sticky;top:calc(var(--head-h) + 1.25rem)}
.split-media img{border-radius:var(--r-lg);box-shadow:var(--sh-2);aspect-ratio:4/3;
  object-fit:cover;width:100%}
@media (max-width:860px){.split{grid-template-columns:1fr}}
.pill-list{display:flex;flex-wrap:wrap;gap:.5rem;list-style:none;padding:0;margin:1rem 0 0}
.pill-list li a,.pill-list li span{display:inline-block;padding:.4rem .85rem;border-radius:var(--r-pill);
  background:var(--bg-2);border:1px solid var(--line);font-size:.875rem;text-decoration:none;
  color:var(--ink-2)}
.pill-list li a:hover{background:var(--navy-700);color:#fff;border-color:var(--navy-700)}
.note{background:var(--bg-3);border:1px solid var(--line);border-left:4px solid var(--blue-500);
  border-radius:var(--r);padding:1.15rem 1.35rem;font-size:.9375rem}
.note strong{display:block;font-family:var(--f-head);margin-bottom:.25rem}
