/* ==========================================================================
   Gulfshore Transportation — brand palette from DESIGN-GUIDE.md
   Gold: #6B4E16 → #C9A23F → #FFE770 · Chrome: #46525A → #FFFFFF · BG: #060606
   ========================================================================== */

:root {
  --bg: #060606;
  --bg-raised: #0d0d0d;
  --bg-card: #101010;
  --gold: #c9a23f;
  --gold-bright: #f8c131;
  --gold-hi: #ffe770;
  --gold-shadow: #6b4e16;
  --chrome-mid: #8b9099;
  --chrome-light: #e9edf2;
  --text: #f4f2ec;
  --text-dim: #b9b4a7;
  --gold-grad: linear-gradient(180deg, #ffe770 0%, #f8c131 35%, #c9a23f 60%, #6b4e16 100%);
  --chrome-grad: linear-gradient(180deg, #ffffff 0%, #e9edf2 30%, #8b9099 52%, #d2d6dc 70%, #ffffff 88%, #46525a 100%);
  --hairline: linear-gradient(90deg, transparent, #c9a23f 20%, #ffe770 50%, #c9a23f 80%, transparent);
  --ink-grad: linear-gradient(180deg, #4a5058 0%, #14161a 70%);
  --heading-grad: var(--chrome-grad);
  --gold-text-grad: var(--gold-grad);
  --gold-ink: var(--gold-bright);
  --ease: cubic-bezier(.22, .8, .3, 1);
  color-scheme: dark;
}

/* ---- light theme: ivory + gold, dark-ink metal headings ---- */
html[data-theme="light"] {
  --bg: #f7f4ee;
  --bg-raised: #efeadd;
  --bg-card: #ffffff;
  --text: #17150f;
  --text-dim: #5f594b;
  --heading-grad: var(--ink-grad);
  /* readable bronze for gold text on ivory (50+ audience: contrast first) */
  --gold-text-grad: linear-gradient(180deg, #9c7418 0%, #7d5c12 55%, #5d4410 100%);
  --gold-ink: #7d5c12;
  color-scheme: light;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", "Avenir Next", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

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

/* ---- metal text fills ---- */
.chrome, .gold-text {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.chrome { background-image: var(--chrome-grad); }
.gold-text { background-image: var(--gold-text-grad); }

/* ---- shared ornaments ---- */
.diamond {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold-grad);
  transform: rotate(45deg);
  flex: none;
}

.rule-diamond {
  display: block;
  width: min(420px, 70%);
  height: 1px;
  margin: 0 auto 1.6rem;
  background: var(--hairline);
  position: relative;
}
.rule-diamond::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  background: var(--gold-grad);
  transform: translate(-50%, -50%) rotate(45deg);
}

.eyebrow {
  font-family: "Cinzel", serif;
  font-size: .8rem;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* ---- buttons ---- */
.btn {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: .95rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .95rem 2.1rem;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-position .6s var(--ease);
}
.btn-sm { padding: .5rem 1.2rem; font-size: .78rem; }

.btn-gold {
  color: #120d02;
  font-weight: 600;
  background: linear-gradient(110deg, #6b4e16 0%, #c9a23f 25%, #ffe770 50%, #c9a23f 75%, #6b4e16 100%);
  background-size: 220% 100%;
  background-position: 0% 0;
}
.btn-gold:hover, .btn-gold:focus-visible {
  background-position: 95% 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(201, 162, 63, .28);
}

.btn-ghost {
  color: var(--chrome-light);
  border-color: rgba(233, 237, 242, .35);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-hi);
  transform: translateY(-2px);
}

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .8rem clamp(1rem, 4vw, 3rem);
  background: rgba(6, 6, 6, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
.topbar.scrolled {
  background: rgba(6, 6, 6, .92);
  border-image: var(--hairline) 1;
  border-bottom: 1px solid;
}

.brand { display: flex; align-items: center; gap: .8rem; margin-right: auto; }
.brand-badge { width: 52px; height: 52px; filter: drop-shadow(0 0 6px rgba(201,162,63,.35)); }
.brand-word {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-word em {
  font-style: normal;
  font-size: .62em;
  letter-spacing: .4em;
  display: block;
  background-image: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav a {
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: .3rem 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold-grad);
  transition: right .35s var(--ease);
}
.nav a:hover { color: var(--gold-hi); }
.nav a:hover::after { right: 0; }

.topbar-cta { display: flex; align-items: center; gap: 1.4rem; }
.phone-link {
  font-family: "Cinzel", serif;
  letter-spacing: .12em;
  color: var(--chrome-light);
  white-space: nowrap;
}
.phone-link:hover { color: var(--gold-hi); }

@media (max-width: 900px) {
  .nav, .phone-link { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

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

/* pre-video backdrop: gold-lit palm over a deep radial glow */
.hero-media {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(201, 162, 63, .14), transparent 55%),
    radial-gradient(ellipse at 30% 20%, rgba(139, 144, 153, .08), transparent 60%),
    #060606;
}
.hero-fallback {
  position: absolute;
  top: -4%;
  left: -6%;
  width: min(62vw, 900px);
  height: auto;
  mix-blend-mode: screen;
  opacity: .8;
  /* the extracted palm PNG has wordmark remnants in its lower half — keep the crown only */
  clip-path: inset(0 0 52% 0);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 47%);
  mask-image: linear-gradient(180deg, #000 30%, transparent 47%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(6,6,6,.25) 0%, rgba(6,6,6,.78) 68%, #060606 100%),
    linear-gradient(180deg, rgba(6,6,6,.65), transparent 30%, transparent 62%, #060606 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 7rem 1.5rem 4rem;
  max-width: 60rem;
}

.hero-title {
  font-size: clamp(2.3rem, 7.2vw, 5.2rem);
  font-weight: 600;
  margin: 1.4rem 0 1.6rem;
  display: grid;
  gap: .1em;
}
.hero-title span { display: block; }
.hero-title .gold-text { filter: drop-shadow(0 0 22px rgba(248, 193, 49, .3)); }

.hero-sub {
  max-width: 34rem;
  margin: 0 auto 2.6rem;
  font-size: 1.12rem;
  color: var(--text-dim);
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: cue-float 2.6s ease-in-out infinite;
}
.scroll-cue .diamond { width: 12px; height: 12px; }
@keyframes cue-float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.2rem, 5vw, 4rem);
  max-width: 78rem;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3.2rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.section-head p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-dim);
}

/* ---- booking embed ---- */
.booking { padding-top: clamp(3rem, 6vw, 5rem); }

.booking-frame {
  position: relative;
  padding: 10px;
  background:
    linear-gradient(var(--bg-raised), var(--bg-raised)) padding-box,
    linear-gradient(135deg, #6b4e16, #c9a23f 30%, #ffe770 50%, #c9a23f 70%, #6b4e16) border-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.booking-frame iframe {
  display: block;
  width: 100%;
  height: min(78vh, 820px);
  min-height: 620px;
  border: 0;
  background: #fff;
}

.booking-fallback {
  text-align: center;
  margin-top: 1.3rem;
  font-size: .95rem;
  color: var(--text-dim);
}
.booking-fallback a { color: var(--gold-ink); }
.booking-fallback a:hover { color: var(--gold-hi); }
[data-theme="light"] .booking-fallback a:hover { color: #5d4410; }

/* bottom-of-funnel second embed: slightly more compact */
.booking-bottom { padding-top: 0; }
.booking-bottom .booking-frame iframe { height: min(70vh, 700px); }

/* ---- service cards ---- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 162, 63, .18);
  padding: 2.6rem 2rem 2.4rem;
  text-align: center;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: var(--hairline);
  opacity: 0;
  transition: opacity .4s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 63, .45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .5);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.4rem;
  mix-blend-mode: screen; /* gold-on-black brand PNGs — screen drops the black */
  object-fit: contain;
}
.card h3 {
  font-size: 1.12rem;
  letter-spacing: .18em;
  margin-bottom: .9rem;
  background-image: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card p { color: var(--text-dim); font-size: .98rem; }

.card-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: "Cinzel", serif;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(201, 162, 63, .4);
  padding-bottom: .2rem;
  transition: color .3s, border-color .3s;
}
.card-link::after { content: " →"; }
[data-theme="light"] .card-link { color: var(--gold-ink); border-color: rgba(125, 92, 18, .45); }
[data-theme="light"] .card-link:hover { color: #5d4410; border-color: #5d4410; }
.card-link:hover { color: var(--gold-hi); border-color: var(--gold-hi); }

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-image: var(--hairline) 1;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(201, 162, 63, .1), transparent 60%),
    var(--bg-raised);
}
.cta-band h2 {
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  margin: 1rem auto 2rem;
  max-width: 46rem;
  background-image: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band h2 .gold-text { background-image: var(--gold-text-grad); }
.cta-band-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- fleet ---- */
.fleet-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--bg-card);
  border: 1px solid rgba(201, 162, 63, .18);
  overflow: hidden;
}
.fleet-art {
  display: grid;
  place-items: center;
  gap: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 162, 63, .16), transparent 55%);
}
.fleet-art > img {
  width: 100%;
  max-width: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .65));
}

.fleet-interior {
  margin: 0;
  width: 100%;
  max-width: 560px;
}
.fleet-interior img {
  width: 100%;
  border: 1px solid rgba(201, 162, 63, .35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
}
.fleet-interior figcaption {
  margin-top: .7rem;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  background-image: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fleet-info { padding: clamp(1.8rem, 4vw, 3rem); }
.fleet-info h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: .7rem 0 1.2rem;
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fleet-specs {
  list-style: none;
  margin-bottom: 2rem;
  color: var(--text-dim);
}
.fleet-specs li {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(201, 162, 63, .14);
}
.fleet-specs li:first-child { border-top: 1px solid rgba(201, 162, 63, .14); }

.fleet-amenities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem .8rem;
  margin: -0.6rem 0 2rem;
  font-size: .92rem;
  color: var(--text-dim);
}
.fleet-amenities .diamond { width: 5px; height: 5px; }
.amenities-label {
  font-family: "Cinzel", serif;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  background-image: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: .4rem;
  flex-basis: 100%;
}

@media (max-width: 820px) {
  .fleet-card { grid-template-columns: 1fr; }
}

/* ---- chauffeur ---- */
.chauffeur-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 58rem;
  margin: 0 auto;
}

.chauffeur-photo {
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #6b4e16, #c9a23f 30%, #ffe770 50%, #c9a23f 70%, #6b4e16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 40px rgba(201, 162, 63, .12);
}
.chauffeur-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #060606;
}

.chauffeur-info h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: .8rem 0 1.1rem;
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.chauffeur-info p:not(.eyebrow) {
  color: var(--text-dim);
  max-width: 30rem;
  margin-bottom: 1.8rem;
}

@media (max-width: 700px) {
  .chauffeur-card { grid-template-columns: 1fr; text-align: center; }
  .chauffeur-photo { margin: 0 auto; }
  .chauffeur-info p:not(.eyebrow) { margin-inline: auto; }
}

/* ---- steps ---- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.4rem;
  counter-reset: step;
  text-align: center;
}

.step-num {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  display: block;
  margin-bottom: .4rem;
  background-image: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .85;
}
.step h3 {
  font-size: 1.05rem;
  letter-spacing: .3em;
  margin-bottom: .7rem;
  color: var(--chrome-light);
}
.step p { color: var(--text-dim); font-size: .98rem; max-width: 22rem; margin: 0 auto; }

.steps-cta {
  text-align: center;
  margin-top: 3rem;
}

.trust-strip {
  margin-top: 4rem;
  padding: 1.4rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem 1.6rem;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-image: var(--hairline) 1;
  font-family: "Cinzel", serif;
  font-size: .85rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  border-top: 1px solid;
  border-image: var(--hairline) 1;
}

.footer-badge {
  width: 150px;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 0 18px rgba(201, 162, 63, .25));
}

.footer-tag {
  font-family: "Cinzel", serif;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-size: .9rem;
  margin-bottom: 1.6rem;
  background-image: var(--heading-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.footer-contact {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.4rem;
  color: var(--text-dim);
  margin-bottom: 2.4rem;
}
.footer-contact a:hover { color: var(--gold-hi); }

.footer-legal { font-size: .82rem; color: #6f6a5e; letter-spacing: .06em; }

/* ==========================================================================
   Moovs floating widget — re-skin the default blue pill to the gold kit
   ========================================================================== */
.moovs-widget-button {
  background: linear-gradient(110deg, #6b4e16 0%, #c9a23f 25%, #ffe770 50%, #c9a23f 75%, #6b4e16 100%) !important;
  background-size: 220% 100% !important;
  color: #120d02 !important;
  font-family: "Cinzel", serif !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 24px rgba(201, 162, 63, .25) !important;
}
.moovs-widget-button * { color: #120d02 !important; fill: #120d02 !important; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* stagger the hero load */
.hero .reveal:nth-child(1) { transition-delay: .1s; }
.hero .reveal:nth-child(2) { transition-delay: .25s; }
.hero .reveal:nth-child(3) { transition-delay: .45s; }
.hero .reveal:nth-child(4) { transition-delay: .6s; }

/* ==========================================================================
   Light theme exceptions — hero & CTA band stay dark islands; brand PNGs
   (gold-on-black, screen-blended) need dark chips on the ivory page
   ========================================================================== */
[data-theme="light"] .topbar { background: rgba(247, 244, 238, .6); }
[data-theme="light"] .topbar.scrolled { background: rgba(247, 244, 238, .94); }
[data-theme="light"] .nav a:hover,
[data-theme="light"] .phone-link:hover { color: var(--gold-shadow); }
[data-theme="light"] .phone-link { color: var(--text); }

/* hero goes light too: dark video/palm assets hidden, ink headline on ivory */
[data-theme="light"] .hero-media video,
[data-theme="light"] .hero-fallback,
[data-theme="light"] .hero-scrim { display: none; }
[data-theme="light"] .hero-media {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 162, 63, .18), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(125, 92, 18, .1), transparent 55%),
    var(--bg);
}
[data-theme="light"] .hero-title .chrome { background-image: var(--ink-grad); }
[data-theme="light"] .hero-title .gold-text { filter: none; }

/* ghost buttons elsewhere sit on ivory */
[data-theme="light"] .btn-ghost {
  color: var(--text);
  border-color: rgba(23, 21, 15, .35);
}
[data-theme="light"] .btn-ghost:hover,
[data-theme="light"] .btn-ghost:focus-visible { color: var(--gold-shadow); border-color: var(--gold); }

/* CTA band keeps its dark-raised look (its h2 stays chrome) */
[data-theme="light"] .cta-band {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(201, 162, 63, .1), transparent 60%),
    #0d0d0d;
}
/* bright gold stays correct on the dark band */
[data-theme="light"] .cta-band .gold-text { background-image: var(--gold-grad); }
[data-theme="light"] .cta-band .eyebrow { color: var(--gold-bright); }
[data-theme="light"] .cta-band .btn-ghost {
  color: var(--chrome-light);
  border-color: rgba(233, 237, 242, .35);
}
[data-theme="light"] .cta-band .btn-ghost:hover { color: var(--gold-hi); border-color: var(--gold); }

/* gold-on-black icon PNGs: drop the screen blend, show as dark coin chips */
[data-theme="light"] .card-icon {
  mix-blend-mode: normal;
  background: #0a0a0a;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(20, 16, 4, .25);
}

/* steps + strip text on ivory */
[data-theme="light"] .step h3 { color: #22201a; }

/* softer shadows on the light page */
[data-theme="light"] .card:hover { box-shadow: 0 24px 50px rgba(107, 78, 22, .16); }
[data-theme="light"] .fleet-art > img { filter: drop-shadow(0 24px 32px rgba(20, 16, 4, .3)); }
[data-theme="light"] .booking-frame { box-shadow: 0 24px 60px rgba(107, 78, 22, .14); }
[data-theme="light"] .fleet-interior img { box-shadow: 0 14px 32px rgba(20, 16, 4, .22); }
[data-theme="light"] .chauffeur-photo { box-shadow: 0 20px 48px rgba(107, 78, 22, .2), 0 0 40px rgba(201, 162, 63, .1); }
[data-theme="light"] .footer-legal { color: #8d8674; }

/* theme toggle button */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 63, .45);
  background: transparent;
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color .3s, transform .3s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold-hi); transform: rotate(40deg); }
.theme-toggle .sun { display: none; }
[data-theme="light"] .theme-toggle .sun { display: inline; }
[data-theme="light"] .theme-toggle .moon { display: none; }

/* ==========================================================================
   Mobile stacking — kill dangling diamond separators, single-column steps
   ========================================================================== */
@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; gap: 2.8rem; }

  .trust-strip,
  .footer-contact {
    flex-direction: column;
    gap: .9rem;
  }
  .trust-strip .diamond,
  .footer-contact .diamond { display: none; }

  /* text chunks between hidden diamonds become their own flex rows */
  .fleet-amenities { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .fleet-amenities .diamond { display: none; }
  .fleet-amenities .amenities-label { margin-bottom: .2rem; }
}

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

/* ==========================================================================
   Instant-quote lead capture (top booking section)
   ========================================================================== */
.quote-card {
  position: relative;
  padding: clamp(1.8rem, 4vw, 3rem);
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, #6b4e16, #c9a23f 30%, #ffe770 50%, #c9a23f 70%, #6b4e16) border-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
[data-theme="light"] .quote-card { box-shadow: 0 24px 60px rgba(23, 21, 15, .18); }

.qc-steps { display: flex; justify-content: center; gap: clamp(1.2rem, 4vw, 2.6rem); margin-bottom: 2.2rem; flex-wrap: wrap; }
.qc-step {
  font-family: "Cinzel", serif;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex; align-items: center; gap: .6rem;
  transition: color .3s;
}
.qc-step i {
  font-style: normal;
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 63, .5);
  font-size: .72rem;
  transition: all .3s var(--ease);
}
.qc-step.on { color: var(--gold-ink); }
.qc-step.on i { background: linear-gradient(135deg, #c9a23f, #ffe770); color: #120d02; border-color: transparent; font-weight: 600; }
.qc-step.done i { border-color: var(--gold); color: var(--gold-ink); }

.qc-label {
  font-family: "Cinzel", serif;
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: .55rem;
}
.qc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
.qc-grid .full { grid-column: 1 / -1; }
/* grid/flex children default to min-width:auto, which lets datetime-local
   inputs overflow the card — force them to shrink to their container */
.qc-grid > div { min-width: 0; }
.qc-input { min-width: 0; max-width: 100%; box-sizing: border-box; }

.qc-input {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.02rem;
  letter-spacing: .02em;
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid rgba(201, 162, 63, .28);
  padding: .85rem 1rem;
  transition: border-color .3s, box-shadow .3s;
}
.qc-input::placeholder { color: rgba(185, 180, 167, .55); }
.qc-input:focus { outline: none; border-color: var(--gold-bright); box-shadow: 0 0 0 1px rgba(248, 193, 49, .35); }
/* iOS Safari draws datetime-local as a native control that overflows the card
   and centers its text — force it to behave like our other inputs */
input.qc-input[type="datetime-local"] {
  color-scheme: inherit;
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
input.qc-input[type="datetime-local"]::-webkit-date-and-time-value { text-align: left; }

.qc-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.qc-chip {
  font-family: "Cinzel", serif;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-raised);
  border: 1px solid rgba(201, 162, 63, .3);
  padding: .62rem 1.05rem;
  cursor: pointer;
  transition: all .28s var(--ease);
}
.qc-chip small { display: block; font-family: "Jost", sans-serif; font-size: .72rem; letter-spacing: .06em; text-transform: none; color: inherit; opacity: .75; }
.qc-chip:hover { border-color: var(--gold); color: var(--gold-ink); transform: translateY(-1px); }
.qc-chip.on { color: #120d02; font-weight: 600; border-color: transparent; background: linear-gradient(135deg, #c9a23f 0%, #ffe770 55%, #c9a23f 100%); }
.qc-chip.on small { color: #3a2c07; opacity: 1; }

#qc-dropoff-wrap { display: none; }
#qc-dropoff-wrap.show { display: block; animation: qcPaneIn .4s var(--ease); }

.qc-price {
  display: none;
  align-items: baseline; justify-content: center; gap: 1.1rem; flex-wrap: wrap;
  margin-top: 1.9rem; padding: 1.15rem 1rem;
  text-align: center;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(201, 162, 63, .6) 20%, rgba(255, 231, 112, .8) 50%, rgba(201, 162, 63, .6) 80%, transparent) 1;
  animation: qcPaneIn .5s var(--ease);
}
.qc-price.show { display: flex; }
.qc-price .route { font-family: "Cinzel", serif; font-size: .8rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-dim); }
.qc-price .amount {
  font-family: "Cinzel", serif; font-weight: 600;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  background-image: var(--gold-text-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.qc-price .flat { font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-ink); border: 1px solid rgba(201, 162, 63, .5); padding: .3rem .7rem; }

.qc-actions { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.qc-actions .btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.qc-note { text-align: center; margin-top: 1.15rem; font-size: .85rem; color: var(--text-dim); }
.qc-note b { color: var(--gold-ink); font-weight: 500; }
.qc-error { text-align: center; margin-top: 1rem; font-size: .88rem; color: #e8a0a0; display: none; }
.qc-error.show { display: block; }

.qc-pane { display: none; }
.qc-pane.on { display: block; animation: qcPaneIn .45s var(--ease); }
@keyframes qcPaneIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.qc-success { text-align: center; padding: 1.5rem 0 .5rem; }
.qc-success .qc-diamond { width: 14px; height: 14px; margin: 0 auto 1.4rem; transform: rotate(45deg); background: var(--gold-grad); box-shadow: 0 0 24px rgba(248, 193, 49, .5); }
.qc-success h3 {
  font-size: 1.25rem;
  background-image: var(--heading-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .7rem;
}
.qc-success p { color: var(--text-dim); max-width: 480px; margin: 0 auto; }
.qc-success p b { color: var(--gold-ink); font-weight: 500; }

#book .booking-frame { display: none; margin-top: 2.4rem; }
#book .booking-frame.show { display: block; animation: qcPaneIn .6s var(--ease); }

/* Google Places dropdown re-skin to match the card */
.pac-container {
  background: var(--bg-raised);
  border: 1px solid var(--gold-bright);
  border-top: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .65);
  font-family: "Jost", sans-serif;
}
.pac-item {
  padding: .55rem .9rem;
  border-top: 1px solid rgba(201, 162, 63, .14);
  color: var(--text-dim);
  font-size: .88rem;
  cursor: pointer;
}
.pac-item:hover, .pac-item-selected { background: rgba(201, 162, 63, .12); }
.pac-item-query { color: var(--text); font-size: .98rem; }
.pac-icon { filter: hue-rotate(5deg) saturate(.4); }

@media (max-width: 640px) {
  .qc-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  /* stack each step (number over label) so all three fit one clean row */
  .qc-steps { gap: 0; justify-content: space-between; margin-bottom: 1.8rem; }
  .qc-step { flex: 1; flex-direction: column; gap: .45rem; font-size: .62rem; letter-spacing: .12em; text-align: center; }
  .qc-step i { width: 30px; height: 30px; }
  .quote-card { padding: 1.5rem 1.15rem 1.9rem; }
  /* keep destination chips two-up and evenly sized */
  .qc-chips { gap: .5rem; }
  .qc-chip { flex: 1 1 calc(50% - .5rem); text-align: center; padding: .7rem .5rem; }
  .qc-input { font-size: 16px; } /* 16px stops iOS auto-zoom on focus */
  /* let the last fields clear the floating Book Now widget */
  .booking { padding-bottom: 5.5rem; }
}

/* bottom quote CTA (routes to the top quote flow) — own class, no collision */
.quote-cta { display: flex; justify-content: center; padding: 1.5rem 0 .5rem; }
.quote-cta .btn { font-size: 1.05rem; padding: 1.1rem 3.2rem; }

/* ---- mobile topbar: drop nav + phone so brand / toggle / Book Now don't collide ---- */
@media (max-width: 760px) {
  .topbar { gap: .6rem; padding: .7rem 1rem; }
  .topbar .nav { display: none; }
  .topbar-cta { gap: .7rem; }
  .topbar-cta .phone-link { display: none; }
  .brand-badge { width: 40px; height: 40px; }
  .brand-word { font-size: .82rem; }
  .theme-toggle { flex: 0 0 auto; }
  /* anchor targets clear the sticky bar */
  .section[id] { scroll-margin-top: 76px; }
  /* the Moovs floating pill overlaps the form on mobile and bypasses capture — hide it */
  .moovs-widget-button { display: none !important; }
}
