*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { background: #0d0d0d; color: #f0ede8; font-family: 'Barlow', sans-serif; overflow-x: clip; }
::selection { background: #bf0000; color: #fff; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191,0,0,0.2);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0ede8;
}
.accent { color: #bf0000; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-link:hover { color: #f0ede8; }
.nav-cta {
  background: #bf0000;
  color: #fff;
  padding: 10px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-cta:hover { background: #e00000; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(120,0,0,0.18) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  animation: fadeUp 0.9s ease both;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.eyebrow-bar { width: 36px; height: 2px; background: #bf0000; }
.eyebrow-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #bf0000;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(72px, 7.5vw, 118px);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #f0ede8;
  margin-bottom: 6px;
}
.hero-name.accent { margin-bottom: 40px; }
.hero-lede {
  font-size: 17px;
  font-weight: 300;
  color: #999;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-solid {
  background: #bf0000;
  color: #fff;
  padding: 15px 38px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-solid:hover { background: #e00000; }
.btn-outline {
  border: 1px solid rgba(240,237,232,0.2);
  color: #f0ede8;
  padding: 15px 38px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-outline:hover { border-color: rgba(240,237,232,0.5); }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stat {
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; border-right: none; }
.hero-stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #f0ede8;
  line-height: 1;
}
.hero-stat-value.accent { color: #bf0000; }
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #444;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: calc(100vh - 68px);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: fadeIn 1.2s ease both;
}
.hero-photo-fade-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0d0d0d 0%, transparent 28%);
}
.hero-photo-fade-y {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0d0d0d 0%, transparent 18%);
}

/* ═══ SECTION SHARED ═══ */
.section { padding: 96px 80px; background: #0d0d0d; }
.section-alt { padding: 96px 80px; background: #111; }
.section-inner { max-width: 1360px; margin: 0 auto; }
.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  color: #f0ede8;
  margin-bottom: 56px;
  line-height: 0.92;
}
.section-heading.tight { margin-bottom: 28px; }

/* ═══ SERVICES ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.service-card {
  background: #161616;
  padding: 40px 28px 44px;
  border-top: 3px solid rgba(255,255,255,0.05);
}
.service-card.is-first { border-top-color: #bf0000; }
.service-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #bf0000;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 22px;
}
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f0ede8;
  margin-bottom: 14px;
  line-height: 1.1;
}
.service-desc { font-size: 14px; line-height: 1.75; color: #666; font-weight: 300; }

/* ═══ VIDEO ═══ */
.video-section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.video-copy-desc { font-size: 15px; font-weight: 300; color: #666; line-height: 1.75; text-wrap: pretty; }
.video-widget {
  background: #0d0d0d;
  border: 1px solid rgba(191,0,0,0.15);
  overflow: hidden;
}
.video-widget-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-widget-dot { width: 8px; height: 8px; border-radius: 50%; background: #bf0000; }
.video-widget-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #555;
  text-transform: uppercase;
}
.video-frame { position: relative; aspect-ratio: 16/9; background: #0a0a0a; }
.video-frame video { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  pointer-events: none;
}
.video-placeholder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(191,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.video-placeholder-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 28px;
  border-color: transparent transparent transparent #bf0000;
  margin-left: 6px;
}
.video-placeholder-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: #444;
  text-transform: uppercase;
  font-weight: 600;
}
.video-placeholder-hint { font-size: 12px; color: #333; margin-top: 8px; letter-spacing: 0.06em; }

/* ═══ CONTACT ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-copy-desc { font-size: 16px; font-weight: 300; color: #666; line-height: 1.75; max-width: 380px; text-wrap: pretty; }
.contact-cards { display: flex; flex-direction: column; gap: 3px; }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 32px;
  background: #161616;
  border-left: 3px solid rgba(255,255,255,0.04);
  text-decoration: none;
}
.contact-card.is-link:hover { background: #1c1c1c; }
.contact-card.is-phone { border-left-color: #bf0000; }
.contact-card.is-email:hover { border-left-color: #bf0000; }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #f0ede8;
  letter-spacing: 0.02em;
}
.contact-value.is-email { font-size: 22px; }
.contact-value.is-dealership { font-size: 24px; }
.contact-sub { font-size: 13px; color: #555; margin-top: 5px; letter-spacing: 0.04em; }
.contact-action {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}
.contact-action.accent { color: #bf0000; }

/* ═══ FOOTER ═══ */
.footer {
  padding: 28px 80px;
  background: #090909;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0ede8;
}
.footer-meta { font-size: 12px; color: #333; letter-spacing: 0.07em; }

/* ═══ NAV TOGGLE (hidden on desktop) ═══ */
.nav-toggle { display: none; }
.nav-drawer { display: none; }

/* ═══ TABLET (≤ 1024px) ═══ */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .section, .section-alt { padding: 80px 48px; }
  .footer { padding: 28px 48px; }
  .hero-content { padding: 60px 40px 60px 48px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { gap: 48px; }
}

/* ═══ HERO STACK (≤ 900px) ═══ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 60px 48px 48px;
    order: 1;
  }
  .hero-photo {
    order: 2;
    min-height: unset;
    height: 70vw;
  }
  .hero-photo-fade-x { display: none; }
  .hero-photo-fade-y {
    background: linear-gradient(to top, #0d0d0d 0%, transparent 30%);
  }
}

/* ═══ MOBILE (≤ 767px) ═══ */
@media (max-width: 767px) {
  /* Nav */
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f0ede8;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-drawer {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(191,0,0,0.2);
    flex-direction: column;
    padding: 8px 20px 24px;
    z-index: 99;
  }
  .nav-drawer.is-open { display: flex; }
  .nav-drawer-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 0.18em;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-drawer-link:hover { color: #f0ede8; }
  .nav-drawer-cta {
    display: block;
    margin-top: 16px;
    background: #bf0000;
    color: #fff;
    padding: 15px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
  }

  /* Hero */
  .hero-content { padding: 48px 20px 40px; }
  .hero-name { font-size: clamp(48px, 14vw, 72px); }
  .hero-photo { min-height: unset; height: 80vw; }
  .hero-lede { font-size: 15px; margin-bottom: 36px; }
  .section-heading { font-size: clamp(34px, 9vw, 44px); }
  .hero-stats { margin-top: 36px; padding-top: 24px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-value { font-size: 26px; }

  /* Sections */
  .section, .section-alt { padding: 56px 20px; }
  .footer { padding: 24px 20px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px 36px; }

  /* Video */
  .video-section-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-value { font-size: 24px; }
  .contact-value.is-email { font-size: 15px; letter-spacing: 0; }
  .contact-value.is-dealership { font-size: 20px; }
  .contact-card { padding: 22px 20px; }
  .contact-copy-desc { max-width: 100%; }

  /* Buttons */
  .hero-actions { gap: 10px; }
  .btn-solid, .btn-outline { padding: 13px 28px; font-size: 14px; }
}
