/* Royalty Exotic Cars — design 2 editorial (static info) */
:root {
  --ink: #12141a;
  --void: #0c0e12;
  --panel: #171a21;
  --silver: #c5c9d1;
  --champagne: #d4c4a8;
  --champagne-deep: #b8a48a;
  --muted: #8b909a;
  --white: #f7f6f4;
  --line: rgba(212, 196, 168, 0.22);
  --max: 1060px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--void);
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 300;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.page-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 80% 0%, rgba(212, 196, 168, 0.08), transparent 55%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(197, 201, 209, 0.05), transparent 50%),
    linear-gradient(180deg, #10131a 0%, var(--void) 45%, #0a0c10 100%);
}

.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 4.75rem 0; }
.section__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  letter-spacing: 0.01em;
  max-width: 16ch;
  line-height: 1.15;
  color: var(--white);
}
.section__lead {
  margin-top: 0.95rem;
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.02rem;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.is-scrolled {
  background: rgba(12, 14, 18, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.logo {
  display: flex;
  align-items: center;
  z-index: 110;
  line-height: 0;
}
.logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}
.footer__logo {
  height: 4.5rem;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(247, 246, 244, 0.72);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--champagne); }
.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: 0;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  background: var(--champagne);
  margin: 5px auto;
  transition: 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.45rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--champagne-deep), var(--champagne));
  color: var(--void);
}
.btn--primary:hover { filter: brightness(1.08); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--champagne);
  color: var(--champagne);
}
.btn--ghost:hover { background: rgba(212, 196, 168, 0.1); }
.btn--light {
  background: var(--white);
  color: var(--void);
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.58) contrast(1.08) saturate(0.85);
  transform: scale(1.04);
  animation: zoom 18s var(--ease) forwards;
}
@keyframes zoom { to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.55) 0%, rgba(12, 14, 18, 0.15) 35%, rgba(12, 14, 18, 0.9) 100%),
    linear-gradient(90deg, rgba(12, 14, 18, 0.5) 0%, transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 4.75rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.85s 0.1s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 0.85s 0.22s forwards;
}
.hero__sub {
  max-width: 38ch;
  color: rgba(247, 246, 244, 0.78);
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
  opacity: 0;
  animation: rise 0.85s 0.38s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  opacity: 0;
  animation: rise 0.85s 0.52s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.page-hero { padding: 8.5rem 0 2.75rem; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 500;
  max-width: 14ch;
  line-height: 1.08;
}
.page-hero__sub {
  margin-top: 0.9rem;
  color: var(--muted);
  max-width: 42ch;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split__visual {
  min-height: 340px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.split__visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.feature-list { margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
}
.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.feature-list p { color: var(--muted); font-size: 0.95rem; }
.mark {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--champagne);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--champagne);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}
.vehicle {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}
.vehicle__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.vehicle__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  filter: saturate(0.9);
}
.vehicle:hover .vehicle__img img { transform: scale(1.04); }
.vehicle__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.vehicle__tags {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 400;
}
.vehicle__desc {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.location {
  padding: 1.5rem 1.15rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.location:nth-child(3n) { border-right: 0; }
.location:nth-child(3n + 1) { padding-left: 0; }
.location h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.location p { color: var(--muted); font-size: 0.92rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
  counter-reset: s;
}
.step { counter-increment: s; }
.step::before {
  content: "0" counter(s);
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: rgba(212, 196, 168, 0.28);
  display: block;
  margin-bottom: 0.55rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.step p { color: var(--muted); font-size: 0.95rem; }

.contact-block {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
  max-width: 28rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}
.contact-block h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--champagne);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.contact-block p,
.contact-block a { color: var(--muted); }
.contact-block a:hover { color: var(--champagne); }

.site-footer {
  background: #08090c;
  border-top: 1px solid var(--line);
  color: rgba(247, 246, 244, 0.55);
  padding: 3rem 0 1.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__brand { display: none; }
.site-footer h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.site-footer li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.site-footer a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .split,
  .fleet-grid,
  .locations,
  .steps,
  .footer__top { grid-template-columns: 1fr 1fr; }
  .location:nth-child(3n) { border-right: 1px solid var(--line); }
  .location:nth-child(2n) { border-right: 0; }
  .location:nth-child(2n + 1) { padding-left: 0; }
}
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--void);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__links {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .split,
  .fleet-grid,
  .locations,
  .steps,
  .footer__top { grid-template-columns: 1fr; }
  .location {
    border-right: 0 !important;
    padding-left: 0 !important;
  }
}
