/* ============================================================
   Haulwex Logistics — public site stylesheet  (v3)
   Enterprise architecture: split panels, task bar, image tiles,
   editorial statements, hard edges, hairline structure.
   ============================================================ */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/archivo-500.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/archivo-600.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/archivo-700.woff2') format('woff2'); }

:root {
  --navy-950: #17191e;
  --navy-900: #1d2026;
  --navy-800: #262a32;
  --slate-900: #1b1e24;
  --text: #3e4450;
  --muted: #646b78;
  --brand: #d92323;
  --brand-600: #b41c1c;
  --brand-050: #fdeaea;
  --paper: #ffffff;
  --alt: #f4f5f7;
  --border: #dfe2e8;
  --hairline: #e7e9ee;
  --green-600: #16a34a;
  --red-600: #dc2626;
  --blue-600: #1d5fa8;
  --radius-sm: 4px;
  --shadow-md: 0 16px 44px rgba(15, 17, 22, .14);
  --font: 'Inter', -apple-system, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --display: 'Archivo', 'Inter', -apple-system, 'Segoe UI', system-ui, Arial, sans-serif;
  --mono: 'SF Mono', 'Cascadia Code', Consolas, Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container { width: min(1280px, 94%); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--slate-900); line-height: 1.1; font-weight: 700; letter-spacing: -.01em;
}
.lead { font-size: 1.06rem; color: var(--muted); line-height: 1.75; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .76rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--brand); }

/* ============ header ============ */
.utility-bar {
  background: var(--navy-950); color: #9aa3b1; font-size: .8rem;
  padding: 8px 0; position: relative; z-index: 101;
}
.utility-bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 18px; }
.utility-bar span, .utility-bar a { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.utility-bar a:hover { color: #fff; }
.utility-bar svg { width: 13px; height: 13px; color: var(--brand); flex: none; }
.utility-bar .u-left { display: flex; gap: 22px; }
.utility-bar .u-right { display: flex; gap: 24px; }
@media (max-width: 860px) { .utility-bar .u-left span.u-hours { display: none; } }
@media (max-width: 640px) { .utility-bar .u-left { display: none; } .utility-bar .container { justify-content: center; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(15, 17, 22, .08); }
.site-header .container { display: flex; align-items: stretch; justify-content: space-between; gap: 24px; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 11px; color: var(--slate-900); font-family: var(--display); font-weight: 700; font-size: 1.32rem; letter-spacing: -.02em; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand span em { color: var(--brand); font-style: normal; }

.main-nav { display: flex; align-items: stretch; gap: 2px; }
.main-nav a {
  position: relative; display: inline-flex; align-items: center;
  color: #454c59; font-weight: 600; font-size: .94rem;
  padding: 0 16px; transition: color .2s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 0; height: 3px;
  background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:hover { color: var(--slate-900); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--slate-900); }

.main-nav .nav-track {
  align-self: center; border: 1px solid var(--slate-900); border-radius: var(--radius-sm);
  padding: 11px 20px; margin-left: 14px; gap: 9px; color: var(--slate-900);
  font-size: .9rem; transition: background .2s, color .2s;
}
.main-nav .nav-track::after { display: none; }
.main-nav .nav-track svg { width: 15px; height: 15px; color: var(--brand); }
.main-nav .nav-track:hover { background: var(--slate-900); color: #fff; }
.main-nav .nav-cta {
  align-self: center; background: var(--brand); color: #fff; margin-left: 10px;
  padding: 12px 24px; border-radius: var(--radius-sm); font-size: .9rem;
  transition: background .2s;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--brand-600); color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px; align-self: center;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; z-index: 120;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--slate-900); transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0; background: #fff;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 110;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.3rem; padding: 12px 22px; }
  .main-nav a::after { display: none; }
  .main-nav .nav-track, .main-nav .nav-cta { margin: 10px 0 0; }
  body.nav-locked { overflow: hidden; }
}

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: .95rem; border: 0; border-radius: var(--radius-sm);
  padding: 15px 30px; transition: background .2s, border-color .2s, color .2s;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-600); }
.btn-dark { background: var(--slate-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .55); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn[disabled] { opacity: .55; pointer-events: none; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ split hero (home) ============ */
.hero-split { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); min-height: 640px; }
.hero-panel {
  background:
    radial-gradient(680px 420px at -10% 115%, rgba(96, 108, 130, .25), transparent 60%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: #fff; display: flex; align-items: center;
  padding: 96px max(6vw, 40px) 120px max(calc((100vw - 1280px) / 2 + 3vw), 4%);
}
.hero-inner { max-width: 620px; }
.hero-inner .eyebrow { color: #9aa3b1; }
.hero-inner h1 { color: #fff; font-size: clamp(2.5rem, 4.4vw, 3.9rem); margin: 26px 0 22px; }
.hero-inner .lead { color: #b5bdc9; max-width: 33rem; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-media { background-size: cover; background-position: center; min-height: 380px; position: relative; }
.hero-media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13, 14, 18, .45), transparent 45%); }
.hero-media .media-tag {
  position: absolute; left: 0; bottom: 0; background: var(--brand); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: .86rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 26px;
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-panel { padding: 72px 5% 96px; }
}

/* task / action panel overlapping the hero */
.action-panel { position: relative; z-index: 5; margin-top: -62px; }
.action-panel .panel {
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
}
.action-panel .seg { padding: 26px 30px; display: flex; flex-direction: column; justify-content: center; gap: 8px; border-left: 1px solid var(--hairline); min-width: 0; }
.action-panel .seg:first-child { border-left: 0; }
.action-panel .seg-label { font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-900); display: flex; align-items: center; gap: 9px; }
.action-panel .seg-label svg { width: 16px; height: 16px; color: var(--brand); }
.action-panel form { display: flex; gap: 10px; }
.action-panel input {
  flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; background: #fbfcfd; font-family: var(--mono); font-size: .95rem; color: var(--slate-900);
}
.action-panel input::placeholder { color: #979fae; font-family: var(--font); }
.action-panel input:focus { outline: none; border-color: var(--slate-900); }
.action-panel .btn { padding: 12px 22px; }
.action-panel a.seg { transition: background .2s; }
.action-panel a.seg:hover { background: #f6f7f9; }
.action-panel .seg b { font-family: var(--display); color: var(--slate-900); font-size: 1.02rem; display: flex; align-items: center; gap: 8px; }
.action-panel .seg b svg { width: 15px; height: 15px; color: var(--brand); transition: transform .2s; }
.action-panel a.seg:hover b svg { transform: translateX(4px); }
.action-panel .seg span { color: var(--muted); font-size: .86rem; }
@media (max-width: 900px) {
  .action-panel { margin-top: -40px; }
  .action-panel .panel { grid-template-columns: 1fr; }
  .action-panel .seg { border-left: 0; border-top: 1px solid var(--hairline); }
  .action-panel .seg:first-child { border-top: 0; }
}

/* ============ editorial statement ============ */
.statement { padding: 110px 0 90px; }
.statement .st-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 70px; align-items: start; }
@media (max-width: 900px) { .statement .st-grid { grid-template-columns: 1fr; gap: 30px; } }
.statement h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.22; letter-spacing: -.01em; }
.statement h2 em { font-style: normal; color: var(--brand); }
.statement .st-side { padding-top: 10px; }
.statement .st-side p { color: var(--muted); font-size: .98rem; margin-bottom: 22px; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem;
  color: var(--slate-900); border-bottom: 2px solid var(--brand); padding-bottom: 4px;
}
.arrow-link svg { width: 15px; height: 15px; color: var(--brand); transition: transform .2s; }
.arrow-link:hover svg { transform: translateX(4px); }

/* KPI ledger — annual-report style data table */
.kpi-ledger {
  display: grid; grid-template-columns: 1.15fr repeat(4, 1fr);
  border: 1px solid var(--border); background: #fff; margin-top: 74px;
}
.kpi-head {
  background: var(--navy-950); color: #fff; padding: 30px 30px 26px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
}
.kpi-head .kh-label { font-family: var(--display); font-weight: 700; font-size: 1.06rem; line-height: 1.3; }
.kpi-head .kh-label small { display: block; font-family: var(--font); font-weight: 600; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.kpi-head .kh-note { font-size: .76rem; line-height: 1.6; color: #8b93a2; }
.kpi { padding: 28px 26px 24px; border-left: 1px solid var(--hairline); display: flex; flex-direction: column; }
.kpi .k-index { font-family: var(--display); font-size: .72rem; color: #979fae; font-weight: 600; letter-spacing: .18em; }
.kpi b {
  display: block; font-family: var(--display); font-size: clamp(1.9rem, 2.6vw, 2.55rem);
  font-weight: 600; color: var(--slate-900); line-height: 1.05; margin: 16px 0 10px;
  font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}
.kpi b em { font-style: normal; color: var(--brand); font-size: .72em; font-weight: 700; margin-left: 1px; }
.kpi .k-label { font-weight: 600; color: var(--slate-900); font-size: .9rem; line-height: 1.4; }
.kpi .k-sub { color: var(--muted); font-size: .78rem; margin-top: 4px; }
@media (max-width: 1080px) {
  .kpi-ledger { grid-template-columns: repeat(2, 1fr); }
  .kpi-head { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .kpi:nth-child(2), .kpi:nth-child(4) { border-left: 0; }
  .kpi { border-top: 1px solid var(--hairline); }
}
@media (max-width: 560px) {
  .kpi-ledger { grid-template-columns: 1fr; }
  .kpi { border-left: 0; }
  .kpi-head { flex-direction: column; align-items: flex-start; }
}

/* numbered eyebrow index */
.eyebrow i {
  font-style: normal; font-family: var(--display); font-weight: 700;
  color: var(--brand); letter-spacing: .06em;
}
.eyebrow i::after { content: "/"; color: #c0c7d1; margin: 0 10px 0 8px; font-weight: 400; }
.eyebrow.indexed::before { display: none; }

/* ============ sections ============ */
.section { padding: 104px 0; position: relative; }
.section.alt { background: var(--alt); }
.section.dots {
  background-color: var(--alt);
  background-image: radial-gradient(rgba(15, 17, 22, .07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.section.tint { background: linear-gradient(160deg, #f5f6f8 0%, #e9ebef 100%); overflow: hidden; }
.section.tint::before {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 35, 35, .1), transparent);
  top: -220px; right: -160px;
}
.section.tint > .container { position: relative; z-index: 1; }

.section.dark {
  background:
    radial-gradient(800px 480px at 92% -5%, rgba(217, 35, 35, .12), transparent 62%),
    radial-gradient(660px 440px at -5% 105%, rgba(96, 108, 130, .2), transparent 62%),
    linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: #aeb6c3;
}
.section.dark .eyebrow { color: #b2bac6; }
.section.dark .section-head h2, .section.dark .split h2 { color: #fff; }
.section.dark .section-head .lead, .section.dark .split .lead { color: #9fa8b6; }
.section.dark .split > div > p { color: #9fa8b6; }
.section.dark .feature-list b { color: #fff; }
.section.dark .feature-list span { color: #9fa8b6; }
.section.dark .feature-list li { border-color: rgba(255, 255, 255, .12); }
.section.dark .milestones::before { background: rgba(255, 255, 255, .14); }
.section.dark .milestones h3 { color: #fff; }
.section.dark .milestones p { color: #9fa8b6; }

.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 18px 0 16px; }
.section-head .split-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; }

/* ============ grids ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============ full-bleed image service tiles ============ */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 980px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tile-grid { grid-template-columns: 1fr; } }
.tile { position: relative; display: block; height: 360px; overflow: hidden; background: var(--navy-950); }
.tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .65s ease, opacity .4s; opacity: .92; }
.tile:hover img { transform: scale(1.06); opacity: .75; }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 14, 18, 0) 30%, rgba(13, 14, 18, .55) 62%, rgba(13, 14, 18, .92) 100%);
  pointer-events: none;
}
.tile-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 28px; }
.tile-body .t-kicker { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); }
.tile-body h3 { color: #fff; font-size: 1.32rem; margin: 8px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.tile-body h3 svg { width: 20px; height: 20px; color: var(--brand); flex: none; transition: transform .25s; }
.tile:hover .tile-body h3 svg { transform: translateX(5px); }
.tile-body p {
  color: #bec5d0; font-size: .9rem; line-height: 1.6; margin-top: 10px;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s ease, opacity .35s ease;
}
.tile:hover .tile-body p { max-height: 130px; opacity: 1; }

/* ============ industries ============ */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 34px; }
@media (max-width: 980px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .industries { grid-template-columns: 1fr; } }
.industry { border-top: 1px solid var(--border); padding-top: 22px; display: flex; gap: 16px; align-items: flex-start; }
.industry svg { width: 26px; height: 26px; color: var(--brand); flex: none; margin-top: 3px; }
.industry b { display: block; font-family: var(--display); font-weight: 600; color: var(--slate-900); font-size: 1.05rem; }
.industry span { color: var(--muted); font-size: .9rem; }

/* ============ global network ============ */
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 34px; margin-top: 10px; }
@media (max-width: 980px) { .network-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .network-grid { grid-template-columns: 1fr; } }
.hub { border-top: 1px solid rgba(255, 255, 255, .16); padding-top: 22px; }
.hub .hub-role { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); }
.hub b { display: block; font-family: var(--display); color: #fff; font-size: 1.22rem; font-weight: 600; margin: 8px 0 2px; }
.hub .hub-country { color: #8b93a2; font-size: .88rem; }
.hub p { color: #9fa8b6; font-size: .88rem; margin-top: 8px; }

/* ============ partners band ============ */
.partners-band {
  background:
    radial-gradient(760px 460px at 88% -10%, rgba(217, 35, 35, .14), transparent 60%),
    radial-gradient(640px 420px at 2% 110%, rgba(96, 108, 130, .22), transparent 62%),
    linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 100%);
  padding: 92px 0; text-align: center;
}
.partners-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.partners-band h2 em { font-style: normal; color: var(--brand); }
.partners-band .pb-sub { color: #9099a8; font-size: .96rem; max-width: 44rem; margin: 0 auto 44px; }
.partners-band ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 1100px; margin-inline: auto; }
.partners-band li {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-sm); padding: 13px 22px;
  color: #dbe0e7; font-weight: 600; font-size: .92rem;
  transition: background .25s, border-color .25s;
}
.partners-band li:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .3); }
.partners-band li svg { width: 17px; height: 17px; color: var(--brand); flex: none; }

/* light variant */
.partners-band.light { background: #fff; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.partners-band.light h2 { color: var(--slate-900); }
.partners-band.light .pb-sub { color: var(--muted); }
.partners-band.light li { background: #fff; border-color: var(--border); color: #555d6b; }
.partners-band.light li:hover { background: #f6f7f9; border-color: #b6bec9; }

/* ============ certifications strip ============ */
.cert-strip { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: #fff; padding: 26px 0; }
.cert-strip .container { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 14px; justify-content: space-between; }
.cert-strip .cert-label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cert-strip ul { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-strip li {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 9px 18px; font-size: .82rem; font-weight: 600; color: #555d6b;
  display: inline-flex; align-items: center; gap: 8px;
}
.cert-strip li svg { width: 14px; height: 14px; color: var(--brand); }

/* ============ featured quote ============ */
.featured-quote { text-align: left; max-width: 900px; }
.featured-quote .fq-mark { font-family: Georgia, serif; font-size: 5rem; line-height: .6; color: var(--brand); display: block; margin-bottom: 26px; }
.featured-quote blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.4; color: var(--slate-900); }
.featured-quote .fq-who { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.featured-quote .fq-who b { display: block; color: var(--slate-900); font-size: .96rem; }
.featured-quote .fq-who span { color: var(--muted); font-size: .86rem; }
.featured-quote .fq-who .avatar { color: #fff; font-size: .9rem; }

/* ============ news / updates ============ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .news-grid { grid-template-columns: 1fr; } }
.news-card { background: #fff; border: 1px solid var(--border); transition: border-color .25s, transform .25s; }
.news-card:hover { border-color: #b6bec9; transform: translateY(-3px); }
.news-card .n-img { height: 200px; overflow: hidden; }
.news-card .n-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .6s ease; }
.news-card:hover .n-img img { transform: scale(1.05); }
.news-card .n-body { padding: 24px 26px 28px; }
.news-card .n-meta { display: flex; gap: 10px; align-items: center; font-size: .78rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.news-card .n-meta em { font-style: normal; color: var(--brand); }
.news-card h3 { font-size: 1.12rem; margin: 12px 0 8px; line-height: 1.35; }
.news-card p { color: var(--muted); font-size: .92rem; }

/* ============ full-bleed CTA ============ */
.cta-full {
  position: relative; color: #fff; padding: 110px 0;
  background-size: cover; background-position: center; background-attachment: fixed;
}
@media (max-width: 900px) { .cta-full { background-attachment: scroll; } }
.cta-full::before { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(10, 11, 14, .95) 25%, rgba(10, 11, 14, .7) 100%); }
.cta-full .container { position: relative; z-index: 1; }
.cta-full .eyebrow { color: #b2bac6; }
.cta-full h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 20px 0 16px; max-width: 22ch; }
.cta-full p { color: #b5bdc9; max-width: 44rem; margin-bottom: 36px; }
.cta-full .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* legacy boxed cta (kept for compatibility) */
.cta-band {
  position: relative; overflow: hidden; color: #fff; padding: 92px 72px;
  background-size: cover; background-position: center;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(10, 11, 14, .95) 20%, rgba(10, 11, 14, .72) 100%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.cta-band p { color: #b5bdc9; max-width: 44rem; margin: 0 0 34px; }
@media (max-width: 640px) { .cta-band { padding: 64px 28px; } }

/* ============ page hero (subpages): quiet corporate header ============ */
.page-hero {
  position: relative; color: #fff; padding: 76px 0 70px;
  background:
    radial-gradient(620px 380px at 96% -20%, rgba(217, 35, 35, .13), transparent 60%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border-bottom: 4px solid var(--brand);
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 38%;
  background-image: var(--ph); background-size: cover; background-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
  mask-image: linear-gradient(90deg, transparent, #000 45%);
  opacity: .5;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 18px 0 14px; max-width: 24ch; }
.page-hero .lead { color: #bac2cd; max-width: 44rem; }
.crumbs { display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; color: #8b93a2; margin-bottom: 22px; letter-spacing: .02em; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--brand); }
@media (max-width: 760px) { .page-hero::after { display: none; } }

/* track & trace widget (track page hero) */
.track-widget {
  margin-top: 34px; background: #fff; border-radius: var(--radius-sm);
  padding: 10px 10px 10px 24px; box-shadow: var(--shadow-md); max-width: 660px;
  display: flex; align-items: center; gap: 18px;
}
.track-widget label {
  flex: none; font-family: var(--display); font-weight: 700; font-size: .88rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--slate-900);
  border-right: 1px solid var(--border); padding-right: 18px;
}
.track-widget form { display: flex; gap: 10px; flex: 1; min-width: 0; }
.track-widget input {
  flex: 1; min-width: 0; background: #fff; border: 0;
  color: var(--slate-900); padding: 13px 4px; font-family: var(--mono); font-size: .96rem;
}
.track-widget input::placeholder { color: #979fae; font-family: var(--font); }
.track-widget input:focus { outline: none; }
.track-widget .btn { padding: 13px 24px; }
@media (max-width: 640px) {
  .track-widget { flex-direction: column; align-items: stretch; padding: 20px; gap: 12px; }
  .track-widget label { border: 0; padding: 0; }
  .track-widget form { flex-direction: column; }
  .track-widget input { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 14px; }
}

/* ============ cards ============ */
.card {
  background: #fff; border: 1px solid var(--border);
  padding: 34px 30px; transition: border-color .25s ease, transform .25s ease;
}
.card:hover { border-color: #b6bec9; transform: translateY(-3px); }
.card h3 { font-size: 1.16rem; margin: 18px 0 8px; }
.card p { color: var(--muted); font-size: .95rem; }

.icon-chip {
  width: 50px; height: 50px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: #eef0f4; color: var(--navy-800);
}
.icon-chip svg { width: 24px; height: 24px; }

/* photo cards (services page "and more") */
.photo-card {
  position: relative; background: #fff; overflow: hidden;
  border: 1px solid var(--border); display: block;
  transition: border-color .25s ease, transform .25s ease;
}
.photo-card:hover { border-color: #b6bec9; transform: translateY(-4px); }
.photo-card .pc-img { height: 220px; overflow: hidden; }
.photo-card .pc-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform .6s ease; }
.photo-card:hover .pc-img img { transform: scale(1.05); }
.photo-card .pc-body { padding: 26px 28px 28px; border-top: 3px solid var(--brand); }
.photo-card h3 { font-size: 1.16rem; margin: 0 0 10px; }
.photo-card p { color: var(--muted); font-size: .93rem; }
.photo-card .learn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-weight: 600; font-size: .88rem; color: var(--slate-900);
  border-bottom: 2px solid var(--brand); padding-bottom: 3px;
}
.photo-card .learn svg { width: 14px; height: 14px; color: var(--brand); transition: transform .25s; }
.photo-card:hover .learn svg { transform: translateX(4px); }
.photo-card .pc-chip { display: none; }

/* ============ steps (process) ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; border-top: 1px solid var(--border); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; border-left: 1px solid var(--border); padding: 34px 28px 10px; }
.step:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 980px) { .step { padding-left: 0; border-left: 0; } }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--display); font-size: 3.2rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px #a7b0be; line-height: 1; margin-bottom: 20px;
}
.step:hover::before { -webkit-text-stroke-color: var(--brand); }
.step h3 { font-size: 1.1rem; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: .93rem; }
.section.tint .steps { border-top-color: #d4d8df; }
.section.tint .step { border-left-color: #d4d8df; }
.section.tint .step::before { -webkit-text-stroke-color: #c76a6a; }
.section.tint .step:hover::before { -webkit-text-stroke-color: var(--brand); }

/* ============ split (photo + content) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 44px; } }
.split h2 { font-size: clamp(1.8rem, 3.1vw, 2.4rem); margin: 18px 0 16px; }

.split-media { position: relative; }
.split-media > img { width: 100%; height: 480px; object-fit: cover; filter: saturate(.92); }
@media (max-width: 940px) { .split-media > img { height: 340px; } }
.stat-float {
  position: absolute; left: 0; bottom: 0;
  background: var(--navy-950); color: #fff; padding: 22px 30px;
}
.stat-float b { display: block; font-family: var(--display); font-size: 2.1rem; font-weight: 700; line-height: 1.1; color: var(--brand); }
.stat-float span { font-size: .82rem; font-weight: 500; color: #aeb6c3; }
.chip-float {
  position: absolute; top: 18px; right: 18px;
  background: rgba(13, 14, 18, .82); backdrop-filter: blur(6px);
  padding: 11px 16px; display: flex; align-items: center; gap: 9px;
  font-weight: 600; color: #fff; font-size: .85rem;
}
.chip-float svg { width: 16px; height: 16px; color: var(--brand); }

/* numbered feature list */
.feature-list { display: grid; margin-top: 30px; }
.feature-list li { display: flex; gap: 20px; padding: 18px 0; border-top: 1px solid var(--hairline); }
.feature-list li:last-child { border-bottom: 1px solid var(--hairline); }
.feature-list .f-num { flex: none; font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--brand); padding-top: 2px; min-width: 26px; }
.feature-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%; margin-top: 3px;
  background: var(--brand-050); color: var(--brand); display: grid; place-items: center;
}
.feature-list .tick svg { width: 13px; height: 13px; }
.feature-list b { color: var(--slate-900); display: block; font-size: .98rem; }
.feature-list span { color: var(--muted); font-size: .92rem; }
.section.dark .feature-list .f-num { color: var(--brand); }

/* ============ testimonials (cards used on about) ============ */
.quote-card .stars { color: var(--brand); letter-spacing: 3px; font-size: .9rem; margin-bottom: 16px; }
.quote-card p { font-size: .96rem; color: var(--text); }
.quote-who { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--hairline); }
.avatar {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex: none; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: .88rem; font-family: var(--display);
}
.quote-who b { display: block; font-size: .94rem; color: var(--slate-900); }
.quote-who span { font-size: .83rem; color: var(--muted); }
.quote-who .avatar { color: #fff; font-size: .88rem; }

/* ============ forms ============ */
.form-card { background: #fff; border: 1px solid var(--border); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .86rem; color: var(--slate-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 15px; background: #fbfcfd; color: var(--slate-900);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--slate-900); background: #fff; box-shadow: 0 0 0 3px rgba(20, 23, 30, .08);
}

.form-msg { display: none; margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: .94rem; animation: fade-up .4s ease; }
.form-msg.ok { display: block; background: #e9f9ef; color: var(--green-600); border: 1px solid #bde8cc; }
.form-msg.err { display: block; background: #fdecec; color: var(--red-600); border: 1px solid #f5c6c6; }

/* ============ tracking page ============ */
.track-result { display: none; }
.track-result.show { display: block; animation: fade-up .5s ease; }

.status-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--brand);
  padding: 28px 32px; margin-bottom: 30px;
}
.status-banner .tn { font-family: var(--mono); font-size: .9rem; color: var(--muted); }
.status-banner .tn b { display: block; font-size: 1.32rem; color: var(--slate-900); letter-spacing: .04em; }

.badge {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem;
  padding: 9px 18px; border-radius: var(--radius-sm); white-space: nowrap;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.badge.b-transit { background: #e7f0fb; color: var(--blue-600); }
.badge.b-delivered { background: #e9f9ef; color: var(--green-600); }
.badge.b-pending { background: #fdf3e0; color: #b7791f; }
.badge.b-hold { background: #fdecec; color: var(--red-600); }
.badge.b-transit .dot { animation: pulse-dot 1.6s ease infinite; }
@keyframes pulse-dot { 50% { opacity: .35; transform: scale(.8); } }

.progress-track { display: flex; margin: 8px 0 36px; }
.progress-track .pstep { flex: 1; text-align: center; position: relative; }
.progress-track .pstep::before {
  content: ""; position: absolute; top: 17px; left: -50%; width: 100%; height: 2px;
  background: var(--border); z-index: 0;
}
.progress-track .pstep:first-child::before { display: none; }
.progress-track .pstep .pdot {
  position: relative; z-index: 1; width: 36px; height: 36px; margin: 0 auto 10px;
  border-radius: 50%; background: #fff; border: 2px solid var(--border);
  display: grid; place-items: center; color: transparent; transition: all .4s;
}
.progress-track .pstep .pdot svg { width: 15px; height: 15px; }
.progress-track .pstep span { font-size: .78rem; font-weight: 600; color: var(--muted); }
.progress-track .pstep.done::before, .progress-track .pstep.current::before { background: var(--brand); }
.progress-track .pstep.done .pdot { background: var(--brand); border-color: var(--brand); color: #fff; }
.progress-track .pstep.current .pdot { border-color: var(--brand); color: var(--brand); box-shadow: 0 0 0 5px rgba(217, 35, 35, .15); }
.progress-track .pstep.current span { color: var(--brand-600); }
@media (max-width: 640px) { .progress-track .pstep span { font-size: .62rem; } }

.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-item { background: #fff; border: 1px solid var(--border); padding: 18px 20px; }
.detail-item b { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.detail-item span { font-weight: 600; color: var(--slate-900); font-size: .95rem; overflow-wrap: anywhere; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline li { position: relative; padding: 0 0 30px 18px; opacity: 0; transform: translateY(14px); animation: fade-up .55s ease forwards; }
.timeline li::before {
  content: ""; position: absolute; left: -30px; top: 5px; width: 13px; height: 13px;
  border-radius: 50%; background: #fff; border: 3px solid var(--brand);
}
.timeline li:first-child::before { background: var(--brand); box-shadow: 0 0 0 5px rgba(217, 35, 35, .15); }
.timeline .t-status { font-weight: 700; color: var(--slate-900); font-family: var(--display); }
.timeline .t-loc { font-weight: 600; font-size: .9rem; color: var(--brand-600); }
.timeline .t-note { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.timeline .t-time { font-size: .8rem; color: var(--muted); font-family: var(--mono); margin-top: 4px; }

/* ============ about ============ */
.milestones { position: relative; padding-left: 30px; max-width: 740px; }
.milestones::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.milestones li { position: relative; padding: 0 0 38px 26px; }
.milestones li::before { content: ""; position: absolute; left: -25px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); }
.milestones .year { font-family: var(--display); font-weight: 700; color: var(--brand); font-size: .95rem; }
.milestones h3 { font-size: 1.14rem; margin: 4px 0 5px; }
.milestones p { color: var(--muted); font-size: .95rem; }

.team-card { text-align: left; }
.team-card .avatar { width: 72px; height: 72px; margin: 0 0 18px; font-size: 1.3rem; }
.team-card h3 { margin: 0 0 3px; }
.team-card .role { color: var(--brand-600); font-weight: 600; font-size: .85rem; }
.team-card p { margin-top: 10px; font-size: .9rem; }

.value-num { font-family: var(--display); font-size: 2.2rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--brand); line-height: 1; }

/* ============ FAQ accordion ============ */
.accordion {
  max-width: 880px; margin-inline: auto; display: grid; gap: 0;
  background: #fff; border: 1px solid var(--border); padding: 10px 38px;
}
@media (max-width: 640px) { .accordion { padding: 4px 20px; } }
.acc-item { background: transparent; border: 0; border-bottom: 1px solid var(--hairline); }
.acc-item:last-child { border-bottom: 0; }
.acc-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; text-align: left; padding: 24px 4px;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--slate-900);
  transition: color .2s;
}
.acc-item button:hover { color: var(--brand-600); }
.acc-item .chev { flex: none; width: 20px; height: 20px; color: var(--brand); transition: transform .3s; }
.acc-item.open .chev { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body p { padding: 0 40px 26px 4px; color: var(--muted); font-size: .96rem; }

/* ============ contact ============ */
.info-card { display: flex; gap: 16px; align-items: flex-start; }
.info-card .icon-chip { width: 46px; height: 46px; }
.info-card .icon-chip svg { width: 21px; height: 21px; }
.info-card b { display: block; color: var(--slate-900); margin-bottom: 2px; font-family: var(--display); }
.info-card p, .info-card a { color: var(--muted); font-size: .92rem; }
.info-card a:hover { color: var(--brand-600); }

/* ============ prose ============ */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { font-size: 1.35rem; margin: 42px 0 12px; }
.prose p, .prose li { color: var(--muted); font-size: .97rem; margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose .updated { font-size: .85rem; color: var(--muted); font-style: italic; }
.prose a { color: var(--brand-600); }

/* ============ footer ============ */
.site-footer { background: var(--navy-950); color: #8b93a2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 46px; padding: 78px 0 54px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 22px; }
.site-footer ul { display: grid; gap: 11px; }
.site-footer a { font-size: .93rem; transition: color .2s; }
.site-footer a:hover { color: var(--brand); }
.footer-brand p { font-size: .91rem; margin-top: 16px; max-width: 30ch; }
.footer-certs {
  border-top: 1px solid rgba(255, 255, 255, .09); padding: 20px 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: #6a7383;
}
.footer-certs .fc-label { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding: 26px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .84rem; }
.footer-bottom a:hover { color: var(--brand); }

/* ============ animation utilities ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }

@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-inner > * { opacity: 0; animation: fade-up .65s ease forwards; }
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .13s; }
.hero-inner > *:nth-child(3) { animation-delay: .21s; }
.hero-inner > *:nth-child(4) { animation-delay: .29s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .hero-inner > * { opacity: 1; transform: none; }
}

/* ============ 404 ============ */
.notfound {
  min-height: 100vh; display: grid; place-items: center; text-align: center; color: #fff;
  background: var(--navy-950); padding: 40px 20px;
  background-size: cover; background-position: center;
  position: relative;
}
.notfound::before { content: ""; position: absolute; inset: 0; background: rgba(10, 11, 14, .9); }
.notfound > div { position: relative; z-index: 1; }
.notfound .code { font-family: var(--display); font-size: clamp(5rem, 16vw, 8.5rem); font-weight: 700; color: transparent; -webkit-text-stroke: 2px var(--brand); line-height: 1; }
.notfound h1 { color: #fff; margin: 14px 0 12px; }
.notfound p { color: #aeb6c3; max-width: 34rem; margin-bottom: 30px; }
