:root {
  --bg: #080808;
  --panel: #111111;
  --panel-soft: #181818;
  --ink: #f6f1e7;
  --muted: #c8c1b2;
  --gold: #c8a45d;
  --gold-light: #f0d58c;
  --line: rgba(240, 213, 140, 0.22);
  --white-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.topbar {
  border-bottom: 1px solid var(--white-line);
  background: #050505;
  font-size: 0.9rem;
}

.topbar__inner,
.header__inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__inner {
  min-height: 42px;
  flex-wrap: wrap;
  padding: 8px 0;
  color: var(--muted);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 78px;
}

.brand {
  display: grid;
  gap: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.1;
}

.brand span {
  font-family: Inter, Arial, sans-serif;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.5rem;
}

.hero {
  min-height: clamp(680px, 88vh, 860px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 8, 8, 0.1) 42%);
}

.hero__content {
  padding: 118px 0 86px;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: #eee4d2;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.btn--gold {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
}

.btn--dark {
  background: #0d0d0d;
}

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

.section {
  padding: clamp(70px, 10vw, 120px) 0;
}

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

.section__head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section__head p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.grid--fleet {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 26px;
}

.car-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
}

.car-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #030303;
}

.car-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.car-card__media--sclass img {
  object-position: 52% 46%;
}

.car-card__media--s350 img {
  object-position: 52% 48%;
}

.car-card__media--bentley img {
  object-position: 54% 52%;
}

.car-card__media--rolls img {
  object-position: 50% 48%;
}

.car-card:hover img {
  transform: scale(1.045);
}

.grid--fleet .car-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: clamp(8px, 1.4vw, 14px);
  background:
    radial-gradient(circle at 50% 45%, rgba(200, 164, 93, 0.12), transparent 48%),
    linear-gradient(135deg, #171615, #0e0e0d);
}

.grid--fleet .car-card__media img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.car-card__title {
  padding: 20px 22px 0;
  background: var(--panel);
  border-top: 1px solid rgba(240, 213, 140, 0.28);
}

.car-card__title h2,
.car-card__title h3 {
  font-size: clamp(1.2rem, 1.75vw, 1.55rem);
  color: var(--ink);
}

.car-card__body {
  padding: 14px 22px 24px;
}

.car-card__body p {
  min-height: 78px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  padding: 6px 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature,
.service,
.testimonial,
.faq-item {
  border: 1px solid var(--white-line);
  background: var(--panel);
  padding: 26px;
}

.feature strong,
.service strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.feature span,
.service span {
  color: var(--gold);
  font-size: 1.7rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.booking-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(200, 164, 93, 0.08), rgba(255, 255, 255, 0.03));
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--white-line);
  background: #070707;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.15);
}

.form-note {
  min-height: 24px;
  margin-top: 12px;
  color: var(--gold-light);
  font-weight: 700;
}

.page-hero {
  padding: 96px 0 56px;
  background:
    linear-gradient(180deg, rgba(200, 164, 93, 0.1), transparent 42%),
    #090909;
  border-bottom: 1px solid var(--white-line);
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.12rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.gallery__main {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--white-line);
  overflow: hidden;
  background: #050505;
}

.gallery__main img,
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-height: 620px;
  overflow: auto;
}

.gallery__thumb {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--white-line);
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.gallery__thumb.is-active {
  border-color: var(--gold-light);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--white-line);
  padding-bottom: 12px;
  color: var(--muted);
}

.detail-list strong {
  color: var(--ink);
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.cta-band {
  padding: 58px 0;
  background: linear-gradient(135deg, #101010, #050505);
  border-block: 1px solid var(--line);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer {
  padding: 56px 0 96px;
  background: #050505;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 8px;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--gold-light);
}

.mobile-sticky {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: none;
  box-shadow: var(--shadow);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  border: 1px solid var(--white-line);
  background: var(--panel);
  padding: 22px;
}

@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }

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

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

  .split {
    gap: 32px;
  }

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

  .gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
    max-height: none;
  }

  .booking-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 78px;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__links {
    justify-content: center;
    row-gap: 6px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: 121px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 16px 22px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--white-line);
  }

  .hero {
    min-height: 680px;
  }

  .grid--2,
  .split,
  .footer__grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .car-card__body p {
    min-height: 0;
  }

  .page-hero {
    padding: 72px 0 46px;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky {
    display: inline-flex;
    min-width: 148px;
    width: auto;
  }
}

@media (max-width: 620px) {
  .container,
  .topbar__inner,
  .header__inner {
    width: min(100% - 24px, var(--max));
  }

  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 70px;
  }

  .nav {
    inset: 70px 0 auto 0;
    padding-inline: 12px;
  }

  .hero {
    min-height: 640px;
  }

  .hero::before {
    background-position: 58% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.78) 52%, var(--bg)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent);
  }

  .hero__content {
    padding: 84px 0 64px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

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

  .section {
    padding: 58px 0;
  }

  .section__head {
    margin-bottom: 26px;
  }

  .grid,
  .grid--3,
  .grid--2,
  .grid--fleet {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .booking-panel,
  .feature,
  .service,
  .testimonial,
  .faq-item,
  .contact-card {
    padding: 20px;
  }

  .car-card__body {
    padding: 20px;
  }

  .car-card__title {
    padding: 18px 20px 0;
  }

  .car-card__media {
    aspect-ratio: 4 / 3;
  }

  .grid--fleet .car-card__media {
    aspect-ratio: 4 / 3;
  }

  .gallery__main {
    aspect-ratio: 4 / 3;
  }

  .gallery__thumbs {
    grid-template-columns: repeat(3, 1fr);
    max-height: none;
    gap: 8px;
  }

  .detail-list li {
    display: grid;
    gap: 4px;
  }

  .footer {
    padding-bottom: 118px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand span {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }

  .mobile-sticky {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}

@media (max-width: 380px) {
  .container,
  .header__inner {
    width: min(100% - 20px, var(--max));
  }

  .brand {
    font-size: 0.96rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 610px;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .eyebrow::before {
    width: 28px;
  }
}
