:root {
  --ink: #05080a;
  --ink-2: #0a0f12;
  --panel: rgba(6, 10, 12, 0.88);
  --panel-soft: rgba(15, 22, 25, 0.72);
  --line: rgba(226, 172, 68, 0.45);
  --gold: #e2ac44;
  --gold-bright: #f4c65d;
  --cream: #fff7e5;
  --muted: #b9c3c8;
  --steel: #84a6b1;
  --teal: #2f8f8a;
  --danger: #b96c50;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 4%, rgba(226, 172, 68, 0.1), transparent 30rem),
    linear-gradient(180deg, #040708 0%, #091013 44%, #050708 100%);
  color: var(--cream);
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 7, 8, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(1.15);
}

.nav {
  width: min(100%, 1540px);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  position: relative;
  display: grid;
  gap: 2px;
  min-width: 250px;
}

.brand-logo {
  width: 246px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 206px;
  height: 20px;
  margin-left: 2px;
  background:
    radial-gradient(110px 22px at 60% 100%, transparent 52%, var(--gold) 55%, transparent 58%),
    radial-gradient(132px 26px at 42% 106%, transparent 50%, var(--gold-bright) 52%, transparent 55%);
  opacity: 0.96;
}

.brand-name {
  display: block;
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-name span {
  color: var(--gold);
}

.brand-name small {
  font-size: 0.5em;
  margin-left: 2px;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.nav-links a {
  position: relative;
  color: #f5f3ea;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg,
.footer-links svg {
  width: 20px;
  height: 20px;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(226, 172, 68, 0.08);
  color: var(--gold-bright);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.icon-button:hover,
.icon-button:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 44px;
  min-width: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.78rem 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-gold {
  color: #12100a;
  background: linear-gradient(180deg, #f7cf69 0%, #d79b2f 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button-dark,
.button-outline {
  color: var(--cream);
  border-color: var(--line);
  background: rgba(3, 8, 10, 0.74);
}

.button-outline {
  color: var(--gold-bright);
}

.google-g {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  color: white;
  font-weight: 900;
  font-family: Arial, sans-serif;
  text-transform: none;
}

.hero {
  position: relative;
  min-height: clamp(650px, 72vh, 790px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 92px clamp(20px, 5vw, 80px) 70px;
  border-bottom: 1px solid rgba(226, 172, 68, 0.24);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image:
    linear-gradient(180deg, rgba(3, 5, 6, 0.82) 0%, rgba(3, 5, 6, 0.12) 19%, transparent 42%, rgba(3, 5, 6, 0.18) 100%),
    linear-gradient(90deg, rgba(3, 5, 6, 0.04) 0%, rgba(3, 5, 6, 0.08) 12%, transparent 42%, rgba(3, 5, 6, 0.04) 100%),
    url("assets/sandy-suv-hero-2026.png"),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Pittsburgh_skyline_panorama_at_night.jpg/1280px-Pittsburgh_skyline_panorama_at_night.jpg");
  background-image:
    linear-gradient(180deg, rgba(3, 5, 6, 0.82) 0%, rgba(3, 5, 6, 0.12) 19%, transparent 42%, rgba(3, 5, 6, 0.18) 100%),
    linear-gradient(90deg, rgba(3, 5, 6, 0.04) 0%, rgba(3, 5, 6, 0.08) 12%, transparent 42%, rgba(3, 5, 6, 0.04) 100%),
    image-set(url("assets/sandy-suv-hero-2026.webp") type("image/webp"), url("assets/sandy-suv-hero-2026.png") type("image/png")),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Pittsburgh_skyline_panorama_at_night.jpg/1280px-Pittsburgh_skyline_panorama_at_night.jpg");
  background-position: center, center, right center, center 46%;
  background-size: cover, cover, auto 100%, cover;
  background-repeat: no-repeat;
  filter: saturate(0.95) contrast(1.08);
  opacity: 0.94;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 5, 6, 0.96) 0%, rgba(3, 7, 8, 0.82) 30%, rgba(4, 8, 10, 0.12) 65%, rgba(3, 5, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 7, 8, 0.02), rgba(4, 7, 8, 0.76));
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.panel h2 {
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5.3vw, 5.65rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
  color: var(--gold-bright);
}

.hero-copy {
  max-width: 610px;
  margin: 20px 0 0;
  color: #f8f2e6;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 32px 0 30px;
  overflow: hidden;
  border: 1px solid rgba(226, 172, 68, 0.38);
  border-radius: 8px;
  background: rgba(226, 172, 68, 0.38);
}

.trust-row div {
  min-height: 96px;
  padding: 16px 18px;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  background: rgba(4, 8, 9, 0.66);
  backdrop-filter: blur(8px);
}

.trust-row svg {
  width: 34px;
  height: 34px;
  color: var(--gold-bright);
}

.trust-row span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 80px);
  bottom: 56px;
  width: min(230px, calc(100% - 40px));
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 7, 8, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-stats::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 8px 0 0 8px;
  background: var(--gold-bright);
}

.hero-stats div + div {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 172, 68, 0.22);
}

.stat-number {
  display: block;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats p {
  margin: 12px 0 0;
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
}

.service-strip {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border-bottom: 1px solid rgba(226, 172, 68, 0.26);
  background: rgba(226, 172, 68, 0.18);
}

.service-strip div {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f9f3e7;
  background: rgba(4, 8, 9, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.service-strip svg {
  width: 22px;
  height: 22px;
  color: var(--gold-bright);
}

.section {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 68px clamp(20px, 3.5vw, 44px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.services-shell {
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 2px 0 12px;
}

.service-card {
  min-height: 238px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 18px;
  background:
    linear-gradient(180deg, rgba(18, 27, 30, 0.8), rgba(4, 8, 9, 0.92)),
    radial-gradient(circle at top, rgba(47, 143, 138, 0.2), transparent 14rem);
  text-align: center;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  border-color: rgba(244, 198, 93, 0.82);
  background:
    linear-gradient(180deg, rgba(25, 38, 41, 0.9), rgba(5, 10, 11, 0.94)),
    radial-gradient(circle at top, rgba(47, 143, 138, 0.22), transparent 14rem);
  transform: translateY(-3px);
}

.service-card svg {
  width: 38px;
  height: 38px;
  color: var(--gold-bright);
  stroke-width: 1.8;
}

.service-card h3 {
  min-height: 2.5em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #d6dddf;
  font-size: 0.86rem;
}

.service-card a {
  margin-top: auto;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card a::after {
  content: " ->";
}

.category-card {
  min-height: 260px;
}

.category-card p {
  max-width: 24rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) minmax(320px, 1.05fr);
  gap: 16px;
  align-items: stretch;
}

.review-panel,
.about-panel {
  align-self: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 2.5vw, 34px);
  background: linear-gradient(180deg, rgba(15, 24, 27, 0.78), rgba(4, 8, 9, 0.92));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.review-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.stars {
  margin: 2px 0 10px;
  color: var(--gold-bright);
  display: flex;
  gap: 4px;
}

.stars svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke-width: 1.4;
}

blockquote {
  margin: 0;
  color: #f8f3ea;
}

cite {
  margin: 14px 0 22px;
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 800;
}

.review-list {
  width: 100%;
  margin: 0 0 24px;
  border-top: 1px solid rgba(226, 172, 68, 0.24);
}

.review-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(226, 172, 68, 0.18);
}

.review-item blockquote {
  font-size: 0.94rem;
  line-height: 1.5;
}

.review-item cite {
  display: block;
  margin: 14px 0 0;
  font-size: 0.8rem;
}

.about-panel h2,
.booking-panel h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
}

.about-panel-media {
  width: 100%;
  min-height: 160px;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 157, 31, 0.3);
  background:
    linear-gradient(90deg, rgba(3, 8, 10, 0.12), rgba(3, 8, 10, 0.02)),
    url("assets/pittsburgh-riverfront.jpg") center center / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(3, 8, 10, 0.12), rgba(3, 8, 10, 0.02)),
    image-set(url("assets/pittsburgh-riverfront.webp") type("image/webp"), url("assets/pittsburgh-riverfront.jpg") type("image/jpeg")) center center / cover no-repeat;
}

.about-panel p,
.area-list p,
.faq-grid p {
  color: #dce4e6;
}

.check-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7f2e6;
}

.check-list svg {
  width: 19px;
  height: 19px;
  color: var(--gold-bright);
  flex: 0 0 auto;
}

.ride-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ride-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ride-form label:nth-of-type(3),
.ride-form label:nth-of-type(4),
.ride-form button {
  grid-column: 1 / -1;
}

.ride-form input,
.ride-form select,
.ride-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(226, 172, 68, 0.28);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(3, 7, 8, 0.82);
  color: var(--cream);
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ride-form input:focus,
.ride-form select:focus,
.ride-form textarea:focus {
  outline: 2px solid rgba(244, 198, 93, 0.48);
  outline-offset: 2px;
  border-color: rgba(244, 198, 93, 0.78);
  background: rgba(8, 15, 16, 0.94);
  box-shadow: 0 0 0 4px rgba(244, 198, 93, 0.08);
}

.area-section {
  border-top: 1px solid rgba(226, 172, 68, 0.18);
}

.area-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
}

.map-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(4, 8, 10, 0.04), rgba(4, 8, 10, 0.16)),
    url("assets/pittsburgh-service-area-map.webp") center center / cover no-repeat;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.area-list strong {
  color: white;
  font-size: 1.1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

details {
  border: 1px solid rgba(226, 172, 68, 0.34);
  border-radius: 8px;
  padding: 18px;
  background: rgba(8, 14, 16, 0.82);
}

summary {
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
}

summary::marker {
  color: var(--gold-bright);
}

details p {
  margin-bottom: 0;
}

.site-footer {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 34px clamp(20px, 3.5vw, 44px) 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 18px 28px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f7f2e6;
}

.footer-links svg {
  color: var(--gold-bright);
}

.photo-credit {
  grid-column: 1 / -1;
  margin: 0;
  color: #87959a;
  font-size: 0.78rem;
  text-align: right;
}

.footer-logo {
  width: 240px;
  height: auto;
}

.page-body {
  background: linear-gradient(180deg, #040708 0%, #091013 48%, #050708 100%);
}

.page-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 86px clamp(20px, 5vw, 80px) 72px;
  border-bottom: 1px solid rgba(226, 172, 68, 0.25);
}

.page-hero-short {
  min-height: 390px;
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media {
  background-image:
    linear-gradient(180deg, rgba(3, 5, 6, 0.1), rgba(3, 5, 6, 0.84)),
    linear-gradient(90deg, rgba(3, 5, 6, 0.92), rgba(3, 5, 6, 0.4) 50%, rgba(3, 5, 6, 0.24)),
    url("assets/sandy-suv-hero-2026.png"),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Pittsburgh_skyline_panorama_at_night.jpg/1280px-Pittsburgh_skyline_panorama_at_night.jpg");
  background-image:
    linear-gradient(180deg, rgba(3, 5, 6, 0.1), rgba(3, 5, 6, 0.84)),
    linear-gradient(90deg, rgba(3, 5, 6, 0.92), rgba(3, 5, 6, 0.4) 50%, rgba(3, 5, 6, 0.24)),
    image-set(url("assets/sandy-suv-hero-2026.webp") type("image/webp"), url("assets/sandy-suv-hero-2026.png") type("image/png")),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Pittsburgh_skyline_panorama_at_night.jpg/1280px-Pittsburgh_skyline_panorama_at_night.jpg");
  background-position: center, center, right center, center 46%;
  background-size: cover, cover, auto 100%, cover;
  background-repeat: no-repeat;
  filter: saturate(0.96) contrast(1.05);
}

.page-hero-overlay {
  background: linear-gradient(90deg, rgba(2, 5, 6, 0.3), transparent 65%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.page-hero-content h1 {
  max-width: 760px;
  margin: 8px 0 16px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.96;
  text-wrap: balance;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  color: #f8f2e6;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.gallery-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.9), rgba(3, 5, 6, 0.32) 56%, rgba(3, 5, 6, 0.18)),
    linear-gradient(180deg, rgba(3, 5, 6, 0.18), rgba(3, 5, 6, 0.78)),
    url("assets/suv-side.jpeg") center 58% / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.9), rgba(3, 5, 6, 0.32) 56%, rgba(3, 5, 6, 0.18)),
    linear-gradient(180deg, rgba(3, 5, 6, 0.18), rgba(3, 5, 6, 0.78)),
    image-set(url("assets/suv-side.webp") type("image/webp"), url("assets/suv-side.jpeg") type("image/jpeg")) center 58% / cover no-repeat;
  filter: saturate(0.92) contrast(1.03);
}

.gallery-section {
  border-top: 1px solid rgba(226, 172, 68, 0.18);
}

.gallery-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.gallery-intro h2,
.vehicle-details h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 1.03;
  text-wrap: balance;
}

.gallery-intro p:last-child {
  max-width: 680px;
  color: #dce4e6;
  font-size: 1.04rem;
}

.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vehicle-gallery figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.vehicle-gallery figure:first-child {
  grid-row: span 2;
  min-height: 656px;
}

.vehicle-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 300ms ease;
}

.vehicle-gallery picture {
  display: block;
  height: 100%;
  min-height: inherit;
}

.vehicle-gallery figure:hover img {
  transform: scale(1.025);
}

.vehicle-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  color: var(--cream);
  background: rgba(3, 7, 8, 0.78);
  border-left: 2px solid var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vehicle-details {
  border-top: 1px solid rgba(226, 172, 68, 0.18);
}

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-section,
.about-story,
.values-section,
.quote-section,
.faq-page,
.contact-section,
.centered-cta {
  border-top: 1px solid rgba(226, 172, 68, 0.18);
}

.detail-grid,
.about-story-grid,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.detail-copy {
  max-width: 720px;
  color: #dce4e6;
  font-size: 1.06rem;
}

.detail-copy p:first-child {
  margin-top: 0;
}

.service-list-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(15, 24, 27, 0.84), rgba(4, 8, 9, 0.94));
}

.service-list-panel h3 {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.service-checks {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #f7f2e6;
}

.service-checks svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.form-section {
  border-top: 1px solid rgba(226, 172, 68, 0.18);
}

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

.form-section-heading h2,
.contact-intro h2,
.about-story h2,
.centered-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 1.03;
  text-wrap: balance;
}

.form-section-heading p:last-child,
.contact-intro > p {
  color: #dce4e6;
}

.full-form {
  max-width: 980px;
  margin: 0;
}

.ride-form label:nth-of-type(3),
.ride-form label:nth-of-type(4) {
  grid-column: auto;
}

.ride-form label:nth-of-type(9),
.ride-form label:nth-of-type(10),
.ride-form.full-form button {
  grid-column: 1 / -1;
}

.text-link {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(244, 198, 93, 0.55);
  text-underline-offset: 3px;
}

.about-story-grid {
  align-items: start;
}

.about-story-grid > div:first-child p:not(.eyebrow) {
  max-width: 760px;
  color: #dce4e6;
  font-size: 1.04rem;
}

.about-facts {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.about-facts div {
  padding: 24px;
  background: rgba(8, 14, 16, 0.9);
}

.about-facts .stat-number {
  font-size: 2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-grid .panel {
  min-height: 190px;
}

.value-grid svg {
  width: 32px;
  height: 32px;
  color: var(--gold-bright);
}

.value-grid h3 {
  margin-bottom: 6px;
  color: white;
  text-transform: uppercase;
}

.value-grid p {
  margin: 0;
  color: #dce4e6;
}

.quote-section .review-panel {
  max-width: 720px;
  margin: 0 auto;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-page-grid details {
  min-height: 110px;
}

.faq-page-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
}

.centered-cta {
  text-align: center;
}

.centered-cta .eyebrow {
  margin-bottom: 8px;
}

.centered-cta .button {
  margin-top: 22px;
}

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

.contact-intro {
  max-width: 600px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f7f2e6;
}

.contact-methods svg {
  width: 24px;
  height: 24px;
  color: var(--gold-bright);
}

.contact-methods span {
  display: grid;
  gap: 2px;
}

.contact-methods strong {
  color: var(--gold-bright);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-form {
  max-width: none;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 24, 27, 0.84), rgba(4, 8, 9, 0.94));
}

@media (max-width: 1380px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    background: rgba(4, 7, 8, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links {
    top: 96px;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .nav-links a::after {
    bottom: 4px;
    right: auto;
    width: 80px;
  }

  .nav-actions {
    top: 388px;
    padding: 16px;
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .nav-actions .button,
  .nav-actions .phone-link {
    flex: 1 1 220px;
  }

  .nav-actions .icon-button {
    flex: 0 0 44px;
  }

  body.menu-open .nav-links,
  body.menu-open .nav-actions {
    display: flex;
  }

  .hero {
    min-height: 710px;
  }

  .hero::after {
    width: 52vw;
    height: 34vw;
    right: -4vw;
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .booking-panel {
    grid-column: 1 / -1;
  }

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

@media (max-width: 820px) {
  .nav {
    min-height: 76px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 194px;
    max-height: 58px;
  }

  .brand-mark {
    width: 158px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tag {
    font-size: 0.58rem;
  }

  .hero {
    min-height: auto;
    padding: 62px 20px 260px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 5, 6, 0.92) 0%, rgba(3, 7, 8, 0.76) 45%, rgba(4, 8, 10, 0.92) 100%);
  }

  .hero-media,
  .page-hero-media {
    background-position: center, center, right center, center 46%;
    background-size: cover, cover, auto 100%, cover;
  }

  .gallery-hero-media {
    background-position: 68% center;
    background-size: cover;
  }

  .hero::after {
    left: 50%;
    right: auto;
    bottom: 26px;
    width: min(92vw, 560px);
    height: 206px;
    transform: translateX(-50%);
  }

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

  .trust-row div {
    min-height: 74px;
  }

  .hero-stats {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-stats div + div {
    margin: 0;
    padding: 0 0 0 12px;
    border-top: 0;
    border-left: 1px solid rgba(226, 172, 68, 0.22);
  }

  .hero-stats p {
    grid-column: 1 / -1;
    margin: 2px 0 0;
  }

  .service-strip,
  .section-heading,
  .area-content,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-strip {
    padding: 0;
  }

  .service-strip div {
    justify-content: flex-start;
    padding: 12px 20px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    grid-column: auto;
  }

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

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

  .footer-links {
    justify-content: start;
  }

  .photo-credit {
    text-align: left;
  }

  .page-hero {
    min-height: 430px;
    padding: 64px 20px 48px;
  }

  .page-hero-short {
    min-height: 350px;
  }

  .page-hero-content h1 {
    font-size: 2.75rem;
  }

  .detail-grid,
  .about-story-grid,
  .contact-section,
  .vehicle-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .vehicle-gallery figure,
  .vehicle-gallery figure:first-child {
    min-height: 300px;
    grid-row: auto;
  }

  .about-panel-media {
    min-height: 180px;
  }

  .value-grid,
  .faq-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 84vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
