*, *::before, *::after { box-sizing: border-box; }
:root {
  --site-scale: 1.15;
  --site-scale-inverse: .869565;
  --red: #c7081b;
  --red-dark: #970514;
  --red-hot: #df1728;
  --black: #080808;
  --ink: #171717;
  --panel: #202020;
  --paper: #f6f5f1;
  --white: #fff;
  --text: #292929;
  --muted: #686868;
  --line: #dedbd3;
  --shadow-soft: 0 18px 50px rgba(8, 8, 8, .12);
  --shadow-hard: 0 28px 70px rgba(8, 8, 8, .34);
  --ease-out: cubic-bezier(.2, .75, .24, 1);
  --icon-red-filter: invert(12%) sepia(96%) saturate(4896%) hue-rotate(346deg) brightness(87%) contrast(103%);
  --icon-white-filter: invert(100%);
  --display: "Bebas Neue", Impact, sans-serif;
  --condensed: "Barlow Condensed", Arial, sans-serif;
  --body: "Barlow", Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  font-family: var(--body);
  zoom: var(--site-scale);
  color: #e9e9e9;
  background:
    radial-gradient(circle at 18% 0%, rgba(199, 8, 27, .12), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #111 48%, #050505 100%);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 500;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { left: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}
.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  padding: 7px clamp(18px, 4vw, 46px);
  background: var(--black);
  color: #d0d0d0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.topbar a, .site-nav a, .brand, .button, .text-link { text-decoration: none; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; }
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  object-fit: contain;
}
.icon-inline {
  width: 10px;
  height: 10px;
  filter: var(--icon-red-filter);
}
.topbar a:hover { color: var(--white); }
.nav-wrap {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(24px, 7vw, 82px);
  background: var(--black);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: opacity .2s ease;
}
.brand:hover {
  opacity: .86;
}
.brand img {
  width: clamp(220px, 15vw, 268px);
  height: auto;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: #111;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}
.site-nav { display: flex; align-items: center; gap: 5px; }
.nav-group { position: relative; }
.site-nav a,
.nav-trigger {
  position: relative;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: #e7e7e7;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease;
}
.site-nav a:hover,
.nav-trigger:hover { color: var(--white); }
.site-nav a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform .24s var(--ease-out);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.nav-trigger:hover::after,
.nav-trigger[aria-current="page"]::after { transform: scaleX(1); }
.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 245px;
  padding: 8px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .14);
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 36px rgba(8, 8, 8, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s var(--ease-out), visibility .22s ease;
}
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  color: #e7e7e7;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.dropdown a:last-child { border-bottom: 0; }
.dropdown a::after { display: none; }
.dropdown a:hover {
  color: var(--white);
  background: rgba(199, 8, 27, .2);
}
.site-nav .quote-link {
  position: relative;
  overflow: hidden;
  margin-left: 8px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(8, 8, 8, .14);
  transition: transform .22s var(--ease-out), box-shadow .22s ease, background .22s ease, color .22s ease;
}
.site-nav .quote-link::after { display: none; }
.site-nav .quote-link::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -58%;
  width: 44%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .18), rgba(255, 255, 255, .72), rgba(255, 255, 255, .18), transparent);
  transform: translateX(0) skewX(-18deg);
  transition: transform .72s ease;
  pointer-events: none;
}
.site-nav .quote-link:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8, 8, 8, .18);
}
.site-nav .quote-link:hover::before { transform: translateX(360%) skewX(-18deg); }
main { overflow: hidden; }
.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thank-you-main {
  flex: 1;
  min-height: 0;
  display: grid;
  align-items: center;
}
[id] { scroll-margin-top: 105px; }
.hero, .page-hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: calc(100% * var(--site-scale));
  height: calc(100% * var(--site-scale));
  zoom: var(--site-scale-inverse);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .86) 0%, rgba(8, 8, 8, .58) 42%, rgba(8, 8, 8, .16) 76%, rgba(8, 8, 8, .04) 100%),
    var(--hero-image) var(--hero-position, center) / cover;
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 8, .82));
  pointer-events: none;
}
.hero, .page-hero {
  min-height: calc((100vh - 103px) * var(--site-scale-inverse));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}
.page-hero {
  min-height: calc(42vh * var(--site-scale-inverse));
  grid-template-columns: minmax(0, 1fr);
}
.hero-copy, .page-hero-copy {
  position: relative;
  padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 82px);
  max-width: 850px;
  animation: hero-copy-in .85s var(--ease-out) both;
}
.page-hero-copy {
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(42px, 5vw, 70px);
  max-width: 960px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 14px;
}
.hero-copy .eyebrow,
.page-hero-copy .eyebrow {
  margin-bottom: 18px;
}
.hero-copy .eyebrow::after,
.page-hero-copy .eyebrow::after {
  content: "";
  display: block;
  width: 52px;
  height: 5px;
  margin-top: 14px;
  background: var(--red);
}
h1, h2, h3 { line-height: 1; }
h1 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(62px, 10vw, 126px);
  letter-spacing: .02em;
  text-shadow: 0 12px 36px rgba(0, 0, 0, .45);
}
h1 span, h2 span { color: var(--red); }
h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: .02em;
}
.section-title-link {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}
.section-title-link:hover,
.section-title-link:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--red);
}
.dark h2, .page-hero h1 { color: var(--white); }
h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-family: var(--condensed);
  font-size: 26px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dark h3 { color: var(--white); }
.hero-copy p, .page-hero-copy p {
  max-width: 620px;
  margin: 0 0 32px;
  color: #dedede;
  font-size: 18px;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
}
.hero-aside {
  position: relative;
  overflow: hidden;
  align-self: end;
  max-width: 430px;
  margin: 0 clamp(20px, 5vw, 70px) clamp(22px, 5vw, 70px) auto;
  padding: 28px 34px;
  background: linear-gradient(135deg, rgba(199, 8, 27, .95), rgba(117, 4, 14, .9));
  box-shadow: var(--shadow-hard);
  animation: hero-card-in .95s .12s var(--ease-out) both;
}
.hero-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-100%);
  animation: card-shine 5.5s 1.4s ease-in-out infinite;
}
.hero-aside > * { position: relative; }
.hero-aside strong {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  line-height: .95;
}
.hero-aside span { display: block; margin-top: 8px; color: #f7d9dd; }
.section {
  position: relative;
  padding: clamp(46px, 6.5vw, 82px) clamp(22px, 5vw, 58px);
}
.section-inner { max-width: 1160px; margin: 0 auto; }
.paper { background: linear-gradient(180deg, var(--paper), #fffdf8); }
.paper,
.service-card,
.detail-card,
.review-card,
.quote-box,
.contact-form-full {
  color: var(--text);
}
.dark {
  background:
    linear-gradient(135deg, rgba(199, 8, 27, .045), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .08), transparent 18rem),
    var(--black);
  color: #d8d8d8;
}
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-head p, .copy p, .note { color: var(--muted); font-size: 17px; }
.dark .section-head p, .dark .copy p { color: #bebebe; }
.red-mark { width: 52px; height: 5px; margin-bottom: 18px; background: var(--red); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.service-actions { margin-top: 28px; }
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  background: var(--red);
  color: var(--white);
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(8, 8, 8, .14);
  transition: transform .22s var(--ease-out), box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.button::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -58%;
  width: 44%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .18), rgba(255, 255, 255, .72), rgba(255, 255, 255, .18), transparent);
  transform: translateX(0) skewX(-18deg);
  transition: transform .72s ease;
  pointer-events: none;
}
.button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8, 8, 8, .18);
}
.button:hover::after { transform: translateX(360%) skewX(-18deg); }
.button.secondary { background: transparent; border-color: rgba(255, 255, 255, .45); }
.paper .button.secondary, .section .button.secondary.light {
  background: var(--white);
  color: var(--black);
  border-color: #7a7a7a;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.paper .button.secondary:hover,
.section .button.secondary.light:hover {
  text-decoration: underline;
  text-decoration-color: var(--red);
}
.button.secondary:hover { border-color: var(--red); color: var(--white); background: rgba(199, 8, 27, .18); }
.service-grid, .feature-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.service-card, .detail-card, .review-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .28s var(--ease-out), box-shadow .28s ease, border-color .28s ease;
}
.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card-link:focus-visible {
  outline: 3px solid rgba(199, 8, 27, .5);
  outline-offset: 5px;
}
.service-card::before, .detail-card::before, .review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  background: linear-gradient(180deg, rgba(199, 8, 27, .04), transparent);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.service-card:hover, .detail-card:hover, .review-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(8, 8, 8, .16);
  border-top-color: var(--red-hot);
}
.service-card:hover::before, .detail-card:hover::before, .review-card:hover::before {
  opacity: 1;
}
.dark .service-card {
  color: #e7e7e7;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 4px solid var(--red);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .26);
  backdrop-filter: blur(10px);
}
.dark .service-card h3 {
  color: var(--white);
}
.dark .service-card p {
  color: #cfcfcf;
}
.num {
  color: var(--red);
  font-family: var(--display);
  font-size: 44px;
  line-height: .9;
}
.text-link {
  color: var(--red);
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.split, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}
.contact-grid { align-items: stretch; }
.media-panel {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background: var(--media-image) center / cover;
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  animation: media-drift 18s ease-in-out infinite alternate;
}
.media-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.12), transparent 36%),
    linear-gradient(180deg, transparent 55%, rgba(8,8,8,.35));
  opacity: .7;
  pointer-events: none;
}
.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  z-index: -1;
  transform: scale(1.04);
  transition: transform .8s var(--ease-out);
}
.media-panel:hover::after { transform: scale(1.1); }
.about-teaser {
  background: var(--paper);
}
.mini-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}
.mini-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 600;
}
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--red);
}
.tint-type-grid .detail-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.tint-type-grid .detail-card h3 { margin-bottom: 0; }
.tint-type-grid .detail-card p { margin: 0; color: var(--ink); }
.tint-type-grid .checklist {
  display: grid;
  flex: 1;
  align-content: stretch;
  gap: 9px;
  margin-top: 6px;
}
.tint-type-grid .checklist li {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.48;
}
.about-media {
  position: relative;
  min-height: 470px;
  border-top: 4px solid var(--red);
}
.media-callout {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 220px;
  padding: 18px 20px;
  background: rgba(8, 8, 8, .74);
  color: var(--white);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(16px);
}
.media-callout span {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 58px;
  line-height: .85;
}
.media-callout strong {
  display: block;
  margin-top: 8px;
  font-family: var(--condensed);
  font-size: 19px;
  letter-spacing: .08em;
  line-height: 1.05;
  text-transform: uppercase;
}
.about-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .94), rgba(8, 8, 8, .72) 48%, rgba(8, 8, 8, .42)),
    url('../../images/Car/Range_Rover.webp') center 43% / cover;
}
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
}
.about-copy p {
  max-width: 760px;
  font-size: 18px;
}
.about-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 290px;
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, .58), rgba(8, 8, 8, .98)),
    url('../../images/Car/Stingray.webp') center / cover;
  color: var(--white);
  border-top: 4px solid var(--red);
}
.about-statement span {
  align-self: flex-start;
  padding: 7px 10px;
  background: var(--red);
  color: var(--white);
  border-left: 0;
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
}
.about-statement strong {
  display: block;
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: .92;
}
.about-feature-grid .detail-card {
  background: var(--panel);
  border-top-color: var(--red);
  box-shadow: none;
}
.about-feature-grid .detail-card .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  padding: 12px;
  background: var(--red);
  font-size: 24px;
}
.about-feature-grid .detail-card h3 { color: var(--white); }
.about-feature-grid .detail-card p { color: #c9c9c9; }
.about-finish { background: var(--white); }
.warranty-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .94), rgba(8, 8, 8, .7) 48%, rgba(8, 8, 8, .46)),
    url('../../images/Car/Stingray2.webp') center / cover;
}
.warranty-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.warranty-logo-panel {
  background: #000000;
  border-top: 4px solid var(--red);
  padding: 0;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
}
.warranty-logo-panel img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.warranty-actions { margin-top: 28px; }
.contact-form-full { max-width: 760px; margin: 28px auto; background: var(--white); padding: 28px; border-radius: 8px; box-shadow: var(--shadow-soft); }
.contact-form-full h2 { margin-top: 0; color: var(--red); font-size: 26px; }

.checklist { margin: 18px 0 0; padding: 0; list-style: none; }
.checklist li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  background: var(--red);
}
.price-wrap {
  overflow-x: auto;
  background: var(--white);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-soft);
}
table { width: 100%; min-width: 680px; border-collapse: collapse; }
th, td { padding: 17px 20px; text-align: left; border-bottom: 1px solid #e9e5dc; }
th {
  background: var(--black);
  color: var(--white);
  font-family: var(--condensed);
  letter-spacing: .12em;
  text-transform: uppercase;
}
td:last-child { font-weight: 700; color: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.gallery-link {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8, 8, 8, .14);
  transition: transform .28s var(--ease-out), box-shadow .28s ease;
}
.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out), filter .5s ease;
}
.gallery-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(8, 8, 8, .2);
}
.gallery-link:hover img { transform: scale(1.08); filter: saturate(1.12) contrast(1.04); }
.gallery-link span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .88);
}
.lightbox.open { display: flex; }
.lightbox.open .lightbox-panel { animation: lightbox-in .28s var(--ease-out) both; }
.lightbox-panel { width: min(1120px, 100%); max-height: 92vh; display: grid; gap: 12px; }
.lightbox img { width: 100%; max-height: calc(92vh - 84px); object-fit: contain; background: #050505; }
.lightbox-caption {
  color: var(--white);
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: #111;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--red); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(17, 17, 17, .86);
  color: var(--white);
  transform: translateY(-50%);
  cursor: pointer;
}
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: var(--red);
  background: var(--red);
}
.lightbox-nav .nav-icon {
  width: 24px;
  height: 24px;
  filter: var(--icon-white-filter);
}
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.review-card { display: flex; flex-direction: column; gap: 14px; min-height: 0; padding: 22px; }
.stars {
  color: var(--red);
  font-size: 15px;
  line-height: 1;
  letter-spacing: .14em;
}
.review-card blockquote { margin: 0; color: #464646; font-size: 14px; line-height: 1.62; }
.review-meta { margin-top: auto; padding-top: 12px; border-top: 1px solid #ece8df; }
.review-meta strong {
  display: block;
  color: var(--black);
  font-family: var(--condensed);
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.review-meta span { color: var(--muted); font-size: 14px; }
.home-reviews {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .98), rgba(8, 8, 8, .92)),
    url('../../images/Car/S6.webp') center 38% / cover;
  color: #d8d8d8;
}
.home-reviews h2 { color: var(--white); }
.home-reviews .section-head p { color: #c7c7c7; }
.reviews-carousel {
  position: relative;
  padding: clamp(26px, 4vw, 52px) clamp(18px, 3vw, 28px);
  background: var(--paper);
  border-radius: 8px;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-hard);
}
.review-viewport {
  overflow: hidden;
  scrollbar-width: none;
}
.review-viewport::-webkit-scrollbar { display: none; }
.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  animation: review-marquee var(--review-duration, 70s) linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.reviews-carousel.is-scrolling .review-track { animation-play-state: running; }
@keyframes review-marquee {
  to { transform: translate3d(calc(var(--review-loop-distance, 50%) * -1), 0, 0); }
}
.home-review-card {
  min-height: 240px;
  width: 100%;
  border: 1px solid #e7eaee;
  border-top: 1px solid #e7eaee;
  border-radius: 8px;
  padding: 26px 22px 18px;
  box-shadow: 0 8px 18px rgba(8, 8, 8, .14);
}
.home-review-card .stars {
  color: #f4a900;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .03em;
}
.home-review-card .stars[aria-label="Facebook recommendation"] { font-size: 17px; }
.home-review-card blockquote {
  min-height: 92px;
  overflow: visible;
  color: #2f3942;
  font-size: 12px;
  line-height: 1.7;
}
.home-review-card .review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 0;
}
.home-review-card .review-meta strong {
  color: #59677a;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.home-review-card .review-source-link {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 50%;
}
.home-review-card .review-source-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.home-review-card .google-favicon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid #d7d3ca;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(8, 8, 8, .12);
  transition: transform .2s var(--ease-out), box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.carousel-button.prev { left: 14px; }
.carousel-button.next { right: 14px; }
.carousel-button .nav-icon {
  width: 18px;
  height: 18px;
  filter: var(--icon-red-filter);
}
.carousel-button:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.carousel-button:hover .nav-icon { filter: var(--icon-white-filter); }
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}
.carousel-dots button {
  width: 8px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 600 12px / 1 var(--body);
  cursor: pointer;
}
.carousel-dots button[aria-current="true"] {
  background: var(--red);
  color: var(--white);
}
.review-actions { margin-top: 30px; }
.contact-card {
  background:
    linear-gradient(145deg, rgba(199, 8, 27, .07), transparent 36%),
    var(--black);
  color: var(--white);
  padding: 34px;
  box-shadow: var(--shadow-hard);
}
.contact-card h2 { color: var(--white); }
.contact-card .social-icons { gap: 14px; }
.contact-card .social-icons a {
  width: 48px;
  height: 48px;
}
.contact-card .social-logo {
  width: 26px;
  height: 26px;
}
.contact-item { padding: 24px 0; border-bottom: 1px solid #292929; }
.contact-item:first-of-type { padding-top: 0; }
.contact-item:last-of-type { padding-bottom: 0; border-bottom: 0; }
.contact-card address a { text-decoration: none; }
.address-line { text-decoration: underline; }
.contact-label {
  color: var(--red);
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 8px;
}
.contact-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.quote-box {
  align-self: stretch;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, .08);
  border-top: 4px solid var(--red);
  padding: 28px;
  box-shadow: 0 22px 54px rgba(8, 8, 8, .16);
}
.quote-details {
  display: grid;
  gap: 0;
  margin: 18px 0 24px;
  border-top: 1px solid var(--line);
}
.quote-details p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.quote-details strong {
  color: var(--red);
  font-family: var(--condensed);
  font-size: 16px;
  letter-spacing: .14em;
  line-height: 1.1;
  text-transform: uppercase;
}
.quote-details span {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}
.contact-map {
  grid-column: 1 / -1;
  min-height: 0;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(8, 8, 8, .16);
  overflow: hidden;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(420px, 40vw, 520px);
  min-height: 420px;
  transform: none;
}
.site-footer {
  background: var(--black);
  color: #888;
  border-top: 3px solid var(--red);
  padding: 42px clamp(22px, 5vw, 58px) 24px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer a { color: #aaa; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-links a { display: block; margin: 7px 0; }
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  background: #111;
  color: #cfcfcf;
  text-decoration: none;
  transition: transform .2s var(--ease-out), background .2s ease, border-color .2s ease, color .2s ease;
}
.social-icons a:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.social-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #252525;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-card-in {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes card-shine {
  0%, 55% { transform: translateX(-100%); }
  75%, 100% { transform: translateX(100%); }
}
@keyframes header-glow {
  0%, 100% { opacity: .68; }
  50% { opacity: 1; }
}
@keyframes lightbox-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes media-drift {
  from { background-position: 48% 50%; }
  to { background-position: 54% 48%; }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-aside { margin-left: clamp(24px, 7vw, 82px); margin-right: auto; }
  .service-grid, .gallery-grid, .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-track { grid-auto-columns: calc((100% - 18px) / 2); }
  .feature-grid, .split, .contact-grid, .warranty-layout, .about-story { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 66px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .14);
  }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    text-align: left;
  }
  .nav-group { position: static; }
  .dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 6px 14px;
    border: 0;
    border-left: 2px solid var(--red);
    box-shadow: none;
    background: transparent;
  }
  .nav-group.open .dropdown { display: block; }
  .dropdown a { min-height: 40px; padding: 0 12px; color: #d8d8d8; border-bottom: 0; font-size: 13px; }
  .site-nav .quote-link { margin: 0; }
  .hero-copy, .page-hero-copy { padding-top: 74px; padding-bottom: 38px; }
  .page-hero { min-height: calc(38vh * var(--site-scale-inverse)); }
  .page-hero-copy { padding-top: 46px; padding-bottom: 34px; }
  .about-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #080808;
    animation: none;
  }
  .media-callout {
    left: 14px;
    bottom: 14px;
    max-width: 170px;
    padding: 12px 14px;
  }
  .media-callout span { font-size: 42px; }
  .media-callout strong { font-size: 15px; }
  .price-wrap { overflow-x: hidden; }
  table {
    min-width: 0;
    table-layout: fixed;
  }
  th, td {
    padding: 13px 12px;
    font-size: 14px;
    line-height: 1.3;
  }
  th { letter-spacing: .06em; }
  th:last-child,
  td:last-child {
    width: 42%;
    text-align: right;
    white-space: nowrap;
  }
  td small {
    display: block;
    margin-top: 2px;
    line-height: 1.25;
  }
  .hero-aside { margin: 0 24px 34px; }
  .service-grid, .gallery-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .reviews-carousel { padding: 20px 16px; }
  .review-track { grid-auto-columns: 100%; }
  .home-review-card { min-height: 260px; }
  .lightbox { padding: 58px 14px 72px; }
  .lightbox-nav {
    top: auto;
    bottom: 14px;
    transform: none;
  }
  .lightbox-prev { left: calc(50% - 58px); }
  .lightbox-next { right: calc(50% - 58px); }
  .actions .button { width: 100%; }
  .brand img { width: 140px; }
}
