/* ============================================================
   @property — enables animated conic-gradient border
   ============================================================ */
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* ============================================================
   DESIGN TOKENS — Dispatch Terminal
   ============================================================ */
:root {
  /* Palette */
  --bg:               #0a0a0a;
  --surface:          #111111;
  --surface-raised:   #171717;
  --surface-high:     #1f1f1f;
  --amber:            #F59E0B;
  --amber-glow:       rgba(245, 159, 11, 0.10);
  --amber-border:     rgba(245, 159, 11, 0.22);
  --amber-dim:        #C4924A;
  --text:             #F0EAE0;
  --text-dim:         #9A948E;
  --text-faint:       #504A44;
  --border:           rgba(255, 255, 255, 0.07);
  --border-strong:    rgba(255, 255, 255, 0.12);
  --success:          #10B981;
  --error:            #F87171;

  /* Typography */
  --font-display: 'Barlow Condensed', -apple-system, sans-serif;
  --font-body:    'Overpass', -apple-system, sans-serif;

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-xl:   14px;

  /* Spacing */
  --space-xs:      8px;
  --space-sm:      12px;
  --space-md:      16px;
  --space-lg:      24px;
  --space-xl:      32px;
  --space-xxl:     48px;
  --space-section: clamp(64px, 8vw, 100px);

  /* Layout */
  --nav-height:    80px;
  --container-max: 1200px;
  --container-pad: clamp(20px, 4vw, 48px);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

[hidden] { display: none !important; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity  0.55s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEARTBEAT — phone number pulse
   ============================================================ */
@keyframes heartbeat {
  0%, 82%, 100% { opacity: 1; }
  88%  { opacity: 0.45; }
  94%  { opacity: 1; }
  97%  { opacity: 0.45; }
}

.pulse {
  animation: heartbeat 4s ease-in-out infinite;
}

/* ============================================================
   CURSOR BLINK
   ============================================================ */
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.cursor {
  display: inline-block;
  color: var(--amber);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

/* ============================================================
   ROTATING BORDER — form card
   ============================================================ */
@keyframes border-spin {
  to { --border-angle: 360deg; }
}

.form-border-wrapper {
  background: conic-gradient(
    from var(--border-angle),
    transparent 0%,
    rgba(245, 159, 11, 0.7) 10%,
    transparent 22%,
    transparent 78%,
    rgba(245, 159, 11, 0.7) 90%,
    transparent 100%
  );
  border-radius: calc(var(--radius-xl) + 2px);
  padding: 1.5px;
  animation: border-spin 5s linear infinite;
}

/* Fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .form-border-wrapper {
    border: 1px solid var(--amber-border);
    background: none;
    animation: none;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-lg);
  height: 44px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: #0a0a0a;
}

.btn--primary:hover {
  background: #FBBF24;
}

.btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn--full { width: 100%; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: var(--space-md);
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input {
  height: 44px;
  padding: 0 var(--space-sm);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: #1c1c1c;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 159, 11, 0.12);
}

.form-group input::placeholder {
  color: #6b6560;
}

.form-message {
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  min-height: 18px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.form-message--success { color: var(--success); }
.form-message--error   { color: var(--error); }

.form-trust-line {
  font-size: 0.72rem;
  color: var(--text-faint);
  line-height: 1.5;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.form-inline-quote {
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: var(--space-md);
}

.form-inline-stars {
  color: var(--amber-dim);
  font-size: 0.6875rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.form-inline-text {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 4px;
}

.form-inline-author {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.field-error {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--error);
  min-height: 14px;
  display: block;
}

.field-optional {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-faint);
}

.form-group input.input--error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

/* ============================================================
   FORM SUCCESS STATE
   ============================================================ */
.form-success {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
}

.form-success__headline {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.form-success__call-box {
  background: var(--surface-high);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.form-success__call-label,
.form-success__call-time {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-success__call-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--amber);
  line-height: 1.15;
  margin: var(--space-xs) 0;
  transition: opacity 0.15s;
}

.form-success__call-number:hover { opacity: 0.8; }

.form-success__prep-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-sm);
}

.form-success__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-success__items li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-success__items li::before {
  content: '✓';
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1.5;
}

.form-success__note {
  color: var(--text-faint);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--bg);
  z-index: 100;
  border-bottom: 1px solid var(--amber-border);
}

.nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-xl);
}

.nav__logo { height: 52px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.15s;
  white-space: nowrap;
}

.nav__link:hover { color: var(--text); }

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: flex-end;
}

.nav__phone {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--amber);
  white-space: nowrap;
}

/* ── Nav CTA — Amber Scan ── */
@keyframes nav-scan {
  from { left: -75%; }
  to   { left: 130%; }
}

@keyframes nav-cta-breathe {
  0%,  100% { box-shadow: 0 0 0 0   rgba(245, 159, 11, 0); }
  50%        { box-shadow: 0 0 0 5px rgba(245, 159, 11, 0.18); }
}

.btn--nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-lg);
  height: 38px;
  background: var(--amber);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
  animation: nav-cta-breathe 3s ease-in-out infinite;
  transition: background 0.15s;
}

.btn--nav-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn--nav-cta:hover {
  background: #FBBF24;
  animation: none;
}

.btn--nav-cta:hover::after {
  animation: nav-scan 0.48s ease-out forwards;
}

/* Scroll offset for fixed nav */
#coverage,
#reviews,
#about {
  scroll-margin-top: var(--nav-height);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.04;
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-xxl);
  align-items: center;
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.8vw, 80px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
}

.hero__sub {
  font-size: 1.0625rem;
  color: rgba(240, 234, 224, 0.68);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 42ch;
}

.hero__divider {
  width: 48px;
  height: 1px;
  background: var(--amber-border);
  margin-bottom: var(--space-xl);
}

.hero__phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--amber);
  text-transform: uppercase;
  transition: opacity 0.15s;
}

.hero__phone-cta:hover { opacity: 0.8; }

.hero__form-card {
  background: #252525;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.hero__form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.hero__form-sub {
  font-size: 0.8125rem;
  color: var(--text-faint);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

/* ============================================================
   COVERAGE — Manifest (#111111)
   ============================================================ */
.coverage {
  background: var(--surface);
  padding: var(--space-section) 0;
}

.coverage__header {
  margin-bottom: var(--space-xxl);
}

.coverage__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.05;
}

.coverage__manifest {
  border-top: 1px solid var(--border-strong);
}

.coverage__row {
  display: grid;
  grid-template-columns: clamp(52px, 7vw, 88px) 1fr;
  gap: var(--space-xl);
  align-items: baseline;
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--border);
}

.coverage__index {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--text-dim);
  line-height: 1;
  letter-spacing: -2px;
}

.coverage__info { display: flex; flex-direction: column; gap: 6px; }

.coverage__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.coverage__desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 62ch;
}

/* ============================================================
   TRUCKS — Unit Classification (#0a0a0a)
   ============================================================ */
.trucks {
  background: var(--bg);
  padding: var(--space-section) 0;
}

.trucks__header { margin-bottom: var(--space-xxl); }

.trucks__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.05;
}

.trucks__sub {
  margin-top: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--text-faint);
}

.truck-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.truck-pill {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-sm);
  padding: 12px var(--space-lg);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.truck-pill:hover {
  background: var(--amber-glow);
  border-color: var(--amber);
  color: var(--amber);
}

/* ============================================================
   OPERATIONS — Marquee (#171717)
   ============================================================ */
.operations {
  background: var(--surface-raised);
  border-top: 1px solid var(--amber-border);
  border-bottom: 1px solid var(--amber-border);
  padding: var(--space-section) 0;
}

.operations__header { margin-bottom: var(--space-xxl); }

.operations__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.05;
}

.marquee-outer {
  overflow: hidden;
  cursor: default;
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  padding: var(--space-lg) 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 0 var(--space-xl);
  flex-shrink: 0;
  transition: color 0.15s;
}

.marquee-sep {
  color: var(--text-faint);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(12px, 1.5vw, 16px);
  flex-shrink: 0;
}

.operations__note {
  margin-top: var(--space-xxl);
  font-size: 0.9375rem;
  color: var(--text-dim);
}

.operations__phone-link {
  color: var(--amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   TESTIMONIALS — Operator Reviews (#111111)
   ============================================================ */
.testimonials {
  background: var(--surface);
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.88)),
    url('images/highway-night.jpg');
  background-size: cover;
  background-position: center;
  padding: var(--space-section) 0;
}

.testimonials__header { margin-bottom: var(--space-xxl); }

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.05;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--surface-high);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--amber-dim);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.testimonial-quote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 400;
}

/* ============================================================
   ABOUT — Agency (#0a0a0a)
   ============================================================ */
.about {
  background: var(--bg);
  padding: var(--space-section) 0;
}

.about__header { margin-bottom: var(--space-xxl); }

.about__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.05;
}

.about__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.about__photo-wrapper {
  position: relative;
}

.about__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: grayscale(15%) contrast(1.05);
}

.about__photo-frame {
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid var(--amber-border);
  pointer-events: none;
}

.about__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
}

.about__role {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-lg);
}

.about__bio-text {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: 62ch;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-strong);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.about__stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -2px;
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  line-height: 1.4;
}

/* ============================================================
   QUOTE CTA — above footer
   ============================================================ */
.quote-cta {
  position: relative;
  background: var(--surface);
  border-top: 2px solid var(--amber);
  padding: var(--space-section) 0;
  overflow: hidden;
}

/* Ambient amber glow */
.quote-cta::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 159, 11, 0.07) 0%, transparent 65%);
  top: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.quote-cta .container {
  position: relative;
  z-index: 1;
}

.quote-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.quote-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: var(--space-lg);
}

.quote-cta__sub {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 42ch;
}

/* ============================================================
   FOOTER — (#0a0a0a)
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-strong);
  padding: var(--space-xxl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
  transition: opacity 0.15s;
}

.footer__phone:hover { opacity: 0.75; }

.footer__address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: var(--space-xs);
}

.footer__hours {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer__badge-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer__badge {
  height: 72px;
  width: auto;
  opacity: 0.65;
  transition: opacity 0.15s;
}

.footer__badge:hover { opacity: 1; }

.footer__bottom {
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================================
   SECTION CTA
   ============================================================ */
.section-cta {
  margin-top: var(--space-xxl);
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--amber);
  padding: 14px var(--container-pad);
  box-shadow: 0 -4px 24px rgba(245, 159, 11, 0.25);
}

.mobile-cta-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: #0a0a0a;
  text-decoration: none;
}

.mobile-cta-bar__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}

.mobile-cta-bar__number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .form-border-wrapper {
    background: none;
    border: 1px solid var(--amber-border);
  }

  .btn--nav-cta {
    animation: none;
  }

  .btn--nav-cta:hover::after {
    animation: none;
  }
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

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

  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto auto; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav__logo  { height: 40px; }
  .nav__phone { display: none; }
  .btn--nav-cta { font-size: 0.75rem; padding: 0 var(--space-md); height: 44px; }

  /* Prevent iOS Safari from zooming the viewport on input focus */
  .form-group input { font-size: 1rem; }

  .mobile-cta-bar { display: block; }

  body { padding-bottom: 58px; }

  /* Hero */
  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .hero__form-card { padding: var(--space-lg); }

  /* Coverage */
  .coverage__row {
    grid-template-columns: 48px 1fr;
    gap: var(--space-md);
  }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  .testimonial-card { padding: var(--space-md) var(--space-lg); }

  /* Operations */
  .operations__note { text-align: center; }

  .marquee-item { padding: 0 var(--space-md); }

  /* Trucks */
  .truck-pill {
    padding: 10px var(--space-md);
    font-size: 0.875rem;
  }

  /* Quote CTA */
  .quote-cta__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Reduce headline min so it doesn't dominate on narrow screens */
  .quote-cta__headline { font-size: clamp(36px, 9vw, 88px); }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__photo {
    aspect-ratio: 3 / 2;
    max-height: 280px;
    object-position: center 20%;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__badge-col { justify-content: flex-start; }
  .footer__badge     { height: 56px; }
}
