/* ================================================================
   ATLAS AUTOMOTIVE REPAIR — Main Stylesheet
   Dark Industrial | Bebas Neue + Source Sans 3
   Amarillo, Texas | Open 24/7
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ──────────────────────────────────────
   DESIGN TOKENS
────────────────────────────────────── */
:root {
  --bg:         #0A0A0A;
  --bg2:        #111111;
  --bg3:        #161616;
  --card:       #1A1A1A;
  --border:     #222222;
  --border-lt:  #2E2E2E;
  --orange:     #E53535;
  --orange-lt:  #EF5050;
  --orange-dim: rgba(229, 53, 53, 0.12);
  --white:      #FFFFFF;
  --gray:       #CCCCCC;
  --muted:      #888888;
  --dim:        #555555;

  --display:    'Bebas Neue', sans-serif;
  --condensed:  'Barlow Condensed', sans-serif;
  --body:       'Barlow', sans-serif;

  --nav-h:      72px;
  --max:        1200px;
  --r:          3px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

/* ──────────────────────────────────────
   RESET
────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: var(--body); }

/* ──────────────────────────────────────
   UTILITIES
────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.section    { padding: 110px 0; }
.section-md { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 76px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

.orange { color: var(--orange); }

/* ──────────────────────────────────────
   BUTTONS
────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 15px 34px;
  border-radius: var(--r);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s var(--ease), border-color 0.18s var(--ease),
              color 0.18s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 1.5px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-lt);
  border-color: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232, 93, 4, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-lt);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-sm { font-size: 14px; letter-spacing: 2px; padding: 10px 22px; }
.btn-ghost {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid rgba(232,93,4,0.35);
  font-size: 14px;
  padding: 10px 22px;
}
.btn-ghost:hover {
  background: var(--orange-dim);
  transform: translateY(-1px);
}

/* ──────────────────────────────────────
   NAVIGATION
────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
/* Logo image — shield clip-path trims white corners on dark bg */
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
  clip-path: polygon(10% 0%, 90% 0%, 100% 14%, 100% 64%, 50% 99%, 0% 64%, 0% 14%);
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 10px rgba(200, 0, 0, 0.55));
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover         { color: var(--white); }
.nav-links a:hover::after  { transform: scaleX(1); }
.nav-links a.active        { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--dim);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--orange); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 201;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.nav.menu-open .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(9, 9, 9, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 36px 28px 48px;
  z-index: 199;
  border-top: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease);
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-mobile a {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.18s, padding-left 0.18s var(--ease);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--orange); padding-left: 10px; }
.nav-mobile .mobile-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-mobile .mobile-cta .btn { width: 100%; justify-content: center; font-size: 18px; padding: 16px; }

/* ──────────────────────────────────────
   HERO — HOME
────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 72% 58%, rgba(232,93,4,0.065) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(232,93,4,0.04) 0%, transparent 60%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
  width: 100%;
}

/* Hero content — sits on top of the full-bleed car image */
.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 3;
}

/* Hero text */
.hero-eyebrow {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 7px;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.65s var(--ease) 0.15s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(110px, 19vw, 240px);
  color: var(--white);
  line-height: 0.85;
  letter-spacing: 6px;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.75s var(--ease) 0.3s forwards;
}
.hero-title-sub {
  font-family: var(--display);
  font-size: clamp(20px, 3.5vw, 40px);
  color: var(--orange);
  letter-spacing: 7px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.65s var(--ease) 0.5s forwards;
}
.hero-tagline {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 400px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.65s var(--ease) 0.65s forwards;
}
.hero-tagline strong { color: var(--gray); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.65s var(--ease) 0.8s forwards;
}

/* Hero visual — full-bleed behind the text */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-logo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Dark overlay + left gradient for text readability */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10,10,10,0.97) 0%,
      rgba(10,10,10,0.90) 28%,
      rgba(10,10,10,0.55) 52%,
      rgba(10,10,10,0.25) 72%,
      rgba(10,10,10,0.1) 100%
    ),
    rgba(10,10,10,0.25);
  z-index: 2;
  pointer-events: none;
}

/* Bottom vignette */
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Car hero photo — Motion handles entrance, parallax & scroll */
.hero-car-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: brightness(0.6);
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
}

/* Logo in nav / footer */
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
  clip-path: polygon(10% 0%, 90% 0%, 100% 14%, 100% 64%, 50% 99%, 0% 64%, 0% 14%);
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 10px rgba(200, 0, 0, 0.55));
  transform: scale(1.04);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.hero-scroll-hint span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--dim);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--orange) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite 2s;
}

/* ──────────────────────────────────────
   TRUST STRIP
────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
  cursor: default;
  user-select: none;
}
.trust-track {
  display: flex;
  width: max-content;
  animation: scrollTrack 28s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 52px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  flex-shrink: 0;
}
.trust-item span {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 3.5px;
  color: var(--gray);
}

/* ──────────────────────────────────────
   SERVICES PREVIEW (HOME)
────────────────────────────────────── */
.services-preview { background: var(--bg); }
.services-header { margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  perspective: 1200px;
}
.service-card {
  background: var(--card);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.22s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover { background: #1e1e1e; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  stroke: var(--orange);
  fill: none;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.services-footer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.services-footer p {
  font-size: 15px;
  color: var(--dim);
}

/* ──────────────────────────────────────
   ABOUT TEASER (HOME)
────────────────────────────────────── */
.about-teaser {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.about-teaser::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(140deg, transparent 40%, rgba(232,93,4,0.04) 100%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: center;
}

/* Photo column */
.about-image-wrap { position: relative; }
.about-image-frame {
  aspect-ratio: 4/5;
  background: var(--card);
  border: 1px solid var(--border-lt);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.about-image-frame svg { width: 72px; height: 72px; stroke: var(--dim); fill: none; }
.about-image-frame span {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--dim);
}
.about-orange-box {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 110px; height: 110px;
  background: var(--orange);
  z-index: 0;
}
.about-stat-pop {
  position: absolute;
  bottom: 28px; left: -28px;
  background: var(--bg);
  border: 1px solid var(--border-lt);
  padding: 18px 24px;
  z-index: 1;
}
.about-stat-pop .num {
  font-family: var(--display);
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.about-stat-pop .lbl {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* Text column */
.about-content h2 { font-size: clamp(38px, 5vw, 62px); margin-bottom: 22px; }
.about-content p  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border-lt);
  padding: 9px 18px;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gray);
  border-radius: var(--r);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
  opacity: 0;
  transform: translateY(10px);
}
.badge.in {
  opacity: 1;
  transform: none;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease),
              opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.badge:hover { border-color: var(--orange); color: var(--white); background: rgba(200,0,0,0.06); }
.badge svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.badge:hover svg { transform: scale(1.25) rotate(-8deg); }

/* ──────────────────────────────────────
   STATS BAR
────────────────────────────────────── */
.stats-bar {
  background: var(--orange);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 52px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 88px);
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-num small {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
}
.stat-lbl {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.68);
  margin-top: 8px;
  display: block;
}

/* ──────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────── */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.review-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.review-source {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg { width: 16px; height: 16px; fill: var(--orange); stroke: none; }
.review-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 19px;
  color: var(--orange);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
  display: block;
}
.review-date { font-size: 12px; color: var(--dim); display: block; margin-top: 2px; }

/* ──────────────────────────────────────
   CTA BANNER
────────────────────────────────────── */
.cta-banner {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'ATLAS';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 360px;
  color: rgba(255,255,255,0.013);
  letter-spacing: 20px;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 { font-size: clamp(40px, 7vw, 88px); margin-bottom: 14px; }
.cta-inner > p { font-size: 18px; color: var(--muted); margin-bottom: 8px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-phone {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 68px);
  color: var(--orange);
  letter-spacing: 5px;
  margin: 28px 0 36px;
  transition: color 0.18s;
}
.cta-phone:hover { color: var(--orange-lt); }
.btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange-lt) 50%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand p { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 280px; }

/* Footer phone CTA */
.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--orange); }
.footer-phone svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; }

/* Social links */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  line-height: 1;
}
.footer-social a::after { display: none; }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); background: rgba(200,0,0,0.08); }
.footer-social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.footer-col h4 {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-col a, .footer-col li {
  font-size: 15px;
  color: var(--muted);
  line-height: 2.4;
  display: block;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--orange); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-row svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; flex-shrink: 0; margin-top: 4px; }
.footer-contact-row span { font-size: 15px; color: var(--muted); line-height: 1.6; }
.footer-contact-row a { color: var(--muted); }
.footer-contact-row a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom span { font-size: 13px; color: var(--dim); }
.footer-bottom a { color: var(--dim); transition: color 0.18s; }
.footer-bottom a:hover { color: var(--orange); }

/* ──────────────────────────────────────
   PAGE HERO (inner pages)
────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 88px) 0 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(232,93,4,0.055) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--dim);
  transition: color 0.18s;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--dim); font-size: 14px; }
.page-hero h1 {
  font-size: clamp(60px, 11vw, 130px);
  line-height: 0.9;
  margin-bottom: 18px;
}
.page-hero .sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ──────────────────────────────────────
   SERVICES PAGE
────────────────────────────────────── */
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-full-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.service-full-card .service-icon { margin-bottom: 24px; }
.service-full-card h3 { font-family: var(--display); font-size: 24px; letter-spacing: 2px; margin-bottom: 12px; }
.service-full-card > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.svc-features { display: flex; flex-direction: column; gap: 7px; }
.svc-features li {
  font-size: 13px;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.svc-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.honest-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 40px 44px;
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.honest-box svg { width: 52px; height: 52px; stroke: var(--orange); fill: none; flex-shrink: 0; }
.honest-box h3 { font-family: var(--display); font-size: 30px; letter-spacing: 2px; margin-bottom: 10px; }
.honest-box p { font-size: 16px; color: var(--muted); margin: 0; line-height: 1.7; }

/* ──────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-photo-col { position: sticky; top: calc(var(--nav-h) + 28px); }
.about-photo-frame {
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.about-photo-frame svg { width: 80px; height: 80px; stroke: var(--border-lt); fill: none; }
.about-photo-frame > span { font-family: var(--display); font-size: 11px; letter-spacing: 4px; color: var(--dim); }
.about-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 100%);
  padding: 40px 28px 28px;
}
.about-photo-overlay .name { font-family: var(--display); font-size: 30px; letter-spacing: 2px; display: block; }
.about-photo-overlay .title { font-family: var(--display); font-size: 11px; letter-spacing: 4px; color: var(--orange); display: block; margin-top: 5px; }

.about-story .section-label { margin-bottom: 16px; }
.about-story h2 { font-size: clamp(38px, 5vw, 58px); margin-bottom: 28px; }
.about-story p { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 22px; }
.about-story p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 68px;
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  color: var(--orange);
}
.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.cert-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}
.cert-item:hover { border-color: var(--orange); }
.cert-item svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; flex-shrink: 0; }
.cert-item span { font-family: var(--display); font-size: 13px; letter-spacing: 2px; color: var(--gray); line-height: 1.3; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 88px;
}
.value-item { background: var(--card); padding: 44px 32px; }
.value-item svg { width: 36px; height: 36px; stroke: var(--orange); fill: none; margin-bottom: 18px; display: block; }
.value-item h3 { font-family: var(--display); font-size: 22px; letter-spacing: 2px; margin-bottom: 12px; }
.value-item p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ──────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-col h2 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 8px; }
.contact-form-col .sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--r);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 10px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: 13px; color: var(--dim); text-align: center; margin-top: 12px; }

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 22px;
}
.contact-info-card h3 { font-family: var(--display); font-size: 22px; letter-spacing: 2px; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail:last-child { margin-bottom: 0; }
.c-icon {
  width: 44px; height: 44px;
  background: var(--orange-dim);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; }
.c-text .lbl { font-family: var(--display); font-size: 10px; letter-spacing: 3px; color: var(--dim); display: block; margin-bottom: 3px; }
.c-text a, .c-text span { font-size: 16px; color: var(--white); display: block; line-height: 1.5; transition: color 0.18s; }
.c-text a:hover { color: var(--orange); }
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(232,93,4,0.1);
  border: 1px solid rgba(232,93,4,0.28);
  padding: 7px 16px;
  border-radius: 100px;
  margin-top: 8px;
}
.avail-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
.availability-badge span { font-family: var(--display); font-size: 12px; letter-spacing: 2.5px; color: var(--orange); }

.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.map-embed:hover { border-color: var(--orange); }
.map-embed svg { width: 40px; height: 40px; stroke: var(--orange); fill: none; }
.map-embed span { font-family: var(--display); font-size: 14px; letter-spacing: 3px; color: var(--muted); }

/* ──────────────────────────────────────
   SCROLL ANIMATIONS
────────────────────────────────────── */
[data-scroll] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-scroll].in { opacity: 1; transform: none; }
[data-scroll="fade"]               { transform: none; }
[data-scroll="fade"].in            { opacity: 1; }
[data-scroll="left"]               { transform: translateX(-32px); }
[data-scroll="left"].in            { opacity: 1; transform: none; }
[data-scroll="right"]              { transform: translateX(32px); }
[data-scroll="right"].in           { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.18s; }
[data-delay="3"] { transition-delay: 0.26s; }
[data-delay="4"] { transition-delay: 0.34s; }
[data-delay="5"] { transition-delay: 0.42s; }
[data-delay="6"] { transition-delay: 0.5s; }

/* ──────────────────────────────────────
   STATEMENT STRIP
────────────────────────────────────── */
.statement-strip {
  padding: 72px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
}
.statement-strip::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}
.statement-text {
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 120px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.13);
  letter-spacing: 12px;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.statement-text .s-accent {
  -webkit-text-stroke: 1.5px rgba(229, 53, 53, 0.45);
}

/* ──────────────────────────────────────
   GRAIN TEXTURE — premium depth
────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ──────────────────────────────────────
   SERVICE CARD EDITORIAL NUMBERS
────────────────────────────────────── */
.services-grid      { counter-reset: svc; }
.service-card       { counter-increment: svc; }
.service-card::before {
  content: counter(svc, decimal-leading-zero);
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--display);
  font-size: 58px;
  color: rgba(255,255,255,0.055);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 1px;
}

/* ──────────────────────────────────────
   MOBILE STICKY CALL BAR
────────────────────────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--orange);
  padding: 14px 20px 18px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid var(--orange-lt);
}
.sticky-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.sticky-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sticky-label {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.75);
  line-height: 1;
}
.sticky-number {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1.1;
}

@media (max-width: 768px) {
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ──────────────────────────────────────
   MICRO-INTERACTIONS
────────────────────────────────────── */

/* Button shimmer sweep on hover */
.btn-primary { overflow: hidden; }
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-150%);
  pointer-events: none;
}
.btn-primary:hover::before { animation: btnShimmer 0.45s ease forwards; }

/* Footer link underline draw */
.footer-col a { position: relative; display: inline-block; }
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--orange);
  transition: width 0.24s var(--ease);
}
.footer-col a:hover::after { width: 100%; }

/* Trust strip item hover */
.trust-item {
  transition: background 0.22s var(--ease);
  cursor: default;
}
.trust-item:hover { background: rgba(200, 0, 0, 0.07); }
.trust-item:hover span { color: var(--white); transition: color 0.22s; }

/* CTA phone — periodic light sweep */
.cta-phone { overflow: hidden; }
.cta-phone::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-15deg);
  animation: phoneShimmer 5s ease-in-out infinite 2s;
  pointer-events: none;
}

/* ──────────────────────────────────────
   KEYFRAMES
────────────────────────────────────── */
@keyframes btnShimmer   { to { transform: translateX(250%); } }
@keyframes phoneShimmer {
  0%, 65%   { left: -60%; opacity: 0; }
  67%       { opacity: 1; }
  88%, 100% { left: 130%; opacity: 0; }
}
@keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { to { opacity: 1; } }
@keyframes drawStroke { to { stroke-dashoffset: 0; } }
@keyframes heroCarReveal {
  0% {
    opacity: 0;
    transform: scale(1.06) translateX(24px);
    filter: brightness(0.4);
  }
  60% {
    filter: brightness(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: brightness(0.6);
  }
}

@keyframes logoUnfurl {
  0% {
    opacity: 0;
    transform: scale(0.72) rotate(-4deg);
    clip-path: polygon(44% 48%, 56% 48%, 58% 52%, 56% 58%, 50% 62%, 44% 58%, 42% 52%);
    filter: drop-shadow(0 0 0px rgba(200, 0, 0, 0));
  }
  25% {
    opacity: 1;
  }
  70% {
    transform: scale(1.04) rotate(0.5deg);
    clip-path: polygon(10% 0%, 90% 0%, 100% 14%, 100% 64%, 50% 99%, 0% 64%, 0% 14%);
    filter: drop-shadow(0 0 60px rgba(200, 0, 0, 0.3));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    clip-path: polygon(10% 0%, 90% 0%, 100% 14%, 100% 64%, 50% 99%, 0% 64%, 0% 14%);
    filter: drop-shadow(0 0 40px rgba(200, 0, 0, 0.18));
  }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.25); }
}
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ──────────────────────────────────────
   REDUCED MOTION
────────────────────────────────────── */
/* Netlify Forms honeypot — must stay hidden */
.bot-field-wrap { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-eyebrow, .hero-title, .hero-title-sub, .hero-tagline,
  .hero-actions, .hero-visual, .hero-car-img { opacity: 1 !important; transform: none !important; animation: none !important; filter: brightness(0.95) !important; }
  [data-scroll] { opacity: 1; transform: none; }
  .trust-track  { animation: none; }
}

/* ──────────────────────────────────────
   RESPONSIVE
────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { min-height: 100svh; padding-top: calc(var(--nav-h) + 40px); }
  .hero-content    { max-width: 100%; }
  .hero-eyebrow, .hero-title, .hero-title-sub { text-align: left; }
  .hero-tagline    { max-width: 100%; }

  .about-grid        { grid-template-columns: 1fr; gap: 56px; }
  .about-story-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-col   { position: static; }

  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.2); }

  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand      { grid-column: 1 / -1; }

  .contact-grid      { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav-links, .nav-phone, .btn-sm { display: none; }
  .nav-burger                     { display: flex; }

  .services-grid, .all-services-grid,
  .testimonials-grid, .certs-grid,
  .values-grid { grid-template-columns: 1fr; }

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

  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  /* Hide nav + services columns — redundant on mobile, hamburger covers them */
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) { display: none; }
  .footer-bottom  { flex-direction: column; text-align: center; }

  .honest-box  { flex-direction: column; gap: 18px; padding: 32px; }
  .form-row    { grid-template-columns: 1fr; }

  .about-stat-pop { left: 0; }
  .about-orange-box { display: none; }
}

@media (max-width: 480px) {
  .hero-title    { font-size: clamp(72px, 20vw, 100px); }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .btn-group     { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}
