/* ==========================================================================
   AB Industrial Solution — static site stylesheet
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES -------------------------------------------------
     Swap the file inside url() to change these decorative backgrounds.
     Every other image on the site is a plain <img src="assets/...">.     */
  --img-cta-band: url("assets/warehouse-racks-512.webp");
  --img-surplus-band: url("assets/surplus-handover-512.webp");
  /* END REPLACEABLE IMAGES --------------------------------------------- */

  --ink: #0E1A3A;
  --ink-2: #16234a;
  --ink-3: #1d2c58;
  --body: #384366;
  --muted: #5a6785;
  --brand: #2235DD;
  --brand-dark: #1a2bc6;
  --brand-tint: #eef0ff;
  --accent: #F2A900;
  --ok: #0c6e42;
  --ok-tint: #e7f5ee;
  --warn-ink: #8a4b00;
  --warn-tint: #fdf2e0;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eaeefa;
  --line: #dde3ef;
  --line-strong: #7686aa;   /* >=3:1 on white and both tints — WCAG 1.4.11 control borders */

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.25rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-s: 0 1px 2px rgba(14, 26, 58, .06), 0 2px 8px rgba(14, 26, 58, .05);
  --shadow-m: 0 2px 6px rgba(14, 26, 58, .07), 0 14px 34px rgba(14, 26, 58, .10);
  --shadow-l: 0 10px 20px rgba(14, 26, 58, .09), 0 30px 60px rgba(14, 26, 58, .14);
}

/* --------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.14; letter-spacing: -.021em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 1.15rem + 1.9vw, 2.45rem); }
h3 { font-size: clamp(1.13rem, 1.02rem + .45vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: .17em; }
a:hover { color: var(--brand-dark); }
ul, ol { padding-left: 1.15em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible {
  /* Two-tone ring so the indicator clears 3:1 on BOTH the light sections
     (dark inner ring on white) and the navy/ink sections (amber outer ring). */
  outline: 3px solid var(--accent); outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--ink); border-radius: 3px;
}
::selection { background: var(--brand); color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2rem); }
.narrow { max-width: 760px; }
.visually-hidden, .hp-field {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: .75rem; top: -100px; z-index: 200; background: var(--ink); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 8px 8px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

/* ------------------------------------------------------------ utilities */
.eyebrow {
  display: block; font-size: .78rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--brand); margin: 0 0 .85rem;
}
.eyebrow::after {
  content: ""; display: block; width: 34px; height: 3px; background: var(--accent);
  border-radius: 2px; margin-top: .55rem;
}
.eyebrow--light { color: #9fb0ff; }
.lede { font-size: clamp(1.06rem, 1rem + .4vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.section { padding-block: clamp(3.25rem, 7vw, 6rem); }
.section--tint { background: var(--surface-2); }
.section--ink { background: var(--ink); color: #c5cde3; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section-head { max-width: 62ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow::after { margin-inline: auto; }
.mono { font-family: var(--mono); font-size: .92em; letter-spacing: -.01em; }

/* --------------------------------------------------------------- button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer;
  padding: .85rem 1.5rem; border-radius: 10px; border: 2px solid transparent;
  transition: transform .14s ease, background-color .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(34, 53, 221, .26); }
.btn--primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 10px 22px rgba(34, 53, 221, .32); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--surface-2); }
.btn--on-ink { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn--on-ink:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; border-radius: 8px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
/* keep the dark inner ring on buttons that define their own box-shadow */
.btn:focus-visible { box-shadow: 0 0 0 3px var(--ink); }

.textlink {
  font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
}
.textlink::after { content: "\2192"; transition: transform .15s ease; }
.textlink:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------- header */
.utility {
  background: var(--ink); color: #aab7d6; font-size: .83rem; line-height: 1.4;
  border-bottom: 3px solid var(--accent);
}
.utility .wrap { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; align-items: center; padding-block: .5rem; }
.utility .wrap, .site-header .wrap { max-width: 1280px; }
@media (min-width: 720px) { .utility .sep { margin-left: auto; } }
@media (max-width: 719px) { .utility { font-size: .8rem; } .utility .wrap { justify-content: center; text-align: center; } }
.utility a { color: #dde4f5; text-decoration: none; }
.utility a:hover { color: #fff; text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.95);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1rem; padding-block: .7rem; flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; margin-right: auto; }
.brand img { width: clamp(148px, 38vw, 232px); }
.header-call {
  display: none; align-items: center; gap: .4rem; margin-left: auto; white-space: nowrap;
  background: var(--brand); color: #fff; border-radius: 9px; padding: .58rem .95rem;
  font-weight: 800; font-size: .92rem; text-decoration: none;
}
.header-call:hover { background: var(--brand-dark); color: #fff; }
.js .header-call { display: none; }
@media (max-width: 999px) { .js .header-call { display: inline-flex; } .js .nav-toggle { margin-left: .45rem; } }
@media (max-width: 430px) {
  .header-call { padding: .55rem .75rem; gap: .3rem; }
  .nav-toggle { padding: .5rem .65rem; }
  .site-header .wrap { gap: .5rem; }
}
.nav-toggle {
  margin-left: auto; display: none; align-items: center; gap: .5rem; background: #fff;
  border: 2px solid var(--line-strong); border-radius: 9px; padding: .5rem .8rem;
  font: inherit; font-weight: 700; font-size: .92rem; color: var(--ink); cursor: pointer;
}
.nav-toggle .bars { display: block; width: 17px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px; background: currentColor;
}
.nav-toggle .bars::before { top: -5px; } .nav-toggle .bars::after { top: 5px; }
.site-nav ul { display: flex; flex-wrap: wrap; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.site-nav li { margin: 0; }
.site-nav a {
  display: block; padding: .5rem .65rem; border-radius: 8px; text-decoration: none;
  font-weight: 650; font-size: .94rem; color: var(--ink); white-space: nowrap;
}
.site-nav a:hover { background: var(--surface-3); }
.site-nav a[aria-current="page"] { color: var(--brand); box-shadow: inset 0 -3px 0 var(--accent); border-radius: 8px 8px 0 0; }
.header-cta { display: flex; align-items: center; gap: .55rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; color: var(--ink);
  text-decoration: none; white-space: nowrap; font-size: .96rem;
}
.header-phone:hover { color: var(--brand); }
.header-phone svg { flex: none; }

.js .site-nav, .js .header-cta { display: none; }
@media (min-width: 1000px) {
  .js .site-nav, .js .header-cta { display: flex; }
  .nav-toggle { display: none !important; }
}
@media (max-width: 999px) {
  .js .nav-toggle { display: inline-flex; }
  .js .site-header[data-open="true"] .site-nav,
  .js .site-header[data-open="true"] .header-cta { display: flex; }
  .site-nav { flex-basis: 100%; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding-top: .5rem; }
  .site-nav a { padding: .8rem .6rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .header-cta { flex-basis: 100%; padding: .75rem 0 .5rem; }
  .header-cta .btn { flex: 1; }
}

/* ----------------------------------------------------------------- hero */
.hero {
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(34, 53, 221, .16), transparent 62%),
    linear-gradient(180deg, #0E1A3A 0%, #16234a 100%);
  color: #c9d3ec; padding-block: clamp(2.75rem, 6vw, 4.75rem);
  border-bottom: 3px solid var(--accent);
}
.hero h1 { color: #fff; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero p.lede { color: #b6c2e0; }
.hero .btn--ghost { background: #fff; border-color: #fff; }
.hero-note { font-size: .92rem; color: #93a2c7; margin-top: 1.1rem; }
.hero-note a { color: #fff; font-weight: 700; }

.trustbar { border-top: 1px solid rgba(255,255,255,.14); margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.4rem; }
.trustbar ul {
  list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.trustbar li { margin: 0; display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: #b6c2e0; }
.trustbar strong { display: block; color: #fff; font-size: 1.05rem; letter-spacing: -.01em; }
.trustbar .tick { color: var(--accent); font-weight: 800; flex: none; line-height: 1.5; }

/* hero photo panel — real in-house photos, never cropped */
.hero-panel {
  background: #fff; border-radius: var(--radius); padding: .85rem; box-shadow: var(--shadow-l);
}
.hero-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.hero-shot {
  margin: 0; background: var(--surface-2); border-radius: var(--radius-sm); overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-shot img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: var(--surface-2); }
.hero-shot figcaption {
  background: var(--ink); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .42rem .45rem; text-align: center; margin-top: auto;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hero-panel-foot {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between; align-items: center;
  padding: .75rem .35rem .25rem; font-size: .85rem; color: var(--muted);
}
.hero-panel-foot a { font-weight: 700; text-decoration: none; }
@media (max-width: 420px) { .hero-shot figcaption { font-size: .6rem; letter-spacing: .03em; } }

/* ---------------------------------------------------------------- cards */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); counter-reset: seq; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.8rem); box-shadow: var(--shadow-s);
}
.card h3 { margin-bottom: .45rem; }
.card p:last-child { margin-bottom: 0; }
.card--num { position: relative; padding-top: 2.9rem; }
.card--num .num {
  position: absolute; top: 1.3rem; left: clamp(1.3rem, 2.4vw, 1.8rem);
  font-family: var(--mono); font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  color: var(--brand); background: var(--brand-tint); padding: .2rem .55rem; border-radius: 5px;
}
.card--num .num::before { counter-increment: seq; content: counter(seq, decimal-leading-zero); }
.svc-lead { color: var(--ink); font-size: 1.04rem; margin-bottom: .6rem; }
@media (min-width: 860px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.svc-lead strong { font-weight: 700; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar .dot {
  flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--brand-tint);
  color: var(--brand); display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
}

/* category tiles */
.cats { display: grid; gap: clamp(.8rem, 1.8vw, 1.15rem); grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.cat {
  margin: 0; display: flex; flex-direction: column; text-decoration: none; background: #fff; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-s);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--line-strong); }
.cat-img { background: var(--surface-2); padding: .65rem; }
.cat-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.cat-name {
  padding: .75rem .9rem .85rem; font-weight: 700; color: var(--ink); font-size: .98rem;
  display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; flex: 1;
}
.cat-count { font-size: .78rem; color: var(--muted); font-weight: 600; white-space: nowrap; }
figure.cat .cat-name { font-weight: 650; font-size: .92rem; color: var(--body); }
figure.cat:hover { transform: none; box-shadow: var(--shadow-s); border-color: var(--line); }
.cat--empty { opacity: .72; }

/* --------------------------------------------------------- product card */
.parts-grid { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); grid-template-columns: repeat(auto-fill, minmax(245px, 1fr)); }
.part {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-s);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.part:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--line-strong); }
.part-media { background: var(--surface-2); border-bottom: 1px solid var(--line); padding: .6rem; }
.part-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.part-body { padding: .95rem 1.05rem 1.15rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.part-cat { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.part-name { font-size: .99rem; font-weight: 700; line-height: 1.32; margin: 0; }
.part-name a { color: var(--ink); text-decoration: none; }
.part-name a:hover { color: var(--brand); text-decoration: underline; }
.part-meta { font-family: var(--mono); font-size: .78rem; color: var(--muted); margin: 0; }
.part-foot { margin-top: auto; padding-top: .35rem; display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }
.price { font-size: 1.28rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.badge {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: 999px; white-space: nowrap;
}
.badge[data-stock="in"] { background: var(--ok-tint); color: var(--ok); }
.badge[data-stock="out"] { background: var(--warn-tint); color: var(--warn-ink); }

/* filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.chip {
  font: inherit; font-size: .9rem; font-weight: 700; cursor: pointer;
  background: #fff; border: 2px solid var(--line-strong); color: var(--ink);
  padding: .45rem .95rem; border-radius: 999px; text-decoration: none;
  transition: background-color .14s ease, border-color .14s ease, color .14s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-current="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-status { font-size: .93rem; color: var(--muted); margin: -.9rem 0 1.5rem; }

/* ------------------------------------------------------- product detail */
.crumbs { font-size: .87rem; color: var(--muted); padding-block: 1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: #aab5cf; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

.product { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
@media (min-width: 900px) { .product { grid-template-columns: 1.05fr .95fr; } }
.gallery-main {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem;
}
.gallery-main img { width: 100%; aspect-ratio: 4 / 5; object-fit: contain; }
@media (min-width: 900px) { .gallery-main img { aspect-ratio: 1 / 1; } }
.thumbs { display: flex; gap: .6rem; margin-top: .7rem; flex-wrap: wrap; }
.thumbs a {
  width: 76px; padding: .3rem; background: var(--surface-2); border: 2px solid var(--line);
  border-radius: var(--radius-sm); display: block;
}
.thumbs a[aria-current="true"] { border-color: var(--brand); }
.thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }

.buybox { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 1.85rem); box-shadow: var(--shadow-s); background: #fff; }
.buybox .price { font-size: clamp(2rem, 1.5rem + 1.5vw, 2.6rem); display: block; }
.buybox .price-note { font-size: .88rem; color: var(--muted); margin: .2rem 0 1.15rem; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.spec-table caption { text-align: left; font-weight: 800; color: var(--ink); padding-bottom: .6rem; font-size: 1.05rem; }
.spec-table th, .spec-table td { text-align: left; padding: .62rem .2rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-weight: 600; color: var(--muted); width: 43%; }
.spec-table td { color: var(--ink); font-weight: 650; }
.spec-table td.mono { font-weight: 600; }

.notice {
  border-left: 4px solid var(--accent); background: var(--surface-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.15rem; font-size: .94rem;
}
.notice p:last-child { margin-bottom: 0; }
.notice strong { color: var(--ink); }

/* ------------------------------------------------------------ split/media */
.split { display: grid; gap: clamp(1.75rem, 4.5vw, 3.25rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-text { grid-template-columns: 1.15fr .85fr; } }
.split figure { margin: 0; }
.split img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-m); background: var(--surface-2); }
.split figcaption { font-size: .85rem; color: var(--muted); margin-top: .6rem; }
@media (min-width: 880px) { .split--reverse > :first-child { order: 2; } }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.stats li { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.25rem; }
.section--ink .stats li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }
.stats .figure { display: block; font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.3rem); font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.section--ink .stats .figure { color: #fff; }
.stats .label { font-size: .86rem; color: var(--muted); }
.section--ink .stats .label { color: #a9b6d6; }

/* -------------------------------------------------------------- cta band */
.cta-band {
  position: relative; overflow: hidden; background: var(--ink); color: #c3cee8;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; background-image: var(--img-cta-band);
  background-size: cover; background-position: center; opacity: .17; filter: grayscale(.3);
}
.cta-band > .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: #c3cee8; }

/* ------------------------------------------------------------------ faq */
.faq-list { display: grid; gap: .7rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-s); }
.faq-item > h3 { margin: 0; }
.faq-q {
  display: block; font: inherit; font-weight: 700; color: var(--ink); font-size: 1.02rem;
  padding: 1.05rem 1.25rem; cursor: pointer; list-style: none; position: relative; padding-right: 3rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+"; position: absolute; right: 1.15rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--brand); line-height: 1;
}
.faq-item[open] .faq-q::after { content: "\2212"; }
.faq-a { padding: 0 1.25rem 1.2rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------- form */
.contact-layout { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
@media (min-width: 920px) { .contact-layout { grid-template-columns: 1.1fr .9fr; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.15rem); box-shadow: var(--shadow-m); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; color: var(--ink); font-size: .93rem; margin-bottom: .35rem; }
.field .hint { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; margin-top: .1rem; }
.req { color: #b3261e; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  border: 2px solid var(--line-strong); border-radius: 10px; padding: .72rem .9rem;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(34, 53, 221, .16);
}
/* form sits on a white card, so a single dark ring is the clearest indicator */
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--ink); outline-offset: 2px; box-shadow: 0 0 0 3px rgba(34, 53, 221, .16);
}
.field input::placeholder, .field textarea::placeholder { color: #6b7796; }
.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.cf-turnstile { margin-bottom: 1.1rem; min-height: 1px; }
.form-msg { border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: 1.1rem; font-size: .95rem; font-weight: 600; }
.form-msg--ok { background: var(--ok-tint); color: var(--ok); border: 1px solid #b9e0cd; }
.form-msg--err { background: #fdecea; color: #a01a10; border: 1px solid #f3c6c1; }
.form-foot { font-size: .87rem; color: var(--muted); margin: .9rem 0 0; }

.info-card { background: var(--ink); color: #c3cee8; border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); }
.info-card h2, .info-card h3 { color: #fff; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { margin: 0; display: flex; gap: .85rem; }
.info-list .ico { flex: none; width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--accent); }
.info-list .k { display: block; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #93a2c7; }
.info-list .v { color: #fff; font-weight: 700; font-size: 1.05rem; text-decoration: none; display: block; line-height: 1.4; }
a.v:hover { color: var(--accent); }
.info-card address { font-style: normal; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: #a5b2d2; padding-block: clamp(2.75rem, 5vw, 4rem) 0; font-size: .95rem; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid { display: grid; gap: clamp(1.75rem, 4vw, 2.75rem); grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer-brand img { width: 208px; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 34ch; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #cfd8ee; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-contact address { font-style: normal; display: grid; gap: .55rem; }
.footer-contact .big { font-size: 1.2rem; font-weight: 800; color: #fff; text-decoration: none; display: inline-block; }
.footer-contact .big:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 1.25rem; display: flex; flex-wrap: wrap; gap: .45rem 1.5rem; align-items: center;
  font-size: .85rem; color: #8b99bb;
}
.footer-bottom p { margin: 0; }
[data-ss-credit] { margin-left: auto !important; }
[data-ss-credit] a { color: #8b99bb; text-decoration: underline; }
[data-ss-credit] a:hover { color: #cfd8ee; }
@media (max-width: 680px) { [data-ss-credit] { margin-left: 0 !important; } }

/* --------------------------------------------------------- page header */
.page-hero { background: var(--surface-2); border-bottom: 1px solid var(--line); padding-block: clamp(2rem, 4.5vw, 3.25rem); }
.page-hero h1 { margin-bottom: .55rem; }
.page-hero .crumbs { padding-top: 0; padding-bottom: .9rem; }

/* ------------------------------------------------------------- prose */
.prose h2 { margin-top: 2.5rem; font-size: clamp(1.35rem, 1.15rem + .9vw, 1.8rem); }
.prose h3 { margin-top: 1.9rem; }
.prose > :first-child { margin-top: 0; }
.prose ul { margin-bottom: 1.1em; }
.prose .meta { font-size: .9rem; color: var(--muted); }
