/* =========================================================================
   Motor Cargo Express — Component & layout styles
   Pairs with tokens.css. Lifted from the JSX UI kit reference.
   ========================================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; }
body { overflow-x: hidden; }

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* ---- Skip link --------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--mce-orange);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 100;
  border-bottom: none;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---- Sticky nav -------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--mce-navy);
  height: var(--nav-height);
  border-bottom: 1px solid var(--mce-navy-800);
  transition: box-shadow var(--dur-state) var(--ease-out);
}
.nav.is-scrolled { box-shadow: var(--shadow-lg); }
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  border-bottom: none !important;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 44px; }
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B8C5D4;
  border-bottom: none;
  padding: 6px 0;
  position: relative;
  transition: color var(--dur-hover) var(--ease-out);
}
.nav-link:hover { color: #fff; border-bottom: none; }
.nav-link[aria-current="page"] { color: #fff; }
.nav-link[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 2px;
  background: var(--mce-orange);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mce-orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border-bottom: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--dur-hover) var(--ease-out);
}
.nav-phone:hover { background: var(--mce-orange-hover); border-bottom: none; }
.nav-phone:active { background: var(--mce-orange-press); }
.nav-schedule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mce-gold);
  color: var(--mce-navy);
  padding: 15px 28px;
  border-radius: var(--radius-md);
  border-bottom: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  transition: background var(--dur-hover) var(--ease-out),
              transform var(--dur-hover) var(--ease-out),
              box-shadow var(--dur-hover) var(--ease-out);
}
.nav-schedule:hover {
  background: var(--mce-gold-hover);
  color: var(--mce-navy);
  border-bottom: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}
.nav-schedule:active {
  background: var(--mce-gold-press);
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
}
.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: #fff;
  padding: 8px;
  cursor: pointer;
}

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: none;
  text-decoration: none;
  transition: background var(--dur-hover) var(--ease-out),
              border-color var(--dur-hover) var(--ease-out),
              transform 50ms var(--ease-out);
}
.btn:hover { border-bottom: none; }
.btn-primary {
  background: var(--mce-orange);
  color: #fff;
  border: none;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
}
.btn-primary:hover { background: var(--mce-orange-hover); color: #fff; }
.btn-primary:active { background: var(--mce-orange-press); transform: translateY(1px); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  padding: 15px 26px;
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); color: #fff; }

.btn-ghost-dark {
  background: transparent;
  color: var(--mce-navy);
  border: 1px solid var(--mce-navy);
  border-radius: var(--radius-md);
  padding: 15px 26px;
}
.btn-ghost-dark:hover { background: rgba(15,43,70,0.06); color: var(--mce-navy); }

/* ---- Section primitives ----------------------------------------------- */
.section {
  padding: 128px 0;
  background: var(--bg-page);
}
.section--tight { padding: 96px 0; }
.section--dark {
  background: var(--mce-navy);
  color: var(--mce-warm-white);
}
.section--dark p { color: #B8C5D4; }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--mce-warm-white); }
.section--sand { background: var(--mce-sand); }

.section-header {
  margin-bottom: 72px;
}
.section-header h2 {
  font-size: 56px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0;
}
.section-header h2 + p {
  margin-top: 20px;
  font-size: 18px;
  max-width: 720px;
  color: var(--fg-2);
}

/* ---- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  background: #C4D9E8;
  overflow: hidden;
  min-height: 720px;
}
.hero-photo {
  position: absolute;
  inset: -10% 0 0 0;
  height: 110%;
  width: 100%;
  pointer-events: none;
  will-change: transform;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(15,43,70,0.96) 0%,
    rgba(15,43,70,0.82) 38%,
    rgba(15,43,70,0.25) 72%,
    transparent 100%);
}

/* ---- Hero placeholder scene (inlined from hero-truck-placeholder) ----- */
.hero-scene { position: absolute; inset: 0; overflow: hidden; }
.hero-scene .sky {
  position: absolute; inset: 0 0 52% 0;
  background: linear-gradient(180deg, #8BAECB 0%, #C9D8E2 55%, #E8D5B5 100%);
}
.hero-scene .sun {
  position: absolute; top: 8%; right: 14%; width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFF5D6 0%, rgba(255,245,214,0.4) 40%, transparent 72%);
}
.hero-scene .mountains-back {
  position: absolute; left: 0; right: 0; bottom: 46%; height: 120px;
  background: linear-gradient(180deg, #B58868 0%, #8E5F3F 100%); opacity: 0.6;
  clip-path: polygon(0 100%, 0 80%, 10% 70%, 20% 78%, 30% 66%, 40% 74%, 50% 62%, 60% 72%, 70% 60%, 80% 70%, 90% 64%, 100% 74%, 100% 100%);
}
.hero-scene .mountains {
  position: absolute; left: 0; right: 0; bottom: 44%; height: 180px;
  background: linear-gradient(180deg, #9E6F4E 0%, #7A4F32 100%);
  clip-path: polygon(0% 100%, 0% 82%, 6% 72%, 12% 78%, 18% 68%, 24% 74%,
    30% 58%, 32% 50%, 33% 44%, 34% 46%, 35% 42%, 36% 48%, 38% 52%,
    44% 66%, 48% 70%, 54% 55%, 60% 48%, 68% 54%, 76% 68%,
    82% 72%, 88% 64%, 94% 76%, 100% 70%, 100% 100%);
}
.hero-scene .ground {
  position: absolute; inset: 48% 0 0 0;
  background: linear-gradient(180deg, #D6B886 0%, #B88A53 40%, #8B6240 100%);
}
.hero-scene .road {
  position: absolute; bottom: 0; left: 0; right: 0; height: 36%;
  background: linear-gradient(180deg, #3E3A36 0%, #2A2724 100%);
  clip-path: polygon(42% 0%, 58% 0%, 100% 100%, 0% 100%);
}
.hero-scene .lane {
  position: absolute; bottom: 0; left: 50%; width: 6px; height: 100%;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, #E8D5B5 0 28px, transparent 28px 56px); opacity: 0.9;
  clip-path: polygon(40% 0%, 60% 0%, 100% 100%, 0% 100%);
}
.hero-scene .haze {
  position: absolute; left: 0; right: 0; bottom: 22%; height: 40px;
  background: linear-gradient(180deg, rgba(232,213,181,0), rgba(232,213,181,0.55));
  filter: blur(6px);
}
.hero-scene .grain {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
.hero-scene .truck {
  position: absolute; left: 50%; top: 54%;
  transform: translate(-50%, 0);
  width: clamp(280px, 60%, 920px);
  filter: drop-shadow(0 18px 18px rgba(0,0,0,0.35));
}
.hero-scene .truck svg { width: 100%; height: auto; display: block; }
.hero-placeholder-tag {
  position: absolute;
  top: 88px;
  right: 32px;
  z-index: 2;
  background: rgba(15,43,70,0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mce-sand);
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
}
.hero-inner {
  position: relative;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 128px 48px 160px;
  color: var(--mce-warm-white);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--mce-warm-white);
  margin: 0;
  max-width: 980px;
}
.hero h1 .accent { color: var(--mce-orange); }
.hero-subhead {
  font-size: 19px;
  line-height: 1.55;
  max-width: 620px;
  margin: 28px 0 40px;
  color: #CFD9E4;
}
.hero-eyebrow {
  color: var(--mce-orange);
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-actions .tertiary {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
}
.hero-actions .tertiary:hover { border-bottom-color: var(--mce-orange); }

/* ---- Page hero (lighter) ---------------------------------------------- */
.page-hero {
  background: var(--mce-navy);
  color: var(--mce-warm-white);
  padding: 128px 0 96px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--mce-warm-white);
  margin: 0;
  max-width: 1100px;
}
.page-hero .lead {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.55;
  max-width: 720px;
  color: #CFD9E4;
}
.page-hero .eyebrow {
  margin-bottom: 20px;
  color: var(--mce-orange);
}

/* ---- Service / feature cards ------------------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--mce-white);
  border: 1px solid var(--mce-sand);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  transition: border-color var(--dur-state) var(--ease-out),
              box-shadow var(--dur-state) var(--ease-out);
}
.card:hover { border-color: var(--mce-navy); box-shadow: var(--shadow-md); }

.card-icon {
  width: 32px;
  height: 32px;
  color: var(--mce-orange);
  display: block;
  margin-bottom: 24px;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mce-navy);
  line-height: 1.05;
  margin: 0 0 14px;
}
.card-title-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mce-navy);
  line-height: 1.1;
  margin: 0 0 12px;
}
.card-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 24px;
}
.card-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mce-navy);
  border-bottom: 2px solid var(--mce-orange);
  padding-bottom: 2px;
}
.card-link:hover { border-bottom-color: var(--mce-orange-hover); color: var(--mce-navy); }

/* ---- Stats band -------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats--5 { grid-template-columns: repeat(5, 1fr); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--mce-warm-white);
}
.stat-label {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mce-orange);
}

/* ---- Service detail block (alternating) ------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--mce-sand);
}
.service-block:first-of-type { border-top: none; padding-top: 0; }
.service-block--reverse > :first-child { order: 2; }
.service-block h2 {
  font-size: 48px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.service-block .lead {
  font-size: 19px;
  color: var(--fg-1);
  margin-bottom: 24px;
}
.service-block ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.service-block ul li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.service-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--mce-orange);
}
.service-visual {
  background: var(--mce-sand-soft);
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  border: 1px solid var(--mce-sand);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-3);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Coverage map block ------------------------------------------------ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-default);
  margin-top: 48px;
}
.coverage-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.coverage-cell:nth-child(4n) { border-right: none; }
.coverage-cell .label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.coverage-cell .label-icon {
  width: 14px;
  height: 14px;
  color: var(--mce-orange);
}
.coverage-cell .label-text {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-3);
}
.coverage-cell .city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--mce-navy);
  letter-spacing: -0.01em;
  margin: 0;
}
.coverage-cell .zip {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 4px;
}

/* ---- Coverage tier blocks (Services page) ----------------------------- */
.coverage-tier {
  border-left: 3px solid var(--mce-orange);
  padding: 8px 0 8px 24px;
  margin-bottom: 32px;
}
.coverage-tier h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.coverage-tier p { margin: 0; }

/* ---- ZIP map (CSS-art Arizona) ---------------------------------------- */
.az-map {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--mce-warm-white);
  border: 1px solid var(--mce-sand);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.az-map img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Stat strip on light bg ------------------------------------------- */
.numbers-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  border-top: 1px solid var(--mce-sand);
  border-bottom: 1px solid var(--mce-sand);
  padding: 56px 0;
}
.numbers-strip .stat-num { color: var(--mce-navy); font-size: 64px; }
.numbers-strip .stat-label { color: var(--mce-orange); }

/* ---- Quote form -------------------------------------------------------- */
.quote-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.quote-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--mce-sand-soft);
  box-shadow: var(--shadow-sm);
}
.qf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.qf-grid .full { grid-column: 1 / -1; }
.qf-grid > div { min-width: 0; }
.quote-form input, .quote-form select, .quote-form textarea { box-sizing: border-box; max-width: 100%; }
.quote-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.quote-form label .req { color: var(--mce-orange); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--fg-1);
  outline: none;
  transition: border-color var(--dur-hover) var(--ease-out),
              box-shadow var(--dur-hover) var(--ease-out);
}
.quote-form textarea { resize: vertical; min-height: 96px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--mce-navy);
  box-shadow: 0 0 0 3px rgba(15,43,70,0.1);
}
.quote-form .form-foot {
  margin-top: 24px;
  font-size: 12px;
  color: var(--fg-3);
}
.quote-success {
  background: #fff;
  padding: 48px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--mce-sand-soft);
}
.quote-success .qs-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--mce-navy);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 18px 0 12px;
  line-height: 1.05;
}
.quote-success .qs-body { font-size: 16px; color: var(--fg-2); line-height: 1.55; }

/* ---- Resource card list ----------------------------------------------- */
.resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.resource-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--mce-sand);
  border-radius: var(--radius-md);
  align-items: center;
  min-width: 0;
  transition: border-color var(--dur-state) var(--ease-out),
              box-shadow var(--dur-state) var(--ease-out);
}
.resource-card:hover { border-color: var(--mce-navy); box-shadow: var(--shadow-md); border-bottom: 1px solid var(--mce-navy); }
.resource-card--full { grid-column: 1 / -1; }
.resource-card > * { min-width: 0; }
.resource-card .res-icon {
  width: 44px;
  height: 44px;
  background: var(--mce-sand-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mce-orange);
}
.resource-card h3 { font-size: 22px; margin: 0 0 6px; text-transform: uppercase; letter-spacing: -0.01em; }
.resource-card p { margin: 0; font-size: 14px; color: var(--fg-2); }
.resource-card .res-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mce-navy);
  border-bottom: 2px solid var(--mce-orange);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ---- "Who we serve" typographic block --------------------------------- */
.serve-block {
  max-width: 980px;
}
.serve-block h2 {
  font-size: 56px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.serve-block p {
  font-size: 22px;
  line-height: 1.55;
  color: var(--fg-1);
  max-width: 880px;
}

/* ---- Final CTA panel --------------------------------------------------- */
.final-cta {
  background: var(--mce-navy);
  color: var(--mce-warm-white);
  padding: 96px 0;
  text-align: center;
}
.final-cta h2 {
  color: var(--mce-warm-white);
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 24px;
}
.final-cta p {
  color: #CFD9E4;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.final-cta .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Service tier table ----------------------------------------------- */
.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.tier-table th, .tier-table td {
  padding: 20px 16px;
  text-align: left;
  border-bottom: 1px solid var(--mce-sand);
  font-size: 16px;
}
.tier-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mce-navy);
  border-bottom: 2px solid var(--mce-navy);
}
.tier-table tr:last-child td { border-bottom: none; }
.tier-table .tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mce-navy);
}

/* ---- Accessorial multi-column ----------------------------------------- */
.accessorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.accessorial-grid h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  color: var(--mce-navy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mce-sand);
}
.accessorial-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.accessorial-grid li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  padding: 4px 0;
}

/* ---- "What we do not do" panel ---------------------------------------- */
.donot-panel {
  background: var(--mce-sand-soft);
  border-radius: var(--radius-lg);
  padding: 56px;
}
.donot-panel h2 {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.donot-panel ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 48px;
}
.donot-panel li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-1);
  padding: 6px 0;
  break-inside: avoid;
}

/* ---- Footer ------------------------------------------------------------ */
.footer {
  background: var(--mce-navy);
  color: var(--mce-warm-white);
  padding: 96px 0 40px;
  border-top: 1px solid var(--mce-navy-800);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--mce-navy-800);
}
.footer-brand img { height: 48px; margin-bottom: 24px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #B8C5D4;
  max-width: 340px;
  margin: 0;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mce-orange);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col li {
  font-size: 14px;
  color: #B8C5D4;
  border-bottom: 1px solid transparent;
}
.footer-col a:hover { color: #fff; border-bottom-color: var(--mce-orange); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #6B7D94;
}

/* ---- Preview banner ---------------------------------------------------- */
.preview-banner {
  background: var(--mce-sand);
  color: var(--fg-1);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--mce-sand-soft);
}

/* ---- Utility ----------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.flex { display: flex; }
.gap-4 { gap: 32px; }

/* ---- Responsive (compact) --------------------------------------------- */
@media (max-width: 1024px) {
  .container, .container-wide { padding-left: 32px; padding-right: 32px; }
  .nav-inner { padding: 0 32px; gap: 24px; }
  .card-grid, .card-grid--4, .accessorial-grid { grid-template-columns: repeat(2, 1fr); }
  .stats, .stats--5, .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-cell:nth-child(4n) { border-right: 1px solid var(--border-default); }
  .coverage-cell:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-shell, .service-block { grid-template-columns: 1fr; gap: 48px; }
  .service-block--reverse > :first-child { order: 0; }
  .resources { grid-template-columns: 1fr; }
  .resource-card { grid-template-columns: 56px 1fr; row-gap: 16px; padding: 24px; }
  .resource-card .res-cta { grid-column: 2; justify-self: start; }
  .donot-panel ul { columns: 1; }
  .section { padding: 96px 0; }
}

@media (max-width: 720px) {
  .container, .container-wide { padding-left: 20px; padding-right: 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { min-height: 560px; }
  .hero-scrim {
    background: linear-gradient(180deg,
      rgba(15,43,70,0.85) 0%,
      rgba(15,43,70,0.7) 50%,
      rgba(15,43,70,0.55) 100%);
  }
  .hero-inner { padding-top: 80px !important; padding-bottom: 96px !important; }
  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--mce-navy);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--mce-navy-800);
    border-bottom: 1px solid var(--mce-navy-800);
  }
  .nav.is-open .nav-link[aria-current="page"]::after { display: none; }
  .nav-phone { display: none; }
  .nav-schedule { padding: 11px 18px; font-size: 11px; gap: 6px; }
  .nav-schedule i { display: none; }
  .nav-cta-group { gap: 8px; }
  .hero-inner { padding: 96px 20px 120px; }
  .hero-actions .tertiary { width: 100%; }
  .card-grid, .card-grid--4, .accessorial-grid { grid-template-columns: 1fr; }
  .stats, .stats--5, .numbers-strip { grid-template-columns: 1fr 1fr; }
  .stat-num, .numbers-strip .stat-num { font-size: 56px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-cell { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2, .serve-block h2, .final-cta h2 { font-size: 40px; }
  .donot-panel { padding: 32px 24px; }
  .donot-panel h2 { font-size: 32px; }
  .quote-form { padding: 24px; }
  .qf-grid { grid-template-columns: 1fr; }
}
