/* ─────────────────────────────────────────
   RESET & TOKENS  —  Orange / Charcoal Edition
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand — van color system */
  --navy:         #1C1C1C;
  --navy-deep:    #111111;
  --navy-mid:     #282828;
  --cyan:         #E85500;
  --cyan-bright:  #FF6B1A;
  --cyan-dark:    #C44400;
  --cream:        #F8F6F2;
  --warm-gray:    #EEF0F4;

  /* Text */
  --text-dark:    #1C1C1C;
  --text-body:    #2A2A2A;
  --text-muted:   #666666;

  /* Type */
  --serif:      'Playfair Display', Georgia, serif;
  --condensed:  'Barlow Condensed', sans-serif;
  --sans:       'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  font-family: var(--sans);
  background: #fff;
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   SHARED UTILITIES
───────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; }

.eyebrow {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--cyan-bright); }
.eyebrow--light::before { background: var(--cyan-bright); }

.section-title {
  font-family: var(--condensed);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  line-height: 0.95;
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }

.section-lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}
.section-lead--light { color: #C0AFA8; }

.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: #111111;
  padding: 15px 32px;
  border-radius: 3px;
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--cyan-bright); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #D8C8C0;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(220,200,190,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cyan-bright); color: var(--cyan-bright); }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy-deep);
  padding: 0 48px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--cyan);
}

.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 200px; width: auto; display: block; }

.nav-name {
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-name em {
  color: var(--cyan-bright);
  font-style: italic;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  text-transform: none;
}

.nav-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: #C0B0A8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan-bright); }

.nav-cta {
  background: var(--cyan) !important;
  color: #111111 !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--cyan-bright) !important; color: #111111 !important; }
.nav-cta .cta-mini { display: none; }

/* ── Dropdown nav (desktop hover) ── */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item.has-dropdown > a::after { content: " \25BE"; font-size: 0.85em; opacity: 0.75; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 232px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,107,26,0.22); border-top: 3px solid var(--cyan);
  border-radius: 0 0 4px 4px; padding: 6px 0;
  display: none; flex-direction: column; z-index: 200;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.dropdown a {
  display: block; padding: 10px 20px;
  color: #C0B0A8; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
.dropdown a:hover { color: var(--cyan-bright); background: rgba(232,85,0,0.10); }
@media (min-width: 861px) {
  .nav-item.has-dropdown:hover > .dropdown { display: flex; }
}

/* ── Mobile call button + hamburger (hidden on desktop) ── */
.nav-call-mobile { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 210; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; margin: 5px 0; transition: transform 0.25s, opacity 0.25s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  padding: 160px 48px 100px;
  background: var(--navy-deep) url('images/van-front.jpg') right center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.97) 0%,
    rgba(17,17,17,0.90) 40%,
    rgba(17,17,17,0.55) 65%,
    rgba(17,17,17,0.18) 85%,
    transparent 100%
  );
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-bright) 50%, var(--cyan) 100%);
  z-index: 1;
}

.hero-geo {
  position: absolute;
  right: -60px; top: 40px;
  width: 480px; height: 480px;
  border: 1px solid rgba(232,85,0,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-geo::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(232,85,0,0.08);
  border-radius: 50%;
}
.hero-geo::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(232,85,0,0.05);
  border-radius: 50%;
}

.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,85,0,0.12);
  border: 1px solid rgba(255,107,26,0.3);
  border-radius: 3px;
  padding: 6px 14px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan-bright);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--condensed);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero h1 .line1 { color: #fff; display: block; }
.hero h1 .line2 { color: var(--cyan-bright); display: block; }
.hero h1 .line3 { color: #fff; display: block; }
.hero h1 .hero-kicker {
  display: block;
  font-size: clamp(15px, 1.7vw, 21px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan-bright);
  margin-bottom: 16px;
}

.hero-body {
  font-size: 17px;
  font-weight: 300;
  color: #C0AFA8;
  max-width: 500px;
  margin: 24px 0 40px;
  line-height: 1.65;
}
.hero-body strong { color: #E0D8D0; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #A09090;
  letter-spacing: 0.04em;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   MARQUEE BAR
───────────────────────────────────────── */
.marquee-bar {
  background: var(--cyan);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 32px;
  border-right: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-section {
  background: var(--cream);
  padding: 88px 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: #fff;
  padding: 32px 28px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transition: background 0.2s;
  position: relative;
}
.service-card:nth-child(3),
.service-card:nth-child(6) { border-right: none; }
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) { border-bottom: none; }

.service-card:hover { background: var(--navy-deep); }
.service-card:hover .service-num { color: rgba(255,107,26,0.2); }
.service-card:hover .service-title { color: var(--cyan-bright); }
.service-card:hover .service-body { color: #A08878; }

.service-card--dark {
  background: var(--navy-deep) !important;
}

.service-num {
  font-family: var(--condensed);
  font-size: 42px;
  font-weight: 900;
  color: rgba(28,28,28,0.07);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.service-num--cyan { color: rgba(255,107,26,0.18); }

.service-title {
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.service-title--cyan { color: var(--cyan-bright); }

/* Service cards used as links (location pages) — strip default link styling so they match the divs. */
a.service-card, a.service-card:hover, a.service-card:visited { text-decoration: none; color: inherit; }

.service-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.2s;
}
.service-body--muted { color: #907A70; }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-section { padding: 88px 48px; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-copy p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-copy strong { color: var(--navy); font-weight: 700; }

.stats-row {
  display: flex;
  gap: 0;
  margin-top: 44px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  overflow: hidden;
}
.stat-box {
  flex: 1;
  padding: 24px 20px;
  border-right: 2px solid var(--navy);
  text-align: center;
}
.stat-box:last-child { border-right: none; }

.stat-num {
  font-family: var(--condensed);
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.about-panel {
  background: var(--navy-deep);
  border-radius: 4px;
  overflow: hidden;
}
.about-panel-top {
  background: var(--cyan);
  padding: 10px 24px;
}
.about-panel-label {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111111;
}
.about-panel-body { padding: 32px 28px; }

.about-tagline {
  font-family: var(--serif);
  font-size: 22px;
  color: #F0EAE0;
  line-height: 1.5;
  margin-bottom: 28px;
}

.about-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.promise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.promise-item:last-child { margin-bottom: 0; }

.promise-bar {
  width: 3px;
  flex-shrink: 0;
  background: var(--cyan);
  border-radius: 2px;
  align-self: stretch;
  min-height: 40px;
}

.promise-title {
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-bright);
  margin-bottom: 3px;
}
.promise-body {
  font-size: 13px;
  color: #A09090;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews-section {
  background: var(--navy-deep);
  padding: 88px 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,107,26,0.12);
  border-top: 3px solid var(--cyan);
  border-radius: 4px;
  padding: 28px 24px;
}

.review-stars {
  color: #F0B418;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 15px;
  font-style: italic;
  color: #C4BAB4;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer-name {
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-bright);
}
.reviewer-via {
  font-size: 12px;
  color: #9A8A84;
  margin-top: 3px;
}

.rating-summary {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.rating-num {
  font-family: var(--condensed);
  font-size: 72px;
  font-weight: 900;
  color: var(--cyan-bright);
  line-height: 1;
}
.rating-stars { color: #F0B418; font-size: 24px; letter-spacing: 4px; }
.rating-copy { font-size: 14px; color: #9A8A84; margin-top: 6px; }

/* ─────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────── */
.why-section {
  background: var(--cream);
  padding: 88px 48px;
}

.why-list {
  display: flex;
  flex-direction: column;
  margin-top: 52px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  overflow: hidden;
}

.why-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  border-bottom: 2px solid var(--navy);
  background: #fff;
  transition: background 0.2s;
  min-height: 100px;
}
.why-row:last-child { border-bottom: none; }
.why-row:hover { background: var(--navy); }
.why-row:hover .why-num { color: rgba(255,107,26,0.2); border-color: rgba(255,107,26,0.1); }
.why-row:hover .why-title-col { border-color: rgba(255,255,255,0.08); }
.why-row:hover .why-title { color: var(--cyan-bright); }
.why-row:hover .why-tag { background: rgba(232,85,0,0.12); border-color: rgba(255,107,26,0.2); color: var(--cyan-bright); }
.why-row:hover .why-body { color: #A09090; }
.why-row:hover .why-body strong { color: #E0D8D0; }

.why-num {
  font-family: var(--condensed);
  font-size: 28px;
  font-weight: 900;
  color: rgba(28,28,28,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid var(--navy);
  padding: 24px 0;
  transition: color 0.2s, border-color 0.2s;
}

.why-title-col {
  padding: 28px;
  border-right: 2px solid var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.2s;
}

.why-title {
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.why-tag {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  background: rgba(232,85,0,0.08);
  border: 1px solid rgba(232,85,0,0.2);
  padding: 3px 10px;
  border-radius: 2px;
  transition: all 0.2s;
}

.why-body-col {
  padding: 28px 32px;
  display: flex;
  align-items: center;
}

.why-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.2s;
}
.why-body strong { color: var(--text-body); font-weight: 600; transition: color 0.2s; }

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  overflow: hidden;
}
.proof-cell {
  padding: 20px 24px;
  border-right: 2px solid var(--navy);
  text-align: center;
}
.proof-cell:last-child { border-right: none; }

.proof-val {
  font-family: var(--condensed);
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.proof-val span { color: var(--cyan); }

.proof-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 5px;
}

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'CALL NOW';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--condensed);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan);
}

.cta-inner { position: relative; z-index: 1; }

.cta-eyebrow {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.cta-headline {
  font-family: var(--condensed);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 20px;
}
.cta-headline em {
  color: var(--cyan-bright);
  font-style: italic;
  font-family: var(--serif);
  text-transform: none;
}

.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: #A09090;
  margin-bottom: 44px;
}

.cta-phone {
  display: block;
  text-decoration: none;
  font-family: var(--condensed);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--cyan-bright);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.cta-phone:hover { color: #fff; }

.cta-area {
  font-size: 13px;
  color: #9A8A84;
  margin-bottom: 36px;
  letter-spacing: 0.06em;
}

.cta-note {
  margin-top: 32px;
  font-size: 13px;
  color: #9A8A84;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  padding: 24px 48px;
  border-top: 3px solid var(--cyan);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand { display: block; }
.footer-logo { height: 160px; width: auto; display: block; margin: -48px 0; }
.footer-tagline {
  font-size: 12px;
  color: var(--cyan);
  font-style: italic;
  font-family: var(--serif);
  margin-top: 4px;
}

.footer-right { text-align: right; }
.footer-copy { font-size: 12px; color: #9A8A84; }
.footer-credit { font-size: 11px; color: #8A7A74; margin-top: 3px; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge  { animation: fadeUp 0.6s ease both; }
.hero h1     { animation: fadeUp 0.6s ease 0.1s both; }
.hero-body   { animation: fadeUp 0.6s ease 0.2s both; }
.hero-actions{ animation: fadeUp 0.6s ease 0.3s both; }
.hero-trust  { animation: fadeUp 0.6s ease 0.45s both; }

/* ─────────────────────────────────────────
   PHOTOS
───────────────────────────────────────── */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1100px;
}
.hero-split .hero-inner { max-width: none; }

.hero-van {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(255,107,26,0.25);
  position: relative;
  flex-shrink: 0;
}
.hero-van::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 48px rgba(17,17,17,0.5);
  pointer-events: none;
}
.hero-van img { width: 100%; display: block; object-fit: cover; }

.work-strip { background: var(--navy); }
.work-strip-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.work-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.work-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.4s, transform 0.5s;
}
.work-photo:hover img { filter: brightness(1); transform: scale(1.03); }
.work-photo-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.work-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 28px 24px;
  background: linear-gradient(transparent, rgba(17,17,17,0.9));
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan-bright);
}

.about-photo {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid rgba(255,107,26,0.18);
}
.about-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* ── 1080px: reduce padding ── */
@media (max-width: 1080px) {
  nav { padding: 0 32px; }
  .hero { padding: 120px 32px 80px; }
  .services-section,
  .about-section,
  .reviews-section,
  .why-section,
  .cta-section { padding: 72px 32px; }
  footer { padding: 32px 32px; }
}

/* ── 860px: tablet ── */
@media (max-width: 860px) {
  nav { padding: 0 24px; }

  /* Mobile nav: hamburger + slide-in panel */
  .nav-toggle { display: block; }
  .nav-call-mobile {
    display: inline-block; margin-left: auto; margin-right: 14px;
    background: var(--cyan); color: #111 !important; text-decoration: none;
    font-family: var(--condensed); font-weight: 800; text-transform: uppercase;
    font-size: 13px; letter-spacing: 0.06em; padding: 9px 18px; border-radius: 3px;
  }
  .nav-links {
    position: fixed; top: 100px; left: 0; right: 0;
    max-height: calc(100vh - 100px); overflow-y: auto;
    background: var(--navy-deep); border-top: 2px solid var(--cyan);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 28px;
    transform: translateX(100%); transition: transform 0.25s ease; visibility: hidden;
  }
  body.nav-open .nav-links { transform: translateX(0); visibility: visible; }
  .nav-item { display: block; }
  .nav-links > a,
  .nav-item > a { display: block; padding: 15px 24px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-item.has-dropdown > a::after { float: right; transition: transform 0.2s; }
  .nav-item.open > a::after { transform: rotate(180deg); }
  .dropdown {
    position: static; display: none; min-width: 0;
    border: 0; border-radius: 0; box-shadow: none; padding: 0; background: rgba(0,0,0,0.25);
  }
  .nav-item.open > .dropdown { display: flex; }
  .dropdown a { padding: 13px 24px 13px 42px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-cta { margin: 18px 24px 0 !important; text-align: center; padding: 14px !important; font-size: 15px !important; }

  .hero { padding: 100px 28px 64px; background-position: 75% center; }
  .hero::before {
    background: linear-gradient(
      to right,
      rgba(17,17,17,0.97) 0%,
      rgba(17,17,17,0.95) 45%,
      rgba(17,17,17,0.65) 72%,
      rgba(17,17,17,0.2) 90%,
      transparent 100%
    );
  }

  .services-section,
  .about-section,
  .reviews-section,
  .why-section,
  .cta-section { padding: 64px 28px; }
  footer { padding: 28px 24px; }

  /* Services: 2 cols */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); }
  .service-card:nth-child(even) { border-right: none; }
  .service-card:nth-child(5),
  .service-card:nth-child(6) { border-bottom: none; }

  /* About: stack */
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .section-lead { max-width: 100%; }

  /* Reviews: 2 cols */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }

  /* Why rows: tighten columns */
  .why-row { grid-template-columns: 52px 1fr 1.5fr; }
  .why-num { font-size: 22px; }

  /* Proof bar: 2×2 */
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .proof-cell:nth-child(2) { border-right: none; }
  .proof-cell:nth-child(3),
  .proof-cell:nth-child(4) { border-top: 2px solid var(--navy); }
  .proof-cell:nth-child(4) { border-right: none; }

  /* Work strip: stack */
  .work-strip-photos { grid-template-columns: 1fr; }

  /* Footer: stack */
  footer { flex-direction: column; gap: 12px; }
  .footer-right { text-align: left; }
}

/* ── 560px: mobile ── */
@media (max-width: 560px) {
  nav { padding: 0 16px; height: 80px; }
  .nav-logo { height: 120px; }
  .nav-sub { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 12px !important; letter-spacing: 0.04em !important; white-space: nowrap; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-mini { display: inline; }
  .nav-links { top: 80px; max-height: calc(100vh - 80px); }

  .hero { padding: 80px 20px 52px; background-position: 65% center; }
  .hero::before { background: rgba(17,17,17,0.92); }
  .hero h1 { font-size: 38px; }
  .hero-badge { font-size: 10px; padding: 5px 10px; letter-spacing: 0.1em; }
  .hero-body { margin: 18px 0 28px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; }
  .hero-trust { gap: 14px; margin-top: 32px; padding-top: 24px; }

  .services-section,
  .about-section,
  .reviews-section,
  .why-section,
  .cta-section { padding: 52px 20px; }
  footer { padding: 24px 20px; }

  /* Services: 1 col */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 2px solid var(--navy) !important; }
  .service-card:last-child { border-bottom: none !important; }

  /* About stats */
  .stats-row { flex-wrap: wrap; }
  .stat-box { flex: 1 1 50%; }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(3) { border-top: 2px solid var(--navy); border-right: none; flex: 1 1 100%; }

  /* Reviews: 1 col */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card:last-child { grid-column: span 1; max-width: 100%; }
  .rating-summary { flex-direction: column; text-align: center; gap: 10px; }
  .rating-num { font-size: 56px; }

  /* Why rows: stack */
  .why-row { grid-template-columns: 1fr; min-height: auto; }
  .why-num { display: none; }
  .why-title-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 20px 14px; }
  .why-body-col { padding: 14px 20px 22px; }
  .why-row:hover .why-title-col { border-bottom-color: rgba(255,255,255,0.08); }

  /* Proof bar: 2×2 */
  .proof-cell { padding: 16px; }
  .proof-val { font-size: 26px; }

  /* CTA */
  .cta-note { font-size: 11px; letter-spacing: 0.04em; }

  /* Footer */
  .footer-right { text-align: left; }
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-badge, .hero h1, .hero-body, .hero-actions, .hero-trust { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section { padding: 100px 48px; background: var(--cream); }
.faq-list { margin-top: 44px; max-width: 840px; }
.faq-item { padding: 26px 0; border-bottom: 1px solid rgba(28,28,28,0.10); }
.faq-item:first-child { border-top: 1px solid rgba(28,28,28,0.10); }
.faq-q {
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.faq-a {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 740px;
}
.faq-a strong { color: var(--text-dark); font-weight: 600; }

@media (max-width: 640px) {
  .faq-section { padding: 64px 24px; }
  .faq-q { font-size: 19px; }
}
