/* =========================================================
   NOIR — Private Black Car Service
   Premium dark theme. No build step, no dependencies.
   ========================================================= */

:root {
  --bg:        #1c1c20;
  --bg-2:      #242429;
  --bg-3:      #2c2c32;
  --line:      rgba(255, 255, 255, 0.11);
  --line-2:    rgba(255, 255, 255, 0.18);
  --text:      #f4f2ee;
  --muted:     #a2a2a8;
  --muted-2:   #76767c;
  --gold:      #c5a059;
  --gold-2:    #e3c98b;
  --gold-soft: rgba(197, 160, 89, 0.14);
  --radius:    14px;
  --radius-lg: 20px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --shadow:    0 24px 60px -20px rgba(0, 0, 0, .7);
  --gold-grad: linear-gradient(135deg, #f2e0aa 0%, #d8b86a 32%, #c5a059 58%, #a37e3c 100%);
  --shadow-2:  0 30px 70px -30px rgba(0, 0, 0, .85);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.ic { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  cursor: pointer; transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s, color .25s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold-grad); color: #1a1407; box-shadow: 0 10px 28px -10px rgba(197,160,89,.6); position: relative; overflow: hidden; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(197,160,89,.7); }
.btn--gold::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.5) 50%, transparent 65%); transform: translateX(-130%); transition: transform .7s var(--ease); }
.btn--gold:hover::before { transform: translateX(130%); }
.btn--gold > * { position: relative; z-index: 1; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); background: var(--gold-soft); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.eyebrow {
  font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.72rem; font-weight: 600; color: var(--gold); margin: 0 0 16px;
}

/* ---------- Promo bar ---------- */
.promo {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #1a1407; font-size: 0.84rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 9px 44px 9px 16px; position: relative; text-align: center;
}
.promo strong { font-weight: 700; }
.promo.hide { display: none; }
.promo__close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #1a1407; font-size: 1.4rem; line-height: 1; cursor: pointer; opacity: .7; }
.promo__close:hover { opacity: 1; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 12, 0.66); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--line); transition: background .3s, box-shadow .3s;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem;
  color: var(--gold-2); border: 1px solid rgba(197, 160, 89, .5);
  background: radial-gradient(120% 120% at 30% 20%, rgba(197, 160, 89, .22), rgba(197, 160, 89, .05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 6px 18px -8px rgba(197, 160, 89, .55);
}
.brand__text { display: flex; flex-direction: column; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.18rem; letter-spacing: .14em; line-height: 1; }
.brand__text small { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a { font-size: 0.92rem; color: var(--muted); position: relative; transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .25s var(--ease); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: 0.9rem; font-weight: 500; }
.header__phone .ic { width: 18px; height: 18px; color: var(--gold); }
.header__phone:hover { color: var(--gold-2); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); transition: transform .3s, opacity .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(560px, 90vh, 880px); display: flex; align-items: center; padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 120px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center right; display: block; filter: saturate(.95) contrast(1.05); transform-origin: 62% 50%; animation: kenburns 28s ease-out infinite alternate both; }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.06) saturate(.96); }
.hero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,8,9,.95) 0%, rgba(8,8,9,.82) 36%, rgba(8,8,9,.42) 68%, rgba(8,8,9,.66) 100%),
    linear-gradient(180deg, rgba(8,8,9,.5) 0%, rgba(8,8,9,.12) 28%, rgba(8,8,9,.5) 74%, var(--bg) 100%);
}

.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero__title { font-size: clamp(2.6rem, 6.4vw, 5rem); margin-bottom: 24px; }
.hero__sub { font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: var(--muted); max-width: 600px; margin-bottom: 36px; }
.hero__sub strong { color: var(--text); font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__badges { font-size: 0.85rem; color: var(--muted); letter-spacing: .04em; }
.hero__badges span { color: var(--gold-2); }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 30px; padding: 22px 24px; }
.trust__item { display: inline-flex; align-items: center; gap: 11px; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.trust__item .ic { color: var(--gold); width: 20px; height: 20px; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section__lead { color: var(--muted); font-size: 1.05rem; margin: 18px 0 0; }

/* ---------- Fleet ---------- */
.fleet { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fleet__card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .35s var(--ease), border-color .35s; }
.fleet__card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.fleet__media {
  position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 20%, rgba(197,160,89,.10), transparent 60%),
    linear-gradient(180deg, #15151a, #0e0e11);
  border-bottom: 1px solid var(--line);
}
.fleet__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); filter: saturate(.9) contrast(1.07) brightness(.9); }
.fleet__card:hover .fleet__img { transform: scale(1.04); }
.car { width: 86%; }
.car path { fill: rgba(197,160,89,.04); stroke: var(--gold); stroke-width: 1.6; stroke-linejoin: round; }
.car__glass { fill: rgba(197,160,89,.10); stroke: rgba(197,160,89,.5); stroke-width: 1; }
.car__tire { fill: #0b0b0c; stroke: var(--gold); stroke-width: 2.4; }
.car__rim { fill: none; stroke: rgba(197,160,89,.55); stroke-width: 1.4; }

.fleet__body { padding: 26px 28px 30px; }
.fleet__title { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.fleet__title h3 { font-size: 1.6rem; }
.tag { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); border: 1px solid var(--gold); border-radius: 999px; padding: 5px 12px; }
.fleet__body > p { color: var(--muted); margin: 0 0 20px; }
.specs { list-style: none; padding: 0; margin: 0 0 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.specs li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.specs .ic { width: 19px; height: 19px; color: var(--gold); flex: none; }
.fleet__btn { width: 100%; }

/* ---------- Generic card grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--svc { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.card:hover { transform: translateY(-4px); border-color: var(--gold); background: #34343b; }
.card__ic { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); margin-bottom: 18px; }
.card__ic .ic { width: 24px; height: 24px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; position: relative; }
.step__num { font-family: 'Fraunces', serif; font-size: 2.6rem; color: var(--gold); opacity: .55; display: block; margin-bottom: 8px; }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Why ---------- */
.grid--why { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.feature { padding: 26px 24px; border-left: 2px solid var(--gold); background: linear-gradient(90deg, var(--gold-soft), transparent); border-radius: 0 var(--radius) var(--radius) 0; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* ---------- Service areas ---------- */
.areas { display: grid; gap: 30px; max-width: 940px; margin: 0 auto; }
.areas__title { font-family: 'Inter', sans-serif; font-size: 0.76rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); margin: 0 0 14px; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { border: 1px solid var(--line-2); border-radius: 999px; padding: 9px 16px; font-size: 0.9rem; color: var(--text); background: var(--bg-3); transition: border-color .2s, color .2s, background .2s; }
.chips li:hover { border-color: var(--gold); color: var(--gold-2); }
.chips--gold li { border-color: rgba(197, 160, 89, .4); background: var(--gold-soft); color: var(--gold-2); }
.areas__note { text-align: center; color: var(--muted); margin-top: 30px; }
.areas__note a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Pricing ---------- */
.pricing { max-width: 760px; margin: 0 auto; text-align: center; }

/* Fare estimator */
.estimator { text-align: left; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 26px 28px; margin-bottom: 28px; box-shadow: var(--shadow); }
.estimator__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.estimator__head h3 { font-size: 1.35rem; }
.estimator__badge { font-family: 'Inter', sans-serif; font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); border: 1px solid var(--gold); border-radius: 999px; padding: 5px 11px; white-space: nowrap; }
.estimator__row { display: grid; grid-template-columns: 1fr auto 1fr 1fr; gap: 14px; align-items: end; }
.estimator__row .field { grid-column: auto; }
.estimator__arrow { color: var(--gold); font-size: 1.25rem; padding-bottom: 12px; text-align: center; }
.estimator__result { min-height: 62px; display: flex; flex-direction: column; justify-content: center; gap: 5px; margin: 18px 0; padding: 16px 20px; background: var(--bg); border: 1px solid var(--line-2); border-radius: 12px; }
.est__price { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--gold-2); line-height: 1; }
.est__meta { font-size: 0.82rem; color: var(--muted); }
.est__hint { color: var(--muted-2); }
.estimator__note { color: var(--muted-2); font-size: 0.78rem; margin: 14px 0 0; }
.pricing__or { color: var(--muted-2); font-size: 0.76rem; text-transform: uppercase; letter-spacing: .16em; margin: 0 0 16px; }
.booking__deposit { margin-top: 2px; }
.price-table { width: 100%; border-collapse: collapse; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { font-family: 'Inter', sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); font-weight: 600; background: var(--bg-2); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td:last-child { color: var(--gold-2); font-weight: 600; text-align: right; white-space: nowrap; }
.price-table small { color: var(--muted-2); font-weight: 400; }
.price-note { color: var(--muted-2); font-size: 0.82rem; margin: 0 0 26px; }

/* ---------- Testimonials ---------- */
.grid--quotes { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.quote { margin: 0; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.quote__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.quote blockquote { margin: 0 0 16px; font-size: 1.02rem; line-height: 1.6; color: var(--text); }
.quote figcaption { color: var(--muted); font-size: 0.88rem; }

/* ---------- Booking ---------- */
.booking { background:
  radial-gradient(900px 500px at 100% 0%, rgba(197,160,89,.08), transparent 60%), var(--bg); }
.booking__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.booking__intro h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.booking__intro > p { color: var(--muted); margin-bottom: 22px; }
.booking__perks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.booking__perks li { color: var(--text); font-size: 0.94rem; }
.booking__perks li::first-letter,
.booking__perks li { } /* keep checkmarks gold via inline ✓ */
.booking__perks li { color: var(--muted); }
.booking__alt { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 0.92rem; }

.booking__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: 7px; grid-column: span 2; }
.field--half { grid-column: span 1; }
.field label { font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: .02em; }
.field label small { color: var(--muted-2); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; color: var(--text);
  padding: 12px 14px; font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.field.invalid input, .field.invalid select { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.18); }

.booking__actions { grid-column: span 2; display: grid; gap: 12px; margin-top: 4px; }
.booking__actions-alt { display: flex; gap: 12px; }
.booking__actions-alt .btn { flex: 1; }
.ic--wa { fill: currentColor; stroke: none; width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-3); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: 'Inter', sans-serif; font-size: 1.02rem; font-weight: 500; padding: 20px 24px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__chev { width: 12px; height: 12px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); transition: transform .3s var(--ease); flex: none; margin-right: 4px; }
.faq__item.open .faq__chev { transform: rotate(-135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__item.open .faq__a { max-height: 240px; }
.faq__a p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin: 18px 0 0; max-width: 320px; }
.footer__col h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted-2); margin-bottom: 16px; font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: var(--muted); font-size: 0.92rem; transition: color .2s; }
.footer__col a:hover { color: var(--gold-2); }
.footer__cta { margin-top: 4px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; color: var(--muted-2); font-size: 0.82rem; }

/* ---------- Floating WhatsApp ---------- */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,.6); transition: transform .25s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 32px; transform: translate(-50%, 30px); z-index: 80;
  background: var(--bg-3); border: 1px solid var(--gold); color: var(--text); padding: 14px 22px; border-radius: 12px;
  font-size: 0.92rem; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; max-width: 90vw; text-align: center; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; margin-left: 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 6px 0; opacity: 0; transform: translateY(-8px); pointer-events: none; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; }
  .nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; visibility: visible; }
  .nav a { padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }
  .nav__toggle { display: flex; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header__phone span { display: none; }
  .header__cta { display: none; }
  .fleet { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .booking__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .promo { font-size: 0.76rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .booking__form { grid-template-columns: 1fr; padding: 22px; }
  .field--half { grid-column: span 2; }
  .booking__actions-alt { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .price-table th, .price-table td { padding: 13px 14px; font-size: 0.9rem; }
  .estimator__row { grid-template-columns: 1fr; gap: 12px; }
  .estimator__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   PREMIUM PASS — depth, motion & gold detailing
   ========================================================= */

/* Selection, focus, custom scrollbar */
::selection { background: rgba(197, 160, 89, .30); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
html { scrollbar-color: var(--gold) var(--bg-2); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-2), var(--gold)); border-radius: 999px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

/* Fine film grain over everything (very subtle) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 4; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Gold gradient text accent */
.grad { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* Section eyebrows with flanking hairlines */
.section__head .eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 14px; }
.section__head .eyebrow::before, .section__head .eyebrow::after { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section__head .eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* Header gold hairline + scrolled state */
.header { box-shadow: inset 0 -1px 0 rgba(197, 160, 89, .10); }
.header.scrolled { background: rgba(9, 9, 10, .88); box-shadow: 0 12px 30px -18px rgba(0, 0, 0, .85), inset 0 -1px 0 rgba(197, 160, 89, .18); }

/* Card depth + gold-lit hover */
.card, .step, .quote, .fleet__card { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 2px 8px rgba(0, 0, 0, .35); }
.card:hover, .fleet__card:hover { box-shadow: var(--shadow-2), inset 0 1px 0 rgba(197, 160, 89, .18); }

/* Fleet image — cinematic vignette + cohesive grade */
.fleet__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,8,9,.10) 0%, transparent 30%, transparent 52%, rgba(8,8,9,.55) 100%);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .4); }

/* Hero scroll cue */
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 9px; color: var(--muted);
  font-family: 'Inter', sans-serif; font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; transition: color .25s; }
.hero__scroll:hover { color: var(--gold-2); }
.hero__scroll .mouse { width: 24px; height: 38px; border: 1px solid var(--line-2); border-radius: 13px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: scrolldot 1.8s ease-in-out infinite; }

/* Stats band */
.stats { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(40px, 6vw, 64px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { position: relative; padding: 6px 12px; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: linear-gradient(180deg, transparent, var(--line-2), transparent); }
.stat__num { display: block; font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2.1rem, 4.4vw, 3.1rem); line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat__label { display: block; margin-top: 12px; color: var(--muted); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }

/* Footer gold hairline */
.footer { box-shadow: inset 0 1px 0 rgba(197, 160, 89, .12); }

@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.1); } }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, -3px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 9px); } }

@media (max-width: 760px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .stat:nth-child(3)::before { display: none; }
}
@media (max-width: 560px) {
  .hero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__img { animation: none !important; }
  .btn--gold::before { display: none; }
  .hero__scroll .mouse::after { animation: none; }
}

/* =========================================================
   EDITORIAL TYPOGRAPHY — couture display (Cormorant)
   ========================================================= */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.05; letter-spacing: -0.015em; }
.hero__title { font-size: clamp(3.4rem, 8.8vw, 7.2rem); font-weight: 600; line-height: .96; letter-spacing: -0.025em; margin-bottom: 28px; }
.hero__title .grad { font-style: italic; font-weight: 600; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.7; max-width: 560px; }
.section__head h2 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1.0; letter-spacing: -0.02em; }
.section__lead { font-size: 1.12rem; }
.fleet__title h3 { font-size: 2.2rem; }
.card h3 { font-size: 1.5rem; }
.step h3, .feature h3 { font-size: 1.55rem; }
.estimator__head h3 { font-size: 1.75rem; }
.booking__intro h2 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
.quote blockquote { font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; line-height: 1.34; font-weight: 500; }
.est__price { font-weight: 700; font-size: 2.5rem; }
.step__num, .stat__num { font-weight: 700; }
.eyebrow { font-size: 0.7rem; letter-spacing: 0.32em; }

/* =========================================================
   FLEET — editorial alternating rows
   ========================================================= */
.fleet-rows { display: grid; gap: clamp(48px, 8vw, 110px); }
.frow { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.frow--reverse .frow__media { order: 2; }
.frow__media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); }
.frow__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,8,9,.10), transparent 35%, transparent 60%, rgba(8,8,9,.45)); box-shadow: inset 0 0 90px rgba(0,0,0,.4); }
.frow:hover .fleet__img { transform: scale(1.05); }
.frow__index { display: block; font-family: 'Fraunces', serif; font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; opacity: .9; margin-bottom: 12px; }
.frow__body .fleet__title { margin-bottom: 16px; }
.frow__body .fleet__title h3 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); }
.frow__body > p { color: var(--muted); font-size: 1.06rem; margin: 0 0 26px; max-width: 46ch; }
.frow__body .specs { margin-bottom: 30px; }
.frow__body .fleet__btn { width: auto; padding-left: 36px; padding-right: 36px; }
@media (max-width: 820px) {
  .frow { grid-template-columns: 1fr; gap: 22px; }
  .frow--reverse .frow__media { order: 0; }
  .frow__body .fleet__btn { width: 100%; }
}

/* =========================================================
   CINEMATIC INTERLUDE — full-bleed parallax statement
   ========================================================= */
.cine { position: relative; min-height: clamp(440px, 72vh, 700px); display: grid; place-items: center; text-align: center; overflow: hidden; }
.cine__bg { position: absolute; inset: 0; background-image: url("images/cine-interlude.jpg"); background-size: cover; background-position: center; background-attachment: fixed; filter: saturate(.85) contrast(1.12) brightness(.66); }
.cine__scrim { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 45%, rgba(8,8,9,.42), rgba(8,8,9,.86) 92%); }
.cine__inner { position: relative; z-index: 1; max-width: 860px; padding: 80px 24px; }
.cine__title { font-size: clamp(2.5rem, 6.2vw, 4.8rem); line-height: 1.0; margin: 18px 0 32px; }
@media (max-width: 820px) { .cine__bg { background-attachment: scroll; } }

/* =========================================================
   FLAGSHIP POLISH — preloader, cursor, scroll progress, buttons
   ========================================================= */

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 100; background: linear-gradient(90deg, var(--gold), var(--gold-2)); box-shadow: 0 0 12px rgba(197,160,89,.6); }

/* Branded preloader */
.preloader { position: fixed; inset: 0; z-index: 200; background: var(--bg); display: grid; place-items: center; animation: pl-auto 0s linear 2.6s forwards; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader__mark { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 700; font-size: 2.1rem; color: var(--gold-2); border: 1px solid rgba(197,160,89,.5); background: radial-gradient(120% 120% at 30% 20%, rgba(197,160,89,.24), rgba(197,160,89,.05)); box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 12px 32px -10px rgba(197,160,89,.55); opacity: 0; transform: translateY(8px); animation: pl-rise .9s var(--ease) .1s forwards; }
.preloader__word { font-family: 'Fraunces', serif; font-size: 1.55rem; letter-spacing: .55em; text-indent: .55em; color: var(--text); opacity: 0; animation: pl-rise .9s var(--ease) .35s forwards; }
.preloader__line { width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: pl-line 1.1s var(--ease) .55s forwards; }
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .7s var(--ease), visibility .7s; }
@keyframes pl-rise { to { opacity: 1; transform: none; } }
@keyframes pl-line { to { width: 230px; } }
@keyframes pl-auto { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* Custom gold cursor (desktop, fine pointer) */
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor select, .has-cursor input, .has-cursor textarea, .has-cursor label, .has-cursor .faq__q, .has-cursor .chips li { cursor: none !important; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 150; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); will-change: transform; }
.cursor-dot { width: 6px; height: 6px; background: var(--gold-2); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(197,160,89,.7); transition: width .25s var(--ease), height .25s var(--ease), background-color .25s, border-color .25s, opacity .3s; }
.cursor-ring.is-hover { width: 58px; height: 58px; background: rgba(197,160,89,.10); border-color: var(--gold-2); }
.cursor-dot.is-hidden, .cursor-ring.is-hidden { opacity: 0; }

/* Refined buttons */
.btn { letter-spacing: .04em; }
.btn--gold { box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 12px 30px -12px rgba(197,160,89,.65); }
.btn--gold:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 18px 42px -12px rgba(197,160,89,.8); }
.btn__arrow { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* Staggered reveal cascade */
.grid--svc > .reveal:nth-child(2), .grid--quotes > .reveal:nth-child(2) { transition-delay: .08s; }
.grid--svc > .reveal:nth-child(3), .grid--quotes > .reveal:nth-child(3) { transition-delay: .16s; }
.grid--svc > .reveal:nth-child(4) { transition-delay: .24s; }
.grid--svc > .reveal:nth-child(5) { transition-delay: .32s; }
.grid--svc > .reveal:nth-child(6) { transition-delay: .40s; }
.grid--svc > .reveal:nth-child(7) { transition-delay: .48s; }
.stats__grid .stat.reveal:nth-child(2) { transition-delay: .1s; }
.stats__grid .stat.reveal:nth-child(3) { transition-delay: .2s; }
.stats__grid .stat.reveal:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .grid--svc > .reveal, .grid--quotes > .reveal, .stats__grid .stat.reveal { transition-delay: 0s !important; }
}

/* =========================================================
   CONVERSION — sticky CTA, social proof, risk reversal
   ========================================================= */
.hero__badges strong { color: var(--gold-2); font-weight: 700; }

/* Reviews rating header */
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin: -14px 0 42px; flex-wrap: wrap; }
.reviews-rating__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.15rem; }
.reviews-rating__score { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.7rem; color: var(--gold-2); line-height: 1; }
.reviews-rating__meta { color: var(--muted); font-size: .92rem; }

/* Quote author + avatar */
.quote__by { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .9rem; font-style: normal; }
.quote__by .avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .82rem; color: var(--gold-2); background: var(--gold-soft); border: 1px solid rgba(197,160,89,.4); }
.quote__by b { display: block; color: var(--text); font-weight: 600; font-size: .95rem; }
.quote__by small { color: var(--muted-2); }

/* Booking perks — gold checks, brighter */
.booking__perks li { color: var(--text); }
.booking__perks .ck { color: var(--gold); font-weight: 700; margin-right: 6px; }

/* Sticky mobile CTA bar */
.mbar { display: none; }
@media (max-width: 820px) {
  .mbar { display: grid; grid-template-columns: 1fr 1.5fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom)); background: rgba(20,20,24,.93); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--line); }
  .mbar__btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 52px; border-radius: 999px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: .02em; }
  .mbar__btn--ghost { border: 1px solid var(--line-2); color: var(--text); }
  .mbar__btn--gold { background: var(--gold-grad); color: #1a1407; box-shadow: 0 10px 26px -10px rgba(197,160,89,.6); }
  .mbar__btn .ic { width: 18px; height: 18px; }
  body { padding-bottom: 78px; }
  .fab { bottom: 92px; }
}

/* =========================================================
   QUIET LUXURY — Fraunces display + clean Inter, squared buttons
   (simplified: removed monospace-everything, kept restraint)
   ========================================================= */
h1, h2, h3, h4 { letter-spacing: -0.02em; }
.hero__title { font-size: clamp(3rem, 8vw, 6.4rem); font-weight: 500; line-height: 1.0; letter-spacing: -0.03em; }
.section__head h2 { font-weight: 500; letter-spacing: -0.025em; }
.fleet__title h3, .booking__intro h2, .cine__title { font-weight: 500; }
.hero__title .grad, .cine__title .grad { font-style: italic; font-weight: 500; }

/* Buttons — squared & clean (no pills), ghost fills gold on hover */
.btn { text-transform: uppercase; font-size: .8rem; letter-spacing: .1em; font-weight: 600; border-radius: 4px; padding: 15px 28px; }
.btn--lg { padding: 17px 34px; font-size: .85rem; }
.btn--ghost { background: linear-gradient(var(--gold), var(--gold)) left center / 0% 100% no-repeat; transition: background-size .42s var(--ease), color .3s, border-color .3s; }
.btn--ghost:hover { color: #1a1407; border-color: var(--gold); background-size: 100% 100%; }
.mbar__btn { text-transform: uppercase; letter-spacing: .06em; font-size: .92rem; border-radius: 5px; }
.header__cta { border-radius: 4px; }

/* Subtle first-ride offer in the booking section (replaces the loud top promo bar) */
.booking__offer { display: inline-block; margin: 0 0 22px; padding: 9px 15px; border: 1px solid rgba(197,160,89,.4); border-radius: 4px; background: var(--gold-soft); color: var(--gold-2); font-size: .82rem; letter-spacing: .01em; }
.booking__offer strong { color: var(--gold-2); font-weight: 700; }
