/* Royalty Exotic Cars — modern design variant (cango) */
:root {
  --bg: #f4f5f7;
  --bg-elevated: #ffffff;
  --ink: #0b0c0f;
  --ink-soft: #1c1f26;
  --muted: #6a6f7a;
  --gold: #c5a35a;
  --gold-bright: #e2c98a;
  --line: rgba(11, 12, 15, 0.08);
  --line-strong: rgba(11, 12, 15, 0.14);
  --glass: rgba(255, 255, 255, 0.72);
  --max: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 1.02rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
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 80% 50% at 50% -20%, rgba(197, 163, 90, 0.12), transparent 55%),
    radial-gradient(circle at 100% 40%, rgba(11, 12, 15, 0.04), transparent 35%),
    linear-gradient(180deg, #eef0f4 0%, var(--bg) 40%, #e9ebf0 100%);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.section__label::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 14ch;
  color: var(--ink);
}

.section__lead {
  margin-top: 0.85rem;
  color: var(--muted);
  max-width: 40ch;
  font-size: 1.05rem;
  font-weight: 400;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: padding 0.35s var(--ease), background 0.35s;
}

.site-header.is-scrolled {
  padding: 0.4rem 0;
}

.site-header.is-scrolled .site-header__inner {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.2);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(11, 12, 15, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
  padding: 0 0.85rem 0 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.35s var(--ease);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 110;
  line-height: 0;
  padding-left: 0.35rem;
}

.logo img {
  height: 2.6rem;
  width: auto;
  object-fit: contain;
}

.footer__logo {
  height: 4.5rem;
  width: auto;
  margin-bottom: 0.85rem;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__links {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active {
  background: rgba(11, 12, 15, 0.06);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: 0;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  background: var(--ink);
  margin: 5px auto;
  transition: 0.3s;
  border-radius: 2px;
}

.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); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 12, 15, 0.18);
}

.btn--primary:hover {
  background: #000;
  box-shadow: 0 12px 28px rgba(11, 12, 15, 0.22);
}

.btn--gold {
  background: linear-gradient(135deg, #b8913f, var(--gold-bright));
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(11, 12, 15, 0.03);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn--dark:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Hero — full viewport modern */
.hero {
  padding-top: 1rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero__stage {
  position: relative;
  flex: 1;
  min-height: calc(100dvh - 5.5rem);
  margin: 4.5rem 1rem 1rem;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
  filter: contrast(1.05) saturate(0.92);
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 12, 15, 0.25) 0%, rgba(11, 12, 15, 0.1) 40%, rgba(11, 12, 15, 0.78) 100%),
    linear-gradient(90deg, rgba(11, 12, 15, 0.45) 0%, transparent 55%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem 2rem 2.5rem;
  width: min(100%, var(--max));
  margin-inline: auto;
  opacity: 0;
  animation: rise 0.9s 0.15s forwards;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  max-width: 12ch;
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: normal;
  color: var(--gold-bright);
}

.hero__sub {
  max-width: 34ch;
  opacity: 0.88;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 0.95rem 0;
  margin: 0 0 0;
}

.hero__marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

.hero__marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.hero__marquee-track span::after {
  content: "◆";
  color: var(--gold);
  font-size: 0.55rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* Page hero */
.page-hero {
  padding: 8.5rem 0 2rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  max-width: 12ch;
}

.page-hero__sub {
  margin-top: 0.9rem;
  color: var(--muted);
  max-width: 38ch;
  font-size: 1.05rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 1.05fr 1fr;
}

.split__visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 30px 60px rgba(11, 12, 15, 0.1);
}

.split__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* Fleet bento */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.vehicle {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.vehicle:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(11, 12, 15, 0.08);
}

.vehicle__img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e4e6eb;
  position: relative;
}

.vehicle__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.vehicle:hover .vehicle__img img {
  transform: scale(1.06);
}

.vehicle__body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.vehicle__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}

.vehicle__tags {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vehicle__desc {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Locations modern list */
.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.location {
  padding: 1.4rem 1.3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.location:hover {
  border-color: rgba(197, 163, 90, 0.45);
  transform: translateY(-2px);
}

.location h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.location p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.step {
  padding: 1.5rem 1.35rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.step:nth-child(2) {
  background: linear-gradient(160deg, #1a1d24 0%, #0b0c0f 100%);
}

.step:nth-child(3) {
  background: linear-gradient(145deg, #3d3220 0%, #1a160f 55%, #0b0c0f 100%);
}

.step__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  margin-top: auto;
}

/* Contact */
.contact-block {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 40rem;
}

.contact-block > div {
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.contact-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-block p,
.contact-block a {
  color: var(--ink-soft);
  font-weight: 500;
}

.contact-block a:hover {
  color: var(--gold);
}

/* CTA band */
.cta-band {
  margin: 0 1rem 3rem;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(197, 163, 90, 0.25), transparent 50%),
    var(--ink);
  color: #fff;
}

.cta-band__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 16ch;
  line-height: 1.05;
}

.cta-band p {
  margin-top: 0.45rem;
  opacity: 0.7;
  max-width: 30ch;
}

/* Footer */
.site-footer {
  background: #07080a;
  color: rgba(255, 255, 255, 0.62);
  padding: 3rem 0 1.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: 0 1rem 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer h4 {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.site-footer li {
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer__bottom {
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer__brand { display: none; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .split,
  .split--reverse,
  .fleet-grid,
  .locations,
  .steps,
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-block {
    grid-template-columns: 1fr;
  }

  .hero__stage {
    margin: 4.25rem 0.75rem 0.75rem;
    min-height: 70vh;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(244, 245, 247, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .nav__links a {
    font-size: 1.1rem;
    padding: 0.65rem 1.25rem;
  }

  .site-header__inner {
    padding-right: 0.35rem;
  }

  .split,
  .split--reverse,
  .fleet-grid,
  .locations,
  .steps,
  .footer__top,
  .contact-block {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .site-footer,
  .cta-band {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
