/* ═══════════════════════════════════════════════════════════════
   JB Executive Concierge Services
   Built to the approved landing-page comp (see design-reference.png)
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  /* Palette — pulled off the approved comp */
  --ink:          #050505;   /* page black */
  --ink-raised:   #0c0a08;   /* card / panel black */
  --ink-line:     #191512;   /* dark hairline */
  --gold:         #e0b357;   /* primary gold */
  --gold-bright:  #f4d691;   /* highlight gold */
  --gold-deep:    #a8752c;   /* shadow gold */
  --bone:         #f6f3ec;   /* headline white */
  --muted:        #b0a89a;   /* body text */
  --muted-dim:    #7d766b;   /* captions */

  --hairline:     color-mix(in srgb, var(--gold) 26%, transparent);
  --hairline-dim: color-mix(in srgb, var(--gold) 14%, transparent);

  /* Type */
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --roman:   "Marcellus", Georgia, serif;   /* inscriptional caps */
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Metrics */
  --shell: 1440px;
  --gutter: clamp(1.15rem, 4vw, 3.25rem);
  --bar-h: 78px;

  /* Motion signature — one weighted "settle" curve for entrances/hovers,
     one decisive "wipe" curve for reveals that should read as drawn/cut
     rather than eased. Reused everywhere so the whole site moves the
     same way instead of every element inventing its own timing. */
  --ease-lux:     cubic-bezier(.22, .7, .25, 1);
  --ease-lux-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--bar-h); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.14; color: var(--bone); }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute; left: 50%; top: -100px; z-index: 200;
  transform: translateX(-50%);
  padding: .7rem 1.4rem;
  background: var(--gold); color: #120d05;
  font: 500 .78rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
  transition: top .18s ease;
}
.skip-link:focus { top: .6rem; }

/* Shared line-icon styling — every icon in the comp is a gold outline */
.ico {
  width: 1.05em; height: 1.05em;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}
.ico--lg { width: 1.9rem; height: 1.9rem; stroke-width: 1.25; }

/* ═══ MASTHEAD ═══════════════════════════════════════════════ */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ink) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.masthead.is-stuck {
  background: color-mix(in srgb, var(--ink) 96%, transparent);
  border-bottom-color: var(--hairline-dim);
}
.masthead__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: .85rem var(--gutter);
  min-height: var(--bar-h);
  display: flex; align-items: center; gap: 1.5rem;
}

/* ── Brand lockup ── */
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__mark { width: 42px; height: 50px; }
.brand__mark--lg { width: 56px; height: 66px; }

.brand__type { display: flex; align-items: center; gap: .62rem; }
.brand__initials {
  font-family: var(--roman);
  font-size: 1.85rem; line-height: 1;
  color: var(--gold);
  letter-spacing: .01em;
}
.brand__rule { width: 1px; align-self: stretch; background: var(--hairline); }
.brand__words {
  display: flex; flex-direction: column; gap: .12em;
  font-family: var(--roman);
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}
.brand__line1 { font-size: .93rem; letter-spacing: .17em; }
.brand__line2 { font-size: .58rem; letter-spacing: .155em; color: var(--muted); }

/* ── Navigation ── */
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__list { display: flex; align-items: center; gap: clamp(.9rem, 1.9vw, 1.85rem); }
.nav__link {
  position: relative;
  font-size: .74rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted);
  padding-block: .45rem;
  transition: color .2s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .32s var(--ease-lux);
}
.nav__link:hover { color: var(--bone); }
.nav__link.is-current { color: var(--gold); }
.nav__link.is-current::after, .nav__link:hover::after { transform: scaleX(1); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .82rem 1.5rem;
  font-family: var(--sans);
  font-size: .76rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn--ghost  { border-color: var(--hairline); color: var(--gold); }
.btn--ghost:hover { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 10%, transparent); }

.btn--solid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 42%, var(--gold-deep));
  color: #14100a; font-weight: 600;
}
.btn--solid:hover { transform: translateY(-2px); }
/* Gold gradient shimmer — a single pass of light on hover, not an idle
   loop. Blend mode keeps it a glint rather than a flat white bar. */
.btn--solid::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.65) 48%, transparent 66%);
  transform: translateX(-130%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.btn--solid:hover::before { animation: btnShimmer .85s var(--ease-lux-out); }
@keyframes btnShimmer { to { transform: translateX(130%); } }

.btn--outline { border-color: var(--hairline); color: var(--bone); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline .ico { color: var(--gold); }

.btn--block { width: 100%; padding-block: 1rem; }
.btn__arrow { transition: transform .3s var(--ease-lux); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ── Hamburger (mobile) ── */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  padding: 0; background: none;
  border: 1px solid var(--hairline);
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span {
  display: block; width: 19px; height: 1.5px; background: var(--gold);
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══ PHOTO SLOTS ════════════════════════════════════════════
   Each slot is a styled placeholder with a real <img> laid over
   it. If the file is missing, site.js drops the <img> and the
   placeholder shows through — no broken-image icons.

   Photo paths live in the HTML, so they are relative to
   index.html. (They cannot live in this file: a url() inside a
   custom property resolves against the *stylesheet*, which
   silently sends every path looking in /assets/css/.)
   ═══════════════════════════════════════════════════════════ */
.slot {
  position: relative;
  overflow: hidden;
  background-color: #0a0907;
  background-image:
    radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--gold) 9%, transparent), transparent 62%),
    repeating-linear-gradient(135deg, #0f0d0a 0 14px, #0b0a08 14px 28px);
  background-size: cover, auto;
  background-position: center;
  background-repeat: no-repeat, repeat;
}
.slot__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Cut-out vehicle PNGs sit *on* the black rather than filling a frame. */
.slot--cut {
  background-color: transparent;
  background-image:
    radial-gradient(58% 70% at 50% 62%, color-mix(in srgb, var(--gold) 10%, transparent), transparent 70%);
  background-size: cover;
}
.slot--cut .slot__img { object-fit: contain; }

/* Once a photo is in, its filename label is redundant. */
.slot:has(.slot__img) .slot__tag { display: none; }
.slot__tag {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  padding: .3rem .55rem;
  font: 400 .58rem/1.3 ui-monospace, "SFMono-Regular", Menlo, monospace;
  letter-spacing: .04em; text-align: center;
  color: var(--muted-dim);
  border: 1px dashed var(--hairline-dim);
  background: rgba(0,0,0,.42);
  pointer-events: none;
  white-space: nowrap;
}
html[data-guides="off"] .slot__tag,
html:not([data-guides]) .slot__tag { display: none; }

/* ═══ HERO ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--hairline-dim);
  isolation: isolate;
  /* Required for the ambient drift / scroll-settle below: both scale the
     photo beyond the hero's own box, and must never be allowed to widen
     the page. */
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
/* Ambient drift — a very slow, barely-there Ken Burns push on the photo
   itself, always on. Transform only, so it's effectively free even on a
   phone, and it never runs during the entrance (transform-only + the
   .reveal spans control opacity) so nothing competes with the headline. */
.hero__media .slot__img {
  animation: heroDrift 34s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  from { transform: scale(1); }
  to   { transform: scale(1.045); }
}
/* Scroll-settle — the photo eases from a slightly tighter, lifted frame
   to its resting position as the hero scrolls through the viewport.
   Progressive enhancement only: browsers without scroll-driven-animation
   support just keep the static (still very much alive, thanks to the
   drift above) hero. */
@supports (animation-timeline: view()) {
  .hero__media {
    animation: heroSettle linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
}
@keyframes heroSettle {
  from { transform: scale(1.08) translateY(-2.5%); }
  to   { transform: scale(1.08) translateY(2.5%); }
}
/* Lighter over the left (so the Escalade still reads) but reaching further
   right, because the gold headline runs over the lit jet fuselage. */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg,
      var(--ink) 4%,
      color-mix(in srgb, var(--ink) 72%, transparent) 32%,
      color-mix(in srgb, var(--ink) 46%, transparent) 56%,
      transparent 80%),
    linear-gradient(0deg, var(--ink) 1%, transparent 28%);
}
.hero__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.95rem, 5.4vw, 4.15rem);
  line-height: 1.06;
  /* Big bold caps read tighter, not wider, the larger they get — a small
     negative tracking here is optical correction, not a style change. */
  letter-spacing: -.008em;
  text-transform: uppercase;
  /* drop-shadow, not text-shadow: it also works on the gradient-clipped
     gold line, and keeps the type readable whatever photo sits behind it. */
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, .7));
}
/* Shrink each line to its own glyph width (not the full column) so the
   line-mask wipe below tracks the actual text instead of sweeping across
   empty box. */
.hero__title span { display: block; width: fit-content; max-width: 100%; }
.hero__title--gold {
  background: linear-gradient(96deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
/* Headline entrance: a line-mask wipe reads more couture than a fade-up.
   This supersedes the generic .reveal (opacity + translateY, used
   elsewhere in the hero) for the three title lines specifically — the
   clip-path *is* the reveal here, so opacity/transform stay neutral. */
.hero__title .reveal {
  opacity: 1;
  transform: none;
  clip-path: inset(0 101% 0 0);
  animation: titleWipe .95s var(--ease-lux-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes titleWipe {
  /* -3%, not 0: leaves room for the drop-shadow filter to bleed past the
     glyph edge instead of getting clipped along with the mask. */
  to { clip-path: inset(0 -3% 0 0); }
}
.hero__lede {
  margin-top: clamp(1.4rem, 3vw, 2.1rem);
  font-family: var(--display);
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  color: var(--bone);
  letter-spacing: .01em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .75);
}
.hero__copy {
  margin-top: .85rem;
  max-width: 42ch;
  font-size: clamp(.92rem, 1.1vw, 1rem);
  color: var(--muted);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
}
.hero__actions {
  margin-top: clamp(1.8rem, 3.4vw, 2.6rem);
  display: flex; flex-wrap: wrap; gap: .85rem;
}

/* ═══ ASSURANCE BAR ══════════════════════════════════════════ */
.assurances {
  border-bottom: 1px solid var(--hairline-dim);
  background: linear-gradient(180deg, #080706, var(--ink));
}
.assurances__list {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 1.5rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.assurance {
  display: flex; align-items: center; gap: .78rem;
  padding-inline: clamp(.5rem, 1.4vw, 1.3rem);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1.42;
  color: var(--bone);
}
.assurance + .assurance { border-left: 1px solid var(--hairline-dim); }
.assurance .ico { color: var(--gold); }

/* ═══ SECTION SCAFFOLD ═══════════════════════════════════════ */
.section {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(3.2rem, 6.5vw, 5.4rem) var(--gutter);
}

/* Rule-flanked title — the comp's recurring section device */
.rule-title {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-family: var(--roman);
  font-size: clamp(1.28rem, 2.5vw, 1.95rem);
  letter-spacing: .17em;
  text-transform: uppercase;
  text-align: center;
  color: var(--bone);
}
.rule-title::before, .rule-title::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline) 45%, var(--hairline));
  /* Draw outward from the title on entry rather than just appearing. */
  transform: scaleX(0);
  transition: transform .9s var(--ease-lux-out) .1s;
}
.rule-title::before { transform-origin: right center; }
.rule-title::after  { background: linear-gradient(270deg, transparent, var(--hairline) 45%, var(--hairline)); transform-origin: left center; }
.rule-title.is-in::before, .rule-title.is-in::after { transform: scaleX(1); }
.no-js .rule-title::before, .no-js .rule-title::after { transform: scaleX(1); }
.rule-title > span { flex: 0 1 auto; text-wrap: balance; }

/* ═══ SERVICES ═══════════════════════════════════════════════ */
/* Explicit column counts, not auto-fit: six services must break 6 → 3 → 2 → 1
   so a row is never left with a single orphaned card. */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(.85rem, 1.4vw, 1.15rem);
}
.svc {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ink-raised);
  border: 1px solid var(--hairline-dim);
  transition: border-color .5s var(--ease-lux), transform .5s var(--ease-lux), box-shadow .5s var(--ease-lux);
}
/* Weighted, not twitchy: a slower lift with a soft gold-tinted shadow
   underneath, plus the hairline warming toward full gold rather than
   just toggling between two near-identical dim values. */
.svc:hover {
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  transform: translateY(-4px);
  box-shadow:
    0 26px 46px -30px color-mix(in srgb, var(--gold) 38%, transparent),
    0 12px 26px -20px rgba(0, 0, 0, .55);
}
.svc__media {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--gold);
}
.svc__media .slot__tag { top: 42%; }
.svc__media .slot__img { transition: transform .8s var(--ease-lux); }
.svc:hover .svc__media .slot__img { transform: scale(1.06); }

/* Signature device: gold medallion straddling the media's bottom edge.
   Flex sibling + half-height negative margin — no magic numbers, and it
   stays centred on the border at every card width. */
.svc__medallion {
  --medallion: 46px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  align-self: center;
  margin-top: calc(var(--medallion) / -2);
  width: var(--medallion); height: var(--medallion);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink-raised);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.35rem;
}
/* The medallion "fills" as an actual disc of gold scaling up from its
   own centre — reliably smooth (a transform), unlike animating between
   two gradients, and reads as the badge filling rather than recolouring. */
.svc__medallion::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep));
  transform: scale(0);
  transition: transform .55s var(--ease-lux);
}
.svc__medallion .ico { position: relative; z-index: 1; transition: color .35s var(--ease-lux) .05s; }
.svc:hover .svc__medallion::before { transform: scale(1); }
.svc:hover .svc__medallion .ico { color: #14100a; }
.svc__title {
  margin: .95rem 1rem 0;
  font-family: var(--roman);
  font-size: .98rem;
  letter-spacing: .075em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.34;
  text-wrap: balance;
}
.svc .ticks { margin: 1.05rem 1rem 1.5rem; }

/* ── Tick lists ── */
.ticks { display: grid; gap: .52rem; }
.ticks li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--muted);
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: .34em;
  width: .72rem; height: .44rem;
  border-left: 1.6px solid var(--gold);
  border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}
.ticks--round li { padding-left: 1.7rem; }
.ticks--round li::before {
  left: 0; top: .18em;
  width: 1.05rem; height: 1.05rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: none;
}
.ticks--round li::after {
  content: "";
  position: absolute; left: .27rem; top: .45em;
  width: .48rem; height: .27rem;
  border-left: 1.4px solid var(--gold);
  border-bottom: 1.4px solid var(--gold);
  transform: rotate(-45deg);
}

/* ═══ CONCIERGE ══════════════════════════════════════════════ */
.concierge__frame {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.18fr) minmax(0, 1.3fr);
  gap: clamp(1.1rem, 2vw, 1.7rem);
  padding: clamp(1.1rem, 1.8vw, 1.5rem);
  border: 1px solid var(--hairline-dim);
  background: var(--ink-raised);
}
.concierge__bell { min-height: 260px; }
.concierge__bell .slot__img,
.concierge__gallery .slot__img { transition: transform .8s var(--ease-lux); }
.concierge__bell:hover .slot__img,
.concierge__gallery .slot:hover .slot__img { transform: scale(1.05); }
.concierge__body { padding: clamp(.6rem, 1.4vw, 1.4rem) .4rem; }
.concierge__title {
  font-family: var(--roman);
  font-size: clamp(1.15rem, 1.85vw, 1.5rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.28;
  text-wrap: balance;
}
.concierge__kicker {
  margin-top: .55rem;
  font-family: var(--roman);
  font-size: clamp(.95rem, 1.35vw, 1.13rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.concierge__copy { margin-top: 1rem; font-size: .87rem; max-width: 46ch; }
.concierge__body .ticks { margin-top: 1.5rem; }
.ticks--two { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.1rem; }

.concierge__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(.5rem, .9vw, .8rem);
}
.concierge__gallery .slot {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hairline-dim);
}
.concierge__gallery .slot__tag { font-size: .5rem; }
.concierge__gallery .slot.is-empty { display: none; }

/* ═══ FLEET ══════════════════════════════════════════════════ */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: end;
}
.vehicle { text-align: center; }
.vehicle__media {
  position: relative;
  aspect-ratio: 16 / 10;
  transition: transform .4s var(--ease-lux);
}
.vehicle:hover .vehicle__media { transform: translateY(-6px) scale(1.03); }
/* A light sweep across the chrome as each vehicle settles into place.
   Overlay blend means it only catches the vehicle's own highlights —
   the black backdrop stays black instead of flashing a grey bar. */
.vehicle__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.6) 49%, rgba(244,214,145,.7) 52%, rgba(255,255,255,.6) 55%, transparent 62%);
  transform: translateX(-140%);
  mix-blend-mode: overlay;
  opacity: 0;
  pointer-events: none;
}
.vehicle.is-in .vehicle__media::after {
  animation: fleetSweep 1.3s var(--ease-lux-out) forwards;
  animation-delay: calc(var(--d, 0s) + .45s);
}
@keyframes fleetSweep {
  0%   { transform: translateX(-140%); opacity: 0; }
  15%  { opacity: 1; }
  55%  { opacity: 1; }
  100% { transform: translateX(140%); opacity: 0; }
}
.vehicle__name {
  margin-top: .9rem;
  font-family: var(--roman);
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.vehicle__note {
  margin-top: .45rem;
  font-size: .77rem;
  line-height: 1.55;
  color: var(--muted-dim);
}

/* ═══ ABOUT ══════════════════════════════════════════════════ */
.about {
  border-top: 1px solid var(--hairline-dim);
  border-bottom: 1px solid var(--hairline-dim);
  background: linear-gradient(180deg, #080706, var(--ink));
}
.about__inner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: start;
}
.about__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  line-height: 1.14;
  text-wrap: balance;
}
.about__text p + p { margin-top: 1.05rem; }
.about__text { font-size: .95rem; max-width: 62ch; }
.about__sign {
  margin-top: 1.5rem !important;
  font-family: var(--roman);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══ QUOTE ══════════════════════════════════════════════════ */
.quote__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: start;
}
.quote__title {
  font-family: var(--roman);
  font-size: clamp(1.5rem, 2.9vw, 2.15rem);
  letter-spacing: .13em;
  text-transform: uppercase;
  text-wrap: balance;
}
.quote__copy { margin-top: 1.1rem; font-size: .95rem; max-width: 44ch; }
.quote__copy a { color: var(--gold); border-bottom: 1px solid var(--hairline); }
.quote__copy a:hover { border-bottom-color: var(--gold); }
.quote__perks { margin-top: 1.6rem; display: grid; gap: .7rem; }
.quote__perks li {
  position: relative; padding-left: 1.5rem;
  font-size: .82rem; color: var(--muted);
}
.quote__perks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .62rem; height: 1px; background: var(--gold);
}

.form {
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
  border: 1px solid var(--hairline-dim);
  background: var(--ink-raised);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field { display: grid; gap: .38rem; margin: 0 0 .9rem; }
.field label {
  font-size: .66rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-dim);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .72rem .8rem;
  font: 400 .9rem/1.5 var(--sans);
  color: var(--bone);
  background: #070605;
  border: 1px solid var(--ink-line);
  border-radius: 0;
  transition: border-color .2s ease;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--hairline-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: #4d4840; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}
.field select option { background: #0d0b09; }
.field :is(input, select, textarea):user-invalid { border-color: #b4534a; }

.form__status {
  margin-top: .9rem;
  min-height: 1.3em;
  font-size: .8rem;
  color: var(--gold);
}
.form__status[data-state="error"] { color: #d98079; }

/* ═══ COLOPHON / CONTACT ═════════════════════════════════════ */
.colophon {
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, #080706, #030303);
}
.colophon__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(2.2rem, 4vw, 3.2rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) minmax(0, .95fr) auto;
  gap: clamp(1.5rem, 3vw, 2.8rem);
  align-items: start;
}
.colophon__brand { display: grid; justify-items: start; gap: .1rem; }
.colophon__brand .brand__type { margin-top: .55rem; }
.colophon__tagline {
  margin-top: .9rem;
  font-size: .74rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .05em;
  color: var(--gold);
}
.colophon__head {
  font-family: var(--roman);
  font-size: 1.02rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.colophon__copy { font-size: .84rem; line-height: 1.7; }

.contacts { display: grid; gap: .72rem; }
.contacts li { display: flex; align-items: center; gap: .65rem; font-size: .88rem; }
.contacts .ico { color: var(--gold); font-size: 1rem; }
.contacts a { color: var(--bone); transition: color .2s ease; }
.contacts a:hover { color: var(--gold); }
.contacts__role { color: var(--muted-dim); font-size: .8em; }

.social { display: flex; gap: .6rem; margin-top: 1.15rem; }
.social a {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--hairline-dim);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.social a:hover { background: var(--gold); color: #14100a; border-color: var(--gold); }

.colophon__badge {
  display: grid; justify-items: center; gap: .3rem;
  padding: 1.15rem 1.6rem;
  border: 1px solid var(--hairline);
  color: var(--gold);
  text-align: center;
}
.badge__big {
  font-family: var(--roman);
  font-size: 1.85rem; line-height: 1;
  letter-spacing: .04em;
}
.badge__small {
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.55;
  color: var(--muted);
}

/* ═══ RIBBON ═════════════════════════════════════════════════ */
.ribbon {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: .5rem 1.1rem;
  padding: .82rem var(--gutter);
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 32%, var(--gold-bright) 50%, var(--gold) 68%, var(--gold-deep));
  color: #171107;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  text-align: center;
}
.ribbon__sep { opacity: .55; }

/* ═══ MOTION ═════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .85s var(--ease-lux) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { opacity: 1; transform: none; } }

.reveal-up { opacity: 0; transform: translateY(22px); }
.reveal-up.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease-lux) var(--d, 0s), transform .8s var(--ease-lux) var(--d, 0s);
}
.no-js .reveal-up, .no-js .reveal { opacity: 1; transform: none; animation: none; }
/* .hero__title .reveal matches .reveal too, but at equal specificity this
   still loses the cascade to the rule above for `animation` (killing the
   wipe, correctly) — it says nothing about clip-path though, so without
   this the headline would be stuck invisible for no-JS visitors. */
.no-js .hero__title .reveal { clip-path: none; }

/* Ambient grain — a fixed, non-scrolling, non-animated noise tile that
   sits above everything at very low opacity. Adds a touch of "film" to
   large flat black areas; never intercepts clicks. Tiny tile + no
   animation keeps it effectively free, including on a phone. */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px 170px;
  opacity: .5;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal-up { opacity: 1 !important; transform: none !important; }
  /* The generic override above zeroes durations, which is enough for
     everything driven by opacity/transform — but these two also touch
     clip-path / rely on a scroll-timeline, so they get an explicit,
     unambiguous resting state rather than trusting a .001ms animation
     to land cleanly. */
  .hero__title .reveal { clip-path: none !important; }
  .hero__media, .hero__media .slot__img { animation: none !important; transform: none !important; }
  .btn--solid:hover::before { animation: none !important; }
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .assurances__list { grid-template-columns: repeat(3, 1fr); row-gap: 1.3rem; }
  .assurance:nth-child(3n + 1) { border-left: 0; }

  .svc-grid   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fleet__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .concierge__frame { grid-template-columns: minmax(160px, .8fr) minmax(260px, 1.2fr); }
  .concierge__gallery { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .masthead__inner { gap: 1rem; }
  .hamburger { display: flex; }

  .nav {
    position: fixed; inset: var(--bar-h) 0 auto;
    display: grid; gap: 0;
    padding: 0 var(--gutter);
    max-height: 0;
    overflow: hidden;
    background: color-mix(in srgb, var(--ink) 98%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .38s ease, border-color .38s ease;
  }
  .nav.is-open {
    max-height: 26rem;
    padding-block: 1rem 1.6rem;
    border-bottom-color: var(--hairline-dim);
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: .95rem 0;
    font-size: .82rem;
    border-bottom: 1px solid var(--ink-line);
  }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.2rem; width: 100%; }

  /* A wide photo crops hard on a tall phone, so the scrim has to be much
     lighter here or the picture disappears. Text legibility is carried by
     the drop-shadow on .hero__title instead. */
  .hero__scrim {
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--ink) 42%, transparent) 0%,
      color-mix(in srgb, var(--ink) 58%, transparent) 40%,
      color-mix(in srgb, var(--ink) 88%, transparent) 78%,
      var(--ink) 100%);
  }
  /* Favour the Escalade over the empty sky in the narrow crop. */
  .hero__media .slot__img { object-position: 38% center; }
  .about__inner, .quote__inner { grid-template-columns: 1fr; }
  .concierge__frame { grid-template-columns: 1fr; }
  .concierge__bell { min-height: 190px; }
}

@media (max-width: 620px) {
  :root { --bar-h: 68px; }
  .brand__mark { width: 34px; height: 41px; }
  .brand__initials { font-size: 1.45rem; }
  .brand__line1 { font-size: .78rem; }
  .brand__line2 { font-size: .5rem; }

  .assurances__list { grid-template-columns: repeat(2, 1fr); }
  .assurance:nth-child(3n + 1) { border-left: 1px solid var(--hairline-dim); }
  .assurance:nth-child(odd) { border-left: 0; }
  .assurance { font-size: .68rem; gap: .6rem; }

  /* Wide letterspaced caps don't fit a phone — shrink and let them wrap. */
  .rule-title { font-size: 1.02rem; letter-spacing: .11em; gap: .8rem; }
  .concierge__gallery { grid-template-columns: repeat(2, 1fr); }

  .hero__actions .btn { flex: 1 1 100%; }
  .svc-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .svc__title { font-size: .86rem; }
  .ticks li { font-size: .74rem; }
  .ticks--two { grid-template-columns: 1fr; }

  .fleet__grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }

  .colophon__inner { grid-template-columns: 1fr; }
  .colophon__badge { justify-self: start; }
  .ribbon { font-size: .6rem; letter-spacing: .14em; }
  .ribbon__sep { display: none; }
}

@media (max-width: 400px) {
  /* One card per row needs a shallower image or the page runs forever. */
  .svc-grid, .fleet__grid { grid-template-columns: 1fr; }
  .svc__media { aspect-ratio: 21 / 9; }
  .vehicle__media { aspect-ratio: 21 / 9; }
}
