/* ============================================================
   Procura — SpecX-powered sourcing company
   Brand palette + base system
   ============================================================ */

:root {
  /* Brand colors */
  --charcoal: #1E2024;
  --bronze: #B88943;
  --bronze-deep: #9C7234;
  --light-gray: #F2F3F5;
  --slate: #5B6B7D;
  --white: #FFFFFF;

  /* Derived tones */
  --charcoal-90: #2A2D33;
  --charcoal-80: #383C44;
  --ink: #1E2024;
  --ink-soft: #41454D;
  --line: #E2E4E8;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Type */
  --font-display: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(30, 32, 36, 0.06), 0 4px 16px rgba(30, 32, 36, 0.05);
  --shadow-md: 0 12px 40px rgba(30, 32, 36, 0.10);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; margin: 0; color: var(--charcoal); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.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;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--charcoal); color: var(--white); padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--bronze); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap; letter-spacing: -0.01em;
}
.btn--sm { padding: 10px 18px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--bronze); color: var(--white); box-shadow: 0 6px 18px rgba(184, 137, 67, 0.28); }
.btn--primary:hover { background: var(--bronze-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--white); transform: translateY(-1px); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: var(--white); color: var(--charcoal); transform: translateY(-1px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }

.logo { display: inline-flex; align-items: center; }
.logo__img { width: auto; height: 50px; display: block; }
.logo__img--compact { display: none; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 28px; }
.nav-list a { font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: color .18s var(--ease); }
.nav-list a:hover { color: var(--charcoal); }
.nav-list__cta a { color: var(--white); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 10px; cursor: pointer;
}
.nav-toggle__bar { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Shared section scaffolding
   ============================================================ */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--gray { background: var(--light-gray); }
.section--dark { background: var(--charcoal); color: rgba(255,255,255,0.86); }
.section--dark .section-title { color: var(--white); }

.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin: 0 0 14px;
}
.eyebrow--bronze { color: var(--bronze-deep); }
.section--dark .eyebrow--bronze { color: var(--bronze); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(28px, 4vw, 40px); }
.section-lede { font-size: clamp(17px, 2vw, 19px); color: var(--ink-soft); margin-top: 18px; }
.section--dark .section-lede { color: rgba(255,255,255,0.72); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: #141518;
  border-bottom: 1px solid #141518;
}
/* Full-bleed feature image */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  transform: scale(1.04);
}
/* Charcoal scrim — dark on the left where text sits, image breathes on the right.
   Second layer darkens the bottom; a bronze glow warms the top-right. */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 55% at 88% 8%, rgba(184,137,67,0.22), transparent 60%),
    linear-gradient(90deg, rgba(20,21,24,0.95) 0%, rgba(20,21,24,0.82) 34%, rgba(20,21,24,0.50) 66%, rgba(20,21,24,0.32) 100%),
    linear-gradient(0deg, rgba(20,21,24,0.80) 0%, rgba(20,21,24,0.05) 42%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 0.9fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
  min-height: clamp(540px, 72vh, 740px);
  padding: clamp(72px, 9vw, 120px) 0;
}
.hero__content { max-width: 640px; }
.hero .eyebrow { color: var(--bronze); }
.hero__title { font-size: clamp(36px, 5.6vw, 62px); letter-spacing: -0.025em; color: var(--white); text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero__sub { font-size: clamp(17px, 2vw, 19px); color: rgba(255,255,255,0.80); margin: 22px 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 15px; color: rgba(255,255,255,0.62); max-width: 540px;
}
.trust-mark { flex: none; width: 10px; height: 10px; margin-top: 6px; border-radius: 3px; background: var(--bronze); box-shadow: 0 0 0 4px rgba(184,137,67,0.22); }

/* Hero side panel */
.hero__panel { position: relative; }
.panel-card {
  background: var(--charcoal); color: var(--white);
  border-radius: 18px; padding: 34px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--charcoal-80);
}
/* Frosted variant for the image hero — lets the photo read through. */
.panel-card--glass {
  background: rgba(26, 28, 32, 0.58);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.panel-card__label { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--bronze); margin: 0 0 22px; letter-spacing: -0.01em; }
.panel-card__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.panel-card__list li {
  position: relative; padding-left: 20px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.9);
}
.panel-card__list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px;
  border-left: 2px solid var(--bronze); border-bottom: 2px solid var(--bronze); transform: rotate(-45deg);
}
.panel-card__foot { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 4px; }
.panel-card__metricword { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.panel-card__metricsub { font-size: 14px; color: rgba(255,255,255,0.62); }

/* ============================================================
   Grids + cards
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D6D9DE; }
.card__index { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--bronze); letter-spacing: 0.08em; }
.card__title { font-size: 19px; margin: 14px 0 10px; }
.card__body { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* Starting supply lanes */
.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lane-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.lane-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: var(--bronze);
}
.lane-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D6D9DE; }
.lane-card__label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}
.lane-card h3 { font-size: 20px; margin-bottom: 12px; }
.lane-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.supply-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: rgba(255,255,255,0.74);
}
.supply-proof strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  min-width: 280px;
}
.supply-proof span { font-size: 15px; }

/* Category cards */
.category-grid { gap: 18px; }
.category {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.category::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--bronze); transform: scaleY(0); transform-origin: top; transition: transform .25s var(--ease);
}
.category:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D6D9DE; }
.category:hover::after { transform: scaleY(1); }
.category__name { font-size: 21px; letter-spacing: -0.01em; }
.category__desc { font-size: 15px; color: var(--ink-soft); margin: 10px 0 0; }
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--bronze-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.text-link::after {
  content: "→";
  margin-left: 7px;
  transition: transform .18s var(--ease);
}
.text-link:hover::after { transform: translateX(3px); }

/* ============================================================
   PPE bridge page
   ============================================================ */
.page-hero {
  background:
    radial-gradient(70% 70% at 92% 18%, rgba(184,137,67,0.20), transparent 56%),
    linear-gradient(135deg, #F7F7F8 0%, #FFFFFF 58%, #F1F2F4 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  min-height: clamp(480px, 62vh, 640px);
  padding: clamp(64px, 8vw, 104px) 0;
}
.page-hero__content { max-width: 680px; }
.page-hero__title { font-size: clamp(36px, 5vw, 58px); letter-spacing: -0.025em; }
.page-hero__sub { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); margin: 22px 0 0; }
.portal-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--charcoal-80);
}
.portal-card__label {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.portal-card h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 22px; }
.portal-card__list { display: flex; flex-direction: column; gap: 13px; }
.portal-card__list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,0.84);
  font-size: 15.5px;
}
.portal-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-left: 2px solid var(--bronze);
  border-bottom: 2px solid var(--bronze);
  transform: rotate(-45deg);
}
.portal-card__note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,0.60);
  font-size: 14px;
}
.portal-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.portal-option .card__body { margin-bottom: 8px; }
.bridge-note { max-width: 820px; }
@media (max-width: 980px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .portal-card { max-width: 620px; }
}
@media (max-width: 560px) {
  .page-hero__inner { min-height: auto; padding: 54px 0; }
  .page-hero .hero__cta .btn { flex: 1 1 100%; }
}

/* ============================================================
   SpecX steps
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.step {
  position: relative; padding: 26px 22px; border-radius: var(--radius);
  background: var(--charcoal-90); border: 1px solid var(--charcoal-80);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(184,137,67,0.16); color: var(--bronze);
  font-family: var(--font-display); font-weight: 800; font-size: 17px; margin-bottom: 16px;
}
.step__title { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.step__body { font-size: 14.5px; color: rgba(255,255,255,0.66); margin: 0; }

/* ============================================================
   Quote form
   ============================================================ */
.quote {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 56px);
  background: var(--white); color: var(--ink);
  border-radius: 20px; padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md); scroll-margin-top: 100px;
}
.quote__title { font-size: clamp(22px, 3vw, 28px); }
.quote__copy { font-size: 16px; color: var(--ink-soft); margin: 16px 0 22px; }
.quote__points { display: flex; flex-direction: column; gap: 10px; }
.quote__points li {
  position: relative; padding-left: 24px; font-weight: 600; color: var(--charcoal); font-size: 15.5px;
}
.quote__points li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px;
  border-left: 2px solid var(--bronze); border-bottom: 2px solid var(--bronze); transform: rotate(-45deg);
}

.quote__form { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.01em; }
.field__hint { font-weight: 400; color: var(--slate); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--white); transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(184,137,67,0.16);
}
.field input[type="file"] { padding: 9px 12px; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.field input[type="file"]::file-selector-button {
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  margin-right: 12px; padding: 8px 14px; border: 0; border-radius: 8px;
  background: var(--charcoal); color: var(--white); cursor: pointer;
}
/* HubSpot embed container — keeps the form on-brand and responsive.
   These rules theme any native fields HubSpot renders inline; if the form
   loads inside HubSpot's own iframe they're ignored harmlessly (the iframe
   is fluid-width and stays responsive on its own). */
.quote__hsform { display: block; width: 100%; min-width: 0; }
.quote__hsform .hs-form-frame { min-height: 220px; }
.quote__hsform iframe { width: 100% !important; max-width: 100% !important; border: 0; }
.quote__hsform label { font-size: 13.5px; font-weight: 600; color: var(--charcoal); display: block; margin-bottom: 6px; }
.quote__hsform input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.quote__hsform select,
.quote__hsform textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  width: 100%; max-width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  margin-bottom: 14px;
}
.quote__hsform input:focus, .quote__hsform select:focus, .quote__hsform textarea:focus {
  outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(184,137,67,0.16);
}
.quote__hsform input[type="submit"], .quote__hsform button:not([type="button"]) {
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  background: var(--bronze); color: var(--white); border: 0; border-radius: 10px;
  padding: 14px 26px; cursor: pointer;
  transition: background-color .2s var(--ease), transform .18s var(--ease);
}
.quote__hsform input[type="submit"]:hover, .quote__hsform button:not([type="button"]):hover {
  background: var(--bronze-deep); transform: translateY(-1px);
}
.quote__hsform .hs-error-msg, .quote__hsform .hs-error-msgs label { color: #B23B3B; font-weight: 500; }
.hsform-fallback { font-size: 13px; color: var(--slate); margin: 16px 0 0; }
.hsform-fallback a { color: var(--bronze-deep); font-weight: 600; }

.form-note { font-size: 14.5px; font-weight: 600; margin: 2px 0 0; min-height: 1px; }
.form-note.is-success { color: var(--bronze-deep); }
.form-note.is-error { color: #B23B3B; }
.form-disclaimer { font-size: 12.5px; color: var(--slate); margin: 0; }

/* ============================================================
   Supplier diversity split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.value-list { display: flex; flex-direction: column; gap: 4px; }
.value-list__item { padding: 22px 0; border-top: 1px solid var(--line); }
.value-list__item:first-child { border-top: 0; padding-top: 0; }
.value-list__item h3 {
  font-size: 18px; position: relative; padding-left: 22px;
}
.value-list__item h3::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 10px;
  background: var(--bronze); border-radius: 3px;
}
.value-list__item p { margin: 8px 0 0 22px; color: var(--ink-soft); font-size: 15.5px; }

/* Why Procura reasons */
.reason {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; border-top: 3px solid var(--bronze);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.reason:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reason__title { font-size: 19px; margin-bottom: 10px; }
.reason__body { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   Final CTA
   ============================================================ */
.section--cta {
  background:
    radial-gradient(100% 120% at 0% 0%, rgba(184,137,67,0.16), transparent 55%),
    var(--charcoal);
  color: var(--white);
}
.final-cta { max-width: 760px; margin: 0 auto; text-align: center; }
.final-cta__title { font-size: clamp(28px, 4.4vw, 44px); color: var(--white); }
.final-cta__copy { font-size: clamp(17px, 2vw, 19px); color: rgba(255,255,255,0.74); margin: 20px auto 32px; max-width: 620px; }
.final-cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: clamp(48px, 6vw, 72px) 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.footer-logo { height: 42px; width: auto; display: block; }
.footer-descriptor { font-size: 13.5px; color: rgba(255,255,255,0.6); margin: 14px 0 0; }
.footer-tag { font-size: 14px; color: var(--bronze); margin: 10px 0 0; font-weight: 500; }
.footer-heading { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 16px; }
.footer-contact ul, .footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; flex-direction: column; gap: 2px; font-size: 15px; }
.footer-contact li span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); }
.footer-contact a, .footer-nav a { color: rgba(255,255,255,0.82); transition: color .18s var(--ease); }
.footer-contact a:hover, .footer-nav a:hover { color: var(--bronze); }
.footer-contact address { font-style: normal; color: rgba(255,255,255,0.82); }
.footer-nav li { font-size: 15px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin: 0; }

/* ============================================================
   Imagery — cohesive duotone treatment
   Photos are tinted toward charcoal/bronze so mixed stock
   sources still read as one branded system. A brand gradient
   sits behind every image, so a missing file degrades to a
   tasteful colored block instead of a broken icon.
   ============================================================ */
.media {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
  isolation: isolate;
}
.media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.06) brightness(0.92);
  mix-blend-mode: luminosity; opacity: 0.9;
  transition: filter .4s var(--ease), opacity .4s var(--ease), transform .5s var(--ease);
}
.media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(30,32,36,0.12) 0%, rgba(184,137,67,0.30) 100%);
  mix-blend-mode: multiply;
}

/* Hero panel image */
.panel-card__media { margin: -34px -32px 24px; height: 188px; border-radius: 18px 18px 0 0; }

/* Category card image headers */
.category { padding: 0; }
.category__media { height: 168px; }
.category__body { padding: 24px 26px 28px; }
.category:hover .media img { filter: grayscale(0) contrast(1) brightness(1); opacity: 1; transform: scale(1.04); }

/* Supplier-diversity image */
.split__media { margin-top: 26px; height: 260px; border-radius: var(--radius); }
.split__media img,
.panel-card__media img,
.category__media img { will-change: transform; }

/* ============================================================
   Reveal-on-scroll animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .category:hover, .reason:hover { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { max-width: 460px; }
  .grid--2, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lane-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-proof { align-items: flex-start; flex-direction: column; }
  .supply-proof strong { min-width: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quote { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  /* Swap descriptor lockup for compact primary lockup on small screens. */
  .logo__img--full { display: none; }
  .logo__img--compact { display: block; height: 38px; }

  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s var(--ease), opacity .22s var(--ease);
  }
  .nav-list.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-list li { border-top: 1px solid var(--line); }
  .nav-list li:first-child { border-top: 0; }
  .nav-list a { display: block; padding: 14px 4px; font-size: 16px; }
  .nav-list__cta { margin-top: 12px; border-top: 0; }
  .nav-list__cta a { text-align: center; padding: 14px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__inner { min-height: auto; padding: 64px 0 56px; }
  .hero__bg { object-position: center 30%; }
  .grid--2, .grid--3, .grid--4, .lane-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .panel-card__list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero__cta .btn, .final-cta__buttons .btn { flex: 1 1 100%; }
}


/* ============================================================
   SpecX positioning / roadmap
   ============================================================ */
.specx-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin-bottom: 30px; padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(135deg, rgba(30,32,36,0.96), rgba(56,60,68,0.96));
  color: var(--white); border-radius: 20px; border: 1px solid rgba(184,137,67,0.24);
  box-shadow: var(--shadow-md);
}
.specx-banner h3 { color: var(--white); font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.specx-banner p:not(.eyebrow) { color: rgba(255,255,255,0.74); margin: 0; max-width: 760px; }
.specx-banner .btn { flex: none; }
.feature-grid { margin-top: 0; }
.feature-card { border-top: 3px solid var(--bronze); }
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.roadmap-item {
  position: relative; padding: 18px 18px 18px 44px; background: var(--light-gray);
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 700; color: var(--charcoal);
}
.roadmap-item::before {
  content: ""; position: absolute; left: 18px; top: 24px; width: 10px; height: 10px;
  background: var(--bronze); border-radius: 3px; box-shadow: 0 0 0 4px rgba(184,137,67,0.16);
}
@media (max-width: 980px) {
  .specx-banner { align-items: flex-start; flex-direction: column; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .roadmap-grid { grid-template-columns: 1fr; }
}
