:root {
  --red: #e1121b;
  --red-dark: #a40710;
  --ink: #08090b;
  --charcoal: #15171a;
  --steel: #59606a;
  --line: #d9dde4;
  --paper: #ffffff;
  --mist: #f4f6f8;
  --shadow: 0 14px 32px rgba(8, 9, 11, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: #050608;
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand {
  display: block;
  width: clamp(170px, 19vw, 224px);
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.45));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.book-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.book-button {
  padding: 0 22px;
  background: linear-gradient(180deg, #ff2630 0%, var(--red) 54%, #b40710 100%);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 8px 18px rgba(225, 18, 27, 0.28);
}

.button {
  padding: 0 26px;
}

.button--primary {
  background: linear-gradient(180deg, #ff2630 0%, var(--red) 58%, #b40710 100%);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 10px 20px rgba(225, 18, 27, 0.22);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(8, 9, 11, 0.58);
  color: var(--paper);
}

.button--light {
  border: 2px solid #b9bdc4;
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 430px;
  align-items: center;
  overflow: hidden;
  background: #07080a;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-car.jpg");
  background-position: center right;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.82) 31%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.04));
  content: "";
}

.hero__content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 96px;
  color: var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(3.8rem, 8vw, 6.7rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.quick-info {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.95fr;
  width: min(1040px, calc(100% - 40px));
  min-height: 74px;
  margin: -38px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: linear-gradient(180deg, #202226 0%, #111315 100%);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.quick-info a,
.quick-info div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 16px clamp(20px, 3vw, 42px);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 900;
}

.quick-info a + a,
.quick-info a + div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.quick-info svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--red);
  stroke-width: 2.5;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0;
}

.section__heading {
  margin-bottom: 24px;
}

.section__heading--center {
  text-align: center;
}

.section h2,
.memberships h2,
.footer-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1.04;
}

.section__heading--center h2::after,
.trust__heading h2::after {
  display: block;
  width: 72px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--red);
  content: "";
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(9, 16, 24, 0.12);
}

.service-card img {
  width: 100%;
  aspect-ratio: 2.35 / 1;
  object-fit: cover;
}

.service-card__icon {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  margin: -25px 0 12px 18px;
  place-items: center;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 10px 18px rgba(225, 18, 27, 0.26);
}

.service-card h3 {
  margin: 0 18px 6px;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.12;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  padding: 0 18px 20px;
  color: #23272d;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.34;
}

.memberships {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(520px, 1.6fr);
  gap: 28px;
  align-items: center;
  padding: 44px max(20px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.95), rgba(9, 10, 12, 0.84)),
    url("assets/after-interior.jpg") center/cover;
  color: var(--paper);
}

.memberships h2,
.footer-cta h2 {
  color: var(--paper);
}

.memberships__intro p:not(.section-kicker) {
  max-width: 270px;
  margin: 14px 0 0;
  color: #eef1f5;
  font-size: 1.05rem;
  font-weight: 750;
}

.memberships__intro h2::after {
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  background: var(--red);
  content: "";
}

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

.plan-card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.plan-card::before {
  display: block;
  height: 28px;
  background: linear-gradient(180deg, #f0f2f5 0%, #d3d6dc 100%);
  content: "";
}

.plan-card--featured::before {
  background: linear-gradient(180deg, #ff2630 0%, var(--red) 100%);
}

.plan-card__flag {
  position: absolute;
  top: 6px;
  right: 14px;
  z-index: 2;
  border-radius: 999px;
  background: var(--paper);
  color: var(--red);
  padding: 2px 10px;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-card__name {
  position: absolute;
  top: 4px;
  right: 0;
  left: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.plan-card--featured .plan-card__name {
  color: var(--paper);
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 8px 30px 4px;
  color: var(--ink);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 950;
  line-height: 0.9;
}

.plan-card__price sup {
  margin-top: 10px;
  font-size: 1.35rem;
}

.plan-card__price span {
  align-self: center;
  margin-top: 20px;
  color: var(--steel);
  font-size: 0.98rem;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0 30px 14px;
  list-style: none;
  color: #20242a;
  font-size: 0.92rem;
  font-weight: 800;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-card li svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  stroke-width: 3;
}

.plan-card .button {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
}

.trust {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(620px, 2fr);
  gap: 34px;
  align-items: center;
}

.trust__heading .section-kicker {
  margin-bottom: 9px;
}

.trust__heading h2::after {
  margin-right: auto;
  margin-left: 0;
}

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

.trust-grid article {
  min-height: 152px;
  padding: 0 22px;
  text-align: center;
}

.trust-grid article + article {
  border-left: 1px solid var(--line);
}

.trust-grid svg {
  width: 48px;
  height: 48px;
  color: var(--red);
  stroke-width: 2.2;
}

.trust-grid h3 {
  margin: 10px 0 5px;
  font-size: 0.96rem;
  font-weight: 950;
}

.trust-grid p {
  margin: 0;
  color: #333942;
  font-size: 0.84rem;
  font-weight: 700;
}

.gallery-section {
  padding-top: 34px;
}

.gallery-section__heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: end;
}

.gallery-section__heading h2::after {
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 12px;
  background: var(--red);
  content: "";
}

.gallery-section__heading > p {
  max-width: 520px;
  margin: 0;
  color: #333942;
  font-size: 1.02rem;
  font-weight: 750;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.result-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(8, 9, 11, 0.12);
}

.result-card--pair {
  grid-column: span 2;
  padding-bottom: 18px;
}

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

.result-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.result-card--wide img {
  aspect-ratio: 2.55 / 1;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: #08090b;
}

.before-after figure {
  position: relative;
  min-width: 0;
  margin: 0;
}

.before-after figure + figure {
  border-left: 2px solid var(--paper);
}

.before-after img {
  aspect-ratio: 1.3 / 1;
}

.before-after figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.78);
  color: var(--paper);
  padding: 3px 9px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.result-card h3,
.result-card figcaption strong {
  display: block;
  margin: 16px 18px 5px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.result-card p,
.result-card figcaption span {
  display: block;
  margin: 0 18px 18px;
  color: #333942;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-cta {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px max(20px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, #151719 0%, #08090b 100%);
  color: var(--paper);
}

.footer-cta__brand img {
  width: 210px;
}

.footer-cta h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
}

.footer-cta h2 span {
  color: var(--red);
}

.footer-cta p {
  margin: 5px 0 0;
  color: #f1f3f5;
  font-weight: 800;
}

.footer-cta__actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  color: var(--paper);
  font-size: 1.1rem;
  font-weight: 950;
}

.phone-link svg {
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 26px;
  align-items: center;
  min-height: 72px;
  padding: 16px max(20px, calc((100% - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #101113;
  color: var(--paper);
  font-weight: 800;
}

.site-footer a,
.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.socials {
  display: flex;
}

.socials a {
  width: 34px;
  height: 34px;
  justify-content: center;
  border-radius: 50%;
  background: #23262b;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.booking-modal {
  width: min(620px, calc(100% - 34px));
  border: 0;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
}

.booking-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.booking-modal__panel {
  position: relative;
  padding: 30px;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.booking-modal h2 {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 4vw, 2.15rem);
  line-height: 1.05;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #252a31;
  font-size: 0.84rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cdd3dc;
  border-radius: 8px;
  padding: 0 12px;
  background: #fbfcfd;
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(225, 18, 27, 0.35);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #111315;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 8px;
  }

  .site-header > .book-button {
    display: none;
  }

  .hero {
    min-height: 480px;
  }

  .quick-info,
  .memberships,
  .trust,
  .footer-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-info a + a,
  .quick-info a + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

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

  .memberships {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .memberships__intro p:not(.section-kicker) {
    max-width: 560px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .trust-grid article:nth-child(3) {
    border-left: 0;
  }

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

  .result-card--pair,
  .result-card--wide {
    grid-column: span 2;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding: 10px 16px;
  }

  .brand {
    width: 160px;
  }

  .hero {
    min-height: 560px;
  }

  .hero::before {
    background-position: center bottom;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.76) 48%, rgba(0, 0, 0, 0.34) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
  }

  .hero__content {
    width: min(100% - 32px, var(--max));
    padding: 54px 0 124px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 4.45rem);
  }

  .button,
  .book-button {
    width: 100%;
  }

  .quick-info {
    width: calc(100% - 30px);
    margin-top: -58px;
  }

  .section {
    width: calc(100% - 30px);
    padding: 42px 0;
  }

  .service-grid,
  .plan-grid,
  .trust-grid,
  .gallery-section__heading,
  .results-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    aspect-ratio: 2.1 / 1;
  }

  .trust-grid article,
  .trust-grid article + article,
  .trust-grid article:nth-child(3) {
    border-left: 0;
  }

  .result-card--pair,
  .result-card--wide {
    grid-column: span 1;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after figure + figure {
    border-top: 2px solid var(--paper);
    border-left: 0;
  }

  .footer-cta {
    gap: 18px;
  }

  .footer-cta__brand img {
    width: 180px;
  }

  .site-footer {
    gap: 18px;
    font-size: 0.95rem;
  }

  .socials {
    justify-content: flex-start;
  }

  .booking-modal__panel {
    padding: 26px 18px 20px;
  }
}
