/* ============================================================
   Logistica Customs Brokerage, LLC — styles.css
   ============================================================ */

:root {
  /* Brand — pulled from logo (deep navy/indigo) + amber for logistics */
  --brand:        #2A2467;
  --brand-deep:   #1A1648;
  --brand-glow:   rgba(42, 36, 103, .32);
  --accent:       #F5A524;
  --accent-deep:  #D88A0A;

  /* Ink scale */
  --ink:          #0B1220;
  --charcoal:     #1F2937;
  --slate:        #475569;
  --slate-light:  #94A3B8;
  --mist:         #F4F5F7;
  --mist-deep:    #E5E7EB;
  --cream:        #FAFAF8;
  --on-dark-text: #ECE9E4;

  /* Radii — logistics: tighter, more industrial */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm:    0 1px 2px rgba(15,23,42,.05), 0 1px 1px rgba(15,23,42,.03);
  --shadow-md:    0 4px 8px -2px rgba(15,23,42,.08), 0 2px 4px -2px rgba(15,23,42,.05);
  --shadow-lg:    0 18px 36px -12px rgba(15,23,42,.22), 0 8px 16px -8px rgba(15,23,42,.08);
  --shadow-brand: 0 10px 24px -8px var(--brand-glow);

  /* Type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --max:      1200px;
  --gutter:   32px;
  --header-h: 92px;
}

@media (max-width: 720px) {
  :root { --gutter: 20px; --header-h: 72px; }
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-deep); }
button { font-family: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-md) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* Typography utilities */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
}
.h1, .h2, .h3, .h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; line-height: 1.08; color: var(--ink); margin: 0; }
.h1 { font-size: clamp(40px, 5.4vw, 72px); font-weight: 600; }
.h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 600; }
.h3 { font-size: clamp(22px, 2vw, 30px); font-weight: 600; }
.h4 { font-size: clamp(18px, 1.4vw, 22px); font-weight: 600; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--slate); line-height: 1.55; max-width: 38rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow.on-dark { color: var(--accent); }
.eyebrow .dot { color: var(--accent); margin: 0 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: var(--brand-deep);
  border-color: var(--accent);
  box-shadow: 0 6px 18px -6px rgba(245, 165, 36, .55);
}
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; box-shadow: 0 10px 24px -6px rgba(216, 138, 10, .6); }

.btn-secondary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-secondary:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: var(--on-dark-text);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--brand);
  padding: 10px 0;
}
.btn-ghost .arr { color: var(--accent); }

.btn-sm { padding: 10px 16px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 50;
  padding: 18px 0;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease, padding .25s ease, box-shadow .3s ease;
}
@media (max-width: 720px) { .site-header { padding: 14px 0; } }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .brand img {
  height: 60px;
  width: auto;
  transition: filter .2s ease, opacity .2s ease;
}
@media (max-width: 720px) { .site-header .brand img { height: 48px; } }

/* Header state 1 — transparent over dark hero */
.site-header.header-transparent {
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.header-transparent .nav a { color: rgba(255, 255, 255, .88); }
.site-header.header-transparent .nav a:hover,
.site-header.header-transparent .nav a.active { color: var(--accent); }
.site-header.header-transparent .phone-cta { color: rgba(255,255,255,.92); }
.site-header.header-transparent .brand-light { display: block; }
.site-header.header-transparent .brand-dark { display: none; }

/* Header state 2 — solid */
.site-header.header-solid {
  background: #fff;
  border-bottom: 1px solid var(--mist-deep);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.site-header.header-solid .nav a { color: var(--ink); }
.site-header.header-solid .nav a:hover,
.site-header.header-solid .nav a.active { color: var(--brand); }
.site-header.header-solid .nav a.active { color: var(--brand); }
.site-header.header-solid .phone-cta { color: var(--charcoal); }
.site-header.header-solid .brand-light { display: none; }
.site-header.header-solid .brand-dark { display: block; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s ease;
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color .2s ease;
}
.phone-cta:hover { color: var(--accent); }
.phone-cta svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0;
  position: relative;
  z-index: 60;
}
.hamburger span {
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 25px; }
.site-header.header-transparent .hamburger { color: #fff; }
.site-header.header-solid .hamburger { color: var(--ink); }
body.menu-open .hamburger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Mobile sheet */
.mobile-sheet {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--brand-deep);
  background-image:
    radial-gradient(circle at 80% 0%, rgba(245, 165, 36, .15), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(42, 36, 103, .8), transparent 60%);
  z-index: 49;
  padding: 32px var(--gutter);
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.6, .1, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
body.menu-open .mobile-sheet { transform: translateY(0); }
.mobile-sheet .mnav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-sheet .mnav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--on-dark-text);
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.mobile-sheet .mnav a.active { color: var(--accent); }
.mobile-sheet .m-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.mobile-sheet .m-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}

@media (max-width: 980px) {
  .nav, .header-actions .phone-cta, .header-actions .btn { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0B1220;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(11,18,32,.35) 0%, rgba(11,18,32,.55) 70%, rgba(11,18,32,.85) 100%),
    radial-gradient(ellipse at 75% 30%, rgba(245, 165, 36, .12), transparent 55%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(245, 165, 36, .14), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(42, 36, 103, .8), transparent 60%),
    linear-gradient(180deg, #0B1220 0%, #15123B 50%, #1A1648 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,0) 60%, rgba(11,18,32,.6) 100%);
}

/* Decorative globe mark, faint */
.hero-mark {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: min(680px, 60vw);
  opacity: 0.07;
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 980px) { .hero-mark { right: -240px; top: 70%; width: 90vw; opacity: 0.05; } }

/* Animated route arcs */
.hero-arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 3;
}
.hero-arcs svg { width: 100%; height: 100%; }
.hero-arcs .arc { fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 6 6; opacity: 0.7; }
.hero-arcs .dot { fill: var(--accent); }

.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 780px;
}
.hero-panel {
  padding: 36px 40px 40px;
  background: rgba(15, 23, 42, 0.30);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  mask-image: linear-gradient(115deg, #000 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(115deg, #000 65%, transparent 100%);
}
@media (max-width: 720px) { .hero-panel { padding: 28px 24px 32px; mask-image: none; -webkit-mask-image: none; } }

.hero h1 {
  color: var(--on-dark-text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
  margin: 12px 0 18px;
}
.hero h1 .glow { color: var(--accent); }
.hero .sub {
  color: rgba(236, 233, 228, .82);
  font-size: clamp(17px, 1.4vw, 19px);
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
  max-width: 54ch;
  margin: 0 0 28px;
}
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .eyebrow { color: rgba(245, 165, 36, .9); }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--brand-deep);
  background-image:
    radial-gradient(ellipse at 85% 15%, rgba(245, 165, 36, .18), transparent 50%),
    radial-gradient(ellipse at 5% 95%, rgba(42, 36, 103, .9), transparent 55%),
    linear-gradient(135deg, #0B1220 0%, var(--brand) 60%, #3a2f87 100%);
  overflow: hidden;
}
.page-hero.has-image {
  padding: 200px 0 140px;
  background: var(--hero-img) center / cover no-repeat #0B1220;
}
.page-hero.has-image::before { display: none; }
.page-hero.has-image .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg,
    rgba(11, 18, 32, .94) 0%,
    rgba(11, 18, 32, .88) 38%,
    rgba(26, 22, 72, .70) 58%,
    rgba(42, 36, 103, .30) 80%,
    rgba(0, 0, 0, .15) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero.has-image .hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 18, 32, .55) 100%);
}
.page-hero.has-image h1 { text-shadow: 0 2px 32px rgba(0,0,0,.7), 0 1px 4px rgba(0,0,0,.5); }
.page-hero.has-image .sub { text-shadow: 0 1px 16px rgba(0,0,0,.7); }
.page-hero.has-image .breadcrumb { text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  opacity: .8;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 165, 36, .9);
  margin-bottom: 24px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .breadcrumb .sep { margin: 0 10px; color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: var(--font-display);
  color: var(--on-dark-text);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.0;
  margin: 0 0 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.page-hero h1 .glow { color: var(--accent); }
.page-hero .sub {
  color: rgba(236, 233, 228, .82);
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 38rem;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-bg-light { background: var(--mist); }
.section-bg-cream { background: var(--cream); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
.section-head .lead { margin: 0; }

/* ---------- Stats ---------- */
.stats-strip {
  background: var(--brand-deep);
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(245, 165, 36, .12), transparent 50%),
    linear-gradient(90deg, var(--brand-deep), var(--brand));
  color: var(--on-dark-text);
  padding: clamp(48px, 6vw, 72px) 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.stats-strip .container { position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat .num .suffix { font-family: var(--font-mono); font-size: 0.4em; color: var(--accent); font-weight: 500; }
.stat .num.tbd { color: var(--slate-light); font-size: clamp(24px, 3vw, 36px); }
.stat .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 233, 228, .65);
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
}

/* ---------- Divisions / Services grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .cards-grid { grid-template-columns: 1fr; gap: 20px; } }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card .num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-light);
  letter-spacing: 0.1em;
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 4px 0 0;
  line-height: 1.1;
}
.card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.card .learn {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card .learn .arr { color: var(--accent); transition: transform .2s ease; }
.card:hover .learn .arr { transform: translateX(4px); }
.card .location {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: -4px;
}

/* ---------- "Why us" band ---------- */
.why-band {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse at 100% 0%, rgba(245, 165, 36, .12), transparent 55%),
    radial-gradient(ellipse at 0% 100%, var(--brand-deep), transparent 55%),
    linear-gradient(180deg, var(--ink), var(--brand-deep));
  color: var(--on-dark-text);
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.why-band .section-head h2 { color: #fff; }
.why-band .section-head .lead { color: rgba(236, 233, 228, .72); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--accent);
}
.why-item .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.why-item p { color: rgba(236, 233, 228, .72); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand) 60%, var(--brand-deep) 100%);
  background-image:
    radial-gradient(circle at 90% 100%, rgba(245, 165, 36, .25), transparent 45%),
    linear-gradient(135deg, var(--ink) 0%, var(--brand) 60%, var(--brand-deep) 100%);
  color: var(--on-dark-text);
  padding: clamp(60px, 7vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) { .cta-band .row { grid-template-columns: 1fr; gap: 28px; } }
.cta-band h2 { color: #fff; font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); text-transform: uppercase; font-weight: 600; margin: 0 0 12px; letter-spacing: 0.02em; }
.cta-band .lead { color: rgba(236, 233, 228, .82); margin: 0; }
.cta-band .ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 820px) { .cta-band .ctas { justify-content: flex-start; } }

/* ---------- Two-column hero/feature ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .feature-split { grid-template-columns: 1fr; gap: 32px; } }
.feature-split .media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--brand-deep);
}
.feature-split .media .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245, 165, 36, .18), transparent 55%),
    linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: rgba(236, 233, 228, .35);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.feature-split .media .placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.feature-split .media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Service detail layout ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; gap: 36px; } }

.detail-block {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--mist-deep);
  margin-bottom: 48px;
}
.detail-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.detail-block .badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  background: rgba(245, 165, 36, .1);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-weight: 600;
}
.detail-block h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.1;
}
.detail-block .lead { margin: 0 0 24px; max-width: none; }
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) { .checklist { grid-template-columns: 1fr; } }
.checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2 6L5 9L10 3' stroke='%231A1648' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Sidebar cards */
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 900px) { .sidebar { position: static; } }
.side-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--mist-deep);
  background: #fff;
}
.side-card.dark {
  background: var(--brand-deep);
  background-image: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--on-dark-text);
  border-color: transparent;
}
.side-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.side-card.dark h4 { color: #fff; }
.side-card p { font-size: 14.5px; color: var(--slate); margin: 0 0 18px; }
.side-card.dark p { color: rgba(236, 233, 228, .8); }
.side-card .phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-top: 12px;
}
.side-card .phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.side-card.dark .phone svg { color: var(--accent); }
.side-card .siblings { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.side-card .siblings a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--mist-deep);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.side-card .siblings a:last-child { border-bottom: none; }
.side-card .siblings a:hover { color: var(--brand); }
.side-card .siblings .arr { color: var(--accent); font-family: var(--font-mono); }

/* ---------- About-specific ---------- */
.founder-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-lg);
  padding: 36px;
}
@media (max-width: 720px) { .founder-card { grid-template-columns: 1fr; padding: 28px; } }
.founder-card .portrait {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(245, 165, 36, .2), transparent 60%),
    linear-gradient(135deg, var(--brand-deep), var(--brand));
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.founder-card .portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.founder-card .portrait .ph-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}
.founder-card .role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.founder-card .name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.founder-card .bio { font-size: 16px; color: var(--slate); margin: 0 0 12px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-info {
  background: var(--cream);
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info .office {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info .office h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--ink);
}
.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.4;
}
.contact-line .ic {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(245, 165, 36, .12);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-line .ic svg { width: 16px; height: 16px; }
.contact-line a { color: var(--charcoal); }
.contact-line a:hover { color: var(--brand); }
.contact-line .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 2px; }

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(42, 36, 103, .12);
}
.field textarea { min-height: 120px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-success {
  display: none;
  padding: 14px 18px;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .3);
  color: #166534;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.form-success.show { display: block; }

.map-frame {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mist-deep);
  height: 360px;
  background: var(--mist);
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-frame .map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 165, 36, .08), transparent 60%),
    var(--mist);
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  gap: 8px;
}

/* Location switcher (contact page) */
.map-switcher { margin-top: 48px; }
.map-switcher-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.map-switcher-head .now-showing {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-switcher-head .now-showing .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 165, 36, .2);
}
.map-switcher-head .now-showing .label-name {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
}
.map-tabs {
  display: inline-flex;
  background: var(--mist);
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 2px;
}
.map-tab {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 10px 18px;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.map-tab:hover { color: var(--ink); }
.map-tab.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.map-tab.is-active:hover { color: #fff; }
.map-frame.is-stack { height: 440px; }
.map-frame.is-stack .map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.map-frame.is-stack .map-iframe.is-active {
  opacity: 1;
  visibility: visible;
}
.map-actions {
  margin-top: 12px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.map-actions a { color: var(--brand); }
.map-actions a:hover { color: var(--accent-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark-text);
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid .brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-grid h5 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a {
  color: rgba(236, 233, 228, .72);
  font-size: 14.5px;
  transition: color .15s ease;
}
.footer-grid a:hover { color: var(--accent); }
.footer-contact { color: rgba(236, 233, 228, .72); font-size: 14.5px; line-height: 1.65; }
.footer-contact strong { color: #fff; font-weight: 600; }
.footer-contact .line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.footer-contact .line svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(236, 233, 228, .8);
  transition: background .15s ease, color .15s ease;
}
.footer-social a:hover { background: var(--accent); color: var(--brand-deep); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(236, 233, 228, .5);
}
.footer-bottom a { color: rgba(236, 233, 228, .5); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Reveals ---------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Page transitions ---------- */
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes page-fade-out {
  from { opacity: 1; transform: none; }
  to { opacity: 0; transform: translateY(-12px); }
}
::view-transition-old(root) {
  animation: page-fade-out .35s cubic-bezier(.4, 0, .2, 1) both;
}
::view-transition-new(root) {
  animation: page-fade-in .45s cubic-bezier(.2, .7, .2, 1) both;
}

body.page-transition-out { animation: page-fade-out .35s ease forwards; }
body.page-transition-in { animation: page-fade-in .45s ease forwards; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-on-scroll { opacity: 1; transform: none; }
}

/* ---------- Facility / team cards (Cold Storage etc.) ---------- */
.facility-card {
  background: var(--cream);
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .facility-card { grid-template-columns: 1fr; padding: 24px; gap: 24px; } }
.facility-card .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 8px; }
.facility-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.15;
}
.facility-card .addr-lines { font-size: 16px; color: var(--charcoal); line-height: 1.55; margin: 0; }
.facility-card .addr-lines a { color: var(--charcoal); font-weight: 600; }
.facility-card .addr-lines a:hover { color: var(--brand); }
.facility-card .team-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}
.facility-card .team-list .role-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.facility-card .team-list .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}
.facility-card .team-list .name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}

/* ---------- Certifications + Clients ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 720px) { .cert-grid { grid-template-columns: 1fr; } }
.cert-card {
  background: #fff;
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cert-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cert-card img { max-height: 90px; max-width: 100%; width: auto; height: auto; object-fit: contain; }

.clients-block {
  background: #fff;
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  margin-top: 8px;
}
.clients-block img { width: 100%; max-width: 1000px; margin: 0 auto; display: block; height: auto; }

/* ---------- Freight comparison (Rio Grande) ---------- */
.freight-compare {
  margin: 24px 0 8px;
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--cream), #fff);
  overflow: hidden;
}
.freight-compare .fc-row { display: grid; gap: 0; }
.freight-compare .fc-from {
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--mist-deep);
}
@media (max-width: 600px) {
  .freight-compare .fc-from { grid-template-columns: 1fr; }
  .freight-compare .fc-from .fc-vs { display: none; }
  .freight-compare .fc-from .fc-cell:first-child { border-bottom: 1px solid var(--mist-deep); }
}
.freight-compare .fc-cell {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.freight-compare .fc-cell:first-child { background: rgba(11, 18, 32, 0.03); }
.freight-compare .fc-vs {
  align-self: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-light);
  padding: 0 18px;
  border-left: 1px solid var(--mist-deep);
  border-right: 1px solid var(--mist-deep);
  align-self: stretch;
  display: flex;
  align-items: center;
}
.freight-compare .fc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}
.freight-compare .fc-price {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.freight-compare .fc-price .fc-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.freight-compare .fc-price.fc-old { color: var(--slate); text-decoration: line-through; text-decoration-color: rgba(71, 85, 105, 0.45); text-decoration-thickness: 2px; }
.freight-compare .fc-price.fc-new { color: var(--brand); }

.freight-compare .fc-result {
  grid-template-columns: repeat(3, 1fr);
  background: var(--brand-deep);
  background-image: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--on-dark-text);
}
@media (max-width: 600px) { .freight-compare .fc-result { grid-template-columns: 1fr; } }
.freight-compare .fc-result-cell {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 600px) {
  .freight-compare .fc-result-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .freight-compare .fc-result-cell:last-child { border-bottom: none; }
}
.freight-compare .fc-result-cell:last-child { border-right: none; }
.freight-compare .fc-result-cell .fc-label { color: rgba(236,233,228,.6); }
.freight-compare .fc-big {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
}
.freight-compare .fc-big.fc-accent { color: var(--accent); }
.freight-compare .fc-foot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(236,233,228,.55);
  margin-top: 2px;
}
.freight-compare .fc-total {
  background: rgba(245, 165, 36, 0.08);
  border-left: 2px solid var(--accent);
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }
.tbd-flag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(245, 165, 36, .15);
  color: var(--accent-deep);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}
