



:root {
  color-scheme: dark;
  --bg: #070a10;
  --bg-deep: #03050a;
  --panel: #0d121c;
  --panel-2: #121925;
  --text: #f4f7fb;
  --muted: #9ca7b6;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #2d7dff;
  --blue-deep: #1558c8;
  --red: #e3313d;
  --white: #ffffff;
  --max: 1180px;
  --radius: 22px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(45, 125, 255, 0.1),
      transparent 27rem
    ),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.promo-bar {
  min-height: 38px;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: var(--red);
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.promo-bar a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 10, 16, 0.89);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blue), #124cae);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px 4px 12px 4px;
  color: white;
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(45, 125, 255, 0.23);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-nav a {
  position: relative;
  padding: 26px 0;
  color: #cbd2dc;
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current='page'] {
  color: white;
}

.primary-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-lines {
  width: 22px;
  display: grid;
  gap: 6px;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded='true'] .menu-lines i:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded='true'] .menu-lines i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.015em;
  box-shadow: 0 14px 34px rgba(45, 125, 255, 0.2);
  transition:
    transform 170ms ease,
    background 170ms ease,
    border-color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #438dff;
  border-color: #438dff;
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-light {
  border-color: white;
  background: white;
  color: #071226;
  box-shadow: none;
}

.button-light:hover {
  border-color: #e8efff;
  background: #e8efff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9fc1ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.page {
  display: none;
}

.page.is-active {
  display: block;
  animation: page-in 420ms ease both;
}

@keyframes page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  animation: rise-in 580ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal:nth-child(2) {
  animation-delay: 80ms;
}

.reveal:nth-child(3) {
  animation-delay: 150ms;
}

.reveal:nth-child(4) {
  animation-delay: 220ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 690px;
  isolation: isolate;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 42%;
  background-image: url('https://images.pexels.com/photos/29504462/pexels-photo-29504462.jpeg?auto=compress&cs=tinysrgb&w=1800');
  background-size: cover;
  background-position: center;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  filter: saturate(0.85) contrast(1.04);
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #070a10 0%,
      #070a10 36%,
      rgba(7, 10, 16, 0.76) 60%,
      rgba(7, 10, 16, 0.1) 100%
    ),
    linear-gradient(0deg, rgba(7, 10, 16, 0.85), transparent 42%);
}

.hero-layout {
  min-height: 690px;
  padding-block: 94px 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  align-items: end;
  gap: 64px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 17px;
  color: #76a7ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(3.6rem, 7.4vw, 7.4rem);
  line-height: 0.89;
  letter-spacing: -0.067em;
  text-transform: uppercase;
}

.hero h1 em,
.page-hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead,
.page-hero p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c0c8d4;
  font-size: 1.08rem;
  line-height: 1.75;
}

.button-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.hero-offer {
  padding: 26px;
  background: rgba(8, 13, 23, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 4px solid var(--red);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.offer-kicker {
  color: #ffc4c8;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-offer > strong {
  margin: 8px 0 3px;
  display: block;
  font-size: 3.55rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-offer p {
  margin: 13px 0 22px;
  color: #c5ccd6;
}

.hero-offer a,
.feature-card a {
  color: #91b7ff;
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--bg-deep);
}

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

.trust-grid > div {
  min-height: 118px;
  padding: 27px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 17px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.trust-grid strong {
  font-size: 0.98rem;
}

.trust-grid small {
  color: var(--muted);
  font-size: 0.79rem;
}

.section {
  padding-block: 112px;
}

.section-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.offer-copy h2,
.included-copy h2,
.recent-work h2,
.fit-copy h2,
.info-panel h2,
.faq-layout h2,
.booking-note h2,
.end-cta h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.section-heading > p,
.offer-copy > p,
.fit-list p,
.info-panel > p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  min-height: 250px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card-large {
  grid-row: 1 / 3;
  min-height: 516px;
  background:
    linear-gradient(0deg, rgba(4, 7, 12, 0.98), rgba(4, 7, 12, 0.17)),
    url('https://images.pexels.com/photos/29504462/pexels-photo-29504462.jpeg?auto=compress&cs=tinysrgb&w=1200')
      center/cover;
}

.accent-card {
  background: linear-gradient(145deg, #13223a, #0b1019);
  border-color: rgba(45, 125, 255, 0.35);
}

.card-number {
  margin-bottom: auto;
  color: #6f7b8b;
  font-size: 0.73rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 26px 0 8px;
  font-size: 1.55rem;
}

.feature-card p {
  max-width: 500px;
  margin: 0 0 22px;
  color: #aeb7c4;
}

.offer-section {
  padding-block: 104px;
  background:
    linear-gradient(110deg, rgba(13, 86, 211, 0.98), rgba(30, 113, 255, 0.92)),
    var(--blue);
  overflow: hidden;
}

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.offer-copy .eyebrow {
  color: white;
}

.offer-copy > p {
  max-width: 570px;
  margin: 25px 0 0;
  color: #dfebff;
  font-size: 1.04rem;
}

.offer-copy small {
  margin-top: 15px;
  display: block;
  color: #d5e4ff;
  font-size: 0.78rem;
}

.price-stack {
  transform: rotate(-2deg);
  box-shadow: 0 30px 70px rgba(0, 24, 80, 0.26);
}

.price-stack > div {
  min-height: 90px;
  padding: 18px 23px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 21px;
  background: white;
  color: #071226;
  border-bottom: 1px solid #dce4f1;
}

.price-stack > div:first-child {
  border-radius: 16px 16px 0 0;
}

.price-stack > div:last-child {
  border-bottom: 0;
  border-radius: 0 0 16px 16px;
}

.price-stack span {
  font-weight: 850;
}

.price-stack s {
  color: #788496;
}

.price-stack strong {
  min-width: 88px;
  color: var(--red);
  font-size: 1.35rem;
  text-align: right;
}

.process-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-grid li {
  padding: 29px 27px 10px 0;
  border-right: 1px solid var(--line);
}

.process-grid li + li {
  padding-left: 27px;
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.process-grid h3 {
  margin: 41px 0 8px;
  font-size: 1.23rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.end-cta {
  margin-block: 15px 110px;
  padding: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  background: var(--panel);
  border-radius: var(--radius);
}

.end-cta .button-row {
  margin-top: 0;
  flex: 0 0 auto;
}

.page-hero {
  min-height: 470px;
  padding-block: 112px 86px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(100deg, rgba(7, 10, 16, 0.98), rgba(7, 10, 16, 0.72)),
    url('https://images.pexels.com/photos/29504462/pexels-photo-29504462.jpeg?auto=compress&cs=tinysrgb&w=1800')
      center 52% / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero-services {
  background:
    linear-gradient(100deg, rgba(7, 10, 16, 0.99), rgba(7, 10, 16, 0.69)),
    url('https://images.pexels.com/photos/6873119/pexels-photo-6873119.jpeg?auto=compress&cs=tinysrgb&w=1800')
      center/cover;
}

.page-hero-about {
  background:
    linear-gradient(100deg, rgba(7, 10, 16, 0.99), rgba(7, 10, 16, 0.76)),
    url('https://images.pexels.com/photos/6873185/pexels-photo-6873185.jpeg?auto=compress&cs=tinysrgb&w=1800')
      center/cover;
}

.page-hero-contact {
  background:
    linear-gradient(100deg, rgba(7, 10, 16, 0.99), rgba(7, 10, 16, 0.73)),
    url('https://images.pexels.com/photos/5233264/pexels-photo-5233264.jpeg?auto=compress&cs=tinysrgb&w=1800')
      center/cover;
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
}

.page-hero p:last-child {
  max-width: 620px;
}

.promo-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.sale-badge {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 1.05rem;
  font-weight: 950;
  transform: rotate(-8deg);
  box-shadow: 0 14px 30px rgba(227, 49, 61, 0.24);
}

.promo-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  letter-spacing: -0.05em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.price-card {
  min-height: 285px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.price-card.popular {
  border-color: var(--blue);
  box-shadow: inset 0 3px var(--blue);
}

.price-card > span {
  color: #c6ced8;
  font-weight: 800;
}

.price-card > div {
  margin: auto 0 26px;
}

.price-card s {
  display: block;
  color: #6f7a89;
}

.price-card strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-card a {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #91b7ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.fine-print {
  max-width: 850px;
  margin: 27px 0 0;
  color: #778292;
  font-size: 0.8rem;
}

.included-section {
  padding-block: 110px;
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.included-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.included-photo {
  position: relative;
}

.included-photo::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
}

.included-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.included-photo span {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 13px;
  padding: 6px 9px;
  background: rgba(5, 8, 14, 0.82);
  color: #c9d1dc;
  border-radius: 5px;
  font-size: 0.69rem;
}

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

.check-list li {
  padding: 13px 0;
  display: flex;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  color: #d8dee6;
}

.check-list span {
  color: var(--blue);
  font-weight: 950;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 15px;
}

.gallery-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.gallery-wide {
  grid-row: 1 / 3;
  min-height: 675px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(3, 5, 10, 0.93));
  pointer-events: none;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 21px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.gallery-card figcaption span {
  font-size: 1.1rem;
  font-weight: 850;
}

.gallery-card figcaption small {
  color: #bbc4d1;
  font-size: 0.7rem;
  text-align: right;
}

.recent-work {
  padding-block: 108px;
  background: var(--blue);
}

.recent-layout {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 90px;
}

.recent-work .eyebrow {
  color: white;
}

.recent-work p {
  color: #d7e5ff;
}

.vehicle-list {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.vehicle-list > div {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.vehicle-list span,
.vehicle-list small {
  color: #d9e7ff;
  font-size: 0.74rem;
}

.vehicle-list strong {
  font-size: 1.04rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
}

.statement-line {
  width: 90px;
  height: 5px;
  margin-bottom: 29px;
  display: block;
  background: var(--blue);
}

.statement p {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.about-points {
  border-top: 1px solid var(--line);
}

.about-points article {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 35px 1fr;
  column-gap: 15px;
  border-bottom: 1px solid var(--line);
}

.about-points span {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
}

.about-points h3 {
  margin: 0;
}

.about-points p {
  grid-column: 2;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.soft-section {
  background: #0a0e16;
  border-block: 1px solid var(--line);
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
}

.fit-list > div {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.fit-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.fit-list strong {
  font-size: 1.05rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-panel {
  min-height: 430px;
  padding: 47px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.blue-panel {
  background: var(--blue);
  border-color: var(--blue);
}

.blue-panel .eyebrow,
.blue-panel > p {
  color: white;
}

.info-icon {
  width: 54px;
  height: 54px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 1.35rem;
}

.info-panel h2 {
  margin: 20px 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.info-panel .text-link,
.info-panel .button {
  margin-top: 29px;
}

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

.prep-grid > div {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.prep-grid span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.prep-grid strong {
  margin-top: 49px;
  display: block;
  font-size: 1.14rem;
}

.prep-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 23px 36px 23px 0;
  position: relative;
  cursor: pointer;
  color: #edf2f8;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--blue);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list p {
  padding: 0 35px 24px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card {
  min-height: 250px;
  padding: 30px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 125, 255, 0.6);
  background: #111a28;
}

.primary-contact {
  background: var(--blue);
  border-color: var(--blue);
}

.primary-contact:hover {
  background: #3986ff;
}

.contact-index {
  color: #95a3b6;
  font-size: 0.72rem;
  font-weight: 900;
}

.primary-contact .contact-index {
  color: #dbe8ff;
}

.contact-card div {
  align-self: end;
}

.contact-card small {
  display: block;
  margin-bottom: 6px;
  color: #9ba7b7;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.primary-contact small,
.primary-contact p {
  color: #dce9ff;
}

.contact-card strong {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.contact-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-arrow {
  font-size: 1.2rem;
}

.booking-note {
  margin-block: 0 110px;
  padding: 47px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-note > p {
  margin: 0;
  color: var(--muted);
}

.booking-note > p strong {
  color: white;
}

.not-found {
  min-height: 670px;
  padding-block: 120px;
  display: grid;
  place-items: start;
  align-content: center;
}

.not-found > span {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.17em;
}

.not-found h1 {
  max-width: 700px;
  margin: 16px 0 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.not-found p {
  margin: 24px 0 30px;
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-top {
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.7fr;
  align-items: start;
  gap: 60px;
}

.footer-top > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-contact a:hover {
  color: #82adff;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #667283;
  font-size: 0.7rem;
}

.mobile-actions {
  display: none;
}

:focus-visible {
  outline: 3px solid #77a8ff;
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 0.8rem;
  }

  .nav-book {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr 280px;
    gap: 35px;
  }

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

  .booking-note {
    grid-template-columns: 1fr 1fr;
  }

  .booking-note .button {
    grid-column: 1 / 3;
    justify-self: start;
  }
}

@media (max-width: 800px) {
  body {
    padding-bottom: 64px;
  }

  .promo-bar {
    justify-content: space-between;
    gap: 10px;
    font-size: 0.65rem;
  }

  .nav-shell {
    min-height: 68px;
  }

  .menu-button {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px 20px 90px;
    display: grid;
    align-content: start;
    gap: 0;
    background: rgba(4, 7, 12, 0.98);
    transform: translateX(102%);
    transition: transform 220ms ease;
    overflow-y: auto;
  }

  body.menu-open .primary-nav {
    transform: translateX(0);
  }

  .primary-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .hero-layout {
    min-height: 720px;
  }

  .hero-image {
    inset: 0;
    clip-path: none;
  }

  .hero-shade {
    background:
      linear-gradient(
        0deg,
        #070a10 7%,
        rgba(7, 10, 16, 0.92) 46%,
        rgba(7, 10, 16, 0.32) 100%
      ),
      linear-gradient(90deg, rgba(7, 10, 16, 0.7), transparent);
  }

  .hero-layout {
    padding-block: 255px 50px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 32px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.15rem, 15vw, 5.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-offer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 0 20px;
  }

  .hero-offer .offer-kicker,
  .hero-offer p {
    grid-column: 1;
  }

  .hero-offer > strong {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 2.5rem;
  }

  .hero-offer a {
    grid-column: 1 / 3;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 91px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading,
  .offer-layout,
  .included-layout,
  .recent-layout,
  .about-intro,
  .fit-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-card-large {
    grid-row: auto;
    min-height: 430px;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(3),
  .process-grid li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .end-cta {
    padding: 36px;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 420px;
    padding-block: 95px 65px;
  }

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

  .price-card {
    min-height: 245px;
  }

  .included-photo::before {
    display: none;
  }

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

  .gallery-card,
  .gallery-wide {
    grid-row: auto;
    min-height: 410px;
  }

  .about-intro {
    gap: 60px;
  }

  .fit-list > div {
    grid-template-columns: 150px 1fr;
  }

  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-panel {
    min-height: 390px;
  }

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

  .booking-note {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .booking-note .button {
    grid-column: auto;
    justify-self: start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #090d14;
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.35);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    color: #dce3ec;
    font-size: 0.78rem;
    font-weight: 850;
  }

  .mobile-actions a:first-child {
    background: var(--blue);
    color: white;
  }
}

@media (max-width: 520px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .promo-bar {
    padding-inline: 14px;
    letter-spacing: 0.08em;
  }

  .hero-layout {
    padding-top: 218px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.06em;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-offer {
    padding: 22px;
  }

  .hero-offer p {
    font-size: 0.88rem;
  }

  .section-heading h2,
  .offer-copy h2,
  .included-copy h2,
  .recent-work h2,
  .fit-copy h2,
  .info-panel h2,
  .faq-layout h2,
  .booking-note h2,
  .end-cta h2 {
    font-size: 2.45rem;
  }

  .feature-card {
    padding: 27px;
  }

  .offer-section {
    padding-block: 76px;
  }

  .price-stack {
    transform: none;
  }

  .price-stack > div {
    grid-template-columns: 1fr auto;
  }

  .price-stack s {
    display: none;
  }

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

  .process-grid li,
  .process-grid li + li {
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-grid h3 {
    margin-top: 25px;
  }

  .end-cta {
    margin-bottom: 78px;
    padding: 29px;
  }

  .promo-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .sale-badge {
    width: 78px;
    height: 78px;
    font-size: 0.9rem;
  }

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

  .price-card {
    min-height: 215px;
  }

  .included-section {
    padding-block: 76px;
  }

  .gallery-card,
  .gallery-wide {
    min-height: 360px;
  }

  .gallery-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .gallery-card figcaption small {
    text-align: left;
  }

  .vehicle-list > div {
    grid-template-columns: 35px 1fr;
  }

  .vehicle-list small {
    grid-column: 2;
  }

  .fit-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .info-panel {
    min-height: 390px;
    padding: 31px;
  }

  .contact-card {
    min-height: 225px;
    padding: 25px;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
  }

  .booking-note {
    margin-bottom: 78px;
    padding: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Supplied logo: frame removes the square image's empty black margins. */
.logo-window {
  display: block;
  position: relative;
  width: 174px;
  height: 68px;
  overflow: hidden;
  background: #000;
}
.business-logo {
  position: absolute;
  width: 174px;
  height: 174px;
  max-width: none;
  top: -42px;
  left: 0;
}
.site-header { background: #05070b; }
.nav-shell { gap: 20px; }
.primary-nav { gap: 18px; }
.nav-book { display: none; }
@media (min-width: 801px) and (max-width: 1100px) {
  .primary-nav { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .primary-nav a { padding: 8px 0; }
  .primary-nav a::after { bottom: 2px; }
}
@media (max-width: 800px) {
  .site-header { backdrop-filter: none; }
  .primary-nav {
    top: 0;
    height: 100dvh;
    padding-top: 100px;
    visibility: hidden;
  }
  body.menu-open .primary-nav { visibility: visible; }
  .menu-button { z-index: 2; min-height: 48px; }
  .nav-shell > .brand { z-index: 2; }
}
