
:root {
  --bg: #fbf7f0;
  --bg-soft: #f4ede1;
  --bg-card: #ffffff;
  --navy: #08142b;
  --navy-2: #10213f;
  --text: #182130;
  --muted: #6f6659;
  --gold: #c59a46;
  --gold-deep: #9b6f23;
  --line: rgba(8, 20, 43, 0.12);
  --shadow: 0 26px 50px rgba(7, 15, 30, 0.08);
  --radius: 28px;
  --radius-sm: 22px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197,154,70,0.10), transparent 28%),
    linear-gradient(180deg, #fcf8f2 0%, #fbf7f0 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }
input, select, textarea, button { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 12px;
}
.skip-link:focus { left: 1rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }

.topbar {
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
.topbar__inner, .header__inner, .footer__bottom, .hero__badges, .fleet-card__meta, .fleet-card__actions,
.contact-actions, .cta-panel__actions, .topbar__actions {
  display: flex;
  align-items: center;
}
.topbar__inner {
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.topbar__inner p { margin: 0; }
.topbar__actions { gap: 1rem; flex-wrap: wrap; }
.topbar__actions a:hover { color: var(--navy); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,240,0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand img { width: clamp(180px, 22vw, 290px); height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border: 1px solid rgba(8,20,43,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}
.lang-switch a {
  min-width: 2.15rem;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  color: var(--muted);
  text-align: center;
}
.lang-switch a.is-active {
  color: #111;
  background: linear-gradient(135deg, #d3ab5f 0%, #b88328 100%);
}
.main-nav > a:not(.btn) {
  position: relative;
  color: var(--text);
  font-weight: 700;
  padding: 0.4rem 0;
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav > a:hover::after,
.main-nav > a.is-active::after { width: 100%; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 800;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #d3ab5f 0%, #b88328 100%);
  color: #111;
  box-shadow: 0 16px 28px rgba(197,154,70,0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 22px 34px rgba(197,154,70,0.22); }
.btn--ghost, .btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(8,20,43,0.16);
  box-shadow: none;
}
.section--dark .btn--ghost,
.page-hero--vehicle .btn--ghost-dark { color: #fff; border-color: rgba(255,255,255,0.2); }
.btn--nav { padding: 0.8rem 1.05rem; }
.btn--nav.is-active {
  box-shadow: 0 0 0 3px rgba(197,154,70,0.25);
}


.hero, .page-hero {
  position: relative;
  overflow: hidden;
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 12%, rgba(197,154,70,0.14), transparent 22%),
    radial-gradient(circle at 20% 85%, rgba(8,20,43,0.05), transparent 18%);
}
.hero__grid, .page-hero__grid, .intro-grid, .fleet-cards, .booking-layout, .contact-layout,
.footer__grid, .split-panel, .vehicle-layout, .faq-grid, .note-grid, .occasion-grid, .form-grid {
  display: grid;
  gap: 2rem;
}
.hero__grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: 4.5rem 0 4rem;
}

.hero__grid--banner {
  grid-template-columns: 1fr;
  min-height: calc(100vh - 150px);
  padding: 5.5rem 0 5rem;
}

.hero--banner {
  min-height: calc(100vh - 150px);
}

.hero--banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,20,43,0.60) 0%, rgba(8,20,43,0.25) 45%, rgba(8,20,43,0.05) 70%),
    radial-gradient(circle at 20% 10%, rgba(197,154,70,0.18), transparent 35%);
  z-index: 0;
}

.hero__content--glass {
  max-width: 720px;
  background: rgba(251,247,240,0.86);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2.2rem;
}

.hero--banner h1 {
  color: var(--navy);
}

.hero__models {
  margin: 1.25rem 0 0;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(8,20,43,0.85);
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.story-split--reverse {
  grid-template-columns: 1fr 1fr;
}

.story-split--reverse .story-split__content { order: 2; }
.story-split--reverse .story-split__media { order: 1; }

.story-split__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(8,20,43,0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.story-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content, .page-hero__grid > * { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}
.hero h1, .page-hero h1, .section-heading h2, .intro-grid h2, .split-panel h2, .vehicle-info h2,
.booking-panel h2, .contact-panel h2, .cta-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--navy);
}
.hero h1 { font-size: clamp(3.2rem, 7vw, 5.8rem); max-width: 12ch; }
.page-hero h1, .section-heading h2, .split-panel h2, .cta-panel h2, .intro-grid h2 { font-size: clamp(2.5rem, 4vw, 4.1rem); }
.hero__lead, .page-hero p, .intro-grid__text p, .fleet-card p, .note-card p, .occasion-card p,
.split-panel p, .legal-card p, .info-card p, .faq-card p, .contact-panel p, .booking-panel p,
.form-note, .vehicle-info p {
  color: var(--muted);
  line-height: 1.8;
}
.hero__actions, .contact-actions, .cta-panel__actions { gap: 1rem; flex-wrap: wrap; }
.hero__actions { margin: 2rem 0 1.5rem; }
.hero__badges {
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}
.hero__badges li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(8,20,43,0.08);
}
.hero__visual {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}
.feature-visual-card {
  background: var(--bg-card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,20,43,0.06);
}
.feature-visual-card img { width: 100%; height: 100%; object-fit: cover; }
.feature-visual-card--large { min-height: 600px; }
.feature-visual-stack { display: grid; gap: 1.2rem; }
.feature-visual-stack .feature-visual-card { min-height: 290px; }

.page-hero { padding: 4.4rem 0 1.8rem; }
.page-hero__grid {
  grid-template-columns: 1fr minmax(280px, 360px);
  align-items: end;
}
.page-hero__note {
  padding: 1.5rem;
  background: rgba(255,255,255,0.82);
  border-radius: 26px;
  border: 1px solid rgba(8,20,43,0.08);
  box-shadow: var(--shadow);
}
.page-hero__note strong, .page-hero__note span { display: block; }
.page-hero__note strong {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.page-hero__note span { color: var(--muted); line-height: 1.7; }
.page-hero--vehicle {
  background: linear-gradient(180deg, #08142b 0%, #10213f 100%);
}
.page-hero--vehicle h1, .page-hero--vehicle p, .page-hero--vehicle .eyebrow,
.page-hero--vehicle .page-hero__note strong, .page-hero--vehicle .page-hero__note span,
.page-hero--vehicle .page-hero__note a { color: #fff; }
.page-hero--vehicle .page-hero__note {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.section { padding: 5rem 0; }
.section--soft { background: linear-gradient(180deg, #f4ede1 0%, #f8f3ea 100%); }
.section--dark {
  background: linear-gradient(180deg, #08142b 0%, #10213f 100%);
  color: #fff;
}
.section--dark .section-heading h2,
.section--dark .split-panel h2,
.section--dark .split-panel p,
.section--dark .split-panel__card,
.section--dark .split-panel__card h3,
.section--dark .list-elegant li,
.section--dark .check-grid strong,
.section--dark .check-grid span { color: #fff; }
.section-heading {
  max-width: 900px;
  margin: 0 0 2rem;
}
.section-heading p:last-child { margin-bottom: 0; }

.intro-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
.intro-grid__lead h2 { max-width: 10ch; }

.fleet-cards { grid-template-columns: 1fr; }
.fleet-cards--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fleet-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(8,20,43,0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.fleet-card__image { display: block; aspect-ratio: 16/10; }
.fleet-card__image img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card__content { padding: 1.5rem; }
.fleet-card__meta {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #f6efe3;
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 800;
}
.price {
  color: var(--navy);
  font-weight: 800;
}
.fleet-card h3, .fleet-card h2, .split-panel__card h3, .info-card h3, .occasion-card h3, .faq-card h3, .legal-card h2 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 800;
}
.text-link:hover { color: var(--gold-deep); }
.fleet-card--full {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.fleet-card--full .fleet-card__image { aspect-ratio: auto; min-height: 100%; }
.spec-list { display: grid; gap: 0.7rem; color: var(--muted); margin-top: 1rem; }
.spec-list li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.7;
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.split-panel {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.check-grid div, .split-panel__card, .info-card, .occasion-card, .faq-card, .note-card, .legal-card, .note-box {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 1.35rem;
}
.split-panel--light .split-panel__card,
.split-panel--light .note-box,
.info-card, .occasion-card, .faq-card, .note-card, .legal-card, .fleet-card, .page-hero__note {
  background: rgba(255,255,255,0.85);
  border-color: rgba(8,20,43,0.08);
}
.check-grid strong { display: block; margin-bottom: 0.5rem; }
.check-grid span { color: rgba(255,255,255,0.80); line-height: 1.7; }
.list-elegant { display: grid; gap: 0.75rem; }
.list-elegant li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.list-elegant li:last-child { border-bottom: 0; }
.split-panel--light .list-elegant li { border-bottom-color: rgba(8,20,43,0.08); color: var(--text); }

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #08142b 0%, #10213f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-panel h2, .cta-panel p, .cta-panel .eyebrow { color: #fff; }

.booking-layout, .contact-layout { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
.booking-panel, .contact-panel {
  background: rgba(255,255,255,0.88);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(8,20,43,0.08);
  box-shadow: var(--shadow);
}
.booking-side, .contact-cards { display: grid; gap: 1rem; }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 2rem 0 1.5rem; }
.form-grid__full { grid-column: 1 / -1; }
label { display: grid; gap: 0.55rem; font-weight: 700; color: var(--navy); }
label span { font-size: 0.96rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(8,20,43,0.12);
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem 1rem;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(197,154,70,0.45);
  border-color: var(--gold);
}
.form-alert {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
}
.form-alert--success {
  background: rgba(46,125,50,0.1);
  color: #1b5e20;
  border: 1px solid rgba(46,125,50,0.2);
}
.form-alert--error {
  background: rgba(183,28,28,0.08);
  color: #8b1a1a;
  border: 1px solid rgba(183,28,28,0.18);
}
.form-hp {
  position: absolute;
  left: -9999px;
}
.form-note { margin-top: 1rem; font-size: 0.92rem; }

.vehicle-layout { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.vehicle-gallery { display: grid; gap: 1rem; }
.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,20,43,0.08);
  background: #fff;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame--large { min-height: 440px; }
.image-frame--soft { background: #fbf7f0; }
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.3rem 0 1.6rem;
}
.highlights span {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: #f6efe3;
  color: var(--navy);
  font-weight: 700;
}
.note-box {
  border: 1px solid rgba(8,20,43,0.08);
}
.note-box h3 { margin: 0 0 0.8rem; color: var(--navy); }

.legal-layout { display: grid; gap: 1rem; }
.legal-card--alert {
  background: linear-gradient(135deg, rgba(197,154,70,0.18), rgba(255,255,255,0.88));
}

.site-footer {
  margin-top: 1rem;
  padding: 4rem 0 0;
  border-top: 1px solid var(--line);
}
.footer__grid {
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer__logo { width: min(260px, 100%); height: auto; margin-bottom: 1rem; }
.site-footer h3 {
  color: var(--navy);
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer li + li { margin-top: 0.7rem; }
.site-footer p, .site-footer li, .site-footer a { color: var(--muted); line-height: 1.8; }
.site-footer a:hover { color: var(--navy); }
.footer__bottom {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.footer__bottom p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.8s ease forwards;
}
.reveal--delay { animation-delay: 0.12s; }
.reveal--delay-2 { animation-delay: 0.24s; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; animation: none; }
}

@media (max-width: 1080px) {
  .story-split { grid-template-columns: 1fr; }
  .story-split--reverse .story-split__content, .story-split--reverse .story-split__media { order: initial; }

  .hero__grid, .intro-grid, .split-panel, .story-split, .booking-layout, .contact-layout, .vehicle-layout, .page-hero__grid,
  .fleet-card--full, .footer__grid {
    grid-template-columns: 1fr;
  }
  .fleet-cards--home, .occasion-grid, .note-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__grid { min-height: auto; }
  .feature-visual-card--large { min-height: 420px; }
}

@media (max-width: 820px) {
  .topbar__inner { flex-direction: column; align-items: flex-start; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.8rem);
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow);
    border: 1px solid rgba(8,20,43,0.08);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.btn) { padding: 0.4rem 0; }
  .lang-switch { align-self: flex-start; }
  .hero__visual { grid-template-columns: 1fr; }
  .fleet-cards--home, .occasion-grid, .note-grid, .faq-grid, .form-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .cta-panel, .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero h1 { max-width: none; }
}

@media (max-width: 560px) {
  .section { padding: 4rem 0; }
  .hero__grid, .page-hero { padding-top: 3rem; }
  .hero h1 { font-size: 3rem; }
  .page-hero h1, .section-heading h2, .split-panel h2, .cta-panel h2, .intro-grid h2 { font-size: 2.45rem; }
  .booking-panel, .contact-panel, .fleet-card__content, .cta-panel { padding: 1.4rem; }
  .feature-visual-card--large { min-height: 280px; }
}


.btn.is-active { outline: 2px solid rgba(197,154,70,0.55); outline-offset: 2px; }


.btn--ghost-on-image {
  background: rgba(8,20,43,0.88);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 16px 30px rgba(8,20,43,0.18);
}

.hero--cinematic {
  padding: 0;
}

.hero-cinematic {
  position: relative;
  width: 100%;
  min-height: min(88vh, 980px);
  overflow: hidden;
  background: #d9d2c4;
}

.hero-cinematic__media,
.hero-cinematic__media img {
  display: block;
  width: 100%;
  height: min(88vh, 980px);
}

.hero-cinematic__media {
  margin: 0;
}

.hero-cinematic__media img {
  object-fit: cover;
  object-position: center center;
}

.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,20,43,0.36) 0%, rgba(8,20,43,0.12) 30%, rgba(8,20,43,0.04) 55%, rgba(8,20,43,0.18) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.00) 20%, rgba(8,20,43,0.18) 76%, rgba(8,20,43,0.74) 100%);
  z-index: 1;
}

.hero-cinematic__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(2rem, 7vw, 4.4rem);
}

.hero-cinematic__content {
  max-width: min(760px, 92vw);
}

.hero-cinematic__content .eyebrow {
  color: rgba(197,154,70,0.98);
  text-shadow: 0 4px 12px rgba(255,255,255,0.18);
}

.hero-cinematic__content h1 {
  max-width: 12ch;
  margin-bottom: 1.05rem;
  color: #0b1733;
  text-shadow: 0 12px 28px rgba(255,255,255,0.42);
}

.hero-cinematic__content .hero__lead {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.98);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.62;
  text-shadow: 0 6px 22px rgba(8,20,43,0.48);
}

.hero-cinematic .hero__actions {
  margin-top: 2rem;
}

.hero-cinematic__ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1.15rem 1rem 1.4rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-cinematic__ribbon span {
  position: relative;
}

.hero-cinematic__ribbon span:not(:last-child)::after {
  content: "•";
  color: var(--gold);
  margin-left: 1.2rem;
}

@media (max-width: 1100px) {
  .hero-cinematic,
  .hero-cinematic__media,
  .hero-cinematic__media img {
    min-height: 760px;
    height: 760px;
  }

  .hero-cinematic__content h1 {
    max-width: 11ch;
  }
}

@media (max-width: 820px) {
  .hero-cinematic,
  .hero-cinematic__media,
  .hero-cinematic__media img {
    min-height: 690px;
    height: 690px;
  }

  .hero-cinematic__inner {
    padding-top: 1.75rem;
  }

  .hero-cinematic__content h1 {
    max-width: 10ch;
  }

  .hero-cinematic__content .hero__lead {
    max-width: 92%;
    font-size: 1rem;
  }

  .hero-cinematic__ribbon {
    gap: 0.7rem;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .hero-cinematic__ribbon span:not(:last-child)::after {
    margin-left: 0.7rem;
  }
}

@media (max-width: 560px) {
  .hero-cinematic,
  .hero-cinematic__media,
  .hero-cinematic__media img {
    min-height: 620px;
    height: 620px;
  }

  .hero-cinematic__content {
    max-width: 100%;
  }

  .hero-cinematic__content h1 {
    font-size: clamp(2.5rem, 10vw, 3.45rem);
    max-width: 9ch;
  }

  .hero-cinematic__content .hero__lead {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-cinematic .hero__actions {
    gap: 0.75rem;
  }

  .hero-cinematic .btn {
    width: 100%;
  }

  .hero-cinematic__ribbon {
    font-size: 0.68rem;
    padding-inline: 0.8rem;
    padding-bottom: 1rem;
  }

  .hero-cinematic__ribbon span:not(:last-child)::after {
    content: "";
    margin-left: 0;
  }
}


.hero--showcase {
  padding: 2.2rem 0 0;
}

.hero-showcase {
  position: relative;
}

.hero-showcase__content {
  position: absolute;
  top: 2.2rem;
  left: 3rem;
  z-index: 2;
  max-width: 740px;
}

.hero-showcase__content .eyebrow {
  color: rgba(197,154,70,0.96);
}

.hero-showcase__content h1 {
  max-width: 12ch;
  color: #0b1733;
  text-shadow: 0 6px 18px rgba(255,255,255,0.26);
}

.hero-showcase__content .hero__lead {
  max-width: 780px;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 3px 10px rgba(8,20,43,0.35);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.hero-showcase__visual {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  min-height: 780px;
  box-shadow: var(--shadow);
}

.hero-showcase__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(10,19,38,0.28) 78%, rgba(10,19,38,0.62) 100%);
}

.hero-showcase__visual img {
  display: block;
  width: 100%;
  height: 780px;
  object-fit: cover;
  object-position: center;
}

.hero-showcase__ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 1.15rem 1.5rem 1.45rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-showcase__ribbon span {
  position: relative;
}

.hero-showcase__ribbon span:not(:last-child)::after {
  content: "•";
  color: var(--gold-deep);
  margin-left: 1.4rem;
}

.page-home .hero--showcase .hero__actions {
  margin-top: 1.8rem;
}

.page-home .hero--showcase .btn--ghost-dark {
  background: rgba(8,20,43,0.95);
}

@media (max-width: 1100px) {
  .hero-showcase__content {
    left: 2rem;
    right: 2rem;
    max-width: 640px;
  }
  .hero-showcase__visual,
  .hero-showcase__visual img {
    min-height: 680px;
    height: 680px;
  }
}

@media (max-width: 820px) {
  .hero--showcase {
    padding-top: 1rem;
  }
  .hero-showcase__content {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    max-width: none;
  }
  .hero-showcase__visual,
  .hero-showcase__visual img {
    min-height: 620px;
    height: 620px;
  }
  .hero-showcase__content h1 {
    max-width: 10ch;
  }
  .hero-showcase__content .hero__lead {
    font-size: 1rem;
  }
  .hero-showcase__ribbon {
    gap: 0.7rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    padding-inline: 1rem;
  }
  .hero-showcase__ribbon span:not(:last-child)::after {
    margin-left: 0.7rem;
  }
}

@media (max-width: 560px) {
  .hero-showcase__visual,
  .hero-showcase__visual img {
    min-height: 580px;
    height: 580px;
  }
  .hero-showcase__content {
    left: 1rem;
    right: 1rem;
  }
  .hero-showcase__content h1 {
    font-size: clamp(2.55rem, 10vw, 3.45rem);
  }
  .hero-showcase__content .hero__lead {
    font-size: 0.95rem;
    max-width: 95%;
  }
  .hero-showcase__ribbon {
    font-size: 0.68rem;
    gap: 0.5rem;
    padding-bottom: 1rem;
  }
}


.hero--immersive .hero__grid--banner {
  align-items: center;
  min-height: min(86vh, 860px);
  padding: 5rem 0;
}

.page-alpine .hero__content--glass .eyebrow {
  color: #f1d089;
}

.page-alpine .hero__content--glass h1 {
  color: #f1d089;
}

.page-alpine .hero__actions .btn,
.page-alpine .hero__actions .btn:visited {
  color: #ffffff;
}

.page-alpine .hero__actions .btn:hover,
.page-alpine .hero__actions .btn:focus {
  color: #ffffff;
}

.page-alpine .hero__actions .btn--ghost,
.page-alpine .hero__actions .btn--ghost:visited {
  color: #ffffff;
}

.page-alpine .hero__actions .btn--ghost:hover,
.page-alpine .hero__actions .btn--ghost:focus {
  color: #ffffff;
}

.page-alpine .hero__content--glass .eyebrow,
.page-alpine .hero__content--glass h1,
.page-tesla-modele-s .hero__content--glass .eyebrow,
.page-tesla-modele-s .hero__content--glass h1,
.page-corvette-c8 .hero__content--glass .eyebrow,
.page-corvette-c8 .hero__content--glass h1 {
  color: #f1d089;
}

.page-alpine .hero__actions .btn,
.page-alpine .hero__actions .btn:visited,
.page-alpine .hero__actions .btn--ghost,
.page-alpine .hero__actions .btn--ghost:visited,
.page-tesla-modele-s .hero__actions .btn,
.page-tesla-modele-s .hero__actions .btn:visited,
.page-tesla-modele-s .hero__actions .btn--ghost,
.page-tesla-modele-s .hero__actions .btn--ghost:visited,
.page-corvette-c8 .hero__actions .btn,
.page-corvette-c8 .hero__actions .btn:visited,
.page-corvette-c8 .hero__actions .btn--ghost,
.page-corvette-c8 .hero__actions .btn--ghost:visited {
  color: #ffffff;
}

.page-alpine .hero__actions .btn:hover,
.page-alpine .hero__actions .btn:focus,
.page-alpine .hero__actions .btn--ghost:hover,
.page-alpine .hero__actions .btn--ghost:focus,
.page-tesla-modele-s .hero__actions .btn:hover,
.page-tesla-modele-s .hero__actions .btn:focus,
.page-tesla-modele-s .hero__actions .btn--ghost:hover,
.page-tesla-modele-s .hero__actions .btn--ghost:focus,
.page-corvette-c8 .hero__actions .btn:hover,
.page-corvette-c8 .hero__actions .btn:focus,
.page-corvette-c8 .hero__actions .btn--ghost:hover,
.page-corvette-c8 .hero__actions .btn--ghost:focus {
  color: #ffffff;
}

.page-alpine .hero__actions .btn:first-child,
.page-tesla-modele-s .hero__actions .btn:first-child,
.page-corvette-c8 .hero__actions .btn:first-child {
  background: linear-gradient(135deg, #e6c16a 0%, #c79a35 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(199, 154, 53, 0.24);
}


.hero--immersive .hero__content--glass {
  max-width: 700px;
  background: rgba(251, 247, 240, 0.88);
}

.hero--immersive .hero__content--glass h1 {
  max-width: none;
}

.hero--immersive .hero__lead {
  font-size: 1.12rem;
}

.hero--immersive .hero__models {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero--immersive .hero__models span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(8,20,43,0.08);
  font-size: 0.82rem;
  color: var(--navy);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.choice-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(8,20,43,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.choice-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.choice-card__content {
  padding: 1.5rem;
}

.choice-card h3 {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.choice-card p {
  color: var(--muted);
  line-height: 1.8;
}

.choice-card__meta {
  margin-top: 1rem;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-heading--tight {
  max-width: 760px;
}

.vehicle-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.vehicle-story__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(8,20,43,0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.vehicle-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-story__copy .eyebrow {
  margin-bottom: 0.9rem;
}

.vehicle-story__copy h2 {
  max-width: 12ch;
}

.vehicle-story__copy p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .choice-grid,
  .vehicle-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero--immersive .hero__grid--banner {
    min-height: 620px;
    padding: 3rem 0;
  }
}
