/* ═══════════════════════════════════════════════════════════════════════════
   PROFIX PROFESSIONAL TRAILER REPAIR
   Dark Industrial Aesthetic | Single-Page Business Site
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Barlow:wght@400;600&family=JetBrains+Mono:wght@400&display=swap');

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  --bg:              #0D0E10;
  --surface:         #16181C;
  --surface-2:       #1E2026;
  --border:          #2C2F36;
  --accent:          #FF5C00;
  --accent-dim:      rgba(255, 92, 0, 0.10);
  --text:            #EAE7E0;
  --text-secondary:  #8A8D96;
  --text-muted:      #52555E;

  --font-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:      'Barlow', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, monospace;

  --nav-height: 72px;
  --container-max: 1280px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

address {
  font-style: normal;
}

/* ── Animate base state ───────────────────────────────────────────────────── */
[data-animate] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(24px);
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: #e05200;
  border-color: #e05200;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

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

/* ════════════════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(13, 14, 16, 0.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.nav-logo-wordmark {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  transition: background 0.2s ease;
  text-decoration: none;
}

.nav-cta:hover {
  background: #e05200;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg);
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.012) 2px,
      rgba(255, 255, 255, 0.012) 4px
    );
  z-index: 0;
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}

/* Gradient mask on right image */
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 20%, transparent 60%, var(--bg) 100%),
              linear-gradient(to top, var(--bg) 0%, transparent 30%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: calc(var(--nav-height) + 4rem) clamp(1.25rem, 4vw, 2.5rem) 10rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: calc(var(--container-max));
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-h1-line {
  display: block;
}

.hero-subhead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: calc(4.5rem + 1px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.7;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(13, 14, 16, 0.6);
  backdrop-filter: blur(4px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════════════════
   MARQUEE TICKER
   ════════════════════════════════════════════════════════════════════════════ */
.marquee-wrapper {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0 1.5rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--accent);
  margin-left: 1.5rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--bg);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.services-h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  color: var(--text);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
}

.services-intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  align-self: end;
  padding-bottom: 0.4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.25s ease;
  border-top-width: 3px;
  border-top-color: transparent;
  /* Collapse shared borders */
  margin-top: -1px;
  margin-left: -1px;
}

.service-card:hover {
  border-color: var(--accent);
  border-top-color: var(--accent);
  z-index: 1;
}

.service-card-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.service-card-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.service-card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--surface-2);
  padding-top: 0;
  padding-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 700px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-content {
  padding: var(--section-pad) clamp(1.25rem, 4vw, 2.5rem) var(--section-pad) clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.about-em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.about-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 540px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.about-stat {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.stat-number {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ════════════════════════════════════════════════════════════════════════════
   FLEET
   ════════════════════════════════════════════════════════════════════════════ */
.fleet-section {
  background: var(--surface);
}

.fleet-header {
  margin-bottom: 3rem;
}

.fleet-h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.fleet-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
}

.fleet-card-img-wrap {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-card-img-wrap {
  transform: scale(1.05);
}

.fleet-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,14,16,0.85) 0%, rgba(13,14,16,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.fleet-card-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ════════════════════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--bg);
}

.gallery-header {
  margin-bottom: 3rem;
}

.gallery-h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.gallery-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

/* Caption — always visible at bottom */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(13,14,16,0.92) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}

.gallery-caption-title {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.3;
}

.gallery-caption-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 6, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 6rem;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  flex-shrink: 0;
}

.lightbox-close:hover {
  background: #e05200;
  transform: scale(1.08);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 2rem;
  background: rgba(13, 14, 16, 0.9);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
}

.lightbox-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════════════════════
   BRANDS
   ════════════════════════════════════════════════════════════════════════════ */
.brands-section {
  background: var(--bg);
}

.brands-header {
  margin-bottom: 3rem;
}

.brands-h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.brands-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.brand-cell {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-secondary);
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
  letter-spacing: 0.02em;
  position: relative;
}

.brand-cell::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.brand-cell:hover::after {
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════════════════════
   PROMOTIONS STRIP
   ════════════════════════════════════════════════════════════════════════════ */
.promos-strip {
  background: rgba(255, 92, 0, 0.08);
  border-top: 1px solid rgba(255, 92, 0, 0.3);
  border-bottom: 1px solid rgba(255, 92, 0, 0.3);
  padding: 2.5rem 0;
}

.promos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.promo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.promo-title {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

.promo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.promo-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--surface);
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Contact info */
.contact-location-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-address {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.contact-phone {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-phone:hover {
  color: var(--accent);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-detail-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
}

.contact-detail-key {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-detail-val {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-secondary-loc {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-secondary-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-secondary-addr {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  text-transform: uppercase;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent);
}

.form-select {
  cursor: pointer;
  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='%238A8D96' stroke-width='2' stroke-linecap='square'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-wordmark {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.4rem;
  text-decoration: none;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.footer-est {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-loc {
  margin-bottom: 1.75rem;
}

.footer-loc-name {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.footer-loc-addr {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.4rem;
}

.footer-phone {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.footer-phone:hover {
  color: #e05200;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-powered {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-brws {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-brws:hover {
  color: #e05200;
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    background: rgba(13, 14, 16, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(8px);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-cta {
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
  }

  /* Hero */
  .hero-inner {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 14rem;
  }

  .hero-h1 {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

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

  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .hero-stat:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .hero-stat:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .hero-scroll-indicator {
    bottom: calc(9rem + 1px);
  }

  /* Services */
  .services-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 350px;
  }

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

  /* Fleet */
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Promos */
  .promos-inner {
    gap: 2rem;
  }

  .promo-divider {
    width: 60px;
    height: 1px;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — 375px (small phones)
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 375px) {

  .hero-h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-subhead {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .promos-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .promo-divider {
    width: 60px;
    height: 1px;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .hero-scroll-indicator {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
