:root {
  --red: #e1121b;
  --red-dark: #a80710;
  --ink: #07080b;
  --charcoal: #15171b;
  --text: #232832;
  --muted: #69707a;
  --line: #e2e6ec;
  --paper: #ffffff;
  --mist: #f7f8fa;
  --shadow: 0 14px 34px rgba(9, 16, 24, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[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;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 10px max(22px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(9, 16, 24, 0.08);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(9, 16, 24, 0.08);
}

.brand {
  width: clamp(172px, 18vw, 226px);
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  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 #cfd5de;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.book-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 950;
  white-space: nowrap;
}

.book-button,
.button--primary {
  border: 0;
  background: linear-gradient(180deg, #f51f29 0%, var(--red) 60%, var(--red-dark) 100%);
  color: var(--paper);
  box-shadow: 0 10px 22px rgba(225, 18, 27, 0.24);
}

.book-button {
  padding: 0 24px;
}

.button {
  padding: 0 28px;
}

.button--outline {
  border: 1.5px solid var(--red);
  background: var(--paper);
  color: var(--ink);
}

.button--dark-outline {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: transparent;
  color: var(--paper);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 430px;
  overflow: hidden;
  background: var(--mist);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.99) 36%,
    rgba(255, 255, 255, 0.82) 46%,
    rgba(255, 255, 255, 0.48) 55%,
    rgba(255, 255, 255, 0.16) 63%,
    rgba(255, 255, 255, 0) 70%
  );
  content: "";
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(510px, calc(100% - 42px));
  margin-left: max(22px, calc((100vw - var(--max)) / 2));
  padding: 58px 0 122px;
}

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

.hero h1 {
  max-width: 500px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 0.96;
}

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

.hero__copy > p:not(.eyebrow) {
  max-width: 390px;
  margin: 14px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 750;
}

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

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

.contact-strip {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: max(22px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(230px, 1.22fr) minmax(200px, 0.9fr) minmax(235px, 1.15fr);
  gap: 14px;
  width: min(790px, calc(100% - 44px));
}

.contact-strip a,
.contact-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 62px;
  padding: 13px 16px;
  border: 1px solid #e5e8ee;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(9, 16, 24, 0.12);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
}

.contact-strip svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--red);
  stroke-width: 2.6;
}

.contact-strip a:nth-child(2) span {
  white-space: nowrap;
}

.benefit-panel {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1030px, calc(100% - 44px));
  margin: -10px auto 0;
  border: 1px solid #e3e7ed;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.benefit-panel article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 90px;
  padding: 22px 28px;
}

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

.benefit-panel svg {
  width: 42px;
  height: 42px;
  color: var(--red);
  stroke-width: 2.2;
}

.benefit-panel h2,
.benefit-panel p {
  margin: 0;
}

.benefit-panel h2 {
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.06;
}

.benefit-panel p {
  margin-top: 4px;
  color: #333942;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.28;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 56px 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-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1.02;
}

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

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

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

.service-card__icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  margin: -24px 0 10px 18px;
  place-items: center;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--paper);
  color: var(--red);
  box-shadow: 0 8px 20px rgba(9, 16, 24, 0.14);
}

.service-card h3 {
  margin: 0 18px 5px;
  font-size: 1.02rem;
  font-weight: 950;
}

.service-card p {
  margin: 0;
  padding: 0 18px 22px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.33;
}

.memberships {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(620px, 1.8fr);
  gap: 26px;
  align-items: stretch;
  padding: 48px max(22px, calc((100% - var(--max)) / 2));
  border-top: 1px solid #eef0f3;
  border-bottom: 1px solid #eef0f3;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.memberships__intro {
  align-self: center;
}

.memberships__intro p:not(.section-kicker) {
  max-width: 270px;
  margin: 17px 0 0;
  color: var(--text);
  font-weight: 750;
}

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

.plan-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  background: var(--paper);
  padding: 24px 42px 24px;
  box-shadow: 0 8px 24px rgba(9, 16, 24, 0.08);
}

.plan-card--dark {
  border-color: #111317;
  background: radial-gradient(circle at top right, #262a31 0%, #111317 42%, #07080b 100%);
  color: var(--paper);
}

.plan-card__flag {
  position: absolute;
  top: 0;
  right: 20px;
  border-radius: 0 0 6px 6px;
  background: var(--red);
  color: var(--paper);
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-card__name {
  margin: 0;
  color: #515965;
  font-size: 0.92rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-card--dark .plan-card__name {
  color: var(--red);
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 2px 0 8px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 950;
  line-height: 0.95;
}

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

.plan-card__price span {
  align-self: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.plan-card--dark .plan-card__price span {
  color: #d4d9e1;
}

.plan-card ul {
  display: grid;
  gap: 5px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 850;
}

.plan-card--dark ul {
  color: #f1f3f5;
}

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

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

.about {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(650px, 1.8fr);
  gap: 28px;
  align-items: center;
  padding-bottom: 32px;
}

.about__heading h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  text-transform: uppercase;
}

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

.proof-grid article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
}

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

.proof-grid h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.12;
}

.proof-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

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

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

.comparison-card {
  margin: 0;
  min-width: 0;
}

.comparison-card__images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  background: #111317;
  box-shadow: 0 8px 18px rgba(9, 16, 24, 0.12);
}

.comparison-card figure {
  position: relative;
  min-width: 0;
  margin: 0;
}

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

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

.comparison-card figcaption {
  position: absolute;
  bottom: 7px;
  left: 7px;
  border-radius: 999px;
  background: rgba(7, 8, 11, 0.76);
  color: var(--paper);
  padding: 3px 8px;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin: 9px 0 0;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(930px, 100%);
  margin: 28px auto 0;
}

.reviews article {
  border: 1px solid #e3e7ed;
  border-radius: 8px;
  background: var(--paper);
  padding: 22px 28px;
  box-shadow: 0 12px 24px rgba(9, 16, 24, 0.08);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  color: var(--red);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.reviews p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.reviews span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.site-footer {
  width: min(100% - 44px, 1240px);
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #15171b 0%, #08090b 100%);
  color: var(--paper);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 24px 34px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-cta h2 {
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  line-height: 1.05;
}

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

.footer-cta p {
  margin: 4px 0 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-details {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 26px;
  padding: 22px 34px;
}

.footer-details article {
  min-width: 0;
}

.footer-details h3 {
  margin: 0 0 10px;
  color: #e7ebf0;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-details a,
.footer-details p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #f2f4f7;
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-details svg {
  width: 22px;
  height: 22px;
  color: var(--paper);
  flex: 0 0 auto;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.socials svg {
  width: 17px;
  height: 17px;
  color: currentColor;
}

.legal {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 12px 34px;
  color: #c9ced6;
  font-size: 0.72rem;
  font-weight: 750;
}

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

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

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

.booking-modal h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 2.35rem);
  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: var(--text);
  font-size: 0.84rem;
  font-weight: 950;
}

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

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

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

  .nav-toggle {
    display: grid;
  }

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

  .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 #dfe4eb;
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

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

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

  .hero::before {
    width: 100%;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.98) 38%,
      rgba(255, 255, 255, 0.78) 48%,
      rgba(255, 255, 255, 0.28) 58%,
      rgba(255, 255, 255, 0) 68%
    );
  }

  .hero__copy {
    margin: 0 auto;
    padding-bottom: 260px;
  }

  .hero__image {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    height: 320px;
    min-height: 0;
  }

  .contact-strip {
    bottom: 18px;
    left: 50%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: translateX(-50%);
  }

  .benefit-panel,
  .service-grid,
  .plans,
  .proof-grid,
  .comparison-row,
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .memberships,
  .about,
  .footer-cta,
  .footer-details {
    grid-template-columns: 1fr;
  }

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

  .benefit-panel article:nth-child(3),
  .footer-details article {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  section[id],
  footer[id] {
    scroll-margin-top: 84px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand {
    width: 164px;
  }

  .hero__copy {
    width: calc(100% - 32px);
    padding-top: 48px;
    padding-bottom: 330px;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.98) 44%,
      rgba(255, 255, 255, 0.74) 53%,
      rgba(255, 255, 255, 0.2) 61%,
      rgba(255, 255, 255, 0) 68%
    );
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.5vw, 2.95rem);
  }

  .hero__actions,
  .footer-actions {
    display: grid;
  }

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

  .hero__image {
    height: 340px;
    background-position: center bottom;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .benefit-panel,
  .service-grid,
  .plans,
  .proof-grid,
  .comparison-row,
  .reviews,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .benefit-panel {
    margin-top: 0;
  }

  .benefit-panel article,
  .benefit-panel article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .benefit-panel article:first-child {
    border-top: 0;
  }

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

  .memberships {
    padding: 44px 16px;
  }

  .plan-card {
    padding: 24px 22px;
  }

  .about {
    gap: 18px;
  }

  .proof-grid article {
    grid-template-columns: auto 1fr;
  }

  .site-footer {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }

  .footer-cta,
  .footer-details,
  .legal {
    padding-right: 18px;
    padding-left: 18px;
  }

  .legal {
    display: grid;
    gap: 8px;
  }

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