/* ================================================================
   AMERIGE MINERALS — Brand v1.0 · Site stylesheet
   Palette: Navy #0A1F3D · Charcoal #2D2D2D · Salt White #F5F6F8 · Electric Slate #0056B3
   Type: Inter — Wordmark 800 / Headlines 700 / Body 400 / Labels 500
   Slate accent capped at <5% of any composition.
   ================================================================ */

:root {
  --navy: #0A1F3D;
  --navy-2: #122A4F;
  --navy-3: #061427;
  --navy-line: #1B2F50;
  --charcoal: #2D2D2D;
  --salt: #F5F6F8;
  --silver: #E8ECF1;
  --silver-2: #C8CCD1;
  --slate-text: #6A7280;
  --slate-accent: #0056B3;
  --hairline-light: #DCE0E6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--salt);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--navy); color: var(--silver); }
dl, dt, dd { margin: 0; padding: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- A11y — skip link, focus-visible ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--silver);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  z-index: 1000;
  border: 2px solid var(--silver);
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid var(--slate-accent);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--slate-accent);
  outline-offset: 2px;
}
nav.primary a:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 4px;
}
.field input:focus-visible, .field select:focus-visible {
  outline: 2px solid var(--slate-accent);
  outline-offset: 1px;
}

/* ---------- Homepage hero photo background (moved from inline) ---------- */
.hero { position: relative; isolation: isolate; }
.hero .bg-photo {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  opacity: 0.35;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,31,61,0.6) 0%, rgba(10,31,61,0.95) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(0,86,179,0.06), transparent 55%);
}

/* Footer brand lockup spacing (replaces inline style attribute) */
.foot-brand .lockup { margin-bottom: 24px; }

/* ---------- HEADER ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--silver);
  border-bottom: 1px solid var(--navy-line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* Brand lockup — mark + divider + wordmark */
.lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 44px;
}
.lockup .mark { width: 22px; height: 44px; flex-shrink: 0; }
.lockup .divider { width: 1px; height: 32px; background: #3A4A66; }
.lockup .word { display: flex; flex-direction: column; line-height: 1; }
.lockup .word .name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--silver);
}
.lockup .word .sub {
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: #8A9BB4;
  margin-top: 6px;
}

nav.primary { display: flex; gap: 36px; align-items: center; }
nav.primary a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(232,236,241,0.8);
  transition: color .15s ease;
}
nav.primary a:hover, nav.primary a.active { color: var(--silver); }

.cta {
  display: inline-block;
  padding: 12px 22px;
  background: var(--silver);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--silver);
  transition: all .18s ease;
  cursor: pointer;
  font-family: inherit;
}
.cta:hover { background: transparent; color: var(--silver); }

@media (max-width: 880px) {
  nav.primary { display: none; }
  .nav-wrap { height: 66px; }
}

/* ---------- HERO (homepage style) ---------- */
.hero {
  background: var(--navy);
  color: var(--silver);
  padding: 104px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(0,86,179,0.08), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232,236,241,0.7);
  margin-bottom: 28px;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--slate-accent);
}
h1.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--silver);
}
h1.hero-title .accent {
  display: block;
  font-weight: 400;
  color: rgba(232,236,241,0.78);
}
.hero-sub {
  font-size: 17px;
  color: rgba(232,236,241,0.72);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ghost {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid rgba(232,236,241,0.32);
  color: var(--silver);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: border-color .18s ease, background .18s ease;
}
.ghost:hover { border-color: var(--silver); background: rgba(232,236,241,0.04); }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
}
.stat { background: var(--navy); padding: 22px 24px; }
.stat .num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--silver);
}
.stat .num small { font-size: 22px; font-weight: 700; opacity: 0.7; }
.stat .lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,236,241,0.55);
  margin-top: 12px;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 72px 0 56px; }
}

/* ---------- HERO IMAGE TREATMENT (for vertical pages) ---------- */
/* Background-image based hero with branded gradient overlay.
   If /assets/img/{slug}.jpg exists it shows. If not, the CSS gradient holds.
   Both work — image enhances, doesn't replace. */
.hero-photo {
  position: relative;
  background: var(--navy);
  color: var(--silver);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo .bg {
  position: absolute; inset: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: -2;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,31,61,0.55) 0%, rgba(10,31,61,0.92) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(0,86,179,0.08), transparent 55%);
  z-index: -1;
}
.hero-photo .container { padding-top: 96px; padding-bottom: 80px; position: relative; }

.vertical-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: end;
}
.vertical-hero .v-meta { font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(232,236,241,0.65); margin-bottom: 24px; }
.vertical-hero .v-meta .compliance-tag { color: var(--silver); border: 1px solid rgba(232,236,241,0.4); padding: 5px 10px; margin-left: 12px; }
.vertical-hero h1 {
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--silver);
  margin-bottom: 24px;
}
.vertical-hero h1 .light { font-weight: 400; color: rgba(232,236,241,0.75); display: block; }
.vertical-hero p.lead {
  font-size: 17px;
  color: rgba(232,236,241,0.78);
  max-width: 620px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.vertical-hero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.vertical-hero .v-side {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,236,241,0.14);
  padding: 28px;
}
.vertical-hero .v-side h4 {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(232,236,241,0.55); font-weight: 600; margin-bottom: 16px;
}
.vertical-hero .v-side ul { list-style: none; }
.vertical-hero .v-side li {
  font-size: 14px; padding: 12px 0; border-bottom: 1px solid rgba(232,236,241,0.1); color: rgba(232,236,241,0.85);
  display: flex; justify-content: space-between; gap: 16px;
}
.vertical-hero .v-side li:last-child { border-bottom: none; }
.vertical-hero .v-side li .k { color: rgba(232,236,241,0.5); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
.vertical-hero .v-side li .v { font-weight: 600; color: var(--silver); }

@media (max-width: 880px) {
  .vertical-hero { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo .container { padding-top: 64px; padding-bottom: 56px; }
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--navy-3);
  color: rgba(232,236,241,0.6);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 56px;
  padding: 14px 0;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: scroll 50s linear infinite;
}
.ticker-inner span::before {
  content: "·";
  color: rgba(232,236,241,0.4);
  margin-right: 14px;
  font-weight: 700;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
section { padding: 104px 0; background: var(--salt); }
.section-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: start;
}
.section-head .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate-text);
  padding-top: 8px;
  border-top: 2px solid var(--navy);
  width: fit-content;
}
.section-head h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 780px;
}
.section-head h2 .light { font-weight: 400; color: var(--charcoal); }

@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  section { padding: 72px 0; }
}

/* ---------- VERTICALS GRID (homepage) ---------- */
.verticals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-light);
  border: 1px solid var(--hairline-light);
}
.vertical {
  background: #FFFFFF;
  padding: 36px 28px 32px;
  transition: background .2s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vertical:hover { background: var(--salt); }
.vertical .v-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--slate-text);
  margin-bottom: 28px;
}
.vertical h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.vertical .compliance {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  display: inline-block;
  padding: 5px 10px;
  background: var(--salt);
  border: 1px solid var(--hairline-light);
  align-self: flex-start;
}
.vertical p {
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.55;
}
.vertical .arrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
  display: inline-block;
  align-self: flex-start;
  transition: color .18s ease, border-color .18s ease;
}
.vertical:hover .arrow { color: var(--slate-accent); border-color: var(--slate-accent); }

@media (max-width: 1080px) { .verticals { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .verticals { grid-template-columns: 1fr; } }

/* ---------- AEO Q&A ---------- */
.qna { background: #FFFFFF; border-top: 1px solid var(--hairline-light); border-bottom: 1px solid var(--hairline-light); }
.qna-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline-light);
  border: 1px solid var(--hairline-light);
}
.qna-item { background: #FFFFFF; padding: 36px; }
.qna-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.qna-item p { font-size: 14px; color: var(--charcoal); line-height: 1.6; }
@media (max-width: 760px) { .qna-grid { grid-template-columns: 1fr; } }

/* ---------- SPEC TABLE (vertical pages) ---------- */
.spec-table {
  background: #FFFFFF;
  border: 1px solid var(--hairline-light);
}
.spec-table .row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--hairline-light);
  align-items: baseline;
}
.spec-table .row:last-child { border-bottom: none; }
.spec-table .k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-text);
}
.spec-table .v { font-size: 16px; color: var(--navy); font-weight: 500; line-height: 1.5; }
.spec-table .v strong { font-weight: 700; }
.spec-table .v small { color: var(--charcoal); font-weight: 400; font-size: 14px; display: block; margin-top: 4px; }
@media (max-width: 720px) {
  .spec-table .row { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }
}

/* ---------- APPLICATION GRID (vertical pages) ---------- */
.applications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-light);
  border: 1px solid var(--hairline-light);
}
.app-card { background: #FFFFFF; padding: 32px 28px; }
.app-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.app-card p { font-size: 14px; color: var(--charcoal); line-height: 1.6; }
@media (max-width: 880px) { .applications { grid-template-columns: 1fr; } }

/* ---------- RFQ ENGINE ---------- */
.rfq-section { background: var(--navy); color: var(--silver); }
.rfq-section .section-head .label {
  color: rgba(232,236,241,0.55);
  border-top-color: var(--silver);
}
.rfq-section .section-head h2 { color: var(--silver); }
.rfq-section .section-head h2 .light { color: rgba(232,236,241,0.62); }

.rfq-shell {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  max-width: 880px;
  margin: 0 auto;
}

/* Noscript fallback — surfaces phone + email when JS is blocked */
.rfq-noscript {
  padding: 36px 48px;
  border-bottom: 1px solid var(--navy-line);
  background: rgba(0,86,179,0.08);
}
.rfq-noscript h3 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; color: var(--silver); margin-bottom: 12px; }
.rfq-noscript p { font-size: 14px; color: rgba(232,236,241,0.85); margin-bottom: 14px; line-height: 1.55; }
.rfq-noscript .ns-channels { display: flex; gap: 16px; flex-wrap: wrap; }
.rfq-noscript .ns-channels a {
  font-size: 14px; font-weight: 600; padding: 10px 18px;
  background: var(--silver); color: var(--navy); letter-spacing: 0.04em;
}
.rfq-noscript .ns-channels a + a { background: transparent; color: var(--silver); border: 1px solid rgba(232,236,241,0.4); }
@media (max-width: 720px) { .rfq-noscript { padding: 28px 24px; } }
.rfq-bar { display: flex; border-bottom: 1px solid var(--navy-line); }
.rfq-step-pill {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,236,241,0.4);
  border-right: 1px solid var(--navy-line);
  position: relative;
  transition: all .25s ease;
}
.rfq-step-pill:last-child { border-right: none; }
.rfq-step-pill.active { color: var(--silver); background: rgba(232,236,241,0.04); }
.rfq-step-pill.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--slate-accent);
}
.rfq-step-pill.done { color: rgba(232,236,241,0.7); }
.rfq-step-pill .n { display: block; font-size: 9px; margin-bottom: 4px; opacity: 0.7; }

.rfq-body { padding: 48px 48px 36px; }
.rfq-step { display: none; }
.rfq-step.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.rfq-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--silver);
}
.rfq-step .helper { font-size: 13px; color: rgba(232,236,241,0.55); margin-bottom: 32px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt {
  border: 1px solid rgba(232,236,241,0.18);
  padding: 20px 22px;
  cursor: pointer;
  transition: all .15s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
}
.opt:hover { border-color: rgba(232,236,241,0.45); background: rgba(232,236,241,0.03); }
.opt.selected { border-color: var(--silver); background: rgba(232,236,241,0.06); }
.opt .opt-title { font-weight: 700; font-size: 15px; color: var(--silver); }
.opt .opt-meta { font-size: 11px; color: rgba(232,236,241,0.55); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-row.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,236,241,0.55);
}
.field input, .field select {
  background: transparent;
  border: 1px solid rgba(232,236,241,0.2);
  color: var(--silver);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--slate-accent); }
.field input::placeholder { color: rgba(232,236,241,0.55); }
.field select option { background: var(--navy); color: var(--silver); }

.rfq-nav {
  border-top: 1px solid var(--navy-line);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-back, .btn-next {
  padding: 12px 22px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: 1px solid rgba(232,236,241,0.2);
  background: transparent;
  color: rgba(232,236,241,0.7);
  transition: all .15s ease;
}
.btn-back:hover { border-color: rgba(232,236,241,0.5); color: var(--silver); }
.btn-back:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-next {
  background: var(--silver);
  color: var(--navy);
  border-color: var(--silver);
}
.btn-next:hover { background: #FFFFFF; border-color: #FFFFFF; }
.btn-next:disabled { opacity: 0.45; cursor: not-allowed; }

.rfq-success { padding: 64px 48px; text-align: center; display: none; }
.rfq-success.active { display: block; }
.rfq-success .check {
  width: 56px; height: 56px;
  border: 1.5px solid var(--silver);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 26px;
  margin-bottom: 24px;
}
.rfq-success h3 { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; color: var(--silver); }
.rfq-success p { color: rgba(232,236,241,0.7); max-width: 460px; margin: 0 auto; font-size: 15px; }
.rfq-success .ref {
  margin-top: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: rgba(232,236,241,0.6);
}
.rfq-success .urgent-line {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-line);
  font-size: 13px;
  color: rgba(232,236,241,0.7);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.rfq-success .urgent-line a {
  color: var(--silver);
  border-bottom: 1px solid rgba(232,236,241,0.4);
  font-weight: 600;
  transition: border-color .15s ease;
}
.rfq-success .urgent-line a:hover { border-bottom-color: var(--silver); }

@media (max-width: 720px) {
  .rfq-body { padding: 32px 24px 24px; }
  .rfq-nav { padding: 16px 24px; }
  .opt-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .rfq-step-pill .label-text { display: none; }
}

/* ---------- LOGISTICS BAND ---------- */
.logistics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-light);
  border: 1px solid var(--hairline-light);
}
.lb { background: #FFFFFF; padding: 36px 28px; }
.lb h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate-text);
  margin-bottom: 16px;
}
.lb .data {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.15;
}
.lb .data a { color: var(--navy); transition: color .15s ease; }
.lb .data a:hover { color: var(--slate-accent); }
.lb p { font-size: 14px; color: var(--charcoal); line-height: 1.6; }
.lb p a { color: var(--charcoal); border-bottom: 1px solid var(--hairline-light); transition: color .15s ease, border-color .15s ease; }
.lb p a:hover { color: var(--slate-accent); border-bottom-color: var(--slate-accent); }

@media (max-width: 1080px) { .logistics-band { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .logistics-band { grid-template-columns: 1fr; } }

/* ---------- BREADCRUMB (vertical pages) ---------- */
.crumb {
  background: var(--navy-3);
  color: rgba(232,236,241,0.6);
  border-bottom: 1px solid var(--navy-line);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.crumb .container { padding-top: 14px; padding-bottom: 14px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.crumb a { color: rgba(232,236,241,0.6); transition: color .15s ease; }
.crumb a:hover { color: var(--silver); }
.crumb .sep { opacity: 0.4; }
.crumb .current { color: var(--silver); }

/* ---------- FOOTER ---------- */
footer.site {
  background: var(--navy);
  color: rgba(232,236,241,0.7);
  padding: 80px 0 32px;
  border-top: 1px solid var(--navy-line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-grid h5 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 700;
  margin-bottom: 18px;
}
.foot-grid ul { list-style: none; }
.foot-grid li { font-size: 13px; margin-bottom: 10px; }
.foot-grid a { transition: color .15s ease; }
.foot-grid a:hover { color: var(--silver); }
.foot-brand p { font-size: 13px; max-width: 340px; line-height: 1.6; }
.foot-brand .legal { font-size: 11px; margin-top: 18px; color: rgba(232,236,241,0.45); letter-spacing: 0.06em; }

.corridors { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.corridor {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  border: 1px solid rgba(232,236,241,0.25);
  padding: 6px 12px;
  color: var(--silver);
}

.contact-strip {
  border-top: 1px solid var(--navy-line);
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cs-block { display: flex; flex-direction: column; gap: 6px; }
.cs-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232,236,241,0.45);
}
.cs-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.01em;
}
.cs-val a { transition: color .15s ease; }
.cs-val a:hover { color: var(--silver); border-bottom: 1px solid var(--silver); }
@media (max-width: 720px) {
  .contact-strip { grid-template-columns: 1fr; gap: 18px; }
}

.keyword-cloud {
  border-top: 1px solid var(--navy-line);
  padding-top: 28px;
  margin-top: 28px;
  margin-bottom: 28px;
}
.keyword-cloud .kc-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232,236,241,0.4);
  margin-bottom: 14px;
}
.kc-list {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  font-size: 11px;
  color: rgba(232,236,241,0.45);
  letter-spacing: 0.04em;
}
.kc-list span::after { content: "·"; padding-left: 14px; color: rgba(232,236,241,0.25); }
.kc-list span:last-child::after { content: ""; }

.foot-bottom {
  border-top: 1px solid var(--navy-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(232,236,241,0.6);
  text-transform: uppercase;
}

/* Footer "Standards" — visual tag chips, not list items pretending to be links */
.foot-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.foot-tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border: 1px solid rgba(232,236,241,0.22);
  color: rgba(232,236,241,0.85);
  margin-bottom: 0;
  cursor: default;
}

/* Vertical-page "At a glance" sidebar — semantic dl */
.vertical-hero .v-side dl { display: flex; flex-direction: column; }
.vertical-hero .v-side dl > div {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 14px; padding: 12px 0;
  border-bottom: 1px solid rgba(232,236,241,0.1);
  color: rgba(232,236,241,0.85);
}
.vertical-hero .v-side dl > div:last-child { border-bottom: none; }
.vertical-hero .v-side dt { color: rgba(232,236,241,0.6); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
.vertical-hero .v-side dd { font-weight: 600; color: var(--silver); }

@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; gap: 12px; }
}
