/*
 * Luxx Miami — chauffeur + exotic car tours (staging)
 * Single stylesheet for the whole site. Mobile-first.
 */

/* ---------------------------------------------------------------------
   0. Custom properties
   --------------------------------------------------------------------- */
:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1B1B1B;
  --gold: #C9A24B;
  --gold-soft: rgba(201, 162, 75, 0.16);
  --gold-line: rgba(201, 162, 75, 0.35);
  --white: #FFFFFF;
  --gray: #B3B3B3;
  --hair: rgba(255, 255, 255, 0.1);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: 20px;
  --radius-card: 20px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --sticky-bar-h: 62px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------------
   1. Reset + base
   --------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-bar-h) + var(--safe-bottom));
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
  color: var(--gray);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ---------------------------------------------------------------------
   2. Utilities
   --------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 200;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray);
  max-width: 46ch;
}

.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 14px;
}

.display--sm {
  font-size: clamp(1.5rem, 3.6vw, 2rem);
}

.display--gold {
  color: var(--gold);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-line);
  color: var(--gold);
  flex-shrink: 0;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.icon-badge--sm {
  width: 40px;
  height: 40px;
}

.icon-badge--sm svg {
  width: 18px;
  height: 18px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  transition: transform 0.2s var(--ease);
}

.link-arrow:hover {
  color: var(--gold);
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

/* ---------------------------------------------------------------------
   3. Layout
   --------------------------------------------------------------------- */
.hero__inner,
.trust-strip__inner,
.fleet-section,
.tours-section,
.amenity-strip__inner,
.cta-band__inner,
.page-head__inner,
.service-list,
.fleet-page,
.tours-page,
.about-body,
.contact-channels,
.contact-note-wrap,
.inquiry-band__inner,
.site-header__inner,
.site-footer__inner,
.page-banner__inner,
.service-detail__intro,
.how-it-works,
.good-to-know,
.service-vehicles,
.service-crosslinks,
.neighborhood-trips,
.faq-page {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: 56px 0;
}

/* ---------------------------------------------------------------------
   4. Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--gold {
  background: var(--gold);
  color: #191305;
}

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

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold-line);
}

.btn--outline:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
}

/* ---------------------------------------------------------------------
   5. Header / nav
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* Real crown mark (favicon-192.png crop) replacing the old &#9670; glyph —
   fixed px, not em, so it stays crisp/legible at the size it was cropped
   for (see BRAND-KIT.md) instead of scaling with surrounding type. */
.wordmark__mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.wordmark__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.55em;
  letter-spacing: 0.22em;
  color: var(--gray);
  text-transform: uppercase;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav a {
  color: var(--gray);
  transition: color 0.2s var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-line);
}

.menu-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.menu-toggle__bars span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--bg);
  padding: 100px var(--gutter) calc(30px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: auto;
}

.mobile-menu__nav a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--white);
}

.mobile-menu__nav a[aria-current="page"] {
  color: var(--gold);
}

.mobile-menu .btn {
  margin-top: 24px;
}

body.menu-open {
  overflow: hidden;
}

/* ---------------------------------------------------------------------
   6. Sticky mobile action bar
   --------------------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  height: var(--sticky-bar-h);
  padding-bottom: var(--safe-bottom);
  background: var(--surface);
  border-top: 1px solid var(--hair);
}

.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-bar a svg {
  width: 18px;
  height: 18px;
}

.sticky-bar__call {
  color: var(--white);
  border-right: 1px solid var(--hair);
}

.sticky-bar__book {
  color: #191305;
  background: var(--gold);
}

/* ---------------------------------------------------------------------
   7. Hero
   --------------------------------------------------------------------- */
.hero {
  padding-top: 40px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero__headline {
  margin-bottom: 18px;
}

.hero__headline .line {
  display: block;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  line-height: 1.02;
}

.hero__headline .line--white {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--white);
}

.hero__headline .line--gold {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.hero__sub {
  max-width: 40ch;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero__media .media-placeholder,
.hero__media .media-photo {
  border-radius: var(--radius-lg);
}

/* ---------------------------------------------------------------------
   8. Media placeholder (shared component)
   --------------------------------------------------------------------- */
.media-placeholder {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--bg) 78%);
  border: 1px solid var(--gold-line);
  overflow: hidden;
  text-align: center;
  padding: 20px;
}

.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, var(--gold-soft) 0%, transparent 60%);
  pointer-events: none;
}

.media-placeholder__icon {
  color: var(--gold);
  opacity: 0.85;
  width: 25%;
  max-width: 84px;
}

.media-placeholder__icon svg {
  width: 100%;
  height: auto;
}

.media-placeholder__label {
  position: relative;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* Real dropped-in photo (see tools/build.js mediaSlot()). Mirrors the
   placeholder's box model (radius comes from the same per-context
   overrides below) but crops via object-fit instead of framing an icon. */
.media-photo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--gold-line);
  object-fit: cover;
}

/* ---------------------------------------------------------------------
   9. Trust strip
   --------------------------------------------------------------------- */
.trust-strip {
  padding-top: 0;
}

.trust-strip__inner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 36px var(--gutter);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hair);
}

.trust-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trust-item__title {
  font-size: 1.05rem;
  color: var(--white);
}

.trust-item__sub {
  margin: 0;
  font-size: 0.92rem;
}

/* ---------------------------------------------------------------------
   10. Fleet section + vehicle card
   --------------------------------------------------------------------- */
.fleet-section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

/* Mobile (<768px): horizontal scroll-snap carousel, CSS-only, no JS —
   the client's explicit mobile ask (SITE_REFERENCE_CHAUFFEUR.md, "Mobile
   optimization strategy"): "Fleet + tours: horizontal scroll-snap
   carousels (one-card-plus-peek per viewport), swipe native, arrows
   hidden on touch, dots kept." Dots are skipped too: with exactly 4 cards,
   no autoplay, and native swipe as the whole interaction, a dot row would
   only restate scroll position with nothing left for the user to act on
   (arrows are already correctly out, per that same spec line).
   Desktop (>=768px, in the responsive section below) deliberately KEEPS
   the plain grid instead of a spec-style arrow/dot carousel: at >=768px
   all 4 cards are on screen at once (2-up, 4-up at 1024px), so a carousel
   control would just manage a scroll position nobody needs to move. */
.fleet-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scroll-padding-left: var(--gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fleet-grid::-webkit-scrollbar {
  display: none;
}

.vehicle-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  /* Carousel card sizing (mobile only — reset at 768px below). ~85vw so
     the next card peeks at the right edge. */
  flex: 0 0 85vw;
  max-width: 85vw;
  scroll-snap-align: start;
}

.vehicle-card__media {
  position: relative;
  margin-bottom: 16px;
}

.vehicle-card__media .media-placeholder,
.vehicle-card__media .media-photo {
  border-radius: var(--radius-sm);
}

.vehicle-card__badge {
  position: absolute;
  left: 12px;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.vehicle-card__badge svg {
  width: 18px;
  height: 18px;
}

.vehicle-card__name {
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

.vehicle-card__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 600;
}

.vehicle-card__spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vehicle-card__spec svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.vehicle-card__spec--class {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vehicle-card__note {
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 600;
}

.vehicle-card__divider {
  height: 1px;
  background: var(--hair);
  margin: 16px 0;
}

.vehicle-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.vehicle-card__price-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 700;
}

.vehicle-card__price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

/* ---------------------------------------------------------------------
   11. Tours section + tour card
   --------------------------------------------------------------------- */
.tours-section__intro {
  margin-bottom: 28px;
}

.tours-section__intro .link-arrow {
  margin-top: 8px;
}

/* Mobile carousel — same treatment and rationale as .fleet-grid in
   section 10 above (see the comment there for the spec citation and the
   desktop-deviation note). */
.tours-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scroll-padding-left: var(--gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tours-grid::-webkit-scrollbar {
  display: none;
}

.tour-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 0 0 85vw;
  max-width: 85vw;
  scroll-snap-align: start;
}

.tour-card__media {
  position: relative;
}

.tour-card__media .media-placeholder,
.tour-card__media .media-photo {
  border-radius: var(--radius-sm);
}

.tour-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 999px;
}

.tour-card__name {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}

.tour-card__desc {
  margin-top: 8px;
  font-size: 0.92rem;
}

.tour-card__included {
  margin: 4px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tour-card__included li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}

.tour-card__included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.tour-card__price {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.tour-card__price-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}

.tour-card__price-unit {
  color: var(--gray);
  font-size: 0.85rem;
}

/* "Tour details" link-arrow, /tours hub cards only (withDetailsLink in
   tourCard(), tools/build.js) — same scoped-margin pattern as
   .tours-section__intro .link-arrow above. */
.tour-card .link-arrow {
  margin-top: 12px;
}

/* ---------------------------------------------------------------------
   12. Amenity strip
   --------------------------------------------------------------------- */
.amenity-strip__inner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.amenity-item__title {
  font-size: 0.95rem;
  color: var(--white);
}

.amenity-item__sub {
  margin: 4px 0 0;
  font-size: 0.82rem;
}

/* ---------------------------------------------------------------------
   13. CTA band
   --------------------------------------------------------------------- */
.cta-band__inner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.cta-band__media {
  display: none;
}

.cta-band__content p {
  margin: 10px 0 0;
}

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

/* ---------------------------------------------------------------------
   14. Sub-page head + generic bands
   --------------------------------------------------------------------- */
.page-head {
  padding-top: 48px;
  padding-bottom: 24px;
}

.page-head__inner {
  text-align: left;
}

/* Wide atmosphere banner under a page's H1 (service detail pages, FAQ).
   Sits directly under .page-head, which already carries its own bottom
   padding, so this only needs bottom spacing before the next section. */
.page-banner {
  padding-top: 0;
  padding-bottom: 40px;
}

.inquiry-band {
  margin-top: 8px;
}

.inquiry-band__inner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inquiry-band__inner .btn {
  width: 100%;
}

/* ---------------------------------------------------------------------
   15. Services page
   --------------------------------------------------------------------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
  scroll-margin-top: 96px;
}

.service-block:first-child {
  padding-top: 0;
}

.service-block__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 10px;
}

/* ---------------------------------------------------------------------
   16. Fleet page
   --------------------------------------------------------------------- */
.fleet-page {
  padding-top: 0;
}

.fleet-grid--page {
  margin-bottom: 20px;
}

.rate-footnote {
  color: var(--gray);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

/* ---------------------------------------------------------------------
   17. Tours page
   --------------------------------------------------------------------- */
.tours-page {
  padding-top: 0;
}

/* ---------------------------------------------------------------------
   18. About page
   --------------------------------------------------------------------- */
.about-body {
  padding-top: 0;
  max-width: 68ch;
}

.about-body p {
  font-size: 1.02rem;
}

/* ---------------------------------------------------------------------
   19. Contact page
   --------------------------------------------------------------------- */
.contact-channels {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 18px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
  border: 1px solid transparent;
}

.contact-channel:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}

.contact-channel__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 700;
}

.contact-channel__value {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 1.02rem;
  margin-top: 2px;
}

.contact-note-wrap {
  padding-top: 8px;
}

.contact-note {
  color: var(--gray);
  max-width: 56ch;
}

/* ---------------------------------------------------------------------
   20. Footer
   --------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--hair);
  padding-top: 48px;
  margin-top: 32px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 4px;
}

.footer-col--brand p {
  max-width: 34ch;
  font-size: 0.92rem;
}

.footer-col__title {
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-links a,
.footer-links span {
  color: var(--gray);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  margin-top: 4px;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.site-footer__bottom {
  border-top: 1px solid var(--hair);
  padding: 20px var(--gutter) 32px;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--gray);
  font-size: 0.82rem;
}

/* Dormant until FAMILY_LINKS.enabled flips true in tools/build.js — see
   familyStrip(); styled now so it isn't undefined the day it's turned on. */
.family-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter) 0;
  border-top: 1px solid var(--hair);
  color: var(--gray);
  font-size: 0.82rem;
  text-align: center;
}

.family-strip a {
  color: var(--gold);
}

.family-strip a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------------
   21. Booking modal
   --------------------------------------------------------------------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(4px);
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: var(--surface);
  padding: 24px var(--gutter) calc(24px + var(--safe-bottom));
}

body.booking-open {
  overflow: hidden;
}

.booking-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.booking-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--gold);
  text-transform: uppercase;
}

.booking-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-line);
  color: var(--gold);
  flex-shrink: 0;
}

.booking-modal__close svg {
  width: 18px;
  height: 18px;
}

/* Form fields, shared by the vehicle fieldset and every labeled input */
.booking-form__field {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  min-width: 0;
}

.booking-form__label {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  border: 0;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.booking-form__optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--gray);
  opacity: 0.75;
}

.booking-form__input {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--hair);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
}

.booking-form__input::placeholder {
  color: var(--gray);
}

.booking-form__input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.booking-form__caption {
  margin: 8px 0 0;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gray);
}

.booking-form__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.booking-form__submit-row {
  margin-top: 4px;
}

/* Vehicle picker — native radios, visually hidden but focusable, so the
   group stays keyboard-operable (Tab/Arrow keys/Space) for free. */
.booking-vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.booking-vehicle {
  position: relative;
  display: block;
  cursor: pointer;
}

.booking-vehicle__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  opacity: 0;
}

.booking-vehicle__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--hair);
  background: var(--surface-2);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.booking-vehicle__id {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-vehicle__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--white);
}

.booking-vehicle__class {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.booking-vehicle__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
}

.booking-vehicle__input:checked + .booking-vehicle__card {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.booking-vehicle__input:focus-visible + .booking-vehicle__card {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Confirmation step */
.booking-confirm__heading {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
}

.booking-confirm__summary {
  width: 100%;
  min-height: 160px;
  margin-bottom: 16px;
  background: var(--surface-2);
  border: 1.5px solid var(--hair);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: var(--white);
  font: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
  resize: vertical;
}

.booking-confirm__summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.booking-confirm__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-confirm__actions .btn {
  width: 100%;
}

.booking-confirm__truth {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ---------------------------------------------------------------------
   22. Responsive — tablet / desktop
   --------------------------------------------------------------------- */
@media (min-width: 768px) {
  section {
    padding: 88px 0;
  }

  .primary-nav {
    display: flex;
    /* Tightened from the 28px base gap only in this 768-1023px band, where
       the nav now shares the row with the un-hidden .menu-toggle below —
       see the >=1024px override further down, which restores the roomier
       28px gap once there is space for it. */
    gap: 16px;
    font-size: 0.86rem;
  }

  /* Client demo shows the circular menu button present on desktop
     alongside the nav (SITE_REFERENCE_CHAUFFEUR.md: "right: gold BOOK NOW
     button + circular hamburger (present even on desktop)"), so it stays
     visible here instead of the old `display: none`. Sized down from the
     44px mobile button in this 768-1023px band so wordmark + nav + Book Now
     + toggle all fit one row without wrapping; back to full size at
     >=1024px below. It still opens the same overlay menu as on mobile —
     no separate desktop nav-drawer was built for this. */
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle__bars {
    width: 16px;
  }

  .sticky-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
  }

  .hero__content {
    flex: 1 1 50%;
  }

  .hero__media {
    flex: 1 1 42%;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-item {
    padding: 0 20px;
    border-bottom: 0;
    border-right: 1px solid var(--hair);
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .fleet-section__head,
  .cta-band__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .cta-band__inner {
    align-items: center;
  }

  /* Back to the plain grid at desktop — undoes every mobile-carousel
     property set in sections 10/11 above (display, overflow, snap, and
     the bleed margin/padding). See the comment on .fleet-grid (section
     10) for why desktop deliberately has no arrow/dot carousel here. */
  .fleet-grid,
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
  }

  .vehicle-card,
  .tour-card {
    flex: initial;
    max-width: none;
    scroll-snap-align: none;
  }

  .tours-section {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 40px;
    align-items: start;
  }

  .tours-section__intro {
    margin-bottom: 0;
  }

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

  .amenity-strip__inner {
    grid-template-columns: repeat(5, 1fr);
  }

  .amenity-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-band__media {
    display: block;
    flex: 0 0 180px;
  }

  .cta-band__media .media-placeholder,
  .cta-band__media .media-photo {
    border-radius: var(--radius-sm);
  }

  .cta-band__content {
    flex: 1;
    padding: 0 24px;
  }

  .cta-band__action .btn {
    width: auto;
  }

  .inquiry-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .inquiry-band__inner .btn {
    width: auto;
  }

  .contact-channels {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__inner {
    grid-template-columns: 1.4fr repeat(6, 1fr);
  }

  .booking-modal {
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .booking-modal__panel {
    width: 100%;
    max-width: 560px;
    height: auto;
    max-height: min(88vh, 780px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-line);
    padding: 32px;
  }

  .booking-vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
  }

  .booking-confirm__actions {
    flex-direction: row;
  }

  .booking-confirm__actions .btn {
    width: auto;
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .fleet-grid,
  .fleet-grid--page {
    grid-template-columns: repeat(4, 1fr);
  }

  .tours-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Room is no longer tight at this width — restore the roomier nav gap
     and full-size toggle set by the 768px band above. */
  .primary-nav {
    gap: 28px;
    font-size: 0.92rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle__bars {
    width: 18px;
  }
}

/* ---------------------------------------------------------------------
   23. Service detail pages (/services/<id>/)
   --------------------------------------------------------------------- */
.service-detail__intro {
  padding-top: 0;
  padding-bottom: 0;
}

.service-detail__intro p {
  max-width: 62ch;
  font-size: 1.02rem;
  margin-bottom: 0;
}

.how-it-works {
  padding-top: 0;
}

.steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 62ch;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.step__title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.step__body p {
  margin: 0;
  font-size: 0.92rem;
}

.know-list {
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 62ch;
}

.know-list li {
  position: relative;
  padding-left: 20px;
  color: var(--gray);
  font-size: 0.95rem;
}

.know-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-vehicles__head {
  margin-bottom: 20px;
}

.service-vehicles__head .section-sub {
  margin-top: 8px;
  max-width: 62ch;
}

.service-vehicles .fleet-grid {
  margin-bottom: 16px;
}

.service-crosslinks {
  padding-top: 8px;
  padding-bottom: 56px;
}

.crosslink-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------------------------------------------------------------------
   24. FAQ page (/faq)
   --------------------------------------------------------------------- */
.faq-page {
  padding-top: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 74ch;
}

.faq-item {
  border-bottom: 1px solid var(--hair);
  padding: 20px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q h2 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}

.faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-line);
  color: var(--gold);
  transition: transform 0.2s var(--ease);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__a {
  margin-top: 14px;
  max-width: 66ch;
}

.faq-item__a p {
  margin: 0;
}

.faq-item__a a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .step__body p {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------------------------------
   25. Neighborhood pages (/chauffeur/<slug>/)
   --------------------------------------------------------------------- */
.neighborhood-trips {
  padding-top: 0;
}

.trip-grid {
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trip-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
}

.trip-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trip-card__title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.trip-card__body p {
  margin: 0;
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .trip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }

  .trip-card {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
