/* ============================================================
   Surabhi Transport — Static HTML/CSS site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@400;500;600;700;800;900&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #0f172a;
  --ink-hover: #1e293b;
  --amber: #f59e0b;
  --amber-hover: #d97706;
  --stone: #fafaf9;
  --stone2: #f5f5f4;
  --border: #e5e5e4;
  --muted: #475569;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-100: #f1f5f9;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--stone);
  color: var(--ink);
  line-height: 1.5;
}

::selection { background: var(--ink); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Chivo', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

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

/* ---------- Containers & sections ---------- */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-pad { padding: 5rem 0; }
@media (min-width: 768px) { .section-pad { padding: 7rem 0; } }
@media (min-width: 1024px) { .section-pad { padding: 8rem 0; } }

/* Services Overview — background image */
.services-overview-section {
  position: relative;
  overflow: hidden;
}
.services-overview-section .services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.services-overview-section .services-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.62) 50%, rgba(15,23,42,0.85) 100%);
}

/* ---------- Overline ---------- */
.overline {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--muted);
}
.overline-dot {
  display: inline-block;
  height: 6px; width: 6px;
  border-radius: 999px;
  background: var(--amber);
  margin-right: 0.75rem;
}
.overline-light { color: rgba(255,255,255,0.6); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn svg { width: 1rem; height: 1rem; }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-primary:hover {
  background: var(--ink-hover);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-accent:hover {
  background: #fbbf24;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(15,23,42,0.15);
  background: #fff;
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--stone);
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--amber-hover); }
.btn-ghost svg { width: 1rem; height: 1rem; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
}
.chip-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.chip-dot { display: inline-block; height: 6px; width: 6px; border-radius: 999px; background: var(--amber); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s;
}
.card:hover {
  border-color: rgba(15,23,42,0.2);
  box-shadow: 0 10px 30px -12px rgba(15,23,42,0.15);
  transform: translateY(-2px);
}

/* ---------- Inputs ---------- */
.input {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  transition: all 0.2s;
}
.input::placeholder { color: var(--slate-400); }
.input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(15,23,42,0.05);
}
.label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
textarea.input { resize: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: #ffffff;
  border-bottom: 1px solid rgba(229,229,228,0.7);
}
.navbar.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom-color: rgba(229,229,228,0.7);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}
@media (min-width: 640px) { .nav-inner { height: 7rem; } }
.nav-logo img {
  height: 4rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 640px) { .nav-logo img { height: 4.5rem; } }
@media (min-width: 1200px) { .nav-logo img { height: 5rem; } }
@media (min-width: 1400px) { .nav-logo img { height: 6rem; } }

.nav-pill {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem;
  backdrop-filter: blur(12px);
}
.nav-pill a {
  padding: 0.375rem 0.5rem;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.2s;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .nav-pill a {
    padding: 0.375rem 0.75rem;
    font-size: 13px;
  }
}
@media (min-width: 1400px) {
  .nav-pill a {
    padding: 0.375rem 1rem;
    font-size: 14px;
  }
}
.nav-pill a:hover { color: var(--ink); }
.nav-pill a.active { background: var(--ink); color: #fff; }

.nav-cta-desktop { display: none !important; }
@media (min-width: 1024px) {
  .nav-pill { display: inline-flex; }
  .mobile-menu-btn { display: none !important; }
}

.mobile-menu-btn {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; padding-top: 1rem; padding-bottom: 1rem; }
.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a.active { color: var(--ink); }
.mobile-menu .btn { margin-top: 1rem; }
.mobile-menu .contact-line {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

/* ============================================================
   HERO (generic dark hero)
   ============================================================ */
.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.6), var(--ink));
}
.hero-content { position: relative; }
/* All headings inside any hero are white (overrides the global navy h1-h6 color) */
.hero h1,
.hero h2,
.hero h3,
.hero h4 { color: #fff; }
.hero h1 {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.02;
  margin-top: 1.5rem;
  max-width: 56rem;
  text-shadow: 0 2px 10px rgba(15,23,42,0.6);
}
.hero h1 .soft { color: rgba(255,255,255,0.7); }
.hero p.lead {
  margin-top: 2rem;
  max-width: 36rem;
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(15,23,42,0.6);
}

/* Home hero specifics */
.home-hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: 1.5rem;
}
.home-hero .hero-bg { opacity: 1; }
.home-hero .hero-overlay {
  background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.7) 50%, rgba(15,23,42,0.4) 100%);
}
.home-hero .hero-overlay-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(245,158,11,0.18), transparent 55%);
}
.home-hero h1 {
  font-size: clamp(2.25rem, 6vw, 5.25rem);
  margin-top: 2rem;
}

.hero-ctas {
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Stats grid ---------- */
.stats-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value {
  font-family: 'Chivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading { max-width: 48rem; }
.section-heading h2 {
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 1.25rem;
}
.section-heading.light h2 { color: #fff; }
.section-heading p.sub {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 32rem;
}
.section-heading.light p.sub { color: rgba(255,255,255,0.7); }

/* ============================================================
   HOME SECTIONS
   ============================================================ */
.trust-strip {
  padding: 4rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-strip .overline {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 5;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.marquee-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}
.certs-marquee .marquee-track {
  animation-duration: 23s;
}
.marquee-track img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 640px) { .marquee-track img { height: 5rem; } .marquee-track { gap: 3.5rem; } }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.certs-strip {
  padding: 4rem 0;
  background: var(--stone);
  border-bottom: 1px solid var(--border);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) { .certs-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.certs-grid .cert-box {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .certs-grid .cert-box { height: 8rem; padding: 1.5rem; } }
.certs-grid .cert-box img { max-height: 100%; width: auto; object-fit: contain; }

/* About teaser split */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .split-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
}
.split-right { color: var(--muted); font-size: 17px; line-height: 1.75; }
.split-right > * + * { margin-top: 1.25rem; }
.split-right h2 { color: var(--ink); }

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.feature-row .feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.feature-row .feat-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-hover);
  flex-shrink: 0;
}
.feature-row .feat-icon svg { width: 1rem; height: 1rem; }
.feature-row .feat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* Services overview grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

.service-card {
  padding: 2rem;
  height: 100%;
}
@media (min-width: 1024px) { .service-card { padding: 2.5rem; } }
.service-card .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.service-card .kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--amber-hover);
  letter-spacing: 0.1em;
}
.service-card .arrow-icon { color: var(--slate-300); width: 1.25rem; height: 1.25rem; }
.service-card h3 {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-top: 1.5rem;
}
@media (min-width: 1024px) { .service-card h3 { font-size: 1.625rem; } }
.service-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.service-card-icon {
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  background: var(--stone);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.service-card-icon svg { width: 1.25rem; height: 1.25rem; }

.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }

/* Why choose us (dark) */
.dark-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark-section .bg-faint {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-size: cover;
  background-position: center;
}
.dark-section .container { position: relative; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 3rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.why-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.why-item p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.65;
}
.why-item p strong {
  color: #fff;
  font-weight: 600;
}

/* Why stats strip */
.why-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 768px) { .why-stats { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.why-stat-num {
  font-family: var(--font-display, inherit);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1;
}
.why-stat-label {
  margin-top: 0.5rem;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Certification strip */
.cert-strip {
  background: var(--ink);
  border-top: 1px solid rgba(245, 158, 11, 0.25);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  padding: 1.25rem 0;
}
.cert-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.cert-strip-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}
.cert-strip-icon svg { width: 1.25rem; height: 1.25rem; }
.cert-strip-text {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin: 0;
}
.cert-strip-text strong { color: var(--amber); font-weight: 600; }
@media (min-width: 768px) {
  .cert-strip-text { font-size: 1.1rem; }
}

/* Cargo type cards */
.cargo-types-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .cargo-types-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.cargo-type-card {
  padding: 2rem;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
}
.cargo-type-card .cargo-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}
.cargo-type-card .cargo-icon svg { width: 1.5rem; height: 1.5rem; }
.cargo-type-card .cargo-kicker {
  font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--amber);
}
.cargo-type-card h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cargo-type-card .cargo-sub {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.cargo-type-card .cargo-list {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.cargo-type-card .cargo-list li {
  padding: 0.4rem 0.85rem;
  background: var(--stone, #f5f5f4);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.tagline-parallax {
  position: relative;
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (min-width: 768px) { .tagline-parallax { padding: 10rem 0; } }
.tagline-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.9);
}
.tagline-parallax .container { position: relative; text-align: center; }
.tagline-parallax .overline { justify-content: center; display: flex; }
.tagline-parallax blockquote {
  font-family: 'Chivo', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  line-height: 1.25;
  max-width: 56rem;
  margin: 2rem auto 0;
}

/* Home CTA card */
.home-cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 20px 50px -20px rgba(15,23,42,0.12);
}
@media (min-width: 640px) { .home-cta-card { padding: 3.5rem; } }
@media (min-width: 1024px) {
  .home-cta-card { grid-template-columns: 1fr 1fr; padding: 5rem; }
}
.home-cta-card h2 {
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  margin-top: 1.25rem;
}
.home-cta-card p {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 28rem;
}
.home-cta-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .home-cta-right {
    justify-self: end;
    align-items: flex-end;
  }
}
.home-cta-right .btn {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}
.home-cta-right .btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.home-cta-right .call-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .home-cta-right .call-note {
    text-align: right;
  }
}
.home-cta-right .call-note .call-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .home-cta-right .call-note .call-links {
    align-items: flex-end;
  }
}
.home-cta-right .call-note .call-links a {
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s ease;
}
.home-cta-right .call-note .call-links a:hover {
  color: var(--amber-hover);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .mv-grid { grid-template-columns: repeat(2, 1fr); } }
.mv-card {
  padding: 2.5rem;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 1024px) { .mv-card { padding: 3.5rem; } }
.mv-card.mission { background: #fff; border: 1px solid var(--border); }
.mv-card.vision { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.mv-card h3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 1.25rem;
}
@media (min-width: 1024px) { .mv-card h3 { font-size: 1.75rem; } }
.mv-card.vision h3 { color: #fff; }
.mv-card .kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.mv-card.mission .kicker { color: var(--amber-hover); }
.mv-card.vision .kicker { color: var(--amber); }
.mv-card p {
  margin-top: 1.25rem;
  line-height: 1.75;
  font-size: 15px;
  color: var(--muted);
}
.mv-card.vision p { color: rgba(255,255,255,0.75); }

/* Leaders */
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .leaders-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.leader-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.leader-photo {
  aspect-ratio: 4 / 3;
  background: var(--slate-100);
  overflow: hidden;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .leader-body { padding: 2.5rem; } }
.leader-body .role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--amber-hover);
  text-transform: uppercase;
}
.leader-body h3 {
  font-weight: 600;
  font-size: 1.625rem;
  margin-top: 1rem;
}
.leader-body .cred {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-top: 0.5rem;
}
.leader-body p {
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Management grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } }
.team-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card:hover { box-shadow: 0 20px 40px -20px rgba(15,23,42,0.18); }
.team-photo {
  aspect-ratio: 1 / 1;
  background: var(--slate-100);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card .body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .team-card .body { padding: 1.25rem; } }
.team-card h4 {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
}
@media (min-width: 1024px) { .team-card h4 { font-size: 1rem; } }
.team-card .role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-hover);
  margin-top: 0.375rem;
}
.team-card .loc {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  margin-top: 0.5rem;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
.team-card .loc svg { width: 12px; height: 12px; flex-shrink: 0; margin-top: 3px; }

/* ISO badges */
.iso-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .iso-grid { grid-template-columns: repeat(2, 1fr); } }
.iso-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.iso-card img { height: 11rem; width: auto; object-fit: contain; }
@media (min-width: 640px) { .iso-card img { height: 13rem; } }
.iso-card .label {
  margin-top: 1.25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.iso-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.iso-feat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.iso-feat-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}
.iso-feat-icon svg { width: 1rem; height: 1rem; }
.iso-feat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .about-why-grid { grid-template-columns: repeat(2, 1fr); } }
.about-why-item {
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  height: 100%;
}
@media (min-width: 1024px) { .about-why-item { padding: 1.75rem; } }
.about-why-num {
  font-family: 'Chivo', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  background: var(--ink);
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-why-item p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  padding-top: 0.25rem;
}

/* ============================================================
   SERVICES / FLEET / SAFETY shared
   ============================================================ */
.detail-card {
  padding: 2.5rem;
  height: 100%;
}
@media (min-width: 1024px) { .detail-card { padding: 3rem; } }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card { padding: 2rem; height: 100%; }
.process-num {
  font-family: 'Chivo', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: rgba(245,158,11,0.9);
  line-height: 1;
  letter-spacing: -0.02em;
}
.process-card h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 2rem;
}
.process-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Fleet specs */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .specs-grid { grid-template-columns: repeat(3, 1fr); } }
.spec-card { padding: 2rem; height: 100%; }
.spec-card .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.spec-card .val {
  font-family: 'Chivo', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  margin-top: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 1024px) { .spec-card .val { font-size: 2.125rem; } }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) { .kpi-grid { grid-template-columns: repeat(3, 1fr); } }
.kpi .v {
  font-family: 'Chivo', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
}
.kpi .l {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 0.375rem;
}

.bottom-cta-band {
  background: var(--ink);
  color: #fff;
}
.bottom-cta-band .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .bottom-cta-band .container { flex-direction: row; align-items: center; }
}
.bottom-cta-band h3 {
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #fff;
  max-width: 32rem;
  line-height: 1.15;
}
.bottom-cta-band h3 .soft { color: rgba(255,255,255,0.6); }

/* ============================================================
   BRANCHES
   ============================================================ */
.ho-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .ho-grid { grid-template-columns: 7fr 5fr; gap: 2.5rem; }
}
.ho-featured {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--slate-100);
  aspect-ratio: 16 / 10;
  position: relative;
}
.ho-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.ho-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.4);
}
.ho-caption svg { width: 14px; height: 14px; color: var(--amber-hover); }
.ho-caption span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.ho-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  margin-top: 1rem;
}
@media (min-width: 640px) { .ho-thumbs { grid-template-columns: repeat(8, 1fr); gap: 0.75rem; } }
.ho-thumb,
.br-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.2s;
  opacity: 0.7;
  padding: 0;
  background: transparent;
}
.ho-thumb img,
.br-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ho-thumb:hover,
.br-thumb:hover { opacity: 1; }
.ho-thumb.active,
.br-thumb.active {
  border-color: var(--amber-hover);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(217,119,6,0.2);
}

.ho-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .ho-details { padding: 2.5rem; } }
.ho-details .icon-wrap {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 999px;
  background: var(--stone);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-hover);
}
.ho-details .icon-wrap svg { width: 1.25rem; height: 1.25rem; }
.ho-details .top-row { display: flex; align-items: center; gap: 0.75rem; }
.ho-details .role-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-hover);
}
.ho-details h3 {
  font-weight: 600;
  font-size: 1.875rem;
  margin-top: 1.5rem;
}
.ho-details .state {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 0.5rem;
}
.ho-details p {
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}
.ho-details .btn-ghost { margin-top: auto; padding-top: 2rem; }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) { .branches-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .branches-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.branch-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem;
  height: 100%;
}
@media (min-width: 1024px) { .branch-card { padding: 1.75rem; } }
.branch-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.branch-card .icon-wrap {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 999px;
  background: var(--stone);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-hover);
}
.branch-card .icon-wrap svg { width: 1rem; height: 1rem; }
.branch-card .pin-icon { color: var(--slate-400); width: 14px; height: 14px; }
.branch-card h4 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 1.25rem;
}
.branch-card .state {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 0.375rem;
}
.branch-card .role {
  font-size: 12px;
  font-weight: 500;
  color: var(--amber-hover);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ---------- Branch Operations Compact Grid ---------- */
.br-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 64rem;
  margin: 0 auto;
}

.br-compact-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--stone2);
  cursor: zoom-in;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.br-compact-item-1,
.br-compact-item-2 {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.br-compact-item-3,
.br-compact-item-4,
.br-compact-item-5,
.br-compact-item-6,
.br-compact-item-7 {
  grid-column: span 1;
  aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
  .br-compact-grid {
    grid-template-columns: repeat(10, 1fr);
    gap: 1rem;
  }
  .br-compact-item-1,
  .br-compact-item-2 {
    grid-column: span 5;
  }
  .br-compact-item-3,
  .br-compact-item-4,
  .br-compact-item-5,
  .br-compact-item-6,
  .br-compact-item-7 {
    grid-column: span 2;
  }
}

.br-compact-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.br-compact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.15);
}

.br-compact-item:hover img {
  transform: scale(1.05);
}


/* ============================================================
   SAFETY
   ============================================================ */
.hazmat-box {
  margin-top: 3.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .hazmat-box { padding: 3.5rem; } }

.ppe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .ppe-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.ppe-visual {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ppe-text h2 { font-weight: 700; font-size: clamp(1.75rem, 4vw, 2.75rem); margin-top: 1.25rem; line-height: 1.1; }
.ppe-text h2 .soft { color: var(--muted); }
.ppe-text p { margin-top: 1.5rem; color: var(--muted); font-size: 16px; line-height: 1.75; }
.ppe-checklist {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.ppe-checklist div {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 14px;
  color: var(--ink);
}
.ppe-checklist svg {
  width: 1rem; height: 1rem;
  color: var(--amber-hover);
  flex-shrink: 0;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .training-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .training-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.training-card {
  background: var(--stone);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.75rem;
  height: 100%;
}
@media (min-width: 1024px) { .training-card { padding: 2rem; } }
.training-card .icon {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-hover);
}
.training-card .icon svg { width: 1.25rem; height: 1.25rem; }
.training-card h4 { font-weight: 600; font-size: 1.25rem; margin-top: 1.5rem; }
.training-card p { margin-top: 0.75rem; color: var(--muted); line-height: 1.7; font-size: 14.5px; }


.policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .policies-grid { grid-template-columns: 5fr 7fr; } }
.policies-grid blockquote {
  margin: 2.5rem 0 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--amber);
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.75;
  font-style: normal;
  font-family: inherit;
}
.policies-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 2rem;
}
@media (min-width: 768px) { .policies-list { grid-template-columns: repeat(2, 1fr); } }
.policies-list .item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.policies-list .item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.policies-list .item p {
  color: rgba(255,255,255,0.85);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 8fr 4fr; gap: 4rem; } }
.contact-form-box {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 10px 30px -18px rgba(15,23,42,0.15);
}
@media (min-width: 768px) { .contact-form-box { padding: 2.5rem; } }
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .contact-form { grid-template-columns: repeat(2, 1fr); } }
.contact-form .full { grid-column: 1 / -1; }
.contact-form-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .contact-form-footer { flex-direction: row; align-items: center; }
}
.contact-form-footer .req {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-success {
  padding: 3rem 0;
  text-align: center;
}
.contact-success .check-wrap {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 999px;
  background: rgba(245,158,11,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--amber-hover);
}
.contact-success .check-wrap svg { width: 1.75rem; height: 1.75rem; }
.contact-success h3 { font-weight: 600; font-size: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 1024px) { .contact-success h3 { font-size: 1.75rem; } }
.contact-success p {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.7;
}
.contact-success .btn { margin-top: 2rem; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info .heading h3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 1024px) { .contact-info .heading h3 { font-size: 1.625rem; } }

.contact-info ul { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info .ic {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-hover);
}
.contact-info .ic svg { width: 1rem; height: 1rem; }
.contact-info .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.contact-info .val {
  font-family: 'Chivo', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 0.25rem;
  display: block;
  color: var(--ink);
  transition: color 0.2s;
  word-break: break-word;
}
.contact-info .val:hover { color: var(--amber-hover); }
.contact-info .addr {
  font-family: 'Chivo', sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-top: 0.25rem;
  color: var(--ink);
  line-height: 1.55;
}

.contact-response {
  border-radius: 1rem;
  background: var(--ink);
  color: #fff;
  padding: 2rem;
}
.contact-response .big {
  font-family: 'Chivo', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  color: #fff;
}
.contact-response p { margin-top: 0.75rem; color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #fff; }
.site-footer .container { padding-top: 5rem; padding-bottom: 2.5rem; }

.footer-cta-band {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 640px) { .footer-cta-band { padding: 2.5rem; } }
@media (min-width: 1024px) {
  .footer-cta-band { flex-direction: row; align-items: center; padding: 3.5rem; gap: 3rem; }
}
.footer-cta-band .text { flex: 1; }
.footer-cta-band h3 {
  font-family: 'Chivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-top: 1rem;
  color: #fff;
  max-width: 32rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: 4fr 2fr 3fr 3fr;
    gap: 2rem;
  }
}
.footer-col-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 1.25rem;
}
.footer-logo-box {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-logo-box img { height: 3rem; width: auto; object-fit: contain; }
.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 20rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }

.footer-locations { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-locations li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.footer-locations svg {
  width: 1rem; height: 1rem;
  color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-locations .state { color: rgba(255,255,255,0.5); }

.footer-contacts { display: flex; flex-direction: column; gap: 1rem; font-size: 14px; color: rgba(255,255,255,0.8); }
.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contacts svg {
  width: 1rem; height: 1rem;
  color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contacts a { transition: color 0.2s; }
.footer-contacts a:hover { color: var(--amber); }
.footer-contacts .mobiles { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-contacts .mobiles a { color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom div {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.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;
}
.hidden { display: none; }

/* Reveal-on-scroll entrance */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-trigger { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.open { display: flex; opacity: 1; }

.lightbox-stage {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: lightbox-in 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.6);
  background: #fff;
}

.lightbox-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 56rem;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  transform: rotate(90deg);
}
.lightbox-close svg { width: 1.25rem; height: 1.25rem; }

/* ---------- Grievance page steps ---------- */
.grievance-steps {
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.grievance-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.grievance-steps .step-num {
  font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.12);
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.grievance-steps strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.grievance-steps p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.grievance-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* About teaser — background image */
.about-teaser-section {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}
.about-teaser-section .about-teaser-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.about-teaser-section .about-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245,245,244,0.92) 0%, rgba(245,245,244,0.72) 60%, rgba(245,245,244,0.55) 100%);
}

/* Nav badges (Nicerglobe, EcoVadis) */
.nav-badges {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}
.nav-badge {
  height: 3.75rem;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.2s;
}
.nav-badge:first-child {
  height: 4.75rem;
}
@media (min-width: 1024px) {
  .nav-badges { display: inline-flex; }
}
@media (min-width: 1200px) {
  .nav-badges { gap: 0.75rem; }
  .nav-badge { height: 4.25rem; }
  .nav-badge:first-child { height: 5.5rem; }
}
@media (min-width: 1400px) {
  .nav-badge { height: 5rem; }
  .nav-badge:first-child { height: 6.25rem; }
}
