/* ============================================================
   SAC LUXURY RIDE — Brand Stylesheet
   Palette: Champagne Gold #C9A86A · Antique Gold #A1854E
            Onyx #0B0B0B · Pearl Cream #F5F2EA · Charcoal #28251D
   Fonts:   Cinzel (display)  +  Inter (body)
   ============================================================ */

:root {
  /* Brand colors */
  --gold: #C9A86A;
  --gold-deep: #A1854E;
  --gold-soft: #E0C896;
  --onyx: #0B0B0B;
  --onyx-2: #141414;
  --onyx-3: #1C1C1C;
  --charcoal: #28251D;
  --cream: #F5F2EA;
  --stone: #7A7974;
  --line: rgba(201, 168, 106, 0.18);
  --line-soft: rgba(245, 242, 234, 0.08);

  /* Type */
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.72rem, 0.70rem + 0.10vw, 0.78rem);
  --text-sm:   clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --text-base: clamp(0.95rem, 0.92rem + 0.18vw, 1.05rem);
  --text-lg:   clamp(1.10rem, 1.05rem + 0.30vw, 1.25rem);
  --text-xl:   clamp(1.35rem, 1.20rem + 0.80vw, 1.85rem);
  --text-2xl:  clamp(1.75rem, 1.40rem + 1.80vw, 2.85rem);
  --text-hero: clamp(2.25rem, 1.60rem + 3.80vw, 4.75rem);

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px;  --s-4: 16px;  --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Layout */
  --container: 1280px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 10px;
  --header-h: 76px;
  --gold-tint: rgba(201, 168, 106, 0.06);

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
  background: var(--onyx);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
}

/* ============== Typography Utilities ============== */
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.lede { font-size: var(--text-lg); color: rgba(245, 242, 234, 0.78); max-width: 60ch; line-height: 1.55; }
.dim { color: var(--stone); }

/* Gold underline accent */
.rule {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

/* ============== Layout primitives ============== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(64px, 9vw, 144px); }
.section--tight { padding-block: clamp(48px, 6vw, 96px); }

/* ============== Header / nav ============== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header--solid { background: rgba(11, 11, 11, 0.94); border-bottom-color: var(--line); }
.header__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-6);
}
.brand { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.brand__mark { height: 44px; width: auto; }
.brand__name {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--cream);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav {
  display: flex; align-items: center; gap: clamp(18px, 2vw, 32px);
  font-size: var(--text-sm);
  font-weight: 500;
  flex: 0 1 auto;
}
.nav a {
  color: rgba(245, 242, 234, 0.78);
  letter-spacing: 0.04em;
  padding: 8px 2px;
  position: relative;
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
}
.nav-actions { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.nav__phone {
  font-size: var(--text-sm); color: var(--cream);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav__phone svg { width: 14px; height: 14px; color: var(--gold); }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--cream); }
.nav-toggle svg { width: 22px; height: 22px; }
/* Hide wordmark next to logo below 1300px to free up nav space */
@media (max-width: 1300px) {
  .brand__name { display: none; }
}
@media (max-width: 1180px) {
  .nav, .nav-actions .btn { display: none; }
  .nav-actions .nav__phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand__name { display: inline; }
  .nav--open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--onyx);
    padding: var(--s-10) var(--s-8); gap: var(--s-5);
    font-size: var(--text-lg);
    overflow-y: auto;
  }
  .nav--open a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav--open .nav-cta { margin-top: var(--s-6); }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background: var(--gold); color: var(--onyx);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--small { padding: 10px 18px; font-size: 12px; }
.btn svg { width: 14px; height: 14px; }

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: clamp(48px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}
.hero__image { position: absolute; inset: 0; z-index: -2; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.55) 0%, rgba(11, 11, 11, 0.15) 30%, rgba(11, 11, 11, 0.85) 100%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.75) 0%, rgba(11, 11, 11, 0.20) 60%);
}
.hero__content { max-width: 760px; }
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 1.05;
  letter-spacing: 0.005em;
  font-weight: 500;
  margin: var(--s-5) 0 var(--s-6);
  color: var(--cream);
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero__sub {
  font-size: var(--text-lg);
  color: rgba(245, 242, 234, 0.82);
  margin-bottom: var(--s-10);
  max-width: 56ch;
}
.hero__cta { display: flex; gap: var(--s-4); flex-wrap: wrap; }

/* Hero stats strip */
.hero-stats {
  background: var(--onyx-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-soft);
}
.hero-stats__cell {
  padding: clamp(20px, 3vw, 36px);
  background: var(--onyx-2);
  text-align: center;
}
.hero-stats__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-stats__lbl { font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
@media (max-width: 768px) {
  .hero-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============== Sections ============== */
.section-head { margin-bottom: clamp(40px, 5vw, 72px); max-width: 720px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: var(--s-3) 0 var(--s-5);
  text-wrap: balance;
}
.section-head p { font-size: var(--text-lg); color: rgba(245, 242, 234, 0.72); line-height: 1.55; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ============== Service cards ============== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
}
.service-card {
  background: var(--onyx-2);
  border: 1px solid var(--line-soft);
  padding: var(--s-8);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
  display: flex; flex-direction: column; gap: var(--s-4);
  min-height: 280px;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); background: var(--onyx-3); }
.service-card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.service-card p { color: rgba(245, 242, 234, 0.70); font-size: var(--text-sm); line-height: 1.65; flex: 1; }
.service-card a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 6px;
}
.service-card a svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.service-card:hover a svg { transform: translateX(4px); }

/* ============== Editorial / split ============== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split__media::after {
  content: ""; position: absolute; inset: 12px; pointer-events: none;
  border: 1px solid rgba(201, 168, 106, 0.35);
  mix-blend-mode: screen;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

/* ============== Fleet ============== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 980px) { .fleet-grid { grid-template-columns: 1fr; } }
.fleet-card {
  background: var(--onyx-2);
  border: 1px solid var(--line-soft);
  padding: var(--s-8);
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: border-color 0.3s var(--ease);
}
.fleet-card:hover { border-color: var(--gold); }
.fleet-card__cap {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: var(--text-xs);
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.fleet-card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; }
.fleet-card ul { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.fleet-card li {
  font-size: var(--text-sm); color: rgba(245, 242, 234, 0.75);
  padding-left: 18px; position: relative;
}
.fleet-card li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 1px; background: var(--gold);
}

/* ============== Quote / testimonial ============== */
.quote-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 96px);
}
.quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  text-wrap: balance;
  max-width: 24ch;
}
.quote-attr {
  margin-top: var(--s-6);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============== Process / steps ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  counter-reset: step;
}
.step { padding-top: var(--s-6); border-top: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: var(--text-xl);
  letter-spacing: 0.05em;
  margin-bottom: var(--s-4);
}
.step h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--text-lg); margin-bottom: 10px;
}
.step p { font-size: var(--text-sm); color: rgba(245, 242, 234, 0.65); line-height: 1.6; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============== Coverage / pills ============== */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.85);
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.pill:hover { border-color: var(--gold); color: var(--gold); }

/* ============== CTA banner ============== */
.cta-banner {
  position: relative;
  padding: clamp(56px, 9vw, 128px) clamp(24px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(11,11,11,0.85), rgba(11,11,11,0.6)),
    url("./images/feature_jet_tarmac.png") center / cover;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  max-width: 22ch; margin-inline: auto;
  text-wrap: balance;
}
.cta-banner p { color: rgba(245, 242, 234, 0.75); margin: var(--s-5) auto var(--s-8); max-width: 56ch; }
.cta-banner__actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

/* ============== Form ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.form {
  background: var(--onyx-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
}
.form__row { margin-bottom: var(--s-5); }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 600px) { .form__row--2 { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--onyx);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  padding: 14px 16px;
  font-size: var(--text-base);
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--gold);
  background: #0F0F0F;
}
.form textarea { min-height: 130px; resize: vertical; }
.form__submit { width: 100%; padding: 18px; font-size: var(--text-sm); margin-top: var(--s-3); }
.form__note { font-size: var(--text-xs); color: var(--stone); margin-top: var(--s-4); text-align: center; line-height: 1.6; }

.contact-info { display: flex; flex-direction: column; gap: var(--s-8); }
.contact-info__block { border-left: 1px solid var(--gold); padding-left: var(--s-5); }
.contact-info__block .eyebrow { margin-bottom: 10px; display: block; }
.contact-info__block strong { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; display: block; margin-bottom: 6px; }
.contact-info__block a { color: var(--cream); transition: color 0.2s; }
.contact-info__block a:hover { color: var(--gold); }
.contact-info__block p { font-size: var(--text-sm); color: rgba(245, 242, 234, 0.7); line-height: 1.55; }

/* ============== Footer ============== */
.footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding-block: clamp(56px, 7vw, 96px) var(--s-8);
  color: rgba(245, 242, 234, 0.65);
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-12);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-8); }
}
.footer h5 {
  font-family: var(--font-body); font-size: var(--text-xs);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s-5); font-weight: 600;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a:hover { color: var(--gold); }
.footer__brand img { height: 64px; margin-bottom: var(--s-5); }
.footer__brand p { max-width: 36ch; line-height: 1.6; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--s-6); border-top: 1px solid var(--line-soft);
  font-size: var(--text-xs); color: var(--stone); flex-wrap: wrap; gap: var(--s-3);
  letter-spacing: 0.04em;
}
.footer__bottom-links { display: flex; gap: var(--s-5); }

/* ============== Page banner (interior pages) ============== */
.page-banner {
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(40px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  background: var(--onyx-2);
}
.page-banner--media { background: transparent; min-height: 540px; display: flex; align-items: flex-end; }
.page-banner--media::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.page-banner--media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.30) 40%, rgba(11,11,11,0.92) 100%);
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.6rem);
  font-weight: 500;
  margin: var(--s-3) 0 var(--s-5);
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.page-banner p { font-size: var(--text-lg); color: rgba(245, 242, 234, 0.78); max-width: 64ch; line-height: 1.5; }
.breadcrumbs { font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: var(--s-3); }
.breadcrumbs a { color: var(--stone); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* ============== Feature list (alternating) ============== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; padding-block: clamp(40px, 6vw, 80px); border-top: 1px solid var(--line-soft); }
.feature-row:last-child { border-bottom: 1px solid var(--line-soft); }
.feature-row--reverse > :first-child { order: 2; }
.feature-row__media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.feature-row h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; margin-bottom: var(--s-4); }
.feature-row p { color: rgba(245, 242, 234, 0.72); margin-bottom: var(--s-5); line-height: 1.65; }
.feature-row ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--s-5); }
.feature-row li { font-size: var(--text-sm); padding-left: 22px; position: relative; color: rgba(245, 242, 234, 0.8); }
.feature-row li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 12px; height: 1px; background: var(--gold);
}
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse > :first-child { order: 0; }
}

/* ============== Map placeholder card ============== */
.map-card {
  background: var(--onyx-2);
  border: 1px solid var(--line);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.map-card iframe { width: 100%; height: 280px; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.3); }

/* ============== Languages strip ============== */
.lang-strip {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-6);
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  color: rgba(245, 242, 234, 0.78);
  text-transform: uppercase;
}
.lang-strip span { position: relative; padding-right: var(--s-6); }
.lang-strip span:not(:last-child)::after {
  content: "✦"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 10px;
}

/* ============== FAQ ============== */
.faq { display: flex; flex-direction: column; }
.faq details {
  border-top: 1px solid var(--line-soft);
  padding: var(--s-5) 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  color: var(--cream);
  transition: color 0.2s;
}
.faq summary:hover { color: var(--gold); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: var(--text-xl); font-family: var(--font-body); line-height: 1; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: var(--s-4); color: rgba(245, 242, 234, 0.72); line-height: 1.65; max-width: 70ch; }

/* ============== Logo strip / awards ============== */
.awards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding-block: var(--s-10);
  text-align: center;
}
@media (max-width: 768px) { .awards { grid-template-columns: 1fr 1fr; gap: var(--s-8); } }
.award {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245, 242, 234, 0.72);
  font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
}
.award strong { font-family: var(--font-display); font-size: var(--text-lg); color: var(--gold); letter-spacing: 0.04em; font-weight: 500; text-transform: none; }

/* ============== Scroll reveal ============== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============== Floating Quote / Book Now button ============== */
.float-cta {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 1000;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--onyx);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 106, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  animation: float-cta-pulse 3s ease-in-out infinite;
}
.float-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65), 0 0 0 2px rgba(201, 168, 106, 0.6);
}
.float-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
@keyframes float-cta-pulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,106,0.35), 0 0 0 0 rgba(201,168,106,0.45); }
  50%      { box-shadow: 0 14px 36px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,106,0.35), 0 0 0 14px rgba(201,168,106,0); }
}
@media (max-width: 520px) {
  .float-cta { padding: 12px 18px; font-size: 12px; letter-spacing: 0.12em; }
  .float-cta__label-long { display: none; }
}
@media (prefers-reduced-motion: reduce) { .float-cta { animation: none; } }

/* ============== Limo Anywhere booking widget block ============== */
.booking-widget-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.booking-widget-wrap__head {
  text-align: center;
  margin-bottom: var(--s-6);
}
.booking-widget-wrap__head p {
  margin-left: auto;
  margin-right: auto;
}
.booking-widget {
  position: relative;
  min-height: 520px;
  background: var(--onyx-2);
  border: 1px solid var(--gold);
  border-top-width: 2px;
  background-image:
    linear-gradient(135deg, rgba(201,168,106,0.06), rgba(201,168,106,0.01)),
    linear-gradient(var(--onyx-2), var(--onyx-2));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-7) var(--s-5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
/* When the LA iframe/script is injected, fallback hides itself.
   To do that automatically when an <iframe> is added, the fallback
   uses :has() to detect a sibling iframe. Falls back to manual hide
   in older browsers — the iframe will simply render above. */
.booking-widget:has(iframe), .booking-widget:has(.la-widget) {
  padding: 0;
  align-items: stretch;
  background: var(--onyx);
}
.booking-widget:has(iframe) .booking-widget__fallback,
.booking-widget:has(.la-widget) .booking-widget__fallback {
  display: none;
}
.booking-widget iframe {
  width: 100%;
  min-height: 600px;
  border: 0;
  display: block;
}
.booking-widget__fallback {
  text-align: center;
  max-width: 520px;
}
.booking-widget__fallback svg {
  width: 44px;
  height: 44px;
  stroke: var(--gold);
  margin-bottom: var(--s-4);
}
.booking-widget__fallback h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-3);
}
.booking-widget__fallback .btn {
  margin-top: var(--s-4);
}
@media (max-width: 640px) {
  .booking-widget { min-height: 420px; padding: var(--s-6) var(--s-4); }
}
