/* ==========================================================================
   PHXSUV, Shared Stylesheet
   Premium executive transportation. Charcoal/black base + refined gold accents.
   Single source of truth for every page. Mobile-first, accessible, fast.
   ========================================================================== */

/* ----- Design tokens ----------------------------------------------------- */
:root {
  --bg:          #0c0c0e;
  --bg-2:        #101013;
  --bg-3:        #16161a;
  --surface:     #1b1b20;
  --surface-2:   #212128;
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text:        #ECEAE3;
  --text-dim:    #b9b8b3;
  --muted:       #8d8c92;

  --gold:        #C9A24B;
  --gold-2:      #E6C878;
  --gold-deep:   #9c7a2f;
  --gold-soft:   rgba(201, 162, 75, 0.12);
  --gold-line:   rgba(201, 162, 75, 0.35);

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

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 14px 40px -16px rgba(201, 162, 75, 0.35);

  --nav-h: 76px;
}

/* ----- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }

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

::selection { background: var(--gold); color: #1a1408; }

/* ----- Typography -------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.2px;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

p { color: var(--text-dim); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-line);
}
.eyebrow.center { justify-content: center; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text-dim); }
.gold { color: var(--gold-2); }
.serif { font-family: var(--serif); }

/* ----- Layout ------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.section-head { max-width: 660px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.divider { height: 1px; background: var(--line); border: 0; }

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  --pad-y: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: var(--pad-y) 1.7rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.35s var(--ease);
  will-change: transform;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 17px; height: 17px; }
/* sweeping shine on hover */
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%; z-index: -1;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn:hover::after { left: 135%; }
.btn--ghost::after, .btn--dark::after { background: linear-gradient(115deg, transparent, rgba(230,200,120,0.22), transparent); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 46px -16px rgba(201, 162, 75, 0.55); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }

.btn--dark { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--line); }
.btn--dark:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }

.btn--lg { --pad-y: 1.1rem; padding-inline: 2.1rem; font-size: 0.86rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-row.center { justify-content: center; }

/* Text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold-2);
  position: relative;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.9);
}
.nav {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand__mark {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: -1px;
  background: radial-gradient(circle at 30% 25%, rgba(201,162,75,0.18), transparent 70%);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--text);
}
.brand__name b { color: var(--gold-2); font-weight: 600; }
.brand__sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__links a, .nav__dd > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.32rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover, .nav__dd > button:hover { color: var(--text); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--gold-2); }

/* Dropdown */
.nav__dd { position: relative; }
.nav__dd > button svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.nav__dd[data-open="true"] > button svg { transform: rotate(180deg); }
.nav__dd-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(20, 20, 24, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.5rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.nav__dd[data-open="true"] .nav__dd-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* wide 2-column menu for the expanded Services list */
.nav__dd-menu--mega {
  left: 0; transform: translateX(0) translateY(8px);
  width: min(560px, 92vw);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.1rem;
}
.nav__dd[data-open="true"] .nav__dd-menu--mega { transform: translateX(0) translateY(0); }
.nav__dd-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: var(--text-dim);
}
.nav__dd-menu a small { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 1px; }
.nav__dd-menu a:hover { background: var(--gold-soft); color: var(--gold-2); }
.nav__dd-menu a::after { display: none; }

.nav__cta { flex-shrink: 0; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 11px; right: 11px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav__toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1040px) {
  .nav__links, .nav__cta.is-desktop { display: none; }
  .nav__toggle { display: block; }
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  background: rgba(10, 10, 12, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  padding: 1.6rem var(--gutter) 3rem;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
body.nav-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.mobile-menu a[aria-current="page"] { color: var(--gold-2); }
.mobile-menu .mm-group-label {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); padding: 1.4rem 0.25rem 0.4rem;
}
.mobile-menu .mm-sub { padding-left: 1.1rem; font-size: 0.95rem; color: var(--text-dim); }
.mobile-menu .btn { margin-top: 1.6rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 880px);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  isolation: isolate;
}
.hero--inner { min-height: clamp(420px, 60vh, 560px); }

/* Background layer, swap gradient for a real photo (see HTML comments). */
.hero__bg {
  position: absolute;
  inset: -4%;
  z-index: -2;
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  background-color: #08080a;
  /* Real hero photo on top; gradient scene remains as automatic fallback. */
  background-image:
    url("../img/photos/hero.jpg"),
    radial-gradient(120% 80% at 70% 10%, rgba(201,162,75,0.12), transparent 55%),
    radial-gradient(90% 70% at 15% 90%, rgba(40,44,60,0.55), transparent 60%),
    linear-gradient(180deg, #111218 0%, #0a0a0c 55%, #060608 100%);
  animation: heroZoom 18s var(--ease) forwards;
}
.hero__bg::after {
  /* subtle film-grain / vignette overlay for depth */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,8,0.85) 0%, rgba(6,6,8,0.4) 45%, rgba(6,6,8,0.15) 100%),
    linear-gradient(0deg, rgba(6,6,8,0.92) 2%, transparent 45%);
}
.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { max-width: 560px; margin-bottom: 2rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.2rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-2); line-height: 1; }
.hero__meta span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

/* Travelling light sweep, shared by media images and split scenes */
@keyframes sheen {
  0%        { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}

/* ----- Home hero animated SVG scene ----- */
.hero__art {
  position: absolute;
  right: clamp(-60px, -2vw, 0px);
  bottom: clamp(40px, 12vh, 130px);
  width: min(60%, 760px);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: artIn 1.4s var(--ease-out) 0.4s forwards;
}
@keyframes artIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero__art .wheel-spin { transform-box: fill-box; transform-origin: center; }
.hero__art .headlamp { animation: lampPulse 3.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.hero__art .particle { animation: floatUp linear infinite; }
.hero__art .sweep { animation: bodySweep 6s var(--ease) infinite; }
@keyframes lampPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes floatUp {
  0%   { transform: translateY(0); opacity: 0; }
  15%  { opacity: 0.8; }
  100% { transform: translateY(-120px); opacity: 0; }
}
@keyframes bodySweep { 0% { transform: translateX(-160px); } 55%, 100% { transform: translateX(360px); } }
@media (max-width: 760px) {
  .hero__art { left: 7%; right: auto; width: 86%; bottom: 4%; opacity: 0.4; animation: none; }
}

/* Page header for inner pages */
.page-hero { padding: calc(var(--nav-h) + clamp(3rem,7vw,5.5rem)) 0 clamp(2.5rem,5vw,4rem); position: relative; overflow: hidden; isolation: isolate; }
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background-color: #0a0a0c;
  background-repeat: no-repeat;
  background-position: center, right bottom, center, center;
  background-size: cover, 62%, cover, cover;
  /* Real banner photo (per-page via --banner) over the skyline/gradient fallback. */
  background-image:
    var(--banner, url("../img/photos/night-car.jpg")),
    url("../img/skyline.svg"),
    radial-gradient(100% 90% at 85% 0%, rgba(201,162,75,0.15), transparent 55%),
    linear-gradient(180deg, #121218, #0a0a0c);
  animation: heroZoom 14s var(--ease) forwards;
}
/* stronger scrim so the heading stays legible over a photo */
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, var(--bg) 4%, rgba(10,10,12,0.35) 50%, rgba(10,10,12,0.15) 100%), linear-gradient(90deg, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.55) 45%, rgba(8,8,10,0.2) 100%); }
.page-hero h1 { margin-bottom: 1rem; max-width: 16ch; }
.page-hero p { max-width: 60ch; }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.8rem; color: var(--muted); margin-bottom: 1.4rem; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span.sep { opacity: 0.5; }

/* ==========================================================================
   CARDS & COMPONENTS
   ========================================================================== */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.9rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
  height: 100%;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-line); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--gold-soft);
  color: var(--gold-2);
  margin-bottom: 1.3rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; margin-bottom: 1.1rem; }
.card .link-arrow { margin-top: auto; }

/* Media card (fleet / service tiles with image-zoom on hover) */
.media-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.media-card:hover { transform: translateY(-6px); border-color: var(--gold-line); box-shadow: var(--shadow); }
.media-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  /* PLACEHOLDER scene built from gold line-art SVG. Swap for a real <img>/photo. */
  background-color: #0e0e13;
  background-repeat: no-repeat;
  background-position: center 64%, center, center;
  background-size: 84%, cover, cover;
  background-image:
    url("../img/sedan.svg"),
    radial-gradient(90% 120% at 70% 18%, rgba(201,162,75,0.16), transparent 60%),
    linear-gradient(160deg, #1e2029, #0b0b0f);
  transition: background-size 0.6s var(--ease);
}
.media-card__img[data-label*="SUV"] { background-image:
    url("../img/suv.svg"),
    radial-gradient(90% 120% at 70% 18%, rgba(201,162,75,0.16), transparent 60%),
    linear-gradient(160deg, #1e2029, #0b0b0f); }
.media-card:hover .media-card__img { background-size: 92%, cover, cover; }

/* Real photo layer. Sits above the SVG fallback; removed automatically if the
   file is missing (onerror), revealing the line-art scene beneath. */
.slot-photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.media-card:hover .slot-photo { transform: scale(1.06); }
/* When a real photo is present, retire the placeholder sweep + caption.
   If the photo file is ever missing (onerror removes the img), they return
   automatically as a lively fallback over the SVG scene. */
.media-card__img:has(.slot-photo)::before,
.media-card__img:has(.slot-photo)::after,
.split__media:has(.slot-photo)::before,
.split__media:has(.slot-photo)::after { content: none; }

/* travelling light sweep keeps the scene alive */
.media-card__img::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,0.07) 47%, rgba(230,200,120,0.16) 50%, rgba(255,255,255,0.07) 53%, transparent 68%);
  transform: translateX(-130%);
  animation: sheen 7s var(--ease) infinite;
}
.media-card__img::after {
  content: attr(data-label);
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem 1rem 0.6rem; text-align: right;
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(236,234,227,0.45);
  background: linear-gradient(0deg, rgba(8,8,10,0.8), transparent);
}
.media-card__img > span.badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(10,10,12,0.7);
  border: 1px solid var(--gold-line);
  color: var(--gold-2);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.4rem 0.7rem; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.media-card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.media-card__body h3 { margin-bottom: 0.5rem; }
.media-card__body p { font-size: 0.93rem; }
.media-card__specs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.1rem 0 1.3rem;
}
.spec {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.76rem; color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem; border-radius: 100px;
}
.spec svg { width: 14px; height: 14px; color: var(--gold-2); }
.media-card__foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.2rem; border-top: 1px solid var(--line);
}
.price { font-family: var(--serif); font-size: 1.45rem; color: var(--gold-2); }
.price small { font-family: var(--sans); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }

/* Feature list with check icons */
.feature-list { display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text-dim); }
.feature-list svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold-2); margin-top: 2px; }
.feature-list b { color: var(--text); font-weight: 600; }

/* Numbered steps */
.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.step { display: flex; gap: 1.2rem; }
.step__num {
  counter-increment: step;
  flex-shrink: 0;
  width: 46px; height: 46px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); color: var(--gold-2); font-size: 1.15rem;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.93rem; }

/* Split / two-column feature block */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  /* PLACEHOLDER dusk-road scene (gold line-art SVG). Swap for a real photo. */
  background-color: #0c0c11;
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  background-image:
    url("../img/road.svg"),
    linear-gradient(155deg, #1a1c26, #0a0a0e);
}
/* skyline scenes for area / city contexts */
.split__media[data-label*="skyline"],
.split__media[data-label*="Phoenix"],
.split__media[data-label*="Venue"] {
  background-position: center bottom, center, center;
  background-size: 118%, cover, cover;
  background-image:
    url("../img/skyline.svg"),
    radial-gradient(100% 85% at 50% 100%, rgba(201,162,75,0.20), transparent 60%),
    linear-gradient(180deg, #101018, #0a0a0e);
}
.split__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,0.05) 48%, rgba(230,200,120,0.13) 50%, rgba(255,255,255,0.05) 52%, transparent 66%);
  transform: translateX(-130%);
  animation: sheen 8.5s var(--ease) infinite;
}
.split__media[data-label]::after {
  content: attr(data-label);
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem 1.1rem 0.7rem; text-align: right;
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(236,234,227,0.4);
  background: linear-gradient(0deg, rgba(8,8,10,0.78), transparent);
}
.split__media.tall { aspect-ratio: 3 / 4; }

/* Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.6rem 1rem; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.9rem); color: var(--gold-2); line-height: 1; }
.stat span { display: block; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.6rem; }

/* Testimonials */
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem 1.9rem;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.quote:hover { transform: translateY(-5px); border-color: var(--gold-line); }
.quote__stars { display: flex; gap: 3px; color: var(--gold-2); margin-bottom: 1rem; }
.quote__stars svg { width: 17px; height: 17px; }
.quote blockquote { font-family: var(--serif); font-size: 1.15rem; line-height: 1.55; color: var(--text); margin-bottom: 1.3rem; }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: 0.8rem; }
.quote__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #1a1408; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1rem;
}
.quote cite { font-style: normal; }
.quote cite b { display: block; color: var(--text); font-weight: 600; font-size: 0.95rem; }
.quote cite span { font-size: 0.8rem; color: var(--muted); }

/* Accordion (FAQ) */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item button {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0.25rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: 1.15rem; color: var(--text);
  transition: color 0.25s var(--ease);
}
.acc-item button:hover { color: var(--gold-2); }
.acc-item button svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold-2); transition: transform 0.35s var(--ease); }
.acc-item[data-open="true"] button svg { transform: rotate(45deg); }
.acc-item__panel { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.acc-item__panel p { padding: 0 0.25rem 1.4rem; font-size: 0.95rem; }

/* Pricing table */
.rate-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--r-md); }
.rate-table th, .rate-table td { padding: 1.1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line); }
.rate-table thead th {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-2); background: var(--surface); font-weight: 600;
}
.rate-table tbody tr { background: var(--surface); transition: background 0.25s var(--ease); }
.rate-table tbody tr:hover { background: var(--surface-2); }
.rate-table td:first-child { font-family: var(--serif); font-size: 1.05rem; color: var(--text); }
.rate-table td .muted { color: var(--muted); font-size: 0.82rem; }
.rate-table .rate { color: var(--gold-2); font-weight: 600; }
@media (max-width: 620px) {
  .rate-table thead { display: none; }
  .rate-table, .rate-table tbody, .rate-table tr, .rate-table td { display: block; width: 100%; }
  .rate-table tr { margin-bottom: 1rem; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
  .rate-table td { border: 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; }
  .rate-table td:last-child { border-bottom: 0; }
  .rate-table td::before { content: attr(data-label); color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .rate-table td:first-child::before { content: ""; }
}

/* Pill list / chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  font-size: 0.85rem; color: var(--text-dim);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.chip:hover { border-color: var(--gold-line); color: var(--gold-2); transform: translateY(-2px); }
.chip svg { width: 15px; height: 15px; color: var(--gold-2); }

/* CTA band */
.cta-band {
  position: relative;
  background:
    radial-gradient(120% 140% at 80% 0%, rgba(201,162,75,0.16), transparent 55%),
    linear-gradient(180deg, var(--bg-3), var(--bg));
  border-block: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
/* drifting gold aura keeps the band from feeling static */
.cta-band::before {
  content: ""; position: absolute; inset: -40% -10% auto -10%; height: 120%;
  background: radial-gradient(40% 60% at 50% 0%, rgba(201,162,75,0.22), transparent 70%);
  animation: auraDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 52ch; margin: 0 auto 2rem; }
@keyframes auraDrift {
  0%   { transform: translateX(-12%) translateY(-4%); opacity: 0.7; }
  100% { transform: translateX(12%) translateY(4%); opacity: 1; }
}

/* Contact info rows */
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--gold-soft); color: var(--gold-2); display: grid; place-items: center; }
.info-row__icon svg { width: 21px; height: 21px; }
.info-row b { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; font-weight: 600; }
.info-row a, .info-row span { color: var(--text); font-size: 1.02rem; }
.info-row a:hover { color: var(--gold-2); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field.col-span { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .field.col-span { grid-column: auto; } }
.field label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.field label .req { color: var(--gold-2); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A24B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 18px; padding-right: 2.6rem; }

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }
.form-status {
  display: none;
  margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: var(--r-sm);
  font-size: 0.92rem;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(80,170,110,0.12); border: 1px solid rgba(80,170,110,0.4); color: #9fe3b6; }
.form-status.error { background: rgba(200,80,80,0.12); border: 1px solid rgba(200,80,80,0.4); color: #f0a8a8; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; margin-bottom: 1.4rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.9rem; color: var(--text-dim); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--gold-2); }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; width: 17px; height: 17px; color: var(--gold-2); margin-top: 3px; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-dim);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-2); }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Hero content entrance */
.hero__content > * { opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.15s; }
.hero__content > *:nth-child(2) { animation-delay: 0.30s; }
.hero__content > *:nth-child(3) { animation-delay: 0.45s; }
.hero__content > *:nth-child(4) { animation-delay: 0.60s; }
.hero__content > *:nth-child(5) { animation-delay: 0.75s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.utility-text { color: var(--text-dim); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.8rem; } .mt-2 { margin-top: 1.6rem; } .mt-3 { margin-top: 2.4rem; }
.mb-0 { margin-bottom: 0; }
.maxw-prose { max-width: 65ch; }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__bg, .page-hero__bg { animation: none; transform: none; inset: 0; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__content > * { opacity: 1 !important; animation: none !important; }
  .hero__art { opacity: 1 !important; animation: none !important; transform: none !important; }
  .media-card__img::before, .split__media::before, .hero__art .sweep, .cta-band::before { display: none !important; }
  .hero__art .particle { display: none !important; }
}

/* ==========================================================================
   STICKY MOBILE CALL / BOOK BAR  (conversion aid, phones only)
   ========================================================================== */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-cta__btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 1rem; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .mobile-cta__btn svg { width: 18px; height: 18px; }
  .mobile-cta__call { color: var(--text); border-right: 1px solid var(--line); }
  .mobile-cta__book { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1408; }
  /* keep page content & footer clear of the fixed bar */
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0)); }
  /* the bar sits above the page but below the open mobile menu (z-99) */
}

/* ==========================================================================
   MOBILE HERO IMAGE  (portrait crop so the vehicle isn't side-cropped)
   ========================================================================== */
@media (max-width: 760px) {
  .hero__bg {
    background-image:
      url("../img/photos/hero-mobile.jpg"),
      radial-gradient(120% 80% at 70% 10%, rgba(201,162,75,0.12), transparent 55%),
      radial-gradient(90% 70% at 15% 90%, rgba(40,44,60,0.55), transparent 60%),
      linear-gradient(180deg, #111218 0%, #0a0a0c 55%, #060608 100%);
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
  }
}
