* {
  box-sizing: border-box;
}

:root {
  --bg: #07090d;
  --bg-soft: #0d111a;
  --panel: rgba(18, 23, 34, 0.78);
  --panel-solid: #121722;
  --text: #f5f7fb;
  --muted: #b2bac8;
  --muted-2: #818b9b;
  --red: #d4202a;
  --red-dark: #9f1119;
  --gold: #c9a14a;
  --blue: #2f7de1;
  --line: rgba(255,255,255,0.12);
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 78% 16%, rgba(47, 125, 225, 0.17), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(212, 32, 42, 0.18), transparent 32%),
    linear-gradient(180deg, #06080c 0%, #0a0d13 54%, #07090d 100%);
  color: var(--text);
}

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

button, input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(5, 7, 11, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #d8dde7;
}

.main-nav a {
  opacity: 0.94;
  transition: 180ms ease;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.13);
  border: 1px solid rgba(255,255,255,0.08);
}

.main-nav a:hover {
  opacity: 1;
  color: #ffffff;
  background: rgba(47,125,225,0.26);
  border-color: rgba(47,125,225,0.42);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.lang {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(148, 163, 184, 0.13);
  color: var(--muted);
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
}

.lang.active {
  color: #ffffff;
  background: rgba(47,125,225,0.28);
  border-color: rgba(47,125,225,0.46);
}

.lang-divider,
.location {
  color: var(--muted-2);
}

.phone {
  color: #ffffff;
}

.appointment,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(212,32,42,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}

.menu-toggle {
  display: none;
  background: #171c27;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
}

.hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: clamp(34px, 6vw, 80px) clamp(18px, 4vw, 58px) 54px;
  overflow: hidden;
}

.hero-grid {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: clamp(22px, 4vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(27px, 3.45vw, 48px);
  line-height: 1.17;
  letter-spacing: -0.015em;
  text-transform: none;
  max-width: 780px;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 760px;
  color: #cbd1dc;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  margin: 18px 0 26px;
}

.search-panel {
  max-width: 780px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: block;
  color: #f8fafc;
  font-weight: 850;
  margin-bottom: 12px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-row input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.34);
  color: #ffffff;
  border-radius: 15px;
  padding: 0 16px;
  outline: none;
}

.search-row input:focus {
  border-color: rgba(47,125,225,0.72);
  box-shadow: 0 0 0 4px rgba(47,125,225,0.14);
}

.search-row button {
  border: 0;
  border-radius: 15px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
  padding: 0 22px;
  cursor: pointer;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.quick-tags button {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #dbe1ea;
  border-radius: 999px;
  padding: 8px 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.055);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 50%, rgba(47,125,225,0.16), transparent 42%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.05), transparent 58%),
    conic-gradient(from 110deg, transparent, rgba(201,161,74,0.14), transparent, rgba(212,32,42,0.16), transparent);
  filter: blur(2px);
}

.blue-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.95;
}

.video-card {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
}

.video-preview {
  position: relative;
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.68)),
    radial-gradient(circle at 24% 20%, rgba(47,125,225,0.38), transparent 28%),
    radial-gradient(circle at 76% 18%, rgba(212,32,42,0.30), transparent 26%),
    linear-gradient(135deg, #0f1724 0%, #111927 36%, #220f14 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.40);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 42%, rgba(0,0,0,0.65) 100%),
    radial-gradient(circle at 18% 72%, rgba(255,255,255,0.07), transparent 15%),
    radial-gradient(circle at 74% 28%, rgba(255,255,255,0.05), transparent 18%);
  pointer-events: none;
}

.play-button {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 0;
  background: rgba(212,32,42,0.92);
  color: white;
  font-size: 30px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(212,32,42,0.32);
}

.video-overlay-copy {
  position: relative;
  z-index: 1;
  max-width: 550px;
}

.video-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #dce3ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-overlay-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
}

.video-overlay-copy p {
  margin: 0;
  color: #d3d9e3;
  line-height: 1.6;
  font-size: 17px;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.video-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #dce3ee;
  font-size: 13px;
  font-weight: 800;
}

.feature-strip,
.services-section,
.clips-section,
.gallery-section,
.before-drive,
.booking-band,
.placeholder-section {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 0 74px;
}

.feature-card,
.clip-card,
.checklist-card,
.placeholder-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 22px;
  transition: 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,161,74,0.45);
}

.feature-card span {
  color: var(--blue);
  font-weight: 950;
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.feature-card p,
.clip-card p,
.before-copy p,
.booking-band p,
.placeholder-section p {
  color: var(--muted);
  line-height: 1.55;
}

.clips-section {
  padding: 38px 0 76px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.section-heading h2,
.before-drive h2,
.booking-band h2,
.placeholder-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.clip-card {
  overflow: hidden;
}

.clip-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.clip-card h3 {
  margin: 18px 18px 8px;
  font-size: 20px;
}

.clip-card p {
  margin: 0 18px 20px;
}

.before-drive {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
  padding: 20px 0 78px;
}

.before-copy {
  padding: clamp(26px, 4vw, 54px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47,125,225,0.18), rgba(212,32,42,0.13)),
    rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.before-copy .primary-btn {
  margin-top: 12px;
}

.checklist-card {
  padding: clamp(24px, 4vw, 44px);
}

.checklist-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

.checklist-card ul {
  margin: 0;
  padding-left: 22px;
  color: #dbe1ea;
  line-height: 1.95;
  font-size: 17px;
}

.booking-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  margin-bottom: 38px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(212,32,42,0.24), rgba(47,125,225,0.18)),
    rgba(255,255,255,0.055);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.placeholder-section {
  padding: 34px;
  margin-bottom: 28px;
}

.site-footer {
  width: min(1480px, calc(100% - 36px));
  margin: 34px auto 0;
  padding: 30px 0 48px;
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.site-footer strong {
  color: white;
  font-size: 18px;
}

.site-footer p {
  margin: 4px 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: rgba(8,11,17,0.96);
    border: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .location {
    display: none;
  }

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

  .hero-visual {
    min-height: 440px;
  }

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

  .before-drive,
  .booking-band {
    grid-template-columns: 1fr;
  }

  .booking-band {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    padding: 9px 14px;
    gap: 10px;
  }

  .brand {
    width: 62px;
    height: 62px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .main-nav {
    top: 76px;
  }

  .phone {
    display: none;
  }

  .appointment {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

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

  .search-row button {
    min-height: 48px;
  }

  .hero-visual {
    min-height: 320px;
    padding: 14px;
  }

  .video-preview {
    min-height: 300px;
    padding: 18px;
  }

  .play-button {
    width: 62px;
    height: 62px;
    font-size: 24px;
    top: 18px;
    left: 18px;
  }

  .video-overlay-copy h3 {
    font-size: 24px;
  }

  .video-overlay-copy p {
    font-size: 15px;
  }

  .feature-strip,
  .clip-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
  }
}


.gallery-section {
  padding: 22px 0 76px;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47,125,225,0.42);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.gallery-card h3 {
  margin: 16px 18px 18px;
  font-size: 19px;
}



.services-section {
  padding: 16px 0 76px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(121,212,255,0.56);
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(121,212,255,0.18);
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-card-wide {
  grid-column: span 2;
}


.roadtrip-section {
  align-items: stretch;
}

.roadtrip-video-card {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.roadtrip-video-preview {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.70)),
    radial-gradient(circle at 22% 20%, rgba(47,125,225,0.36), transparent 30%),
    radial-gradient(circle at 82% 26%, rgba(212,32,42,0.22), transparent 28%),
    linear-gradient(135deg, #101927 0%, #162236 46%, #231016 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.roadtrip-video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 42%, rgba(0,0,0,0.62) 100%),
    radial-gradient(circle at 18% 72%, rgba(255,255,255,0.07), transparent 15%),
    radial-gradient(circle at 74% 28%, rgba(255,255,255,0.05), transparent 18%);
  pointer-events: none;
}

.roadtrip-play {
  top: 26px;
  left: 26px;
}

.roadtrip-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.roadtrip-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #dce3ee;
  font-size: 13px;
  font-weight: 800;
}

.roadtrip-checks span::before {
  content: "✓";
  color: var(--gold);
  margin-right: 7px;
  font-weight: 950;
}
