/* ==========================================================================
   Internet Content Group - Design System
   Style: Corporate-minimal B2B, light surface + deep navy anchors
   Type:  Plus Jakarta Sans (headings) / Inter (body)
   ========================================================================== */

:root {
  /* Brand */
  --ink:        #0B1F3A;
  --ink-2:      #12294A;
  --ink-3:      #1B3A63;
  --brand:      #0B63CE;
  --brand-600:  #0A55B0;
  --brand-050:  #EAF2FD;
  --accent:     #E8952B;

  /* Neutrals */
  --bg:         #FFFFFF;
  --surface:    #F5F8FC;
  --surface-2:  #EDF2F9;
  --line:       #DCE4EF;
  --line-soft:  #E9EEF6;
  --text:       #1B2839;
  --muted:      #51617A;
  --on-dark:    #F2F6FC;
  --on-dark-mut:#A9BBD4;

  /* Type */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Space scale (8px base) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radius + elevation */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-full: 999px;
  --sh-1: 0 1px 2px rgba(11,31,58,.06), 0 1px 3px rgba(11,31,58,.05);
  --sh-2: 0 4px 12px rgba(11,31,58,.07), 0 2px 4px rgba(11,31,58,.04);
  --sh-3: 0 18px 40px rgba(11,31,58,.12), 0 4px 10px rgba(11,31,58,.06);

  /* Layout */
  --container: 1180px;
  --nav-h: 76px;

  /* Z-scale */
  --z-nav: 50; --z-drawer: 40; --z-raised: 10;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-600); text-decoration: underline; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.15rem, 1.35rem + 3.1vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.1vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.03rem + 0.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
p  { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

/* ---------- A11y ---------- */
.skip-link {
  position: absolute; left: var(--s-4); top: -100px;
  z-index: 100; background: var(--ink); color: #fff;
  padding: var(--s-3) var(--s-5); border-radius: var(--r-md); font-weight: 600;
}
.skip-link:focus { top: var(--s-4); text-decoration: none; }
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-5); }
.section { padding-block: clamp(56px, 7vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--ink); color: var(--on-dark-mut); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.stack > * + * { margin-top: var(--s-4); }
.measure { max-width: 68ch; }
.center { text-align: center; margin-inline: auto; }

/* Minimums are tuned against the 1180px container so each grid settles on the
   column count it is named for, rather than squeezing in an extra one and
   leaving an orphan card on the last row. */
.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
@media (max-width: 460px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Eyebrow + section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section--dark .eyebrow { color: var(--accent); }
.section--dark .eyebrow::before { background: var(--accent); }

.section-head { max-width: 62ch; margin-bottom: var(--s-7); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-top: var(--s-4); }
.section--dark .section-head p { color: var(--on-dark-mut); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 48px; padding: 0 var(--s-6);
  font-family: var(--font-head); font-size: .96rem; font-weight: 700;
  border-radius: var(--r-md); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--sh-2); }
.btn-primary:hover { background: var(--brand-600); color: #fff; box-shadow: var(--sh-3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); border-color: #C6D3E4; color: var(--ink); }
.btn-on-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-on-dark:hover { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-accent { background: var(--accent); color: #21150A; }
.btn-accent:hover { background: #D5831C; color: #21150A; }
.btn-sm { min-height: 42px; padding: 0 var(--s-5); font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; gap: var(--s-5);
  min-height: var(--nav-h);
}
.brand { display: inline-flex; align-items: center; gap: var(--s-3); flex: none; }
.brand:hover { text-decoration: none; }
/* The emblem SVG carries its own colour, so no badge treatment behind it. */
.brand-mark { width: 40px; height: 44px; flex: none; display: block; object-fit: contain; }
.brand-name {
  font-family: var(--font-head); font-weight: 800; color: var(--ink);
  font-size: 1.02rem; line-height: 1.1; letter-spacing: -.02em;
}
.brand-name span {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted);
  margin-top: 2px;
}
/* The nav wrapper has to be a flex row itself, otherwise the link list and the
   phone/CTA block stack onto two lines and double the header height. */
.site-nav { display: flex; align-items: center; gap: var(--s-5); margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: var(--s-1); margin-left: auto; list-style: none; }
.nav-links a {
  display: inline-flex; align-items: center; min-height: 42px;
  padding: 0 var(--s-4); border-radius: var(--r-sm);
  font-family: var(--font-head); font-size: .93rem; font-weight: 600; color: var(--ink-2);
  transition: background-color .2s ease, color .2s ease;
}
.nav-links a:hover { background: var(--surface-2); color: var(--brand); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--brand); background: var(--brand-050); }
.nav-cta { display: flex; align-items: center; gap: var(--s-3); flex: none; }
.nav-phone {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-head); font-weight: 700; font-size: .93rem; color: var(--ink);
}
.nav-phone:hover { color: var(--brand); text-decoration: none; }
.nav-phone svg { width: 17px; height: 17px; color: var(--brand); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-left: auto;
  background: transparent; border: 1.5px solid var(--line); border-radius: var(--r-md);
  color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta { display: none; }
  .site-nav.is-open .nav-links,
  .site-nav.is-open .nav-cta {
    display: flex; flex-direction: column; align-items: stretch; width: 100%; gap: var(--s-1);
  }
  .site-nav.is-open {
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-3); padding: var(--s-4) var(--s-5) var(--s-6);
    display: flex; flex-direction: column; gap: var(--s-4);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .site-nav.is-open .nav-links a { min-height: 48px; font-size: 1rem; }
  .site-nav.is-open .nav-cta { margin-top: var(--s-2); gap: var(--s-3); }
  .site-nav.is-open .nav-phone { min-height: 48px; padding-inline: var(--s-4); }
}

/* ---------- Hero ---------- */
/* Photograph underneath, navy wash on top. The wash is heaviest on the left
   where the headline sits, so the copy keeps its contrast while the right side
   of the image stays visible behind the contact card. */
.hero {
  position: relative; overflow: hidden;
  background-color: var(--ink);
  background-image: url("../img/photos/hero-warehouse.jpg");
  background-image: image-set(
    url("../img/photos/hero-warehouse-1600.webp") type("image/webp"),
    url("../img/photos/hero-warehouse.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center 60%;
  color: var(--on-dark-mut);
  padding-block: clamp(64px, 8vw, 120px);
}
@media (min-width: 1500px) {
  .hero {
    background-image: url("../img/photos/hero-warehouse.jpg");
    background-image: image-set(
      url("../img/photos/hero-warehouse.webp") type("image/webp"),
      url("../img/photos/hero-warehouse.jpg") type("image/jpeg"));
  }
}
@media (max-width: 700px) {
  .hero {
    background-image: url("../img/photos/hero-warehouse.jpg");
    background-image: image-set(
      url("../img/photos/hero-warehouse-900.webp") type("image/webp"),
      url("../img/photos/hero-warehouse.jpg") type("image/jpeg"));
  }
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(11,99,206,.42), transparent 62%),
    linear-gradient(100deg,
      rgba(11,31,58,.97) 0%,
      rgba(11,31,58,.93) 42%,
      rgba(14,39,72,.86) 68%,
      rgba(18,49,89,.74) 100%);
}
@media (max-width: 900px) {
  /* Single column: the copy now runs the full width, so the wash must too. */
  .hero::before {
    background:
      radial-gradient(700px 400px at 80% 0%, rgba(11,99,206,.32), transparent 62%),
      linear-gradient(180deg, rgba(11,31,58,.86) 0%, rgba(11,31,58,.91) 100%);
  }
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 460px at 60% 0%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(900px 460px at 60% 0%, #000 0%, transparent 78%);
}
.hero > .container { position: relative; z-index: var(--z-raised); }
.hero-grid {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lede { font-size: clamp(1.04rem, .98rem + .32vw, 1.2rem); color: var(--on-dark-mut); max-width: 56ch; margin-top: var(--s-5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.pill-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-6); }
.pill {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-4); border-radius: var(--r-full);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: #DCE8F8;
}
.pill svg { width: 15px; height: 15px; color: var(--accent); }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--sh-3);
}
.hero-card h2 {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: var(--s-5);
}
.hero-facts { list-style: none; display: grid; gap: var(--s-4); }
.hero-facts li { display: flex; gap: var(--s-4); align-items: flex-start; }
.hero-facts .ico {
  width: 40px; height: 40px; flex: none; border-radius: var(--r-md);
  background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--accent);
}
.hero-facts .ico svg { width: 19px; height: 19px; }
.hero-facts strong { display: block; color: #fff; font-family: var(--font-head); font-size: .98rem; }
.hero-facts span { font-size: .92rem; color: var(--on-dark-mut); }
.hero-facts a { color: #fff; }

/* ---------- Stat band ---------- */
.stat-band { border-bottom: 1px solid var(--line-soft); background: var(--surface); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--s-5); }
.stat { padding: var(--s-5) 0; }
.stat b {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.5rem); color: var(--ink); letter-spacing: -.03em;
}
.stat span { font-size: .92rem; color: var(--muted); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-6);
  box-shadow: var(--sh-1);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: #BFD3EC; box-shadow: var(--sh-2); }
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--muted); font-size: .97rem; }
.card-ico {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--brand-050); color: var(--brand);
  display: grid; place-items: center; margin-bottom: var(--s-5);
}
.card-ico svg { width: 23px; height: 23px; }
.card--dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); box-shadow: none; }
.card--dark p { color: var(--on-dark-mut); }
.card--dark:hover { border-color: rgba(255,255,255,.28); }
.card--dark .card-ico { background: rgba(255,255,255,.09); color: var(--accent); }

.list-check { list-style: none; display: grid; gap: var(--s-3); }
.list-check li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: .98rem; }
.list-check svg { width: 20px; height: 20px; flex: none; color: var(--brand); margin-top: 3px; }
.section--dark .list-check svg { color: var(--accent); }
.section--dark .list-check li { color: var(--on-dark-mut); }

/* ---------- Brand grid ---------- */
/* Fixed column counts rather than auto-fill: eight tiles then land as 4x2,
   3+3+2 and 2x4 instead of leaving a ragged final row. */
.brand-grid {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 620px) { .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 940px) { .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.brand-tile {
  display: flex; align-items: center; justify-content: center;
  min-height: 118px; padding: var(--s-4);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.brand-tile img {
  max-height: 56px; width: auto; max-width: 100%; object-fit: contain;
  filter: grayscale(1); opacity: .62;
  transition: filter .25s ease, opacity .25s ease;
}
.brand-tile:hover { border-color: #BFD3EC; box-shadow: var(--sh-2); }
.brand-tile:hover img { filter: grayscale(0); opacity: 1; }
.brand-tile--more {
  flex-direction: column; gap: var(--s-1); text-align: center;
  background: var(--surface); border-style: dashed;
}
.brand-tile--more b { font-family: var(--font-head); color: var(--ink); font-size: 1.05rem; }
.brand-tile--more span { font-size: .86rem; color: var(--muted); }

.brand-detail { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.brand-card { display: flex; flex-direction: column; gap: var(--s-4); }
.brand-card .logo-well {
  height: 96px; display: flex; align-items: center; justify-content: flex-start;
  padding: var(--s-4) var(--s-5); background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: var(--r-md);
}
.brand-card .logo-well img { max-height: 54px; width: auto; object-fit: contain; }
.tag {
  display: inline-block; padding: 3px var(--s-3); border-radius: var(--r-full);
  background: var(--brand-050); color: var(--brand-600);
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- Photography ---------- */
.media {
  margin: 0; border-radius: var(--r-xl); overflow: hidden;
  background: var(--surface-2); box-shadow: var(--sh-3);
}
.media img { display: block; width: 100%; height: auto; }
.media--square img { aspect-ratio: 4 / 3; object-fit: cover; }

.banner {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); box-shadow: var(--sh-2);
  background: var(--surface-2);
}
.banner img { display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
@media (max-width: 700px) { .banner img { aspect-ratio: 3 / 2; } }
.banner-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(to top, rgba(11,31,58,.94) 12%, rgba(11,31,58,.68) 55%, rgba(11,31,58,0) 100%);
  color: #fff;
}
.banner-caption h2, .banner-caption h3 { color: #fff; max-width: 22ch; }
.banner-caption p { color: #DCE6F4; max-width: 56ch; margin-top: var(--s-3); font-size: .98rem; }
@media (max-width: 560px) {
  /* The gradient cannot carry a full paragraph at this width without swamping
     the picture, so the caption drops below the image instead. */
  .banner-caption {
    position: static; background: var(--ink); border-radius: 0 0 var(--r-xl) var(--r-xl);
  }
}

/* ---------- Split feature ---------- */
.split {
  display: grid; gap: clamp(32px, 5vw, 72px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}
.panel {
  background: linear-gradient(150deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line); border-radius: var(--r-xl); padding: var(--s-7);
}
.section--dark .panel {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13);
}

/* ---------- Process steps ---------- */
.steps { list-style: none; display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.steps li { position: relative; padding-top: var(--s-6); border-top: 2px solid var(--line); }
.steps li::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: var(--s-4); left: 0;
  font-family: var(--font-head); font-weight: 800; font-size: .82rem;
  letter-spacing: .1em; color: var(--brand);
}
.steps h3 { font-size: 1.08rem; margin-bottom: var(--s-2); }
.steps p { color: var(--muted); font-size: .95rem; }
.section--dark .steps li { border-top-color: rgba(255,255,255,.16); }
.section--dark .steps li::before { color: var(--accent); }
.section--dark .steps p { color: var(--on-dark-mut); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-3) 100%);
  border-radius: var(--r-xl); padding: clamp(32px, 5vw, 64px);
  display: grid; gap: var(--s-6); grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 780px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band--photo {
  background-color: var(--ink);
  background-image:
    linear-gradient(105deg, rgba(11,31,58,.97) 0%, rgba(11,31,58,.90) 48%, rgba(27,58,99,.70) 100%),
    url("../img/photos/loading-dock.jpg");
  background-image:
    linear-gradient(105deg, rgba(11,31,58,.97) 0%, rgba(11,31,58,.90) 48%, rgba(27,58,99,.70) 100%),
    image-set(url("../img/photos/loading-dock.webp") type("image/webp"),
              url("../img/photos/loading-dock.jpg") type("image/jpeg"));
  background-size: cover; background-position: center;
}
.cta-band > * { position: relative; z-index: var(--z-raised); }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-mut); margin-top: var(--s-4); }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: flex-end; }
@media (max-width: 780px) { .cta-actions { justify-content: flex-start; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--ink) 0%, #13315A 100%);
  color: var(--on-dark-mut); padding-block: clamp(48px, 6vw, 84px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(720px 320px at 78% 0%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(720px 320px at 78% 0%, #000, transparent 76%);
}
.page-hero > .container { position: relative; z-index: var(--z-raised); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: var(--on-dark-mut); max-width: 62ch; margin-top: var(--s-4); font-size: 1.06rem; }

.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-2); font-size: .86rem; margin-bottom: var(--s-4); }
.breadcrumb li { display: flex; align-items: center; gap: var(--s-2); color: var(--on-dark-mut); }
.breadcrumb li + li::before { content: "/"; color: rgba(255,255,255,.35); }
.breadcrumb a { color: var(--on-dark-mut); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current="page"] { color: #fff; font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(32px, 4vw, 56px); grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; display: grid; gap: var(--s-5); }
.info-list li { display: flex; gap: var(--s-4); }
.info-list .ico {
  width: 44px; height: 44px; flex: none; border-radius: var(--r-md);
  background: var(--brand-050); color: var(--brand); display: grid; place-items: center;
}
.info-list .ico svg { width: 20px; height: 20px; }
.info-list h3 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: var(--s-1); font-family: var(--font-head); }
.info-list p, .info-list address { font-style: normal; color: var(--text); font-size: 1rem; }
.info-list a { font-weight: 600; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--sh-2); }
.field { display: grid; gap: var(--s-2); margin-bottom: var(--s-5); }
.field label { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--ink); }
.field .req { color: #B03A10; }
.field .hint { font-size: .84rem; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: var(--s-3) var(--s-4);
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #BFD3EC; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(11,99,206,.14);
}
.field-row { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.form-note { font-size: .86rem; color: var(--muted); margin-top: var(--s-4); }

.map-frame { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); background: var(--surface); }
.map-frame iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--s-3); max-width: 860px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5); transition: border-color .2s ease;
}
.faq details[open] { border-color: #BFD3EC; box-shadow: var(--sh-1); }
.faq summary {
  cursor: pointer; list-style: none; font-family: var(--font-head); font-weight: 700;
  color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  min-height: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(45deg); transition: transform .2s ease; margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq p { margin-top: var(--s-3); color: var(--muted); font-size: .97rem; }

/* ---------- Legal / prose ---------- */
.legal-layout { display: grid; gap: clamp(32px, 4vw, 56px); grid-template-columns: 260px minmax(0, 1fr); align-items: start; }
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; } }
.toc {
  position: sticky; top: calc(var(--nav-h) + 16px);
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: var(--s-5);
}
@media (max-width: 900px) { .toc { position: static; } }
.toc h2 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-4); font-weight: 700; }
.toc ol { list-style: none; counter-reset: toc; display: grid; gap: var(--s-1); }
.toc li { counter-increment: toc; }
.toc a {
  display: block; padding: var(--s-2) var(--s-3); border-radius: var(--r-sm);
  font-size: .89rem; color: var(--muted); line-height: 1.4;
}
.toc a::before { content: counter(toc) ". "; color: var(--brand); font-weight: 700; }
.toc a:hover { background: #fff; color: var(--ink); text-decoration: none; }

.prose { max-width: 74ch; }
.prose h2 {
  font-size: 1.42rem; margin-top: var(--s-8); margin-bottom: var(--s-4);
  padding-top: var(--s-2); scroll-margin-top: calc(var(--nav-h) + 24px);
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin-top: var(--s-6); margin-bottom: var(--s-3); }
.prose p, .prose li { color: var(--text); font-size: 1rem; }
.prose ul, .prose ol { padding-left: var(--s-5); margin: 0 0 var(--s-4); display: grid; gap: var(--s-2); }
.prose li { padding-left: var(--s-1); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { color: var(--ink); }
.legal-meta {
  background: var(--surface); border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: var(--s-4) var(--s-5);
  font-size: .92rem; color: var(--muted); margin-bottom: var(--s-7);
}
.legal-meta strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-mut); padding-block: var(--s-8) var(--s-5); }
.footer-grid {
  display: grid; gap: var(--s-7);
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name span { color: var(--on-dark-mut); }
.footer-about { font-size: .95rem; color: var(--on-dark-mut); margin-top: var(--s-4); max-width: 42ch; }
.footer-col h3 {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; margin-bottom: var(--s-4); font-weight: 700;
}
.footer-col ul { list-style: none; display: grid; gap: var(--s-3); }
.footer-col a, .footer-col address, .footer-col p { color: var(--on-dark-mut); font-size: .93rem; font-style: normal; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: var(--s-8); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between; align-items: center;
  font-size: .86rem; color: var(--on-dark-mut);
}
.footer-legal { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-5); }
.footer-disclaimer { font-size: .82rem; color: #8FA5C4; margin-top: var(--s-4); max-width: 92ch; }

/* ---------- 404 ---------- */
.error-wrap { text-align: center; padding-block: clamp(64px, 10vw, 140px); }
.error-code {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.04em;
  /* Decorative (aria-hidden) but still needs to read at a glance: 3:1 against
     white, the large-text threshold. */
  font-size: clamp(4rem, 12vw, 8rem); line-height: 1; color: #6896D2;
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .toc { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .prose { max-width: none; }
}
