:root {
  --bg: #120e0b;
  --bg-2: #1b1511;
  --panel: rgba(28, 22, 18, 0.88);
  --panel-soft: rgba(36, 28, 22, 0.94);
  --text: #f7f0e4;
  --muted: #c6bbab;
  --line: rgba(242, 222, 188, 0.12);
  --gold: #d9b884;
  --gold-2: #a27942;
  --gold-soft: #f7e3c2;
  --success: #8fd8b9;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 14, 11, 0), rgba(18, 14, 11, 0.92));
  z-index: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(171, 124, 62, 0.3), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(217, 184, 132, 0.12), transparent 24%),
    linear-gradient(180deg, #15100d 0%, #1b1410 44%, #130f0d 100%);
}

body {
  min-height: 100vh;
}

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

.ambient {
  position: fixed;
  pointer-events: none;
  inset: auto;
  width: 380px;
  height: 380px;
  filter: blur(90px);
  opacity: 0.28;
  z-index: 0;
}

.ambient-a {
  top: -120px;
  left: -100px;
  background: rgba(168, 119, 54, 0.45);
}

.ambient-b {
  right: -120px;
  top: 32%;
  background: rgba(85, 55, 24, 0.32);
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.utility-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(21, 16, 13, 0.82);
  backdrop-filter: blur(18px);
}

.utility-row,
.nav-row,
.hero-actions,
.hero-proof,
.summary-actions,
.final-cta-actions,
.utility-links,
.coverage-list {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions,
.summary-actions,
.final-cta-actions,
.service-cta-actions {
  align-items: center;
}

.utility-row {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  font-size: 0.87rem;
  color: var(--muted);
}

.utility-links {
  gap: 16px;
  align-items: center;
}

.utility-links a {
  text-decoration: none;
  color: var(--gold-soft);
}

.vip-lang-picker {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(217, 184, 132, 0.22);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  appearance: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(9, 11, 15, 0.72);
  backdrop-filter: blur(18px);
}

.contact-strip {
  border-bottom: 1px solid rgba(217, 184, 132, 0.08);
  background:
    linear-gradient(180deg, rgba(20, 15, 12, 0.92), rgba(14, 12, 11, 0.84)),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.12), transparent 45%);
}

.contact-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
}

.contact-strip-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-strip-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-strip-copy strong {
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.contact-strip-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(217, 184, 132, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.contact-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 184, 132, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.contact-pill--primary {
  border-color: rgba(247, 227, 194, 0.16);
  background: linear-gradient(135deg, rgba(222, 185, 131, 0.22), rgba(186, 136, 78, 0.14));
  color: #f7e3c2;
}

.contact-dock {
  display: none;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-cta .btn {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.nav-row {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(217, 184, 132, 0.28);
  background: linear-gradient(145deg, rgba(217, 184, 132, 0.18), rgba(255, 255, 255, 0.03));
  color: var(--gold-soft);
  font: 700 1.5rem/1 "Cormorant Garamond", serif;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font: 700 1.6rem/1 "Cormorant Garamond", serif;
  letter-spacing: 0.05em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e6dece;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  border: 1px solid rgba(247, 227, 194, 0.16);
  background: linear-gradient(135deg, #deb983 0%, #ba884e 45%, #8b6132 100%);
  color: #120c07;
}

.btn-secondary {
  border: 1px solid rgba(217, 184, 132, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.btn-quiet {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--gold-soft);
  justify-content: flex-start;
  box-shadow: none;
}

.btn-quiet::after {
  content: "→";
  font-size: 0.95em;
  transition: transform 0.18s ease;
}

.btn-quiet:hover {
  transform: none;
  color: #fff1d6;
}

.btn-quiet:hover::after {
  transform: translateX(3px);
}

.btn-quiet-light {
  color: rgba(255, 245, 227, 0.9);
}

.btn-quiet-light:hover {
  color: #ffffff;
}

.hero,
.section {
  padding: 72px 0;
}

.hero-compact {
  padding-bottom: 56px;
}

.hero-compact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.hero {
  padding-top: 72px;
}

.site-header {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-stage,
.builder-panel,
.summary-card,
.itinerary-card,
.comparison-card,
.service-card,
.channel-card,
.confirmation-card,
.experience-card,
.final-cta-card,
.stage-shell {
  border-radius: 28px;
}

.stage-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(22, 27, 35, 0.98), rgba(8, 10, 14, 0.98));
}

.stage-shell::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 184, 132, 0.22), rgba(217, 184, 132, 0));
  pointer-events: none;
}

.hero-proof article,
.proof-ribbon-grid article,
.builder-topline-card,
.builder-notes article,
.cart-item,
.close-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(26, 31, 39, 0.94), rgba(11, 14, 18, 0.98));
  border: 1px solid rgba(242, 222, 188, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero-proof article,
.proof-ribbon-grid article {
  padding: 18px 18px 16px;
}

.proof-ribbon-grid article strong,
.hero-proof article strong,
.service-card h3,
.comparison-card h3,
.channel-card strong,
.confirmation-card strong,
.experience-card h3,
.final-cta-card h2,
.builder-topline-card strong,
.summary-card h3,
.itinerary-card h3 {
  letter-spacing: -0.02em;
}

.hero-actions .btn,
.final-cta-actions .btn,
.summary-actions .btn,
.stage-actions .btn {
  min-height: 46px;
}

.btn-primary {
  box-shadow: 0 16px 34px rgba(155, 115, 65, 0.28);
}

.btn-secondary:hover,
.choice-chip:hover,
.package-card:hover,
.extra-card:hover,
.service-card:hover,
.comparison-card:hover,
.channel-card:hover,
.confirmation-card:hover,
.experience-card:hover {
  transform: translateY(-2px);
}

.section-head,
.section-head-wide {
  max-width: 920px;
}

.section-head p,
.section-head-wide p {
  max-width: 70ch;
}

.comparison-card ul,
.service-card ul {
  padding-left: 18px;
}

.proof-ribbon-grid,
.channel-grid,
.experience-grid,
.service-grid {
  gap: 18px;
}

.service-card,
.comparison-card,
.channel-card,
.confirmation-card,
.experience-card {
  padding: 22px;
}

.service-card p,
.comparison-card li,
.channel-card p,
.confirmation-card p,
.experience-card p {
  font-size: 0.98rem;
}

.service-tag,
.comparison-tag,
.stage-pill,
.mini-label,
.summary-label {
  letter-spacing: 0.14em;
}

.builder-layout {
  align-items: start;
}

.builder-sidebar {
  position: sticky;
  top: 110px;
}

.builder-panel {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(20, 25, 33, 0.96), rgba(10, 13, 18, 0.98));
}

.choice-chip,
.package-card,
.extra-card {
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.choice-chip.is-active,
.package-card.is-active,
.extra-card.is-active {
  border-color: rgba(217, 184, 132, 0.55);
  box-shadow: 0 18px 36px rgba(155, 115, 65, 0.18);
}

.field,
.field-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 222, 188, 0.14);
}

.summary-card,
.itinerary-card {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(20, 25, 33, 0.97), rgba(9, 12, 17, 0.99));
}

.summary-list li,
.cart-item p,
.cart-total-row,
.itinerary-lead {
  color: #ddd2c0;
}

.cart-item {
  padding: 18px 18px 14px;
}

.cart-item-head {
  align-items: center;
  gap: 14px;
}

.footer-grid {
  gap: 24px;
}

.footer-note,
.footer-brand p {
  color: #c8bda9;
}

@media (max-width: 980px) {
  .builder-sidebar {
    position: static;
  }

  .hero {
    padding-top: 56px;
  }
}

@media (max-width: 720px) {
  .hero-proof article,
  .proof-ribbon-grid article,
  .service-card,
  .comparison-card,
  .channel-card,
  .confirmation-card,
  .experience-card,
  .summary-card,
  .itinerary-card {
    border-radius: 22px;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.9rem;
}

.hero-lead,
.section-head p,
.comparison-card li,
.service-card p,
.fleet-card p,
.builder-sidebar p,
.roadmap-card p,
.final-cta-card p,
.faq-grid p {
  color: #d8cfbf;
  line-height: 1.76;
}

.hero-lead {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  gap: 14px;
  margin-top: 32px;
}

.hero-proof article,
.builder-notes article,
.roadmap-card,
.comparison-card,
.service-card,
.fleet-card,
.hero-stage,
.builder-panel,
.summary-card,
.faq-grid details,
.final-cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(39, 30, 24, 0.94), rgba(21, 16, 13, 0.96));
  box-shadow: var(--shadow);
}

.hero-proof article,
.builder-notes article {
  min-width: 180px;
  flex: 1 1 0;
  padding: 18px;
  border-radius: 20px;
}

.proof-ribbon-tight {
  padding-top: 24px;
  padding-bottom: 18px;
}

.stage-stack {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.stage-metric {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(217, 184, 132, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.stage-metric span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-metric strong {
  display: block;
  color: var(--text);
  line-height: 1.5;
}

.stage-inline-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(217, 184, 132, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.9rem;
}

.stage-inline-route i {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 184, 132, 0.2), rgba(217, 184, 132, 0.7), rgba(217, 184, 132, 0.2));
}

.channel-grid,
.service-fit-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.channel-grid,
.service-fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.channel-card,
.service-fit-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(21, 26, 33, 0.94), rgba(10, 13, 17, 0.96));
  box-shadow: var(--shadow);
}

.channel-card span,
.service-fit-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.channel-card strong,
.service-fit-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.02;
}

.channel-card p {
  margin: 0;
  color: #d8cfbf;
  line-height: 1.7;
}

.channel-card .btn-quiet,
.product-card-copy > .btn-quiet,
.confirmation-card .btn-quiet,
.trust-card .btn-quiet {
  margin-top: 6px;
}

.hero-actions .btn-quiet,
.summary-actions .btn-quiet,
.final-cta-actions .btn-quiet,
.service-cta-actions .btn-quiet {
  min-height: auto;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 8, 11, 0.72);
  backdrop-filter: blur(12px);
}

.footer-grid {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  align-items: start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.footer-brand p,
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--gold-soft);
  text-decoration: none;
}

@media (max-width: 1080px) {
  .channel-grid,
  .service-fit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.9rem, 17vw, 4.6rem);
  }

  .hero-actions .btn:not(.btn-quiet),
  .final-cta-actions .btn:not(.btn-quiet) {
    width: 100%;
  }

  .hero-proof article,
  .builder-notes article,
  .channel-card,
  .service-fit-card {
    min-width: 0;
  }

  .stage-inline-route {
    flex-wrap: wrap;
  }

  .stage-inline-route i {
    width: 100%;
  }
}

.hero-proof strong,
.builder-notes strong {
  display: block;
  color: #fff7e9;
  font-size: 1.06rem;
}

.hero-proof span,
.builder-notes span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stage {
  border-radius: 30px;
  padding: 22px;
  overflow: hidden;
}

.stage-shell {
  position: relative;
  min-height: 590px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.2), transparent 24%),
    linear-gradient(180deg, #121720 0%, #0d1016 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.stage-header,
.stage-route,
.stage-grid {
  display: flex;
}

.stage-header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.stage-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--gold-soft);
  border: 1px solid rgba(217, 184, 132, 0.2);
  background: rgba(217, 184, 132, 0.1);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-visual {
  position: relative;
  margin-top: 28px;
  min-height: 290px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(217, 184, 132, 0.06), transparent 35%),
    linear-gradient(180deg, #0e1218 0%, #0a0d11 100%);
  overflow: hidden;
}

.vehicle-silhouette {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 34px;
  height: 116px;
  border-radius: 90px 80px 30px 30px;
  background: linear-gradient(180deg, #1f2631 0%, #11161d 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 30px rgba(0,0,0,0.4);
}

.vehicle-silhouette::before,
.vehicle-silhouette::after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #454f5f, #0e1218 62%);
  border: 8px solid #1f2631;
}

.vehicle-silhouette::before { left: 54px; }
.vehicle-silhouette::after { right: 54px; }

.stage-route {
  position: absolute;
  top: 28px;
  left: 24px;
  right: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #f5ead8;
  font-size: 0.9rem;
  font-weight: 600;
}

.stage-route i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(217,184,132,0.25), rgba(217,184,132,0.8), rgba(217,184,132,0.25));
}

.stage-grid {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.stage-grid article {
  flex: 1 1 180px;
  min-height: 100px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.stage-grid span,
.fleet-type,
.comparison-tag,
.service-tag,
.summary-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 184, 132, 0.18);
  background: rgba(217, 184, 132, 0.09);
  color: var(--gold-soft);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-grid strong {
  display: block;
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.5;
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.proof-ribbon {
  padding-top: 0;
}

.proof-ribbon-grid,
.signature-grid,
.destination-grid,
.experience-grid,
.confirmation-grid,
.trust-grid,
.close-grid,
.fleet-detail-band {
  display: grid;
  gap: 18px;
}

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

.proof-ribbon-grid article,
.service-cta-band,
.signature-card,
.destination-card,
.experience-card,
.confirmation-card,
.trust-card,
.close-card,
.fleet-detail-band article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.92), rgba(11, 14, 19, 0.96));
  box-shadow: var(--shadow);
}

.proof-ribbon-grid article {
  padding: 20px;
  border-radius: 20px;
}

.proof-ribbon-grid span,
.mini-label,
.destination-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 184, 132, 0.18);
  background: rgba(217, 184, 132, 0.09);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-ribbon-grid strong {
  display: block;
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.5;
}

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

.signature-card {
  padding: 24px;
  border-radius: 24px;
}

.vip-packages .signature-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 22px;
}

.signature-card.featured {
  border-color: rgba(217, 184, 132, 0.4);
  background:
    radial-gradient(circle at top right, rgba(217,184,132,0.14), transparent 30%),
    linear-gradient(180deg, rgba(28, 23, 18, 0.96), rgba(11, 14, 19, 0.96));
}

.vip-packages .signature-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
}

.vip-packages .signature-card,
.vip-fleet .fleet-card,
.vip-fleet .destination-card,
.vip-operations .confirmation-card,
.vip-operations .channel-card,
.vip-operations .trust-card,
.vip-operations .close-card,
.vip-operations .notification-grid .trust-card {
  min-height: 100%;
}

.signature-card h3 {
  margin-top: 18px;
}

.packages-secondary-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.signature-card p,
.signature-card li,
.confirmation-card p {
  color: #d8cfbf;
  line-height: 1.72;
}

.signature-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head-wide {
  max-width: 860px;
}

.problem-solution-grid,
.service-grid,
.fleet-grid,
.roadmap-grid {
  display: grid;
  gap: 18px;
}

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

.comparison-card,
.service-card,
.fleet-card,
.roadmap-card {
  padding: 24px;
  border-radius: 24px;
}

.service-cta-band {
  margin-top: 20px;
  padding: 24px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.service-cta-band h3 {
  margin-top: 14px;
}

.service-cta-band p {
  color: #d8cfbf;
  line-height: 1.75;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.comparison-card ul,
.service-card ul,
.fleet-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.comparison-card li,
.service-card li,
.fleet-card li {
  margin-bottom: 6px;
}

.comparison-problem {
  background: linear-gradient(180deg, rgba(57, 29, 25, 0.54), rgba(20, 13, 15, 0.96));
}

.comparison-solution {
  background: linear-gradient(180deg, rgba(34, 44, 34, 0.5), rgba(11, 16, 13, 0.96));
}

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

.destination-card,
.experience-card,
.trust-card,
.close-card {
  padding: 24px;
  border-radius: 24px;
}

.destination-card h3,
.experience-card h3 {
  margin-top: 18px;
}

.destination-card p,
.experience-card p,
.trust-card p,
.close-card p {
  color: #d8cfbf;
  line-height: 1.74;
}

.destination-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: none;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    linear-gradient(180deg, #0f1319 0%, #0b0f14 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(217,184,132,0.12), transparent 24%),
    linear-gradient(180deg, #0a0c10 0%, #0d1117 100%);
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
  gap: 24px;
  align-items: start;
}

.builder-notes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.builder-panel {
  padding: 24px;
  border-radius: 30px;
}

.builder-topline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.builder-topline-card,
.itinerary-card,
.cart-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.96), rgba(11, 14, 19, 0.98));
  box-shadow: var(--shadow);
}

.builder-topline-card {
  padding: 16px 18px;
  border-radius: 18px;
}

.builder-topline-card span,
.cart-item-index,
.cart-pill span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 184, 132, 0.18);
  background: rgba(217, 184, 132, 0.09);
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.builder-topline-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.55;
}

.builder-block + .builder-block,
.summary-card {
  margin-top: 18px;
}

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

.builder-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f7efdf;
}

.chip-grid,
.package-grid,
.extras-grid {
  display: grid;
  gap: 12px;
}

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

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

.choice-chip,
.package-card,
.extra-card {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.choice-chip:hover,
.package-card:hover,
.extra-card:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 184, 132, 0.34);
}

.choice-chip,
.package-card,
.extra-card {
  padding: 18px;
}

.choice-chip strong,
.package-card strong,
.extra-card strong {
  display: block;
  font-size: 1rem;
}

.choice-chip span,
.package-card span,
.extra-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.choice-chip.is-active,
.package-card.is-active,
.extra-card.is-active {
  border-color: rgba(217, 184, 132, 0.54);
  background: linear-gradient(180deg, rgba(217,184,132,0.17), rgba(255,255,255,0.04));
}

.field {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: #f8f0e2;
  padding: 14px 16px;
  font: inherit;
}

.field:focus {
  outline: none;
  border-color: rgba(217,184,132,0.58);
  box-shadow: 0 0 0 3px rgba(217,184,132,0.08);
}

.field-textarea {
  resize: vertical;
  min-height: 110px;
}

.summary-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(217, 184, 132, 0.24);
  background: linear-gradient(180deg, rgba(15, 18, 24, 1), rgba(20, 24, 31, 1));
}

.summary-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.summary-head h3 {
  margin-top: 12px;
}

.summary-price {
  text-align: right;
}

.summary-price span {
  color: var(--muted);
  font-size: 0.82rem;
}

.summary-price strong {
  display: block;
  margin-top: 8px;
  color: #fff8ec;
  font-size: 2rem;
}

.summary-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #d7cfbf;
  line-height: 1.8;
}

.summary-actions {
  gap: 10px;
  margin-top: 18px;
}

.summary-brief-card {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.summary-brief-lead {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.summary-list-compact {
  margin-top: 14px;
}

.itinerary-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
}

.itinerary-head,
.cart-item-head,
.cart-total-row,
.cart-pill {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.itinerary-head h3 {
  margin-top: 12px;
}

.cart-pill {
  flex-direction: column;
  align-items: flex-end;
}

.cart-pill strong,
.cart-total-row strong {
  color: #fff8ec;
  font-size: 1.75rem;
  line-height: 1;
}

.cart-item-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.cart-remove {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(217, 184, 132, 0.24);
  background: rgba(255,255,255,0.03);
  color: #f2e3c8;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cart-remove:hover {
  border-color: rgba(217, 184, 132, 0.44);
  background: rgba(217, 184, 132, 0.08);
}

.itinerary-lead {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cart-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.cart-item {
  padding: 18px;
  border-radius: 20px;
}

.cart-item h4 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 0.98;
}

.cart-item p,
.cart-item-empty p {
  margin: 10px 0 0;
  color: #d8cfbf;
  line-height: 1.7;
}

.cart-item strong,
.cart-item-head strong {
  color: #fff7e9;
}

.cart-item-empty {
  text-align: left;
}

.cart-total-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cart-total-row span {
  color: var(--muted);
  font-weight: 700;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.coverage-list {
  gap: 10px;
  justify-content: flex-start;
}

.coverage-list span {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: #efe4d2;
  font-weight: 600;
}

.fleet-detail-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.fleet-detail-band article {
  padding: 24px;
  border-radius: 24px;
}

.fleet-detail-band span,
.trust-card span {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.fleet-detail-band strong,
.trust-card strong,
.close-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.18rem;
  line-height: 1.5;
}

.fleet-detail-band p {
  margin-top: 12px;
  color: #d8cfbf;
  line-height: 1.7;
}

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

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

.confirmation-card {
  padding: 24px;
  border-radius: 24px;
}

.confirmation-card span {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.confirmation-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.18rem;
  line-height: 1.5;
}

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

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

.roadmap-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(217, 184, 132, 0.12);
  border: 1px solid rgba(217, 184, 132, 0.26);
  color: var(--gold-soft);
  font-weight: 800;
}

.roadmap-card h3 {
  margin-top: 18px;
}

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

.faq-grid details {
  padding: 20px 22px;
  border-radius: 20px;
}

.faq-grid summary {
  cursor: pointer;
  color: #fff8ec;
  font-weight: 700;
  line-height: 1.5;
}

.faq-grid p {
  margin: 14px 0 0;
}

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

.final-cta {
  padding-top: 0;
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
}

.final-cta-actions {
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  .hero-layout,
  .hero-compact-grid,
  .builder-layout,
  .builder-topline,
  .showcase-grid,
  .final-cta-card,
  .roadmap-grid,
  .faq-grid,
  .proof-ribbon-grid,
  .signature-grid,
  .destination-grid,
  .confirmation-grid,
  .trust-grid,
  .close-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(1220px, calc(100% - 24px));
  }

  .vip-page.has-contact-dock {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .hero,
  .section {
    padding: 66px 0;
  }

  .problem-solution-grid,
  .service-grid,
  .fleet-grid,
  .fleet-detail-band,
  .chip-grid,
  .package-grid,
  .extras-grid,
  .builder-columns {
    grid-template-columns: 1fr;
  }

  .utility-row,
  .nav-row,
  .contact-strip-row,
  .summary-head,
  .service-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-price {
    text-align: left;
  }

  .stage-shell {
    min-height: auto;
  }

  .stage-visual {
    min-height: 230px;
  }

  .contact-strip-row {
    min-height: auto;
    padding: 16px 0;
  }

  .contact-strip-actions {
    width: 100%;
  }

  .contact-pill {
    flex: 1 1 calc(50% - 6px);
  }

  .contact-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 22;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(217, 184, 132, 0.12);
    border-radius: 24px;
    background: rgba(8, 10, 14, 0.92);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
  }

  .contact-dock a {
    min-height: 48px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .contact-dock .contact-pill--primary {
    color: #120c07;
  }

  .contact-dock .contact-pill:not(.contact-pill--primary) {
    background: rgba(255, 255, 255, 0.04);
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .floating-cta .btn {
    width: 100%;
  }
}

html,
body {
  min-height: 100%;
  background: #090a0d;
  overflow-x: hidden;
}

body.vip-page {
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(146, 105, 49, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.08), transparent 20%),
    linear-gradient(180deg, #0b0c10 0%, #090a0d 52%, #0c0d11 100%);
}

.vip-page main,
.vip-page .site-footer {
  position: relative;
  z-index: 1;
}

.vip-home .hero,
.vip-booking .hero-compact {
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
}

.vip-home .hero-layout,
.vip-booking .hero-compact-grid {
  align-items: stretch;
}

.vip-home .hero-copy,
.vip-booking .hero-compact-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vip-home h1,
.vip-booking h1 {
  max-width: 12.5ch;
  font-size: clamp(3.8rem, 5.4vw, 6rem);
  line-height: 0.92;
}

.vip-home .hero-lead,
.vip-booking .hero-lead {
  max-width: 58ch;
}

.floating-cta {
  display: none !important;
}

.vip-home .hero-proof {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vip-home .hero-proof article {
  min-height: 132px;
}

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

body.vip-home {
  background:
    radial-gradient(circle at 18% 12%, rgba(152, 118, 72, 0.22), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(208, 181, 138, 0.12), transparent 22%),
    linear-gradient(180deg, #081017 0%, #101823 34%, #0d141c 64%, #0a0f15 100%);
}

.vip-home .utility-bar {
  background: rgba(8, 12, 16, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.vip-home .site-header {
  background: rgba(8, 12, 16, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 44px rgba(4, 8, 12, 0.24);
}

.vip-home .hero-home-cinematic {
  position: relative;
  overflow: clip;
  padding-top: 56px;
  padding-bottom: 72px;
}

.vip-home .hero-home-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.92) 0%, rgba(7, 10, 14, 0.72) 34%, rgba(7, 10, 14, 0.42) 62%, rgba(7, 10, 14, 0.7) 100%),
    linear-gradient(180deg, rgba(7, 10, 14, 0.24) 0%, rgba(7, 10, 14, 0.74) 100%),
    url("assets/excellentia-vip/villas/cap-cana-drive.jpg") center/cover no-repeat;
  opacity: 0.92;
  transform: scale(1.04);
}

.vip-home .hero-home-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 23, 0) 0%, rgba(10, 16, 23, 0.24) 58%, rgba(10, 16, 23, 0.9) 100%),
    radial-gradient(circle at 70% 26%, rgba(255, 233, 193, 0.1), transparent 24%);
  pointer-events: none;
}

.vip-home .hero-home-layout {
  position: relative;
  z-index: 1;
  min-height: min(820px, calc(100svh - 180px));
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.98fr);
  gap: 38px;
}

.vip-home .hero-copy-cinematic {
  max-width: 640px;
}

.vip-home h1 {
  max-width: 9.3ch;
  font-size: clamp(4.2rem, 7vw, 7.2rem);
  letter-spacing: -0.06em;
}

.vip-home .hero-lead {
  max-width: 48ch;
  font-size: 1.08rem;
}

.vip-home .hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.vip-home .hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vip-home .hero-proof article {
  min-height: 126px;
  padding: 20px 20px 18px;
  background: linear-gradient(180deg, rgba(9, 14, 20, 0.78), rgba(11, 17, 24, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.hero-media-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.84fr);
  grid-template-rows: 1fr 0.82fr;
  gap: 18px;
  align-items: stretch;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  background: rgba(10, 14, 20, 0.56);
}

.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 12, 18, 0.05) 0%, rgba(9, 12, 18, 0.1) 36%, rgba(9, 12, 18, 0.5) 100%);
  pointer-events: none;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic-card--primary {
  grid-row: 1 / span 2;
  min-height: 620px;
}

.mosaic-card--detail {
  min-height: 292px;
}

.mosaic-card--secondary {
  min-height: 310px;
}

.vip-home .proof-ribbon {
  padding-top: 0;
}

.vip-home .section {
  padding-block: 50px;
}

.vip-home .proof-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vip-home .proof-ribbon-grid article {
  background: linear-gradient(180deg, rgba(14, 20, 28, 0.88), rgba(10, 14, 20, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
}

.vip-home .benchmark-band {
  background:
    linear-gradient(180deg, rgba(10, 16, 23, 0.96), rgba(9, 14, 20, 0.92)),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.12), transparent 42%);
}

.vip-home .benchmark-band .section-head-wide {
  max-width: 980px;
  margin-bottom: 22px;
}

.vip-home .benchmark-band h2 {
  max-width: 17ch;
}

.vip-home .benchmark-grid,
.vip-home .service-grid,
.vip-home .experience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.vip-home .home-editorial-shell {
  display: grid;
  gap: 26px;
}

.vip-home .home-editorial-head {
  margin-bottom: 0;
}

.vip-home .home-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 20px;
  align-items: stretch;
}

.vip-home .home-editorial-story,
.vip-home .home-path-list {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 18, 25, 0.92), rgba(9, 14, 20, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.vip-home .home-editorial-story--accent {
  background:
    linear-gradient(180deg, rgba(21, 15, 12, 0.94), rgba(11, 16, 22, 0.98)),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.14), transparent 44%);
}

.vip-home .home-editorial-story h3,
.vip-home .home-path-list h3 {
  margin-top: 16px;
  max-width: 16ch;
}

.vip-home .home-editorial-story ul {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  line-height: 1.72;
}

.vip-home .home-path-list {
  display: grid;
  align-content: start;
  gap: 14px;
}

.vip-home .home-path-list > p {
  margin: 0;
}

.vip-home .home-path-item {
  display: grid;
  gap: 6px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
}

.vip-home .home-path-item:first-of-type {
  padding-top: 6px;
}

.vip-home .home-path-item span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.vip-home .home-path-item strong {
  font-size: 1.06rem;
  color: #fff7ea;
  transition: color 180ms ease;
}

.vip-home .home-path-item p {
  margin: 0;
  color: rgba(245, 239, 230, 0.74);
  line-height: 1.6;
}

.vip-home .home-path-item:hover strong,
.vip-home .home-path-item:focus-visible strong {
  color: var(--gold-soft);
}

.vip-home .benchmark-card {
  min-height: 100%;
  padding: 22px;
  background: linear-gradient(180deg, rgba(17, 24, 33, 0.92), rgba(12, 18, 24, 0.98));
}

.vip-home .problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.vip-home .comparison-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 210px 26px 26px;
  background: linear-gradient(180deg, rgba(10, 14, 19, 0.92), rgba(14, 20, 28, 0.98));
}

.vip-home .comparison-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 180px;
  background-position: center;
  background-size: cover;
  filter: saturate(0.95);
}

.vip-home .comparison-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 14, 0.12) 0%, rgba(7, 10, 14, 0.76) 34%, rgba(7, 10, 14, 0.96) 100%);
  pointer-events: none;
}

.vip-home .comparison-card > * {
  position: relative;
  z-index: 1;
}

.vip-home .comparison-arrival::before {
  background-image: url("assets/excellentia-vip/fleet/airport-interior.jpg");
}

.vip-home .comparison-concierge::before {
  background-image: url("assets/excellentia-vip/concierge/arrival-styling.jpg");
}

.vip-home .service-card.product-card,
.vip-home .experience-card.product-card {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0 0 22px;
  background: linear-gradient(180deg, rgba(14, 20, 28, 0.94), rgba(10, 14, 20, 0.98));
}

.vip-home .service-card.product-card > .card-visual,
.vip-home .experience-card.product-card > .card-visual {
  width: 100%;
  height: 184px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.vip-home .experience-card.product-card > .card-visual {
  height: 210px;
}

.vip-home .service-card .product-card-copy,
.vip-home .experience-card .product-card-copy {
  padding: 22px 22px 0;
}

.vip-home .service-card ul,
.vip-home .comparison-card ul {
  margin: 0;
  display: grid;
  gap: 8px;
}

.vip-home .final-cta-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.94) 0%, rgba(7, 10, 14, 0.82) 48%, rgba(7, 10, 14, 0.72) 100%),
    url("assets/excellentia-vip/villas/night-estate.jpg") center/cover no-repeat;
  min-height: 320px;
  align-items: end;
}

.vip-home .final-cta-card > * {
  position: relative;
  z-index: 1;
}

.vip-home .final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 23, 0.1), rgba(10, 16, 23, 0.42), rgba(10, 16, 23, 0.86));
}

@media (prefers-reduced-motion: no-preference) {
  .vip-home .hero-copy-cinematic > * {
    animation: vipFadeUp 0.8s ease both;
  }

  .vip-home .hero-copy-cinematic > *:nth-child(2) { animation-delay: 0.08s; }
  .vip-home .hero-copy-cinematic > *:nth-child(3) { animation-delay: 0.16s; }
  .vip-home .hero-copy-cinematic > *:nth-child(4) { animation-delay: 0.24s; }
  .vip-home .hero-copy-cinematic > *:nth-child(5) { animation-delay: 0.32s; }

  .vip-home .mosaic-card {
    animation: vipFadeUp 0.9s ease both;
  }

  .vip-home .mosaic-card--primary { animation-delay: 0.18s; }
  .vip-home .mosaic-card--detail { animation-delay: 0.28s; }
  .vip-home .mosaic-card--secondary { animation-delay: 0.38s; }

  .vip-home .mosaic-card img {
    transition: transform 0.9s ease, filter 0.4s ease;
  }

  .vip-home .mosaic-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.04);
  }
}

@keyframes vipFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .vip-home .hero-home-layout,
  .vip-home .benchmark-grid,
  .vip-home .service-grid,
  .vip-home .experience-grid,
  .vip-home .problem-solution-grid,
  .vip-home .home-editorial-grid {
    grid-template-columns: 1fr;
  }

  .vip-home .hero-home-layout {
    min-height: auto;
  }

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

  .mosaic-card--primary {
    grid-row: 1 / span 1;
    min-height: 360px;
  }

  .mosaic-card--detail,
  .mosaic-card--secondary {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .vip-home .hero-home-cinematic {
    padding-top: 38px;
    padding-bottom: 58px;
  }

  .vip-home h1 {
    max-width: 8.6ch;
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .vip-home .hero-proof,
  .vip-home .proof-ribbon-grid {
    grid-template-columns: 1fr;
  }

  .hero-media-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mosaic-card--primary,
  .mosaic-card--detail,
  .mosaic-card--secondary {
    min-height: 240px;
  }

  .vip-home .comparison-card {
    padding: 178px 20px 20px;
  }

  .vip-home .home-editorial-story,
  .vip-home .home-path-list {
    padding: 22px;
    border-radius: 24px;
  }

  .vip-home .final-cta-card {
    padding: 28px 22px;
    min-height: 260px;
  }
}

.vip-home .stage-shell,
.vip-booking .stage-shell {
  width: 100%;
  min-height: 520px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.vip-booking .stage-shell {
  min-height: 440px;
}

.vip-booking .builder-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 24px;
  align-items: start;
}

.builder-panel {
  min-width: 0;
}

.builder-rail {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.builder-rail .summary-card,
.builder-rail .itinerary-card {
  margin-top: 0;
}

.builder-rail .summary-card {
  border: 1px solid rgba(217, 184, 132, 0.24);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.builder-rail .itinerary-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.summary-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.summary-actions .btn,
.summary-actions button {
  width: 100%;
}

.cart-list {
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
}

.cart-list::-webkit-scrollbar {
  width: 8px;
}

.cart-list::-webkit-scrollbar-thumb {
  background: rgba(217, 184, 132, 0.22);
  border-radius: 999px;
}

.final-cta {
  padding-bottom: 84px;
}

.choice-chip,
.package-card,
.extra-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  text-align: left;
}

.extra-card {
  grid-template-columns: 92px minmax(0, 1fr) auto;
}

.choice-copy,
.package-copy,
.extra-copy {
  display: grid;
  gap: 6px;
}

.choice-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.choice-chip strong,
.package-card strong,
.extra-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.package-copy small,
.extra-price {
  color: #fff2d7;
  font-size: 0.92rem;
  line-height: 1.5;
}

.extra-price {
  align-self: center;
  justify-self: end;
  min-width: 78px;
  padding: 10px 12px;
  border-radius: 999px;
  text-align: center;
  background: rgba(217, 184, 132, 0.12);
  border: 1px solid rgba(217, 184, 132, 0.2);
  font-weight: 800;
}

.product-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.product-card > .card-visual {
  width: 148px;
  height: 122px;
  border-radius: 28px;
}

.service-card.product-card,
.experience-card.product-card,
.destination-card.product-card,
.fleet-card.product-card,
.signature-card.product-card,
.signature-card.featured.product-card {
  padding: 24px;
}

.benchmark-band {
  padding-block: 36px;
  background:
    linear-gradient(180deg, rgba(39, 28, 20, 0.96), rgba(24, 18, 14, 0.92)),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.16), transparent 42%);
}

.benchmark-band-tight {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.benchmark-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 248, 239, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
}

.benchmark-card span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.benchmark-card strong {
  font-size: 1.25rem;
  line-height: 1;
}

.benchmark-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(245, 239, 230, 0.8);
}

.vip-fleet .section,
.vip-operations .section,
.vip-packages .section {
  padding-block: 72px;
}

.vip-fleet .section-head,
.vip-operations .section-head,
.vip-packages .section-head {
  margin-bottom: 22px;
}

.vip-fleet .hero-compact,
.vip-operations .hero-compact,
.vip-packages .hero-compact {
  padding-bottom: 56px;
}

.vip-packages .section,
.vip-fleet .section,
.vip-operations .section {
  padding: 60px 0;
}

.vip-packages .hero-lead,
.vip-fleet .hero-lead,
.vip-operations .hero-lead {
  max-width: 46ch;
}

.vip-fleet .trust-grid,
.vip-operations .close-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.booking-notification-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.payment-panel {
  margin-top: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(217, 184, 132, 0.18);
  background:
    linear-gradient(180deg, rgba(33, 25, 19, 0.96), rgba(17, 14, 12, 0.98)),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.12), transparent 38%);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.payment-panel-head,
.payment-pill-stack,
.payment-grid,
.payment-meta {
  display: grid;
  gap: 12px;
}

.payment-panel-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.payment-pill-stack {
  grid-auto-flow: row;
  justify-items: end;
}

.payment-panel h3,
.payment-lead,
.payment-meta article,
.payment-notice {
  margin: 0;
}

.payment-lead {
  color: rgba(240, 233, 223, 0.84);
  line-height: 1.7;
}

.payment-notice {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 248, 239, 0.045);
  color: rgba(247, 241, 233, 0.88);
  line-height: 1.6;
}

.payment-policy-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(217, 184, 132, 0.18);
  background: rgba(217, 184, 132, 0.08);
  color: rgba(247, 241, 233, 0.9);
  line-height: 1.65;
}

.request-capture-note {
  margin: 10px 2px 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 248, 239, 0.04);
  color: rgba(240, 233, 223, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.request-capture-note.is-pending {
  border-color: rgba(217, 184, 132, 0.26);
  background: rgba(217, 184, 132, 0.1);
  color: rgba(247, 241, 233, 0.92);
}

.request-capture-note.is-success {
  border-color: rgba(128, 188, 158, 0.34);
  background: rgba(72, 131, 102, 0.18);
  color: rgba(238, 249, 243, 0.94);
}

.request-capture-note.is-warning {
  border-color: rgba(217, 184, 132, 0.26);
  background: rgba(217, 184, 132, 0.12);
  color: rgba(247, 241, 233, 0.92);
}

.payment-notice.is-ready,
.payment-panel.is-ready .payment-notice {
  border-color: rgba(128, 188, 158, 0.35);
  background: rgba(72, 131, 102, 0.18);
}

.payment-notice.is-success {
  border-color: rgba(128, 188, 158, 0.38);
  background: rgba(72, 131, 102, 0.2);
}

.payment-notice.is-warning {
  border-color: rgba(217, 184, 132, 0.25);
  background: rgba(217, 184, 132, 0.12);
}

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

.payment-grid .btn {
  width: 100%;
  justify-content: center;
}

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

.payment-meta article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
}

.payment-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.payment-meta strong {
  font-size: 1rem;
  line-height: 1.45;
}

.product-card-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.product-card-copy h3,
.product-card-copy p,
.product-card-copy ul {
  margin: 0;
}

.vip-packages #addons .product-card-copy > .btn {
  width: 100%;
}

.vip-packages .experience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vip-packages .experience-card.product-card {
  grid-template-columns: 1fr;
  gap: 18px;
}

.vip-packages .experience-card > .card-visual {
  width: 100%;
  height: 220px;
  border-radius: 22px;
}

.vip-packages .signature-card > .card-visual {
  width: 100%;
  height: 210px;
  border-radius: 24px;
}

.vip-packages .signature-card.featured > .card-visual {
  height: 100%;
  min-height: 280px;
}

@media (max-width: 1120px) {
  .vip-packages .experience-grid {
    grid-template-columns: 1fr;
  }
}

.card-visual {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.03);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.card-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.72));
}

.service-media--airport {
  background-image: url("assets/excellentia-vip/fleet/airport-interior.jpg");
}

.service-media--chauffeur {
  background-image: url("assets/excellentia-vip/fleet/black-suv-portico.jpg");
}

.service-media--tour {
  background-image: url("assets/excellentia-vip/excursions/saona-palms.jpg");
}

.service-media--concierge {
  background-image: url("assets/excellentia-vip/concierge/arrival-styling.jpg");
}

.package-media--essential {
  background-image: url("assets/excellentia-vip/fleet/van-interior-cream.jpg");
}

.package-media--signature {
  background-image: url("assets/excellentia-vip/fleet/black-suv-portico.jpg");
}

.package-media--black {
  background-image: url("assets/excellentia-vip/fleet/black-suv-frontwide.jpg");
}

.extra-media--champagne {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23120f0e'/%3E%3Cpath d='M92 24h16l-7 22v46c0 20-12 34-25 38v10h38v10H48v-10h16v-10c-13-4-25-18-25-38V46l-7-22h16l4 16h36l4-16z' fill='%23d9b884'/%3E%3Crect x='64' y='68' width='14' height='34' rx='7' fill='%23fff3df' fill-opacity='.22'/%3E%3Ccircle cx='122' cy='42' r='8' fill='%23fff3df' fill-opacity='.2'/%3E%3C/svg%3E");
}

.extra-media--birthday {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23130f0e'/%3E%3Crect x='30' y='86' width='100' height='34' rx='18' fill='%23f2dfc6'/%3E%3Crect x='40' y='62' width='80' height='26' rx='14' fill='%23d9b884'/%3E%3Cpath d='M52 46l18 16 20-22 18 18' fill='none' stroke='%23fff0da' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='46' cy='50' r='10' fill='%23d9b884' fill-opacity='.35'/%3E%3Ccircle cx='116' cy='44' r='12' fill='%23fff0da' fill-opacity='.14'/%3E%3C/svg%3E");
}

.extra-media--cake {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23110d0c'/%3E%3Cellipse cx='80' cy='122' rx='48' ry='10' fill='%23ffffff' fill-opacity='.09'/%3E%3Crect x='36' y='92' width='88' height='28' rx='14' fill='%23f6e7d4'/%3E%3Crect x='48' y='70' width='64' height='24' rx='12' fill='%23fff4ea'/%3E%3Crect x='60' y='54' width='40' height='18' rx='9' fill='%23d9b884'/%3E%3Cpath d='M48 83c8-4 14-4 22 0s14 4 22 0 14-4 20 0' fill='none' stroke='%23d7a35d' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M60 70c6-3 10-3 16 0s10 3 16 0 10-3 16 0' fill='none' stroke='%23fff8ef' stroke-width='4' stroke-linecap='round'/%3E%3Crect x='76' y='38' width='6' height='18' rx='3' fill='%23fff7ee'/%3E%3Cpath d='M79 28c4 4 4 8 0 12-4-4-4-8 0-12z' fill='%23efb35a'/%3E%3C/svg%3E");
}

.extra-media--balloons {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23120f0e'/%3E%3Cellipse cx='58' cy='54' rx='18' ry='24' fill='%23d9b884'/%3E%3Cellipse cx='84' cy='42' rx='16' ry='22' fill='%23f5ead8' fill-opacity='.88'/%3E%3Cellipse cx='108' cy='58' rx='18' ry='24' fill='%23c88e53'/%3E%3Cpath d='M58 80v34M84 64v48M108 82v32' stroke='%23f6efe5' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.extra-media--flowers {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23110d0c'/%3E%3Ccircle cx='58' cy='60' r='14' fill='%23d9b884'/%3E%3Ccircle cx='78' cy='48' r='14' fill='%23f6ead7'/%3E%3Ccircle cx='100' cy='60' r='14' fill='%23c88e53'/%3E%3Ccircle cx='70' cy='78' r='14' fill='%23f3dec1'/%3E%3Ccircle cx='92' cy='82' r='14' fill='%23d9b884' fill-opacity='.82'/%3E%3Cpath d='M80 86v34M66 84l14 36M94 84l-14 36' stroke='%2388a36a' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.extra-media--fasttrack {
  background-image: url("assets/excellentia-vip/fleet/airport-interior.jpg");
}

.extra-media--childseat {
  background-image: url("assets/excellentia-vip/fleet/van-interior-white.jpg");
}

.extra-media--wifi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23110d0c'/%3E%3Crect x='62' y='46' width='36' height='62' rx='12' fill='%23f3dec1'/%3E%3Cpath d='M62 64h36' stroke='%23d9b884' stroke-width='6'/%3E%3Cpath d='M64 92c10-6 22-6 32 0' fill='none' stroke='%23fff3df' stroke-width='6' stroke-linecap='round'/%3E%3Ccircle cx='80' cy='120' r='14' fill='%23d9b884'/%3E%3C/svg%3E");
}

.extra-media--rica {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23120f0e'/%3E%3Crect x='34' y='56' width='24' height='56' rx='10' fill='%23f5e6c8'/%3E%3Crect x='68' y='44' width='24' height='68' rx='10' fill='%23d9b884'/%3E%3Crect x='102' y='56' width='24' height='56' rx='10' fill='%23efb35a'/%3E%3Cpath d='M46 42v14M80 30v14M114 42v14' stroke='%23f7f0e5' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.extra-media--kids {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23120f0e'/%3E%3Crect x='42' y='50' width='34' height='58' rx='12' fill='%23f4e4cd'/%3E%3Crect x='84' y='58' width='34' height='50' rx='12' fill='%23d9b884'/%3E%3Cpath d='M59 36v14M101 44v14' stroke='%23fff4e4' stroke-width='4' stroke-linecap='round'/%3E%3Ccircle cx='59' cy='122' r='10' fill='%23efb35a'/%3E%3Ccircle cx='101' cy='122' r='10' fill='%23f4e4cd'/%3E%3C/svg%3E");
}

.extra-media--brugal {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23120f0e'/%3E%3Cpath d='M64 30h32l8 18v18c0 7-2 14-5 20l-8 24c-2 6-8 10-14 10h-6c-6 0-12-4-14-10l-8-24c-3-6-5-13-5-20V48l8-18z' fill='%23b97a3c'/%3E%3Crect x='68' y='62' width='24' height='28' rx='8' fill='%23242731'/%3E%3Crect x='68' y='38' width='24' height='10' rx='5' fill='%23f0dfc8' fill-opacity='.35'/%3E%3C/svg%3E");
}

.extra-media--host {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23120f0e'/%3E%3Ccircle cx='80' cy='52' r='18' fill='%23d9b884'/%3E%3Cpath d='M48 120c6-22 20-34 32-34s26 12 32 34' fill='none' stroke='%23f7f0e5' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M116 46l8 8 12-16' fill='none' stroke='%23d9b884' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.extra-media--photographer {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23120f0e'/%3E%3Crect x='34' y='54' width='92' height='54' rx='16' fill='%23d9b884'/%3E%3Crect x='48' y='42' width='24' height='16' rx='8' fill='%23f4e4cd'/%3E%3Ccircle cx='80' cy='82' r='18' fill='%23110d0c'/%3E%3Ccircle cx='80' cy='82' r='9' fill='%23f4e4cd'/%3E%3Ccircle cx='114' cy='68' r='5' fill='%23fff3df'/%3E%3C/svg%3E");
}

.extra-media--signage {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' rx='28' fill='%23120f0e'/%3E%3Crect x='30' y='40' width='100' height='62' rx='16' fill='%23f5e6c8'/%3E%3Cpath d='M48 62h64M48 80h44' stroke='%23b78b5d' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M54 102v24' stroke='%23d9b884' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M106 102v24' stroke='%23d9b884' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fleet-media--suv {
  background-image: url("assets/excellentia-vip/fleet/black-suburban-front.jpg");
}

.fleet-media--van {
  background-image: url("assets/excellentia-vip/fleet/van-interior-white.jpg");
}

.fleet-media--black {
  background-image: url("assets/excellentia-vip/fleet/black-suv-frontwide.jpg");
}

.destination-media--capcana {
  background-image: url("assets/excellentia-vip/villas/cap-cana-drive.jpg");
}

.destination-media--bavaro {
  background-image: url("assets/excellentia-vip/fleet/black-suv-portico.jpg");
}

.destination-media--uvero {
  background-image: url("assets/excellentia-vip/excursions/saona-palms.jpg");
}

.destination-media--laromana {
  background-image: url("assets/excellentia-vip/excursions/yacht-aerial.jpg");
}

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

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

.vip-fleet .fleet-card.product-card,
.vip-fleet .destination-card.product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.vip-fleet .fleet-card > .card-visual {
  width: 100%;
  height: 228px;
  border-radius: 24px;
}

.vip-fleet .destination-card > .card-visual {
  width: 100%;
  height: 208px;
  border-radius: 22px;
}

.vip-fleet .fleet-grid,
.vip-fleet .destination-grid,
.vip-operations .confirmation-grid,
.vip-operations .channel-grid,
.vip-operations .trust-grid,
.vip-operations .notification-grid,
.vip-operations .close-grid {
  gap: 22px;
}

.vip-fleet .product-card-copy {
  width: 100%;
}

.vip-fleet .product-card-copy > .btn {
  width: 100%;
  justify-content: center;
}

.vip-operations .channel-card {
  display: grid;
}

.vip-operations .channel-card > .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

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

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

.vip-operations .confirmation-card,
.vip-operations .channel-card,
.vip-operations .trust-card,
.vip-operations .close-card,
.vip-operations .notification-grid .trust-card {
  padding: 28px;
}

.vip-fleet .fleet-media--suv {
  background-position: center 54%;
}

.vip-fleet .fleet-media--van {
  background-position: center 38%;
}

.vip-fleet .fleet-media--black {
  background-position: center 56%;
}

.vip-fleet .destination-media--capcana {
  background-position: center 56%;
}

.vip-fleet .destination-media--bavaro {
  background-position: center 48%;
}

.vip-fleet .destination-media--uvero {
  background-position: center 52%;
}

.vip-fleet .destination-media--laromana {
  background-position: center 46%;
}

.vip-fleet .final-cta-card {
  align-items: start;
}

.vip-packages .hero-compact,
.vip-fleet .hero-compact,
.vip-operations .hero-compact {
  position: relative;
  overflow: hidden;
  min-height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-packages .hero-compact::before,
.vip-fleet .hero-compact::before,
.vip-operations .hero-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  transform: scale(1.04);
}

.vip-packages .hero-compact::after,
.vip-fleet .hero-compact::after,
.vip-operations .hero-compact::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 15, 0.94) 0%, rgba(10, 12, 15, 0.74) 54%, rgba(10, 12, 15, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 12, 15, 0.08), rgba(10, 12, 15, 0.82));
}

.vip-packages .hero-compact::before {
  background-image: url("assets/excellentia-vip/villas/night-estate.jpg");
}

.vip-fleet .hero-compact::before {
  background-image: url("assets/excellentia-vip/fleet/black-suv-night.jpg");
}

.vip-operations .hero-compact::before {
  background-image: url("assets/excellentia-vip/fleet/airport-interior.jpg");
}

.vip-packages .hero-compact > .container,
.vip-fleet .hero-compact > .container,
.vip-operations .hero-compact > .container {
  position: relative;
  z-index: 1;
}

.vip-packages .hero-compact-grid,
.vip-fleet .hero-compact-grid,
.vip-operations .hero-compact-grid {
  min-height: 0;
  align-items: center;
  gap: 28px;
}

.vip-packages .package-stage .stage-shell,
.vip-fleet .package-stage .stage-shell,
.vip-operations .package-stage .stage-shell {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(17, 16, 15, 0.22), rgba(17, 16, 15, 0.78)),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.18), transparent 34%);
}

.vip-packages .package-stage .stage-shell::before,
.vip-fleet .package-stage .stage-shell::before,
.vip-operations .package-stage .stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.16;
  transform: scale(1.03);
}

.vip-packages .package-stage .stage-shell::before {
  background-image: url("assets/excellentia-vip/concierge/arrival-styling.jpg");
}

.vip-fleet .package-stage .stage-shell::before {
  background-image: url("assets/excellentia-vip/fleet/black-suv-portico.jpg");
}

.vip-operations .package-stage .stage-shell::before {
  background-image: url("assets/excellentia-vip/concierge/arrival-styling.jpg");
}

.vip-packages .package-stage .stage-shell > *,
.vip-fleet .package-stage .stage-shell > *,
.vip-operations .package-stage .stage-shell > * {
  position: relative;
  z-index: 1;
}

.vip-packages .proof-ribbon-grid article,
.vip-fleet .proof-ribbon-grid article,
.vip-packages .benchmark-card,
.vip-fleet .benchmark-card,
.vip-packages .signature-card,
.vip-packages .experience-card.product-card,
.vip-fleet .fleet-card.product-card,
.vip-fleet .destination-card.product-card {
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.vip-packages .proof-ribbon-grid article:hover,
.vip-fleet .proof-ribbon-grid article:hover,
.vip-packages .benchmark-card:hover,
.vip-fleet .benchmark-card:hover,
.vip-packages .signature-card:hover,
.vip-packages .experience-card.product-card:hover,
.vip-fleet .fleet-card.product-card:hover,
.vip-fleet .destination-card.product-card:hover,
.vip-operations .confirmation-card:hover,
.vip-operations .channel-card:hover,
.vip-operations .trust-card:hover,
.vip-operations .close-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 184, 132, 0.2);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.vip-packages .signature-grid {
  align-items: stretch;
}

.vip-packages .signature-card.featured {
  min-height: 100%;
}

.vip-packages .signature-card.featured .product-card-copy {
  align-content: center;
}

.vip-packages .signature-card:not(.featured) {
  background:
    linear-gradient(180deg, rgba(20, 24, 31, 0.92), rgba(11, 14, 19, 0.96)),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.11), transparent 42%);
}

.vip-packages .experience-card.product-card,
.vip-fleet .fleet-card.product-card,
.vip-fleet .destination-card.product-card {
  background:
    linear-gradient(180deg, rgba(16, 19, 24, 0.92), rgba(9, 12, 17, 0.98)),
    radial-gradient(circle at top right, rgba(217, 184, 132, 0.08), transparent 44%);
}

.vip-fleet .fleet-grid {
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.94fr));
  align-items: stretch;
}

.vip-fleet .fleet-card:first-child {
  grid-row: span 2;
}

.vip-fleet .fleet-card:first-child > .card-visual {
  height: 100%;
  min-height: 100%;
}

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

.vip-fleet .destination-card {
  min-height: 100%;
}

.vip-fleet .destination-card:nth-child(1),
.vip-fleet .destination-card:nth-child(4) {
  grid-column: span 7;
}

.vip-fleet .destination-card:nth-child(2),
.vip-fleet .destination-card:nth-child(3) {
  grid-column: span 5;
}

.vip-fleet .destination-card:nth-child(1) > .card-visual,
.vip-fleet .destination-card:nth-child(4) > .card-visual {
  height: 240px;
}

.vip-page {
  --vip-scroll-shift: 0px;
}

@media (prefers-reduced-motion: no-preference) {
  .vip-page .ambient {
    transition: transform 280ms linear;
    will-change: transform;
  }

  .vip-page .ambient-a {
    transform: translate3d(0, calc(var(--vip-scroll-shift) * -0.05), 0);
  }

  .vip-page .ambient-b {
    transform: translate3d(0, calc(var(--vip-scroll-shift) * 0.035), 0);
  }

  .vip-page .hero::before,
  .vip-page .hero-compact::before {
    transform: translate3d(0, calc(var(--vip-scroll-shift) * -0.035), 0) scale(1.04);
    transition: transform 280ms linear;
    will-change: transform;
  }

  .vip-page .fx-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    filter: blur(10px);
    transition:
      opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 760ms ease;
    transition-delay: var(--fx-delay, 0ms);
  }

  .vip-page .fx-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1260px) {
  .vip-booking .builder-layout {
    grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  }

  .builder-rail {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .vip-fleet .fleet-card:first-child {
    grid-row: auto;
  }

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

  .vip-fleet .destination-card:nth-child(1),
  .vip-fleet .destination-card:nth-child(2),
  .vip-fleet .destination-card:nth-child(3),
  .vip-fleet .destination-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .vip-home .hero,
  .vip-booking .hero-compact {
    min-height: auto;
  }

  .vip-booking .builder-layout,
  .builder-rail {
    grid-template-columns: 1fr;
  }

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

  .payment-panel-head,
  .payment-grid,
  .payment-meta {
    grid-template-columns: 1fr;
  }

  .payment-pill-stack {
    justify-items: start;
  }

  .vip-packages .hero-compact,
  .vip-fleet .hero-compact {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .vip-home h1,
  .vip-booking h1 {
    max-width: none;
    font-size: clamp(2.25rem, 9.4vw, 3.25rem);
    line-height: 0.98;
  }

  .vip-home .stage-shell,
  .vip-booking .stage-shell {
    min-height: auto;
  }

  .vip-packages .signature-grid,
  .vip-fleet .fleet-grid,
  .vip-fleet .destination-grid {
    grid-template-columns: 1fr;
  }

  .vip-packages .signature-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .vip-packages .signature-card.featured > .card-visual {
    min-height: 220px;
  }

  .vip-fleet .fleet-card:first-child > .card-visual,
  .vip-fleet .destination-card:nth-child(1) > .card-visual,
  .vip-fleet .destination-card:nth-child(4) > .card-visual {
    height: 220px;
    min-height: 220px;
  }

  .vip-home .hero-proof article {
    min-height: auto;
  }

  .vip-home .hero-lead,
  .vip-booking .hero-lead {
    font-size: 1rem;
    line-height: 1.72;
  }

  .choice-chip,
  .package-card,
  .extra-card {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card > .card-visual {
    width: 100%;
    height: 200px;
  }

  .vip-fleet .hero-actions,
  .vip-fleet .final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .vip-fleet .hero-actions .btn:not(.btn-quiet),
  .vip-fleet .final-cta-actions .btn:not(.btn-quiet) {
    width: 100%;
  }

  .vip-fleet .fleet-grid,
  .vip-fleet .destination-grid {
    grid-template-columns: 1fr;
  }

  .vip-operations .hero-actions,
  .vip-operations .final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .vip-operations .hero-actions .btn:not(.btn-quiet),
  .vip-operations .final-cta-actions .btn:not(.btn-quiet) {
    width: 100%;
  }

  .vip-fleet .trust-grid,
  .vip-operations .trust-grid,
  .vip-operations .close-grid,
  .vip-operations .notification-grid,
  .booking-notification-strip {
    grid-template-columns: 1fr;
  }

  .extra-card {
    grid-template-columns: 1fr;
  }

  .extra-price {
    justify-self: start;
  }

  .benchmark-grid,
  .vip-fleet .benchmark-grid {
    grid-template-columns: 1fr;
  }

  .vip-home .hero-actions,
  .vip-home .stage-actions,
  .vip-home .final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .vip-home .hero-actions .btn:not(.btn-quiet),
  .vip-home .stage-actions .btn:not(.btn-quiet),
  .vip-home .final-cta-actions .btn:not(.btn-quiet) {
    width: 100%;
  }

  .vip-home .channel-card,
  .vip-home .confirmation-card,
  .vip-home .final-cta-card {
    gap: 14px;
  }

  .vip-home .channel-card p,
  .vip-home .confirmation-card p,
  .vip-home .final-cta-card p {
    max-width: none;
  }

  .vip-packages .utility-links,
  .vip-fleet .utility-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .vip-packages .utility-links .vip-lang-picker,
  .vip-fleet .utility-links .vip-lang-picker {
    flex: 1 1 168px;
    width: 100%;
  }

  .vip-operations .utility-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .vip-operations .utility-links .vip-lang-picker {
    flex: 1 1 168px;
    width: 100%;
  }

  .vip-fleet .stage-grid article {
    flex-basis: 100%;
    min-height: auto;
    padding: 16px;
  }

  .vip-fleet .stage-inline-route {
    gap: 8px;
  }

  .vip-fleet .fleet-card > .card-visual {
    height: 190px;
  }

  .vip-fleet .destination-card > .card-visual {
    height: 170px;
  }
}

/* VIP hardening: prevent collisions, clipping and oppressive blocks */
.vip-page {
  overflow-x: clip;
}

.vip-page :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, label, a) {
  overflow-wrap: anywhere;
  word-break: normal;
}

.vip-page :where(h1, h2, h3, h4, h5, h6) {
  text-wrap: balance;
  line-height: 1.08;
}

.vip-page :where(.hero-layout, .hero-compact-grid, .builder-layout, .footer-grid, .nav-row, .utility-row, .benchmark-grid, .service-grid, .package-grid, .route-grid, .tier-grid, .extras-grid, .coverage-list, .stage-grid, .builder-topline, .builder-columns) > * {
  min-width: 0;
}

.vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card, .builder-topline-card, .builder-notes article, .summary-card, .itinerary-card, .confirmation-card, .channel-card, .trust-card, .stage-shell, .fleet-card, .destination-card) {
  min-width: 0;
}

.vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card, .builder-topline-card, .builder-notes article, .summary-card, .itinerary-card, .confirmation-card, .channel-card, .trust-card, .stage-shell, .fleet-card, .destination-card) strong,
.vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card, .builder-topline-card, .builder-notes article, .summary-card, .itinerary-card, .confirmation-card, .channel-card, .trust-card, .stage-shell, .fleet-card, .destination-card) .price,
.vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card, .builder-topline-card, .builder-notes article, .summary-card, .itinerary-card, .confirmation-card, .channel-card, .trust-card, .stage-shell, .fleet-card, .destination-card) .amount {
  display: block;
  white-space: normal;
  line-height: 1.08;
}

.vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card, .fleet-card, .destination-card) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vip-page :where(.benchmark-card img, .service-card img, .signature-card img, .package-card img, .route-card img, .tier-card img, .extra-card img, .fleet-card img, .destination-card img) {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vip-page :where(.section-head h2, .hero h1, .hero-compact h1, .builder-sidebar h2, .summary-card h2, .itinerary-card h2, .confirmation-card h2) {
  max-width: 20ch;
}

.vip-page :where(.section-head p, .hero-lead, .builder-sidebar p, .summary-card p, .itinerary-card p, .confirmation-card p, .service-card p, .signature-card p, .package-card p, .route-card p, .tier-card p, .extra-card p) {
  max-width: 62ch;
}

.vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card, .builder-topline-card, .builder-notes article, .summary-card, .itinerary-card, .confirmation-card, .channel-card, .trust-card) {
  padding-bottom: 0;
}

@media (max-width: 960px) {
  .vip-page .hero,
  .vip-page .section {
    padding: 64px 0;
  }

  .vip-page .hero-compact {
    padding-bottom: 44px;
  }

  .vip-page :where(.hero-layout, .hero-compact-grid, .builder-layout, .footer-grid, .nav-row, .utility-row, .benchmark-grid, .service-grid, .package-grid, .route-grid, .tier-grid, .extras-grid, .coverage-list, .stage-grid, .builder-topline, .builder-columns) {
    grid-template-columns: 1fr;
  }

  .vip-page .nav-links {
    gap: 12px;
    flex-wrap: wrap;
  }

  .vip-page .floating-cta {
    right: 12px;
    bottom: 12px;
  }

  .vip-page :where(.builder-sidebar, .builder-rail, .summary-card, .itinerary-card, .hero-stage, .package-stage) {
    position: static;
  }

  .vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card, .builder-topline-card, .builder-notes article, .summary-card, .itinerary-card, .confirmation-card, .channel-card, .trust-card, .stage-shell) {
    gap: 10px;
  }
}

/* Visual heaviness reduction and card containment */
.vip-page .section-dark,
.vip-page .benchmark-band,
.vip-page .site-footer {
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.82), rgba(9, 11, 15, 0.94));
}

.vip-page .section-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vip-page :where(.benchmark-band, .builder-panel, .builder-sidebar, .summary-card, .itinerary-card, .confirmation-card, .stage-shell, .footer-grid > div) {
  border: 1px solid rgba(217, 184, 132, 0.16);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.94), rgba(13, 16, 21, 0.96));
}

.vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card, .builder-topline-card, .builder-notes article, .summary-card, .itinerary-card, .confirmation-card, .channel-card, .trust-card, .stage-shell, .fleet-card, .destination-card) {
  padding: 18px 18px 16px;
  border-radius: 22px;
  overflow: hidden;
}

.vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card) :is(span, strong, p, li) {
  line-height: 1.35;
}

.vip-page :where(.benchmark-card strong, .service-card strong, .signature-card strong, .package-card strong, .route-card strong, .tier-card strong, .extra-card strong) {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.vip-page :where(.benchmark-card span, .service-card .service-tag, .signature-card .signature-tag, .package-card .package-tag, .route-card .route-tag, .tier-card .tier-tag, .extra-card .extra-tag) {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-soft);
}

.vip-page :where(.benchmark-card p, .service-card p, .signature-card p, .package-card p, .route-card p, .tier-card p, .extra-card p, .builder-notes article p, .builder-sidebar p, .summary-card p, .itinerary-card p, .confirmation-card p) {
  color: rgba(247, 240, 228, 0.9);
}

.vip-page :where(.builder-topline-card, .builder-notes article, .summary-card, .itinerary-card, .confirmation-card, .channel-card, .trust-card) {
  gap: 10px;
}

.vip-page .builder-panel,
.vip-page .builder-sidebar,
.vip-page .builder-rail {
  min-width: 0;
}

@media (max-width: 960px) {
  .vip-page :where(.benchmark-band, .builder-panel, .builder-sidebar, .summary-card, .itinerary-card, .confirmation-card, .stage-shell, .footer-grid > div) {
    padding: 16px;
  }

  .vip-page :where(.benchmark-card, .service-card, .signature-card, .package-card, .route-card, .tier-card, .extra-card) {
    padding: 16px 16px 14px;
  }
}

/* Booking builder width and price-badge containment overrides */
.vip-booking .builder-layout {
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1.72fr) minmax(280px, 0.68fr);
}

.vip-booking .choice-chip,
.vip-booking .package-card,
.vip-booking .extra-card {
  display: grid;
  gap: 12px;
}

.vip-booking .builder-panel {
  padding: 30px;
}

.vip-booking #serviceChips.chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vip-booking .package-grid,
.vip-booking #packageCards.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vip-booking .choice-chip,
.vip-booking .package-card,
.vip-booking .extra-card {
  align-items: start;
}

.vip-booking .extra-card {
  grid-template-columns: 104px minmax(0, 1fr) auto;
  grid-template-areas: "visual copy price";
  gap: 12px;
}

.vip-booking .extra-card .card-visual {
  grid-area: visual;
  width: 104px;
  height: 104px;
}

.vip-booking .extra-card .extra-copy {
  grid-area: copy;
}

.vip-booking .extra-price {
  grid-area: price;
  align-self: start;
  justify-self: end;
  white-space: nowrap;
  min-width: 0;
  padding-inline: 10px;
}

.vip-booking #extrasGrid.extras-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
}

.vip-booking .choice-copy,
.vip-booking .package-copy,
.vip-booking .extra-copy {
  min-width: 0;
}

.vip-booking .summary-head {
  flex-wrap: wrap;
}

.vip-booking .summary-price {
  flex: 1 1 100%;
  text-align: left;
}

.vip-booking .summary-price strong {
  font-size: clamp(1.6rem, 4vw, 2rem);
}

@media (max-width: 1260px) {
  .vip-booking .builder-layout {
    grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  }

  .vip-booking #extrasGrid.extras-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .vip-booking .builder-layout {
    grid-template-columns: 1fr;
  }

  .vip-booking #serviceChips.chip-grid,
  .vip-booking .package-grid {
    grid-template-columns: 1fr;
  }

  .vip-booking .extra-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "visual"
      "copy"
      "price";
  }

  .vip-booking .extra-price {
    justify-self: start;
  }
}

/* Internal admin workspace */
.vip-admin .hero {
  min-height: auto;
}

.vip-admin .admin-hero-grid,
.vip-admin .admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.84fr);
  gap: 24px;
  align-items: start;
}

.vip-admin .admin-shell {
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
}

.vip-admin .admin-sidebar,
.vip-admin .admin-main {
  display: grid;
  gap: 18px;
  align-self: start;
}

.vip-admin .admin-sidebar {
  position: sticky;
  top: 108px;
}

.vip-admin .admin-panel {
  border: 1px solid rgba(217, 184, 132, 0.18);
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(18, 22, 28, 0.95), rgba(11, 14, 18, 0.98));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
  animation: vip-admin-fade-up 520ms ease both;
}

.vip-admin .admin-stage-shell {
  padding: 24px;
}

.vip-admin .admin-stage-note,
.vip-admin .admin-sync-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(217, 184, 132, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(247, 240, 228, 0.88);
  line-height: 1.6;
}

.vip-admin .admin-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.vip-admin .admin-kpi-grid,
.vip-admin .admin-note-stack,
.vip-admin .admin-notification-grid {
  display: grid;
  gap: 14px;
}

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

.vip-admin .admin-kpi-card,
.vip-admin .admin-note-card,
.vip-admin .admin-record,
.vip-admin .admin-check-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(25, 30, 38, 0.96), rgba(13, 16, 22, 0.98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.vip-admin .admin-kpi-card,
.vip-admin .admin-note-card {
  padding: 18px;
}

.vip-admin .admin-kpi-card span,
.vip-admin .admin-note-card span {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vip-admin .admin-kpi-card strong,
.vip-admin .admin-note-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.vip-admin .admin-kpi-card p,
.vip-admin .admin-note-card p,
.vip-admin .admin-detail-lead {
  margin: 10px 0 0;
  color: rgba(247, 240, 228, 0.86);
  line-height: 1.7;
}

.vip-admin .admin-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.vip-admin .admin-filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.vip-admin .admin-filter-chip {
  grid-template-columns: 1fr;
}

.vip-admin .admin-filter-chip .choice-copy {
  gap: 3px;
}

.vip-admin .admin-ledger-list,
.vip-admin .admin-items-list {
  display: grid;
  gap: 14px;
}

.vip-admin .admin-record {
  overflow: hidden;
}

.vip-admin .admin-record-hit {
  width: 100%;
  border: 0;
  padding: 18px;
  text-align: left;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.vip-admin .admin-record.is-active {
  border-color: rgba(217, 184, 132, 0.42);
  box-shadow: 0 24px 44px rgba(155, 115, 65, 0.16);
}

.vip-admin .admin-record-head,
.vip-admin .admin-record-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vip-admin .admin-record-head strong {
  margin-top: 6px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.vip-admin .mini-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vip-admin .admin-record-meta {
  margin-top: 12px;
  color: rgba(247, 240, 228, 0.78);
  font-size: 0.92rem;
}

.vip-admin .admin-record-meta strong {
  font-size: 1rem;
  color: #fff4e0;
}

.vip-admin .admin-record p {
  margin: 14px 0 0;
  color: rgba(247, 240, 228, 0.9);
  line-height: 1.65;
}

.vip-admin .admin-record-pills,
.vip-admin .admin-status-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff3dd;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill-muted,
.status-pill-pending {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.status-pill-requested,
.status-pill-deposit,
.status-pill-drafted {
  border-color: rgba(217, 184, 132, 0.26);
  background: rgba(217, 184, 132, 0.12);
}

.status-pill-quoted,
.status-pill-confirmed,
.status-pill-sent,
.status-pill-invoiced {
  border-color: rgba(135, 183, 255, 0.28);
  background: rgba(78, 132, 214, 0.16);
}

.status-pill-paid,
.status-pill-completed {
  border-color: rgba(143, 216, 185, 0.28);
  background: rgba(143, 216, 185, 0.14);
}

.status-pill-cancelled,
.status-pill-refunded {
  border-color: rgba(255, 121, 121, 0.26);
  background: rgba(171, 56, 56, 0.16);
}

.vip-admin .detail-grid,
.vip-admin .invoice-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vip-admin .invoice-band {
  margin-top: 18px;
}

.vip-admin .detail-span-two {
  grid-column: 1 / -1;
}

.vip-admin .admin-check-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: rgba(247, 240, 228, 0.9);
}

.vip-admin .admin-check-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.vip-admin .admin-items-panel {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

@keyframes vip-admin-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1240px) {
  .vip-admin .admin-hero-grid,
  .vip-admin .admin-shell {
    grid-template-columns: 1fr;
  }

  .vip-admin .admin-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .vip-admin .admin-kpi-grid,
  .vip-admin .detail-grid,
  .vip-admin .invoice-band,
  .vip-admin .admin-actions,
  .vip-admin .admin-notification-grid {
    grid-template-columns: 1fr;
  }
}
