/* Laredo Road Service — Phase 1 homepage
   Tokens first. Compose from these — do not sprinkle one-off values. */

:root {
  --ink: #101820;
  --navy: #152033;
  --navy-deep: #0d1522;
  --navy-mid: #1c2a40;
  --paper: #f3efe6;
  --paper-2: #faf8f3;
  --card: #ffffff;
  --fg: #1a2330;
  --fg-on-dark: #f3efe6;
  --muted: #5c6570;
  --muted-on-dark: #b7c0c9;
  --accent: #c4450b;
  --accent-hover: #a83808;
  --accent-fg: #ffffff;
  --line: #d9d3c7;
  --line-on-dark: rgba(243, 239, 230, 0.14);
  --stripe: #e7dcc8;

  --font-display: "Barlow Condensed", "Liberation Sans Narrow", "Arial Narrow", Impact, sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: clamp(1.5rem, 1.2rem + 1vw, 1.85rem);
  --text-2xl: clamp(2rem, 1.35rem + 2.2vw, 3.15rem);
  --text-3xl: clamp(2.35rem, 1.4rem + 3.2vw, 4rem);

  --leading-tight: 1.08;
  --leading-snug: 1.28;
  --leading-body: 1.62;

  --tracking-display: 0.01em;
  --tracking-wide: 0.14em;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 88px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --shadow-border:
    0 0 0 1px rgba(16, 24, 32, 0.06),
    0 1px 2px -1px rgba(16, 24, 32, 0.06),
    0 8px 20px -12px rgba(16, 24, 32, 0.12);
  --shadow-border-hover:
    0 0 0 1px rgba(16, 24, 32, 0.1),
    0 1px 2px -1px rgba(16, 24, 32, 0.08),
    0 14px 28px -16px rgba(16, 24, 32, 0.2);

  --wrap: 1140px;
  --header-offset: 7.5rem;
  --motion-quick: 150ms;
  --motion-fast: 250ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--fg);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
  padding-bottom: 4.75rem;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-tight);
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 var(--space-4);
}

h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
}

p {
  margin: 0 0 var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

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

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

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -3rem;
  z-index: 100;
  background: var(--accent);
  color: var(--accent-fg);
  padding: var(--space-2) var(--space-4);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-4);
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-3);
}

.eyebrow-light {
  color: #f0b429;
}

.section {
  padding: var(--space-8) 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: var(--space-7);
}

.section-head h2 {
  margin-bottom: var(--space-4);
}

.section-head p {
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 1.15rem 0 1.05rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition:
    background-color var(--motion-quick) var(--ease-out),
    color var(--motion-quick) var(--ease-out),
    box-shadow var(--motion-quick) var(--ease-out),
    transform var(--motion-quick) var(--ease-out);
}

.btn:active {
  transform: scale(0.96);
}

.btn-call {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.12);
}

.btn-call:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-on-dark);
  box-shadow: 0 0 0 1px var(--line-on-dark);
}

.btn-ghost:hover {
  background: rgba(243, 239, 230, 0.06);
}

.btn-lg {
  min-height: 54px;
  padding-inline: 1.35rem;
  font-size: 1.12rem;
}

.btn-block {
  width: 100%;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy-deep);
  color: var(--fg-on-dark);
  box-shadow: 0 1px 0 var(--line-on-dark);
}

.utility-bar {
  background: var(--navy);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--line-on-dark);
}

.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
  min-height: 2.25rem;
}

.utility-location,
.utility-phone {
  margin: 0;
  color: var(--muted-on-dark);
}

.utility-location {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.utility-phone {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--fg-on-dark);
}

.utility-phone:hover {
  color: #f0b429;
}

.header-bar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-height: 4.35rem;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  min-width: 0;
  margin-right: auto;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--navy-mid);
  color: var(--fg-on-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  border-radius: var(--radius-sm);
  box-shadow: inset 0 -4px 0 var(--accent);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-tag {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--muted-on-dark);
  letter-spacing: 0.02em;
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.site-nav-desktop {
  display: none;
  flex-shrink: 0;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.05rem;
}

.site-nav-desktop > ul {
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 1.15rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-on-dark);
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: #f0b429;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0 var(--space-3);
  cursor: pointer;
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px var(--line-on-dark);
}

.nav-toggle-label {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--fg-on-dark);
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav-menu .site-nav {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(20rem, calc(100vw - 2rem));
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow-border-hover);
}

.nav-menu .site-nav ul {
  flex-direction: column;
  gap: 0;
}

.nav-menu .site-nav a {
  width: 100%;
  padding: 0 var(--space-3);
  border-radius: var(--radius-sm);
}

.nav-menu .site-nav a:hover {
  background: rgba(243, 239, 230, 0.06);
}

.nav-drop {
  position: relative;
}

.nav-drop summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-on-dark);
  opacity: 0.86;
  cursor: pointer;
}

.nav-drop summary::-webkit-details-marker {
  display: none;
}

.nav-drop summary:hover,
.nav-drop.is-current summary {
  opacity: 1;
  color: #f0b429;
}

.nav-drop summary::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.18rem;
  transition: transform var(--motion-quick) var(--ease-out);
}

.nav-drop[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.12rem;
}

.nav-drop > ul {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 17.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--space-2);
  background: var(--navy);
  border-radius: var(--radius-md);
  box-shadow:
    0 0 0 1px var(--line-on-dark),
    0 16px 32px -16px rgba(0, 0, 0, 0.55);
  z-index: 60;
}

.nav-drop > ul a {
  width: 100%;
  padding: 0 var(--space-3);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-drop > ul a:hover {
  background: rgba(243, 239, 230, 0.06);
}

/* Hero */

.hero {
  background:
    linear-gradient(180deg, rgba(13, 21, 34, 0.08), transparent 40%),
    var(--navy-deep);
  color: var(--fg-on-dark);
  padding: var(--space-8) 0 var(--space-9);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0 28%, #f3efe6 28% 32%, var(--navy-mid) 32% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -30%;
  width: 52%;
  height: 90%;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(243, 239, 230, 0.035) 18px,
      rgba(243, 239, 230, 0.035) 19px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-7);
}

.hero h1 {
  color: var(--fg-on-dark);
  max-width: 18ch;
}

.hero-lead {
  font-size: var(--text-lg);
  color: var(--muted-on-dark);
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-6) 0 var(--space-5);
}

.hero-note {
  color: var(--muted-on-dark);
  font-size: var(--text-sm);
  max-width: 38rem;
}

.hero-note a {
  color: var(--fg-on-dark);
  font-weight: 600;
}

.hero-panel {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 0 0 1px var(--line-on-dark);
  align-self: stretch;
}

.hero-panel-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: #f0b429;
  margin-bottom: var(--space-4);
}

.hero-list {
  display: grid;
  gap: var(--space-3);
}

.hero-list li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--fg-on-dark);
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 2px;
  background: var(--accent);
}

.hero-panel-foot {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-on-dark);
  font-size: var(--text-sm);
  color: var(--muted-on-dark);
}

.hero-panel-foot strong {
  color: var(--fg-on-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Services */

.services {
  background: var(--paper-2);
}

.card-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--motion-fast) var(--ease-out);
}

.service-card:hover {
  box-shadow: var(--shadow-border-hover);
}

.card-index {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 var(--space-3);
  font-size: var(--text-sm);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--space-4);
  color: var(--navy);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin-bottom: var(--space-3);
}

.service-card p {
  color: var(--muted);
  margin-bottom: var(--space-4);
  flex: 1;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: none;
}

.service-card .card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.card-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Local */

.local {
  background: var(--paper);
}

.local-grid .prose {
  max-width: 46rem;
}

.prose p {
  color: var(--fg);
}

.prose p + p {
  margin-top: var(--space-4);
}

/* Audience */

.audience {
  background: var(--navy-deep);
  color: var(--fg-on-dark);
}

.audience .section-head h2,
.audience h3 {
  color: var(--fg-on-dark);
}

.audience .section-head p {
  color: var(--muted-on-dark);
}

.audience-grid {
  display: grid;
  gap: var(--space-5);
}

.audience-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 0 0 1px var(--line-on-dark);
}

.audience-card p {
  color: var(--muted-on-dark);
}

/* CTA band */

.cta-band {
  background:
    linear-gradient(90deg, var(--accent) 0 8px, transparent 8px),
    var(--navy);
  color: var(--fg-on-dark);
  padding: var(--space-8) 0;
}

.cta-band-inner {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

.cta-band h2 {
  color: var(--fg-on-dark);
}

.cta-band p {
  color: var(--muted-on-dark);
  max-width: 38rem;
}

/* FAQ */

.faq {
  background: var(--paper-2);
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-list details {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-border);
  padding: 0 var(--space-5);
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--motion-quick) var(--ease-out);
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list details p {
  color: var(--muted);
  padding-bottom: var(--space-5);
}

/* Footer */

.site-footer {
  background: var(--navy-deep);
  color: var(--muted-on-dark);
  padding: var(--space-8) 0 5.5rem;
}

.footer-grid {
  display: grid;
  gap: var(--space-7);
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-on-dark);
  margin-bottom: var(--space-3);
}

.footer-place {
  font-weight: 600;
  color: var(--fg-on-dark);
  margin-bottom: var(--space-5);
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg-on-dark);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.footer-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--fg-on-dark);
}

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-on-dark);
  font-size: var(--text-sm);
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--navy-deep) 92%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: 0 -1px 0 var(--line-on-dark);
}

/* Breakpoints */

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .mobile-call-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: var(--space-6);
  }

  .card-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .cta-band-inner,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-8);
    align-items: start;
  }

  .cta-band-inner {
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.8fr;
  }
}

@media (min-width: 1100px) {
  .section {
    padding: var(--space-9) 0;
  }

  .nav-menu {
    display: none;
  }

  .site-nav-desktop {
    display: block;
  }

  .header-bar-inner {
    gap: var(--space-5);
  }

  .hero-grid {
    grid-template-columns: 1.35fr 0.8fr;
    align-items: center;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 var(--space-5);
  padding: 0.7rem 1.2rem 0.7rem 0.7rem;
  background: var(--accent);
  color: var(--accent-fg);
  border-radius: var(--radius-md);
  box-shadow:
    0 0 0 3px rgba(196, 69, 11, 0.28),
    0 12px 28px -10px rgba(196, 69, 11, 0.72);
  text-decoration: none;
  max-width: 100%;
  transition:
    background-color var(--motion-quick) var(--ease-out),
    transform var(--motion-quick) var(--ease-out);
}

.badge-247:hover {
  background: var(--accent-hover);
}

.badge-247:active {
  transform: scale(0.98);
}

.badge-247-icon {
  width: 3.15rem;
  height: 3.15rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
}

.badge-247-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.55);
  animation: badge-pulse 2s var(--ease-out) infinite;
}

.badge-247-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.badge-247-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.55rem;
  line-height: 0.9;
}

.badge-247-text strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.45rem + 2.6vw, 2.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.badge-247-text span {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.88rem + 0.7vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes badge-pulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

.utility-247 {
  display: inline-block;
  margin-right: 0.45rem;
  padding: 0.1rem 0.4rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  border-radius: 3px;
  vertical-align: 1px;
}

.hero-page {
  padding: var(--space-7) 0 var(--space-8);
}

.hero-page h1 {
  max-width: 22ch;
}

.crumbs {
  margin: 0 0 var(--space-4);
  font-size: var(--text-sm);
  color: var(--muted-on-dark);
}

.crumbs a {
  color: var(--fg-on-dark);
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: underline;
}

.page-layout {
  display: grid;
  gap: var(--space-7);
}

.page-main h2 {
  margin-top: var(--space-7);
}

.page-main h2:first-child {
  margin-top: 0;
}

.page-main h3 {
  margin-top: var(--space-5);
}

.page-main ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 var(--space-4);
}

.page-main li {
  margin-bottom: 0.4rem;
}

.page-main .ready-box ul,
.page-main .hero-list {
  list-style: none;
  padding-left: 0;
}

.page-aside {
  display: grid;
  gap: var(--space-5);
  align-content: start;
}

.side-card {
  background: var(--navy);
  color: var(--fg-on-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: 0 0 0 1px var(--line-on-dark);
}

.side-card h2 {
  font-size: 1.35rem;
  color: var(--fg-on-dark);
  margin-bottom: var(--space-3);
}

.side-card p,
.side-card li {
  color: var(--muted-on-dark);
  font-size: var(--text-sm);
}

.side-card a {
  color: #f0b429;
  text-decoration: none;
}

.side-card a:hover {
  text-decoration: underline;
}

.side-card .btn {
  margin-top: var(--space-4);
  width: 100%;
}

.ready-box {
  background: var(--paper-2);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: 4px 0 0 var(--accent) inset;
}

.ready-box h2,
.ready-box h3 {
  margin-top: 0;
}

.ready-box ul {
  display: grid;
  gap: var(--space-2);
}

.ready-box li {
  padding-left: 1.1rem;
  position: relative;
}

.ready-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 2px;
  background: var(--accent);
}

.related-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

.related-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-border);
}

.related-card h3 {
  margin-bottom: var(--space-2);
}

.related-card p {
  color: var(--muted);
  margin-bottom: var(--space-3);
}

.contact-panel {
  background: var(--navy-deep);
  color: var(--fg-on-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  margin-bottom: var(--space-7);
}

.contact-panel h2 {
  color: var(--fg-on-dark);
}

.contact-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--fg-on-dark);
  text-decoration: none;
  margin: var(--space-3) 0 var(--space-5);
}

.contact-number:hover {
  color: #f0b429;
}

.audience-card .card-link {
  color: #f0b429;
}

.audience-card .card-link:hover {
  color: var(--fg-on-dark);
}

@media (min-width: 720px) {
  .page-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.7fr);
    align-items: start;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-figure {
  margin: 0 0 var(--space-6);
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-border);
}

.page-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--navy-deep);
}

.page-figure figcaption {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--fg-on-dark);
  background: var(--navy-deep);
}

.cite {
  font-size: var(--text-sm);
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: var(--space-3) var(--space-4);
  background: var(--paper-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 0 0 var(--space-5);
}

.cite a {
  color: var(--navy);
  font-weight: 600;
}

.prose a[href^="https://www.fmcsa."],
.prose a[href^="https://www.ecfr."],
.prose a[href^="https://www.txdot."],
.prose a[href^="https://www.transportation.gov"],
.prose a[href^="https://csa.fmcsa."],
.faq-list a[href^="https://"] {
  font-weight: 600;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
  padding: var(--space-5);
  background: var(--navy-deep);
  color: var(--fg-on-dark);
  border-radius: var(--radius-xl);
}

.inline-cta p {
  margin: 0;
  flex: 1;
  min-width: 16rem;
  color: var(--muted-on-dark);
}

.inline-cta strong {
  color: var(--fg-on-dark);
}

.problem-list {
  display: grid;
  gap: var(--space-4);
  margin: 0 0 var(--space-5);
}

.problem-list article {
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: 4px 0 0 var(--accent) inset;
}

.problem-list h3 {
  margin-top: 0;
  margin-bottom: var(--space-2);
}

.prose a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:not(.btn):hover {
  color: var(--accent-hover);
}

.page-main .btn {
  text-decoration: none;
}

@media (min-width: 720px) {
  .page-aside {
    position: sticky;
    top: 7.75rem;
  }
}

