/* --- UI scale (optional, tweak or remove) --- */
:root {
  --ui-scale: .80;
  --page-bg: #0a0b0d;
  --main-text: #fff;
  --light-text: #a7a7a7;
  --border-line: rgba(255, 255, 255, .1);
  --gold: #d4af37;
}

@media (max-width: 1024px) {
  :root {
    --ui-scale: 1 !important;
  }
}
@media (max-width: 1024px) {
  #page {
    transform: none !important;
    width: auto !important;
    min-height: 100dvh !important;
  }
  html { scroll-behavior: auto !important; }
}

/* ===== base ===== */
html,
body {
  background-color: #0a0b0d;

}

/* body scrollbar mirrors  */
body {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: transparent #0a0b0d;
  /* Firefox track */
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #0a0b0d !important;
}

body::-webkit-scrollbar-thumb {
  background: transparent;
  transition: background .25s;
}

/* flip to gold only while actively scrolling */
body.show-scrollbar {
  scrollbar-color: var(--gold) #0a0b0d;
}

/* Firefox */
body.show-scrollbar::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* WebKit */

html {
  overflow-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  background-color: #0a0b0d;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 175, 55, .08), transparent 60%),
    linear-gradient(135deg, #0e0f12 0%, #0a0b0d 70%);
}

html {
  color-scheme: dark;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: #0a0b0d !important;
}

html::-webkit-scrollbar-thumb {
  background: transparent;
  transition: background .25s;
}

html.show-scrollbar::-webkit-scrollbar-thumb {
  background: var(--gold);
}

html::-webkit-scrollbar-corner {
  background: #0a0b0d;
}

.modal-content {
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: min(1vw, 12px);
  scrollbar-width: thin;
  scrollbar-color: transparent #0a0b0d;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: #0a0b0d !important;
}

.modal-content::-webkit-scrollbar-thumb {
  background: transparent;
  transition: background .25s;
}

.modal-content::-webkit-scrollbar-corner {
  background: #0a0b0d;
}

.modal-content.show-scrollbar {
  scrollbar-color: var(--gold) #0a0b0d;
}

.modal-content.show-scrollbar::-webkit-scrollbar-thumb {
  background: var(--gold);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", system-ui, Arial, Helvetica, sans-serif;
  color: var(--main-text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 175, 55, .08), transparent 60%),
    linear-gradient(135deg, #0e0f12 0%, #0a0b0d 70%);
}

#page {
  transform: scale(var(--ui-scale));
  transform-origin: top center;
  width: calc(100%/var(--ui-scale));
  min-height: calc(100vh/var(--ui-scale));
}

@supports (zoom: 1) {
  #page {
    transform: none;
    width: auto;
    min-height: 100vh;
    zoom: var(--ui-scale);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: .3px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Sections --- */
section {
  padding: 10px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-line);
}

#hero {
  padding: 0;
  border-bottom: 0;
  background: none;
}

/* --- Header --- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 11, 13, .55);
  backdrop-filter: blur(8px);
  transition: background .3s;
}

.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
}

.menu-toggle {
  justify-self: start;
  background: transparent;
  border: 0;
  color: #ddd;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 4px;
}

.menu-toggle:hover {
  color: var(--gold);
}

/* ---burger style  --- */
.rr-burger-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px 6px;
  color: #ddd;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}

.rr-burger-btn:hover {
  color: var(--gold);
}

.rr-label {
  position: relative;
  display: inline-block;
}

.rr-label .label-close {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.rr-burger-btn[aria-expanded="true"] .label-open {
  opacity: 0;
  transform: translateY(-6px);
}

.rr-burger-btn[aria-expanded="true"] .label-close {
  opacity: 1;
  transform: none;
}

.rr-burger {
  position: relative;
  width: 22px;
  height: 16px;
  display: inline-block;
}

.rr-burger .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .9s cubic-bezier(.22, .9, .2, 1), opacity .6s ease, width .7s ease, background-color .7s ease;
}

.rr-burger .bar-1 {
  top: 0;
  width: 100%;
}

.rr-burger .bar-2 {
  top: 7px;
  width: 70%;
  right: 0;
}

.rr-burger .bar-3 {
  bottom: 0;
  width: 85%;
}

.rr-burger-btn:hover .bar-2,
.rr-burger-btn:hover .bar-3 {
  width: 100%;
}

.rr-burger-btn[aria-expanded="true"] .rr-burger .bar-1 {
  transform: translateY(7px) rotate(45deg);
  width: 100%;
  background: var(--gold);
}

.rr-burger-btn[aria-expanded="true"] .rr-burger .bar-2 {
  opacity: 0;
  transform: translateX(6px);
}

.rr-burger-btn[aria-expanded="true"] .rr-burger .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
  background: var(--gold);
}

@media (prefers-reduced-motion: reduce) {

  .rr-burger .bar,
  .rr-label * {
    transition: none !important;
  }
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 120px;
  object-fit: contain;
}

@media (max-width:640px) {
  .logo-img {
    height: 68px;
  }
}

.logo-link {
  position: relative;
  height: 72px;
  overflow: visible;
}

.logo-img {
  height: 140px;
  max-height: none;
  margin-top: -20px;
}

.top-bar {
  align-items: center;
  min-height: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: auto;
}

.logo-img {
  height: 140px;
  margin-top: 0;
}

.top-cta {
  justify-self: end;
  position: relative;
  width: max-content;
  text-decoration: none;
  color: #ddd;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 0;
  transition: color .3s, transform .3s;
}

.top-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .3s;
}

.top-cta:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.top-cta:hover::after {
  width: 100%;
}
/* --- Header phone link (Executive Driving style) --- */
.phone-link {
  text-transform: none;        /* keep normal case */
  color: #ffffff;              /* white text */
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.phone-link:hover {
  color: var(--gold);          /* number turns gold on hover */
  transform: translateY(-2px);
}



/* --- Hero --- */
.hero-section {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: clamp(56px, 10vh, 120px) 5vw 8vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero-tag {
  font-size: clamp(12px, 1.8vw, 16px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-text);
}

.hero-content h1 {
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 800;
  margin: 12px 0 4px;
  line-height: 1.2;
}

.hero-content h2 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 400;
  margin: 0 0 24px;
  color: #d2d2d2;
  max-width: 46ch;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 42px;
  width: 100%;
  max-width: 900px;
  margin: 8px auto 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 34px;
  position: relative;
  text-align: left;
}

.feature::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 34px;
  background: var(--gold);
  opacity: .8;
  border-radius: 2px;
}

.feature p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.35;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 16px 38px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e5c76b, #d4af37);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .4), 0 0 18px rgba(212, 175, 55, .35);
  transition: transform .25s, box-shadow .25s, background .25s;
}

.btn:hover {
  background: linear-gradient(135deg, #f0d989, #e0bf4c);
  transform: translateY(-3px);
}

/* ===== Minimal, luxe RR-style buttons ===== */
.btn-rr {
  --rr-bg: rgba(255, 255, 255, .03);
  --rr-bg-hover: rgba(255, 255, 255, .06);
  --rr-br: 999px;
  --rr-bc: rgba(255, 255, 255, .10);
  --rr-bc-hover: rgba(212, 175, 55, .35);
  --rr-shadow: 0 6px 16px rgba(0, 0, 0, .28);
  --rr-shadow-hover: 0 10px 26px rgba(0, 0, 0, .36);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--rr-br);
  border: 1px solid var(--rr-bc);
  background: linear-gradient(180deg, var(--rr-bg), rgba(255, 255, 255, .02));
  color: #ececec;

  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(6px) saturate(1.02);
  box-shadow: var(--rr-shadow);
  transition: transform .28s cubic-bezier(.22, .9, .2, 1), background .28s ease, border-color .28s ease, box-shadow .28s ease, color .28s ease;
}

.btn-rr:hover {
  background: linear-gradient(180deg, var(--rr-bg-hover), rgba(255, 255, 255, .03));
  border-color: var(--rr-bc-hover);
  box-shadow: var(--rr-shadow-hover), 0 0 18px rgba(212, 175, 55, .18);
  transform: translateY(-2px);
  color: #fff;
}

.btn-rr:active {
  transform: translateY(-1px) scale(.99);
}

.btn-rr:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .08), 0 0 0 6px rgba(212, 175, 55, .20), var(--rr-shadow-hover);
  border-color: rgba(212, 175, 55, .45);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-rr i {
  font-size: 18px;
  color: var(--gold);
  transition: transform .28s ease;
}

.btn-rr:hover i {
  transform: translateX(2px);
}

.concierge .btn-rr {
  --rr-bg: rgba(255, 255, 255, .025);
  --rr-bg-hover: rgba(255, 255, 255, .05);
}

/* --- About --- */
.about-min {
  position: relative;
  text-align: center;
  color: #fff;
  padding: clamp(56px, 9vw, 110px) 20px;
}

.about-min__content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-min__title {
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.15;
  margin: 0 0 10px;
  color: #fff;
}

.about-min__title::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .9;
}

.about-min__lead {
  max-width: 75ch;
  margin: 16px auto;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
  color: #e0e0e0;
}

.about-min__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: clamp(28px, 4vw, 52px);
  justify-items: center;
}

.about-min__item {
  background: none;
  border: 0;
  text-align: center;
  padding: 6px 8px;
  transition: transform .28s;
}

.about-min__item:hover {
  transform: translateY(-4px) scale(1.015);
}

.about-min__icon {
  font-family: "remixicon";
  font-size: clamp(28px, 4.2vw, 38px);
  line-height: 1;
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, .25));
}

.about-min__item strong {
  display: block;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.about-min__muted {
  display: block;
  max-width: 32ch;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.65;
  color: #cfcfcf;
}

/* --- Card grid (fleet etc.) --- */
.fleet-Grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 18px;
  color: #fff;
  text-align: left;
}

/* --- Overlay Menu & Legal Modals (merged, final) --- */
.menu-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, .88) 0%, rgba(8, 9, 11, .78) 42%, rgba(8, 9, 11, .40) 58%, rgba(8, 9, 11, 0) 100%);
  backdrop-filter: blur(14px) saturate(1.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
  z-index: 1200;
}

.modal-overlay {
  z-index: 1300;
}

.menu-overlay.open,
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel,
.modal-panel {
  position: absolute;
  inset: 0 auto 0 0;
  padding: clamp(16px, 3vw, 40px) min(5vw, 56px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .04);
  border-right: 1px solid var(--border-line);
  box-shadow: 0 0 40px rgba(0, 0, 0, .25);
  transform: translateX(-60px);
  opacity: 0;
  transition: transform .9s cubic-bezier(.22, .9, .2, 1), opacity .9s ease;
}

.menu-panel {
  width: min(560px, 46vw);
}

.modal-panel {
  width: min(720px, 58vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(12px, 2vw, 20px);
}

.menu-overlay.open .menu-panel,
.modal-overlay.open .modal-panel {
  transform: translateX(0);
  opacity: 1;
}

.menu-close,
.modal-close {
  align-self: flex-start;
  background: transparent;
  border: 0;
  color: #ddd;
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  top: clamp(12px, 2vw, 20px);
  right: clamp(12px, 2vw, 20px);
}

.menu-close:hover,
.modal-close:hover {
  color: var(--gold);
}

.overlay-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overlay-link {
  display: inline-block;
  position: relative;
  width: max-content;
  padding: 10px 0;
  text-decoration: none;
  color: #d9d9d9;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: clamp(14px, 1vw, 16px);
  transition: color .3s, transform .3s;
}

.overlay-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .3s;
}

.overlay-link:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.overlay-link:hover::after {
  width: 100%;
}

.modal-content h4 {
  margin: 18px 0 6px;
  font-weight: 800;
  font-size: 18px;
}

.modal-content p,
.modal-content li {
  color: #d7d7d7;
}

@media (max-width:640px) {

  .menu-panel,
  .modal-panel {
    width: 100%;
  }
}

@keyframes flyUpSoft {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-content>* {
  opacity: 0;
  transform: translateY(18px);
}

.modal-overlay.open .modal-content>* {
  animation: flyUpSoft .7s cubic-bezier(.22, .9, .2, 1) both;
}

.modal-overlay.open .modal-content>*:nth-child(1) {
  animation-delay: .25s;
}

.modal-overlay.open .modal-content>*:nth-child(2) {
  animation-delay: .32s;
}

.modal-overlay.open .modal-content>*:nth-child(3) {
  animation-delay: .39s;
}

.modal-overlay.open .modal-content>*:nth-child(4) {
  animation-delay: .46s;
}

.modal-overlay.open .modal-content>*:nth-child(5) {
  animation-delay: .53s;
}

.modal-overlay.open .modal-content>*:nth-child(6) {
  animation-delay: .60s;
}

.modal-overlay.open .modal-content>*:nth-child(7) {
  animation-delay: .67s;
}

.modal-overlay.open .modal-content>*:nth-child(8) {
  animation-delay: .74s;
}

.modal-overlay.open .modal-content>*:nth-child(9) {
  animation-delay: .81s;
}

.modal-overlay.open .modal-content>*:nth-child(10) {
  animation-delay: .88s;
}

.modal-overlay.open .modal-content h3,
.modal-overlay.open .modal-content h4 {
  animation-duration: .8s;
  letter-spacing: .01em;
}
/* Overlay menu: phone as a pill */
.overlay-link.phone-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--border-line);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  text-transform:none;
  letter-spacing:.06em;
  font-weight:800;
  width:max-content;
}
.overlay-link.phone-pill::after{ content:none; } /* kill underline */

.overlay-link.phone-pill .ri-phone-line{
  color:var(--gold);
  font-size:1.05rem;
  margin-right:2px;
  transition:transform .25s ease, color .25s ease;
}

.overlay-link.phone-pill:hover{
  background:var(--gold);
  color:#111;
  border-color:var(--gold);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}
.overlay-link.phone-pill:hover .ri-phone-line{ color:#111; transform:translateY(-1px); }

.overlay-link.phone-pill:focus-visible{
  outline:none;
  box-shadow:0 0 0 2px rgba(255,255,255,.08), 0 0 0 6px rgba(212,175,55,.25);
  border-color:rgba(212,175,55,.45);
}


/* small tweak so it sits nicely under the list */
.overlay-nav .overlay-link.phone-pill{ margin-top:8px; }

/* ---- Reveal on scroll (single, final) ---- */
@keyframes rrReveal {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.985);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  will-change: opacity, transform, filter;
}

.is-visible[data-reveal] {
  animation: rrReveal 1.1s cubic-bezier(.19, .84, .22, 1) both;
  animation-delay: var(--delay, .08s);
}

[data-reveal].reveal-slow.is-visible {
  animation-duration: 1.35s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* =========================
   LUXE CONCIERGE SECTION
   ========================= */
.concierge {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 20px;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(212, 175, 55, .10), transparent 70%),
    linear-gradient(135deg, #0e0f12 0%, #0a0b0d 70%);
  overflow: hidden;
}

.concierge-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}

@media (max-width:900px) {
  .concierge-wrap {
    grid-template-columns: 1fr;
  }
}

.concierge-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: .3px;
}

.concierge-title span {
  background: linear-gradient(90deg, #f0d989, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, .25));
}

.concierge-lead {
  color: #e2e2e2;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.85;
  margin: 6px 0 16px;
}

.concierge-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.concierge-bullets li {
  color: #d0d0d0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.concierge-bullets i {
  color: var(--gold);
  font-size: 20px;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, .35));
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 8px;
}

.chip {
  --chip-bg: rgba(255, 255, 255, .05);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-line);
  background: var(--chip-bg);
  text-decoration: none;
  color: #f3f3f3;
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .35s cubic-bezier(.22, .9, .2, 1), background .35s, border-color .35s;
  will-change: transform;
}

.chip i {
  color: var(--gold);
}

.chip:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(212, 175, 55, .45);
}

.btn-large {
  padding: 18px 44px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
  margin-top: 6px;
}

.concierge-card.glass {
  position: relative;
  border: 1px solid var(--border-line);
  border-radius: 16px;
  padding: clamp(16px, 2.4vw, 28px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  backdrop-filter: blur(10px) saturate(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .3px;
}

.card-title i {
  color: var(--gold);
}

.card-sheen {
  position: absolute;
  inset: -40% -60%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(255, 255, 255, 0) 0deg, rgba(255, 255, 255, .08) 40deg, rgba(255, 255, 255, 0) 80deg);
  transform: rotate(8deg);
  animation: sheenDrift 9s linear infinite;
  pointer-events: none;
}

@keyframes sheenDrift {
  0% {
    transform: rotate(8deg) translateX(-3%);
  }

  50% {
    transform: rotate(8deg) translateX(3%);
  }

  100% {
    transform: rotate(8deg) translateX(-3%);
  }
}

.lux-form {
  display: grid;
  gap: 12px;
}

.field-group {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width:640px) {
  .field-group {
    grid-template-columns: 1fr;
  }
}

.lux-field {
  display: grid;
  gap: 6px;
}

.lux-field span {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cfcfcf;
}

.lux-field input,
.lux-field textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-line);
  border-radius: 10px;
  padding: 14px 14px;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

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

.lux-field input::placeholder,
.lux-field textarea::placeholder {
  color: #9d9d9d;
}

.lux-field input:focus,
.lux-field textarea:focus {
  border-color: rgba(212, 175, 55, .75);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .15), inset 0 0 0 999px rgba(255, 255, 255, .02);
}

.micro-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bdbdbd;
  font-size: 12px;
  margin: 8px 0 0;
}

.micro-note i {
  color: var(--gold);
}

.concierge-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(2px 2px at 12% 18%, rgba(212, 175, 55, .35), transparent 60%),
    radial-gradient(2px 2px at 36% 8%, rgba(212, 175, 55, .2), transparent 60%),
    radial-gradient(2px 2px at 78% 22%, rgba(212, 175, 55, .25), transparent 60%),
    radial-gradient(2px 2px at 66% 68%, rgba(212, 175, 55, .18), transparent 60%),
    radial-gradient(2px 2px at 8% 78%, rgba(212, 175, 55, .28), transparent 60%);
  opacity: .55;
  animation: twinkle 6.5s ease-in-out infinite alternate;
  filter: blur(.2px);
}

@keyframes twinkle {
  from {
    opacity: .35;
    transform: translateY(0);
  }

  to {
    opacity: .65;
    transform: translateY(-3px);
  }
}

@media (hover:hover) {
  .concierge-card.glass {
    transition: transform .6s cubic-bezier(.22, .9, .2, 1), box-shadow .6s;
  }

  .concierge-card.glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  }
}

/* =========================
   Intro Splash (Apple-style)
   ========================= */
body.intro-active {
  overflow: hidden;
}

body.intro-done {
  overflow: auto;
}

#page {
  opacity: 0;
  transition: opacity .6s ease;
}

body.intro-done #page {
  opacity: 1;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: #000;
}

.intro-center {
  position: relative;
}

.intro-logo {
  width: clamp(120px, 22vw, 220px);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, .25));
  opacity: 0;
  transform: scale(.96);
  animation: introPop 1.3s cubic-bezier(.22, .9, .2, 1) forwards .20s;
}

@keyframes introPop {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.intro.intro-out {
  animation: introFade .8s ease forwards;
}

@keyframes introFade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {

  .intro-logo,
  .intro {
    animation: none !important;
  }

  #page {
    opacity: 1 !important;
  }
}

.intro-center::after {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 0deg, rgba(255, 255, 255, .08) 20deg, rgba(255, 255, 255, 0) 40deg);
  transform: rotate(12deg) translateX(-40%);
  opacity: 0;
  pointer-events: none;
}

.intro.gleam .intro-center::after {
  animation: gleamSweep 900ms ease forwards;
}

@keyframes gleamSweep {
  0% {
    opacity: 0;
    transform: rotate(12deg) translateX(-40%);
  }

  15% {
    opacity: .55;
  }

  100% {
    opacity: 0;
    transform: rotate(12deg) translateX(40%);
  }
}

/* ===== Booking Modal (glossy) ===== */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: linear-gradient(90deg, rgba(8, 9, 11, .88) 0%, rgba(8, 9, 11, .78) 42%, rgba(8, 9, 11, .40) 58%, rgba(8, 9, 11, 0) 100%);
  backdrop-filter: blur(14px) saturate(1.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.booking-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  width: min(720px, 58vw);
  background: rgba(255, 255, 255, .04);
  border-right: 1px solid var(--border-line);
  box-shadow: 0 0 40px rgba(0, 0, 0, .25);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(16px, 2.6vw, 28px);
  transform: translateX(-60px);
  opacity: 0;
  transition: transform .9s cubic-bezier(.22, .9, .2, 1), opacity .9s ease;
}

.booking-overlay.open .booking-modal {
  transform: translateX(0);
  opacity: 1;
}

.booking-close {
  position: absolute;
  top: clamp(12px, 2vw, 20px);
  right: clamp(12px, 2vw, 20px);
  background: transparent;
  border: 0;
  color: #ddd;
  font-size: 26px;
  cursor: pointer;
}

.booking-close:hover {
  color: var(--gold);
}

.booking-header h2 {
  text-align: center;
  width: 100%;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0 0 10px;
  background: linear-gradient(90deg, #f0d989, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  letter-spacing: .5px;
}

.booking-header .sub {
  margin: 0 0 10px;
  color: #d0d0d0;
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-grid.two {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.booking-grid.three {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width:700px) {

  .booking-grid.two,
  .booking-grid.three {
    grid-template-columns: 1fr;
  }
}

.field {
  display: grid;
  gap: 6px;
  text-align: left;
}

.field span {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cfcfcf;
}

.field input,
.field textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-line);
  border-radius: 10px;
  padding: 14px;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #9d9d9d;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(212, 175, 55, .75);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .15), inset 0 0 0 999px rgba(255, 255, 255, .02);
}

.err {
  color: #ffb3b3;
  min-height: 14px;
  font-size: 12px;
}

.booking-actions {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.booking-note {
  color: #bdbdbd;
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-rr.book {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
}

.booking-overlay.centered {
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 28px);
}

.booking-overlay.centered .booking-modal {
  position: relative;
  inset: auto;
  width: min(720px, 92vw);
  max-height: 82vh;
  overflow: auto;
  border-radius: 16px;
  border-right: 0;
  border: 1px solid var(--border-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  backdrop-filter: blur(10px) saturate(1.02);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
  transform: translateY(40px) scale(.98);
  opacity: 0;
  transition: transform .9s cubic-bezier(.22, .9, .2, 1), opacity .9s ease, box-shadow .4s ease;
}

.booking-overlay.open.centered .booking-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.booking-overlay.centered .booking-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 1;
}

@media (hover:hover) {
  .booking-overlay.centered .booking-modal:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
  }
}

/* === Restore full-screen MENU overlay === */
.menu-panel {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: none;
  background: transparent;
  border-right: 0;
  box-shadow: none;
  transform: none;
  opacity: 1;
  transition: none;
  padding: clamp(16px, 3vw, 40px) min(5vw, 56px);
  display: flex;
  flex-direction: column;
}

.menu-overlay.open .menu-panel {
  transform: none;
  opacity: 1;
}

.menu-close {
  left: clamp(12px, 2vw, 20px);
  right: auto;
}

/* =========================
   Executive Driving – chat widget (final)
   ========================= */


.xd-chat[hidden] {
  display: none !important;
}

/* reliable close */

.xd-chat {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: min(380px, 92vw);
  height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: #0f1013;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
  z-index: 1400;
  /* above menu (1200) and modal (1300) */
}

/* Apple-style smooth open/close for chat widget */
.xd-chat {
  transform: scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When active */
.xd-chat.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}


.xd-chat__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  position: relative;
  z-index: 1;
  /* clickable header */
}

.xd-chat__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xd-chat__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.xd-chat__close {
  background: transparent;
  border: 0;
  color: #ddd;
  font-size: 20px;
  cursor: pointer;
}

.xd-chat__close:hover {
  color: #d4af37;
}

.xd-chat__body {
  padding: 14px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(700px 280px at 85% 10%, rgba(212, 175, 55, .08), transparent 60%),
    linear-gradient(135deg, #111216 0%, #0b0c0f 70%);
}

.xd-chat__row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.xd-chat__row--user {
  justify-content: flex-end;
}

.xd-chat__row--ai {
  justify-content: flex-start;
}

.xd-chat__msg {
  max-width: 75%;
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.5;
  font-size: 14.5px;
  word-wrap: break-word;
  border: 1px solid rgba(255, 255, 255, .06);
}

.xd-chat__row--user .xd-chat__msg {
  background: linear-gradient(135deg, #f0d989, #d4af37);
  color: #111;
  border-color: transparent;
  border-bottom-right-radius: 6px;
  text-align: right;
  /* only change requested */
}

.xd-chat__row--ai .xd-chat__msg {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  border-bottom-left-radius: 6px;
}

.xd-chat__row--user .xd-chat__avatar {
  order: 2;
}

.xd-chat__row--user .xd-chat__msg {
  order: 1;
}

.xd-chat__typing {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.xd-chat__typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfcfcf;
  animation: xdDots 1.2s infinite ease-in-out;
}

.xd-chat__typing span:nth-child(2) {
  animation-delay: .15s;
}

.xd-chat__typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes xdDots {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: .5;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.xd-chat__ftr {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
}

.xd-chat__input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  outline: none;
}

.xd-chat__input::placeholder {
  color: #9aa0a6;
}

.xd-chat__send {
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: #d4af37;
  color: #111;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

@media (max-width:480px) {
  .xd-chat {
    right: 12px;
    left: 12px;
    width: auto;
    height: 70vh;
    bottom: 92px;
  }

  .xd-chat__toggle {
    right: 12px;
    bottom: 12px;
  }
}

/* ===== Partners Marquee (HTML block you pasted) ===== */
.partners-marquee .marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  padding: 10px 0;
}

.partners-marquee .marquee__track {
  display: flex;
  gap: 22px;
  align-items: center;
  width: max-content;
  animation: partnersMarquee 28s linear infinite;
  will-change: transform;
}

@keyframes partnersMarquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }

  /* duplicated logos -> -50% */
}

/* Logo tiles */
.partners-marquee .partner {
  min-width: 190px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  position: relative;
  outline: none;
}

.partners-marquee .partner:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .08), 0 0 0 6px rgba(212, 175, 55, .25);
  border-radius: 12px;
}

.partners-marquee .partner img {
  max-height: 90px;
  /* tweak if you want even bigger */
  object-fit: contain;
  transition: transform .35s cubic-bezier(.22, .9, .2, 1), box-shadow .35s ease;
  transform: translateZ(0);
}

/* Pop-out on hover/focus (marquee keeps moving) */
.partners-marquee .partner:hover img,
.partners-marquee .partner:focus-visible img {
  transform: scale(1.22) translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
  z-index: 2;
}

/* Shared infobar under the strip */
.partner-infobar {
  margin: 10px auto 0;
  display: flex;
  justify-content: center;
  gap: .35rem;
  width: fit-content;
  max-width: min(900px, 92vw);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.4;
  color: #e8e8e8;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border: 1px solid var(--border-line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.partner-infobar strong {
  color: #fff;
  font-weight: 800
}

.partner-infobar.is-active {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee .marquee__track {
    animation: none
  }

  .partners-marquee .partner img {
    transition: none
  }
}

/* --- Footer base (no grey blocks) --- */
.site-footer {
  margin-top: 48px;
  padding: 36px 0 12px;
  background: transparent;
  /* no grey */
  border-top: 1px solid var(--border-line);
}

/* Bigger company logo */
/* Footer brand logo — make it big */
.footer-logo {
  height: clamp(170px, 16vw, 260px);
  /* big on desktop, sensible on mobile */
  width: auto;
  /* keep aspect ratio */
  display: block;
  object-fit: contain;
}

.footer-tag {
  margin: 6px 0 0;
  color: #cfcfcf;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: clamp(16px, 4vw, 40px);
  align-items: center;
}

/* Connect */
.footer-connect .footer-h {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Social buttons – transparent with gold accent on hover */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  /* no grey */
  border: 1px solid var(--border-line);
  color: #f2f2f2;
  text-decoration: none;
  transition: transform .25s, border-color .25s, color .25s, box-shadow .25s;
}

.social-btn:hover {
  transform: translateY(-2px);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .12), 0 12px 28px rgba(0, 0, 0, .45);
}

.social-btn i {
  font-size: 18px;
}

/* Thin gold line */
.footer-divider {
  margin: 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .8;
}

/* Payments – larger, rectangular logos with pro spacing (no hover effects) */
.footer-pay {
  text-align: center;
}

.footer-pay-h {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #cfcfcf;
  font-weight: 800;
}

.footer-pay-h::after {
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .85;
}

/* Row */
.pay-logos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* more spread out */
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
}

/* Consistent rectangular tiles (no background) */
.pay-logos li {
  width: 120px;
  /* controls rectangle width */
  height: 60px;
  /* controls rectangle height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images scale inside the rectangle */
.pay-logos img,
.pay-logos .up-svg {
  max-height: 44px;
  /* logo size – increase if you want bigger */
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  /* softens JPEG corners */
  background: transparent;
}

/* If you still use icon fonts, keep them aligned */
.pay-logos i {
  font-size: 44px;
  line-height: 1;
  color: #fff;
  opacity: .95;
}

/* No hover effects */
.pay-logos li:hover i,
.pay-logos li:hover .up-svg {
  color: inherit;
  transform: none;
  filter: none;
}

/* Mobile tune: keep spacing but shrink tiles a touch */
@media (max-width:600px) {
  .pay-logos li {
    width: 100px;
    height: 54px;
  }

  .pay-logos img,
  .pay-logos .up-svg {
    max-height: 38px;
    max-width: 92px;
  }
}



/* Copy */
.footer-copy {
  text-align: center;
  color: #bbb;
  font-size: 13px;
  margin-top: 16px;
}

/* --- Payment logos --- */

/* If your footer background is dark and a logo is also dark,
   you can optionally add a subtle outline for visibility: */
.pay-logos img {
  background: transparent;
}

/* Responsive */
@media (max-width:700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* Bigger Connect title */
.footer-connect .footer-h {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 18px;
}

/* Phone + email list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8e8e8;
  font-size: 16px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

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

/* Larger social icons in Connect */
.footer-connect .social-btn {
  width: 52px;
  height: 52px;
}

.footer-connect .social-btn i {
  font-size: 22px;
}

/* Optional: style for auto-linked plain-text emails */
.email-link {
  color: #f2f2f2;
  text-decoration: none;
  border-bottom: 1px dotted rgba(212, 175, 55, .45);
}

.email-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.fleet-collage {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-line);
  background: rgba(255, 255, 255, .03);
}

.fleet-collage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  /* keeps it neat on mobile */
  object-fit: cover;
}

/* === Executive Driving — Google Places dropdown (compact) === */
.pac-container {
  position: absolute !important;
  z-index: 99999 !important;

  /* size/shape */
  width: var(--pac-width, auto) !important;
  /* JS sets this = input width */
  max-height: 320px !important;
  overflow-y: auto !important;
  margin-top: -1px !important;
  /* sit flush under input */
  border: 1px solid rgba(255, 255, 255, .10) !important;
  border-radius: 12px !important;
  background: rgba(15, 16, 19, .96) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .5) !important;

  /* typography */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif !important;
  font-size: 12px !important;
  /* smaller, elegant */
  line-height: 1.25 !important;
  color: #e9e9e9 !important;
}

/* rows */
.pac-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 10px !important;
  /* tighter row */
  border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
  background: transparent !important;
  cursor: pointer !important;
}

.pac-item:last-child {
  border-bottom: 0 !important;
}

/* hover / keyboard selection */
.pac-item:hover,
.pac-item.pac-item-selected {
  background: rgba(212, 175, 55, .10) !important;
  border-left: 3px solid #d4af37 !important;
  padding-left: 7px !important;
  /* compensate for left border */
}

/* icon */
.pac-item .pac-icon {
  opacity: .7 !important;
  filter: saturate(.9) !important;
}

/* primary text (street) */
.pac-item .pac-item-query {
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: .1px !important;
}

/* secondary text (city, province, country) */
.pac-item>span:not(.pac-icon):not(.pac-item-query) {
  color: #cfcfcf !important;
  font-weight: 500 !important;
}

/* “powered by Google” */
.pac-container:after {
  padding: 6px 10px !important;
  font-size: 10px !important;
  color: #9aa3af !important;
  background: transparent !important;
}

/* Make only Drop Off span full width under Pickup */
.booking-grid.two .field--dropoff {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
  /* small gap below pickup */
}

/* === Fleet Section === */
.fleet-section {
  padding: 60px 20px;
  text-align: center;
  background: transparent;
}

.fleet-h {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.fleet-sub {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 40px;
}

/* === Fleet Section — Team Style Layout === */
.fleet-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.fleet-item.reverse {
  flex-direction: row-reverse;
}

.fleet-photo {
  flex: 1 1 50%;
}

.fleet-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.fleet-text {
  flex: 1 1 50%;
  text-align: left;
}

.fleet-text h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  color: var(--gold);
}

.fleet-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #ddd;
}

/* 📱 Mobile: stack like team section */
@media (max-width: 768px) {

  .fleet-item,
  .fleet-item.reverse {
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
  }

  .fleet-photo img {
    max-width: 320px;
    margin: 0 auto 18px;
  }

  .fleet-text {
    padding: 0 15px;
    text-align: center;
  }
}

/* use CSS vars for duration + delay */
.is-visible[data-reveal] {
  animation: rrReveal var(--dur, 1.1s) cubic-bezier(.19, .84, .22, 1) both;
  animation-delay: var(--delay, .08s);
}

/* Control panel for Fleet section */
#fleet {
  --reveal-dur: 1.6s;
  /* slower overall animation */
  --reveal-stagger: .18s;
  /* bigger gap between items */
}

/* Title matches About look (size, weight, underline accent) */
.fleet-h {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.15;
  margin: 0 0 10px;
  color: #fff;
}

.fleet-h::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .9;
}

/* Subline style + layout like About */
.fleet-sub {
  max-width: 75ch;
  margin: 6px auto 32px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
  color: #e0e0e0;
}

/* Subtle gold text treatment just on the phrase */
.gold-em {
  background: linear-gradient(90deg, #f0d989, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari */
  white-space: nowrap;
}

/* Optional: slower section default for fleet reveals */
#fleet {
  --reveal-dur: 1.6s;
  /* slower animation than default */
  --reveal-stagger: .18s;
  /* bigger gap between items */
}

/* Concierge card back to compact sizing */
#contact .concierge-card.glass {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px;
  border-radius: 16px;
}

#contact .lux-field span {
  font-size: 12px;
  letter-spacing: .12em;
}

#contact input,
#contact textarea {
  padding: 12px 12px;
  font-size: 14px;
}

#contact .btn-rr {
  padding: 12px 16px;
  font-size: 15px;
}

/* make sure the 2-col grid breathes but isn’t huge */
#contact .concierge-wrap {
  gap: clamp(18px, 3vw, 32px);
}

/* Luxury Sections */
.lux-section {
  padding: 80px 20px;
}

.lux-section.dark {
  background: #111;
  color: #eee;
}

.lux-section h2,
.lux-section h3 {
  font-family: 'Playfair Display', serif;
}

.gold-em {
  color: #c9a45c;
  font-weight: 600;
}

/* Founder Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.story-text .subtitle {
  font-size: 1.1rem;
  color: #bbb;
  font-style: italic;
  margin-bottom: 20px;
}

/* Team Section */
.team-strip .team-member {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.team-strip .team-member.reverse {
  flex-direction: row-reverse;
}

.team-photo {
  flex: 1 1 50%;
}

.team-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.team-text {
  flex: 1 1 50%;
}

.team-text h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  color: #c9a45c;
}

.team-text .subtitle {
  font-size: 1.1rem;
  color: #bbb;
  font-style: italic;
  margin-bottom: 20px;
}

.team-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #ddd;
}

/* === Scroll Reveal System (final clean version) === */

/* Base hidden state */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}

/* Shown state */
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Optional directional variants */
.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

/* When visible, reset transforms */
[data-reveal].is-visible.reveal-up,
[data-reveal].is-visible.reveal-left,
[data-reveal].is-visible.reveal-right {
  transform: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === Customer Care Card matches left column height === */
#contact .concierge-wrap {
  align-items: stretch;
  /* make both columns equal height */
}

#contact .concierge-card.glass {
  height: 115%;
  /* card fills the column height */
}

/* Fix chat toggle: pill, gold text */
.xd-chat__toggle {
  width: auto !important;
  height: auto !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: #111 !important;
  color: var(--gold) !important;
  border: 1px solid var(--border-line);
  font-weight: 800;
  font-size: 15px !important;
  letter-spacing: .04em;
  line-height: 1;
  /* keeps it single-line tight */
  white-space: nowrap;
  /* prevents wrapping */
  box-shadow: 0 10px 24px rgba(0, 0, 0, .4);
  z-index: 1400;
}

.xd-chat__toggle:hover {
  background: var(--gold) !important;
  color: #111 !important;
  border-color: var(--gold);
}

/* === Force “Ask NAVI” to gold pill === */
#page .xd-chat__toggle {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  height: 44px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;

  /* solid gold background */
  background: var(--gold) !important;
  color: #111 !important;
  /* black text */
  border: 1px solid var(--gold) !important;

  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  white-space: nowrap !important;

  box-shadow: 0 10px 28px rgba(0, 0, 0, .45) !important;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s !important;
  z-index: 1400 !important;
}

#page .xd-chat__toggle::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #111 !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, .5) !important;
}

#page .xd-chat__toggle:hover {
  background: #111 !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55) !important;
}


/* tiny gold “live” dot */
/* tiny dot: white by default */
#page .xd-chat__toggle::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #fff !important;
  /* white */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6) !important;
  /* white glow */
  transition: background .25s, box-shadow .25s !important;
}

/* hover: dot turns gold */
#page .xd-chat__toggle:hover::before,
#page .xd-chat__toggle:focus-visible::before {
  background: var(--gold) !important;
  /* gold */
  box-shadow: 0 0 10px rgba(212, 175, 55, .6) !important;
  /* gold glow */
}


/* mobile nudge */
@media (max-width:480px) {
  #page .xd-chat__toggle {
    right: 12px !important;
    bottom: 12px !important;
  }
}

/* =======================
   Mobile adjustments
   ======================= */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    /* keeps text readable but not massive */
    line-height: 1.4;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  /* Hero section scaling */
  .hero-section {
    min-height: 90vh;
    /* stop cutting video on small screens */
  }

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

  .hero-content h1 {
    font-size: 22px;
    /* shrink hero headline */
  }

  .hero-content h2 {
    font-size: 14px;
    /* shrink hero subheadline */
  }

  /* === Overlay menu stacking on mobile === */
  @media (max-width: 768px) {
    .overlay-nav {
      flex-direction: column !important;
      gap: 18px !important;
      align-items: center !important;
      text-align: center !important;
    }

    .overlay-link {
      font-size: 16px !important;
      letter-spacing: .18em !important;
      width: 100% !important;
    }
  }


  /* Chatbot (Ask NAVI) */
  .xd-chat {
    width: 100% !important;
    max-width: 95vw !important;
    height: 70vh !important;
    /* prevent zoom issues */
    bottom: 80px !important;
  }

  .xd-chat__toggle {
    font-size: 12px !important;
    padding: 10px 16px !important;
  }
}

/* =======================
   Universal Mobile Fixes
   ======================= */

/* Stop iOS/Android zoom on inputs */
input,
textarea,
select,
button {
  font-size: 16px !important;
}

/* Make all images scale down on small screens */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero video scaling */
.hero-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-section {
  position: relative;
  min-height: 100vh;
}

/* Chatbot fixes */
.xd-chat__input {
  width: 100%;
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  box-sizing: border-box;
}

.xd-chat__ftr {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

#xdChatSend {
  flex-shrink: 0;
}

/* =======================
   Responsive Layouts
   ======================= */
@media (max-width: 768px) {

  /* Fonts */
  body {
    font-size: 15px;
    line-height: 1.4;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  /* Stack grids on mobile */
  .fleet-grid,
  .story-grid,
  .team-strip {
    display: block !important;
  }

  /* Make cards/photos full width */
  .fleet-card,
  .team-member,
  .story-photo,
  .story-text,
  .partner {
    width: 100% !important;
    margin-bottom: 20px;
  }

  /* Center partner logos */
  .partner img {
    margin: 0 auto;
  }
}

/* =======================
   Team Section — Mobile Fix
   ======================= */
@media (max-width: 768px) {
  .team-strip {
    display: block !important;
  }

  .team-member,
  .team-member.reverse {
    display: block !important;
    /* force stacking */
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 50px;
  }

  .team-photo {
    margin: 0 auto 18px auto !important;
    /* center image */
  }

  .team-photo img {
    max-width: 320px;
    width: 100%;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
  }

  .team-text {
    padding: 0 15px;
    text-align: center !important;
  }
}

/* Fix footer payment logos overflow */
.pay-logos {
  flex-wrap: wrap;
  /* allow logos to wrap instead of forcing one long row */
  justify-content: center;
  /* keep them centered */
  max-width: 100%;
  /* never bigger than screen */
  overflow-x: hidden;
  /* stop sideways push */
}

.pay-logos li {
  flex: 0 1 auto;
  /* let them shrink if needed */
}

/* Desktop team photo controlhr */
@media (min-width: 769px) {
  .team-photo img {
    max-width: 480px;
    /* keeps them classy, not giant */
    margin: 0 auto;
  }


}

html,
body {
  overflow-x: hidden !important;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-video {
    object-fit: cover;
    object-position: center 30%;
    /* shift framing, tweak % as needed  */
  }
}

.hero-image-mobile {
  display: none;
  /* hidden on desktop */
  position: absolute;
  /* act like video background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fill hero section */
  object-position: center;
  /* center car + jet */
  z-index: 1;
  /* behind overlay + text */
}

@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero-image-mobile {
    display: block;
    /* show image on mobile */
  }

  .hero-section {
    display: flex;
    /* ✅ flexbox to center content */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    flex-direction: column;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    /* dark overlay so text is readable */
  }

  .hero-content {
    position: relative;
    z-index: 2;
    /* keep text above everything */
    padding-top: 0;
    /* remove manual padding */
    text-align: center;
  }

  .features-row {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    /* align left */
    text-align: left;
    margin: 1.5rem auto 0;
    max-width: 320px;
  }

  .feature {
    width: 100%;
    padding-left: 34px;
  }

  .feature::before {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* === Mobile reveal animation (fade only) === */
  [data-reveal] {
    opacity: 0;
    transform: none;
    /* stop shifting around */
  }

  [data-reveal].is-visible {
    animation: fadeIn 0.8s ease forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Center footer logo on mobile */
  .footer-brand, .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 0.5rem;
  }

}

/* === Faces of Quiet Luxury (matches Fleet style) === */
.faces-h {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.15;
  margin: 0 0 10px;
  color: #fff;
  text-align: center;
}

.faces-h::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .9;
}

.faces-sub {
  max-width: 75ch;
  margin: 6px auto 32px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
  color: #e0e0e0;
  text-align: center;
}

.about-min__lead,
.fleet-sub,
.story-text p {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: normal !important;
}

/* === Move hero section slightly up on mobile === */
@media (max-width: 768px) {
  .hero-section {
    margin-top: -90px; /* pulls the entire hero up */
  }

  .hero-content {
    padding-top: 20px;  /* keeps text from being cut off */
    padding-bottom: 30px;
  }
}

.footer-contact .footer-mail {
  color: var(--gold);
  font-size: 16px;
  filter: drop-shadow(0 0 6px rgba(212,175,55,.4));
  transition: transform .25s ease, filter .25s ease;
  width: 18px;
  text-align: center;
}

.footer-contact a:hover .footer-mail {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(212,175,55,.6));
}
/* --- Match mail icon color and glow to telephone --- */
.footer-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
}

/* shared golden tone */
.footer-icon.phone-icon,
.footer-icon.mail-icon {
  filter: brightness(1.15) saturate(1.2) sepia(1) hue-rotate(5deg)
          drop-shadow(0 0 6px rgba(212,175,55,.45));
}

/* hover animation */
.footer-contact a:hover .footer-icon {
  transform: scale(1.08);
  filter: brightness(1.25) saturate(1.4) sepia(1)
          hue-rotate(5deg) drop-shadow(0 0 10px rgba(212,175,55,.65));
}
@media (max-width: 1024px) {
  #page {
    transform: none !important;
    width: auto !important;
    min-height: 100dvh !important;
    zoom: 1 !important;
  }
  html { scroll-behavior: auto !important; }
}

/* make date and time inputs smaller inside the booking modal */
.booking-form input[type="date"],
.booking-form input[type="time"] {
  width: 85%;    
  max-width: 85%;
  box-sizing: border-box;
}
/* === Thank You — Booking Received (canonical) === */
#thanks-overlay{
  position:fixed; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.75); backdrop-filter:blur(3px);
  z-index:10050; opacity:0; pointer-events:none; transition:opacity .35s ease;
}
#thanks-overlay.open{ opacity:1; pointer-events:auto; }

#thanks-overlay .ty-panel{
  position:relative; margin:0; width:min(520px,92vw); max-height:80vh; overflow-y:auto;
  padding:1.8rem 2rem; color:#fff; border-radius:16px;
  background:
    linear-gradient(180deg, rgba(22,22,24,.70), rgba(12,12,14,.60)),
    radial-gradient(circle at top left, rgba(212,175,55,.05), transparent 60%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 25px 70px rgba(0,0,0,.55);
  transform:translateY(8px) scale(.98); opacity:0;
  transition:transform .35s ease, opacity .35s ease;
}
#thanks-overlay.open .ty-panel{ transform:translateY(0) scale(1); opacity:1; }

#thanks-overlay .ty-panel::after{
  content:""; position:absolute; inset:0; border:1px solid rgba(212,175,55,.15);
  border-radius:inherit; pointer-events:none;
}

#thanks-overlay .modal-close{
  position:absolute; top:10px; right:14px; background:none; border:0; color:#9aa0a6;
  font-size:1.5rem; cursor:pointer; transition:color .2s ease;
}
#thanks-overlay .modal-close:hover{ color:#fff; }

#thanks-overlay h3{
  margin:0 0 .6rem; font-family:"Playfair Display",serif; font-weight:800;
  letter-spacing:.5px; font-size:1.55rem; color:#f5e8b0;
  text-shadow:0 0 12px rgba(212,175,55,.25); text-align:center;
}
#thanks-overlay .lead{
  color:#e3e3e3; font-size:1rem; line-height:1.55; margin:6px 0 14px; text-align:center;
}
#thanks-overlay .lead strong{
  color:#fff; border-bottom:1px dotted rgba(212,175,55,.4);
}

/* Force content visible inside this overlay (cancels global modal animations) */
#thanks-overlay .modal-content > *{
  opacity:1 !important; transform:none !important; animation:none !important;
}

/* === Big golden tick === */
.ty-check{ display:grid; place-items:center; width:120px; height:120px; margin:0 auto 12px; }
.ty-check svg{ width:120px; height:120px; display:block; }
.ty-ring{ stroke-dasharray:330; stroke-dashoffset:330; opacity:.85;
  animation:tyDraw 900ms ease forwards 120ms; }
.ty-mark{ stroke-dasharray:90; stroke-dashoffset:90;
  animation:tyDraw 700ms cubic-bezier(.2,.9,.2,1) forwards 360ms,
             tyPop 280ms ease 1 forwards 1s; }

@keyframes tyDraw{ to{ stroke-dashoffset:0; } }
@keyframes tyPop{ 50%{ transform:scale(1.05); } 100%{ transform:scale(1); } }

/* Summary + actions */
.ty-summary{ list-style:none; padding:0; margin:10px 0 6px; }
.ty-summary li{
  display:grid; grid-template-columns:140px 1fr; gap:10px; padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.ty-summary li:last-child{ border-bottom:0; }
.ty-summary strong{ color:#cfcfcf; }

.ty-actions{
  margin-top:14px; display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
}
#thanks-overlay .btn-rr{
  background:linear-gradient(90deg,#d4af37,#b99629); color:#000; border:none;
  font-weight:600; letter-spacing:.03em; transition:all .25s ease;
}
#thanks-overlay .btn-rr:hover{
  background:linear-gradient(90deg,#f4d65b,#d4af37);
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(212,175,55,.35);
}

#thanks-overlay .micro-note{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:1.2rem !important; padding-top:.6rem;
  font-size:.85rem; color:#ccc; text-align:center;
}
#thanks-overlay .micro-note i{ color:#d4af37; margin-right:4px; }
/* Consistent phone icon look (Remix Icon) */
.phone-icon,
.footer-icon,
.overlay-link .ri-phone-line {
  font-size: 1.05rem;
  vertical-align: middle;
  margin-right: 6px;
  color: #d4af37;          /* gold by default */
  transition: color .25s ease;
}

/* hover: brighten to white */
a:hover .ri-phone-line,
a:hover .phone-icon,
a:hover .footer-icon {
  color: #fff;
}
/* add this */
.overlay-link.phone-pill { margin-left: -16px; }  /* aligns pill with other items */
/* ==== PHONE FIX ONLY ==== */
@media (max-width: 768px) {
  .overlay-link.phone-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 85vw;
    margin: 0 auto;
    padding: 14px 18px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.07);
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Adds breathing space from bottom and safe area (iPhones with home bar) */
  .menu-panel {
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
  }
}

/* Hide NAVI toggle & chat when the menu overlay is visible (mobile only) */
@media (max-width: 768px) {
  #menu-overlay[aria-hidden="false"] ~ .xd-chat__toggle,
  #menu-overlay[aria-hidden="false"] ~ .xd-chat {
    display: none !important;
  }
}
/* === Booking submit → loading spinner === */
#booking-form [type="submit"].is-loading {
  position: relative;
  color: transparent;          /* hide label without layout shift */
  pointer-events: none;
  opacity: .9;
}

#booking-form [type="submit"].is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;   /* uses button text color */
  border-top-color: transparent;    /* spinner gap */
  border-radius: 50%;
  animation: xd-spin .8s linear infinite;
}

@keyframes xd-spin { to { transform: rotate(360deg); } }
/* --- Luxury Gold Touch for Legal Modals --- */
.modal-content h3,
.modal-content h4 {
  font-family: "Playfair Display", serif;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.modal-content small {
  color: #bda76a;
  font-style: italic;
}

.modal-content ul li::before {
  content: "•";
  color: #d4af37;
  margin-right: 6px;
}

.modal-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(212,175,55,0),
    rgba(212,175,55,0.8),
    rgba(212,175,55,0)
  );
  margin: 20px 0;
}
.modal-content ul li {
  list-style: none !important;
}
/* Automatic gold divider after every h4 */
.modal-content h4 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.modal-content h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 6px;
  background: linear-gradient(
    to right,
    rgba(212,175,55,0),
    rgba(212,175,55,0.65),
    rgba(212,175,55,0)
  );
}
.modal-content ul {
  margin-bottom: 6px !important; /* reduces extra gap */
}

.modal-content h4 {
  margin-top: 24px !important;   /* ensures spacing stays consistent */
}

