/* ============================================================
   Nashlux Limo, Landing Page
   Brand tokens locked per handoff-instructions.md
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg:        #0B0B0D;
  --color-surface:   #14141A;
  --color-surface-2: #1C1C24;
  --color-line:      #2A2A33;
  --color-text:      #F4F4F2;
  --color-muted:     #B8B8B8;
  --color-gold:      #D4A856;
  --color-gold-2:    #E7C682;
  --color-success:   #2EAE6E;
  --color-error:     #E25555;

  --font-display: "DM Serif Display", "Playfair Display", serif;
  --font-body:    "Inter", "Poppins", system-ui, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 9px;

  --gold-grad: linear-gradient(135deg, #E7C682 0%, #D4A856 45%, #B98B3C 100%);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--alt { background: var(--color-surface); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  display: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  display: none;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; margin: 0; }

.h2 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  letter-spacing: 0.005em;
  margin-bottom: 0.4em;
  text-wrap: balance;
}
.h2 .gold { color: var(--color-gold); }

.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { text-align: center; max-width: 760px; margin-inline: auto; }
.section-head .lede {
  color: var(--color-muted);
  font-size: 1.06rem;
  max-width: 60ch;
  margin: 0;
}
.section-head--center .lede { margin-inline: auto; }

.gold-rule {
  display: none;
}
.section-head--center .gold-rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6em;
  font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.12em;
  padding: 1.05em 1.9em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .15s var(--ease), background .15s var(--ease), color .15s var(--ease), box-shadow .15s var(--ease), border-color .15s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-grad);
  color: #1a1407;
  box-shadow: 0 8px 26px -10px rgba(212,168,86,.6);
  position: relative; overflow: hidden;
}
.btn--gold::after {
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); opacity: 0; pointer-events: none;
}
.btn--gold:hover::after { animation: btnSheen .85s var(--ease); }
@keyframes btnSheen { 0% { left: -70%; opacity: 0; } 25% { opacity: .8; } 100% { left: 130%; opacity: 0; } }
.btn--gold:hover { background: var(--color-gold-2); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(212,168,86,.7); }
.btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border-color: rgba(212,168,86,.45);
}
.btn--ghost:hover { border-color: var(--color-gold); background: rgba(212,168,86,.08); transform: translateY(-2px); }
.btn--lg { padding: 1.2em 2.3em; font-size: 0.92rem; }
.btn--block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11,11,13,.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--color-line);
  padding-block: 9px;
}
.site-header__logo img { height: 48px; width: auto; transition: height .3s var(--ease); }
.site-header.is-scrolled .site-header__logo img { height: 40px; }
.site-header__right { display: flex; align-items: center; gap: 22px; }
.site-header__phone {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; letter-spacing: 0.04em; font-size: 0.95rem;
  color: var(--color-text);
}
.site-header__phone:hover { color: var(--color-gold); }
.site-header__phone svg { width: 17px; height: 17px; color: var(--color-gold); }
@media (max-width: 720px) {
  .site-header__phone span.lbl { display: none; }
  .btn--header { padding: 0.85em 1.3em; font-size: 0.78rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 96px; padding-bottom: 56px; overflow: hidden; }
/* fine film grain over the hero for a tactile, editorial feel */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .055; mix-blend-mode: soft-light;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-media {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% center;
  /* lighter treatment so the video reads through, copy stays legible via the left scrim */
  filter: grayscale(.1) saturate(1) contrast(1.02) brightness(.78);
  transform: scale(1.04);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(75% 60% at 84% 6%, rgba(212,168,86,.14), transparent 55%),
    linear-gradient(90deg, rgba(11,11,13,.9) 0%, rgba(11,11,13,.66) 32%, rgba(11,11,13,.28) 60%, rgba(11,11,13,.42) 100%),
    linear-gradient(0deg, rgba(11,11,13,.8) 1%, rgba(11,11,13,.06) 42%, rgba(11,11,13,.3) 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
/* cursor-following gold light */
.cursor-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.cursor-glow::before {
  content: ""; position: absolute; width: 460px; height: 460px;
  left: var(--mx, 50%); top: var(--my, 40%); transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,168,86,.16), rgba(212,168,86,.06) 38%, transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.cursor-glow.is-live::before { opacity: 1; }
@media (hover: none) { .cursor-glow { display: none; } }
.hero__grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero__copy { max-width: 620px; min-width: 0; }
.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
.hero h1 .gold {
  background: linear-gradient(100deg, #C0892F 0%, #D4A856 22%, #F2DCA8 44%, #D4A856 64%, #C0892F 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldSheen 7s ease-in-out infinite;
}
@keyframes goldSheen { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.hero__sub {
  color: var(--color-muted);
  font-size: 1.12rem;
  max-width: 52ch;
  margin: 0 0 1.7rem;
}
.hero__stats {
  display: grid; grid-template-columns: repeat(2, max-content);
  gap: .7em 2.2em; margin: 0 0 2rem; padding: 0; list-style: none;
}
.hero__stats li {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .95rem; font-weight: 500; letter-spacing: .01em; color: var(--color-text);
}
.hero__stats li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-gold); flex: 0 0 auto;
}
.hero__stats li::after { display: none; }
@media (max-width: 420px) { .hero__stats { grid-template-columns: 1fr; } }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* fade-up entrance */
.fade-up { opacity: 0; transform: translateY(22px); }
.hero.is-in .fade-up { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.hero.is-in .fade-up:nth-child(1) { transition-delay: .05s; }
.hero.is-in .fade-up:nth-child(2) { transition-delay: .2s; }
.hero.is-in .fade-up:nth-child(3) { transition-delay: .35s; }
.hero.is-in .fade-up:nth-child(4) { transition-delay: .5s; }
.hero.is-in .fade-up:nth-child(5) { transition-delay: .62s; }

/* ============================================================
   Quote form card (shared: hero + anchored)
   ============================================================ */
.quote-card {
  background: linear-gradient(180deg, rgba(28,28,36,.92), rgba(20,20,26,.96));
  border: 1px solid rgba(212,168,86,.32);
  border-radius: var(--radius);
  padding: clamp(18px, 1.8vw, 24px);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter: blur(6px);
  position: relative;
}
.quote-card::before {
  content: none;
}
.hero .quote-card { opacity: 0; transform: translateY(22px); }
.hero.is-in .quote-card { opacity: 1; transform: none; transition: opacity .8s var(--ease) .35s, transform .8s var(--ease) .35s; }

.quote-card__head { margin-bottom: .8rem; }
.quote-card__head h3 { font-size: 1.35rem; margin-bottom: .2rem; }
.quote-card__head h3 .gold { color: var(--color-gold); }
.quote-card__head p { color: var(--color-muted); font-size: .9rem; margin: 0; }

.cluster { margin-bottom: .6rem; }
.cluster__label {
  display: flex; align-items: center; gap: .6em;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: .5rem;
}
.cluster__label .n {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(212,168,86,.5);
  font-size: .62rem; font-weight: 700;
}

/* two-step form */
.form-steps { display: flex; align-items: center; gap: 10px; margin: 0 0 1rem; }
.form-steps__item { display: inline-flex; align-items: center; gap: .55em; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: #6c6c78; }
.form-steps__item b { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--color-line); font-size: .68rem; font-weight: 700; color: #8a8a95; transition: all .2s var(--ease); }
.form-steps__item.is-active { color: var(--color-gold); }
.form-steps__item.is-active b { border-color: transparent; color: #1a1407; background: var(--gold-grad); }
.form-steps__item.is-done b { border-color: var(--color-success); color: var(--color-success); background: transparent; }
.form-steps__bar { flex: 1; height: 1px; background: var(--color-line); }
.form-step { animation: fieldIn .3s var(--ease); }
.form-step[hidden] { display: none; }
.form-next { margin-top: .5rem; }
.form-actions { display: flex; gap: 10px; align-items: stretch; }
.form-actions .form-back { flex: 0 0 auto; padding-inline: 1.3em; font-size: .82rem; }
.form-actions .form-submit { flex: 1; }
.form-steps__item { cursor: pointer; }

.field { margin-bottom: .5rem; position: relative; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.field label, .field > .field-label {
  display: block; font-size: .75rem; font-weight: 500; color: var(--color-muted);
  margin-bottom: .22rem; letter-spacing: .02em;
}
.field label .req { color: var(--color-gold); }

.input, select.input, textarea.input {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: inherit;
  font-size: 16px; /* prevents iOS zoom */
  color-scheme: dark; /* native date/time pickers + placeholders render light on dark */
  padding: .58em .8em;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
  appearance: none;
}
.input::placeholder { color: #6c6c78; }
.input:focus, select.input:focus, textarea.input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212,168,86,.18);
  background: #0e0e12;
}
select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D4A856' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85em center;
  padding-right: 2.4em;
  cursor: pointer;
}
.input::-webkit-calendar-picker-indicator { opacity: .55; cursor: pointer; transition: opacity .15s var(--ease); }
.input:hover::-webkit-calendar-picker-indicator, .input:focus::-webkit-calendar-picker-indicator { opacity: 1; }
.field.has-error .input, .field.has-error select.input { border-color: var(--color-error); }
.field.has-error .input:focus { box-shadow: 0 0 0 3px rgba(226,85,85,.18); }
.field__err {
  font-size: .72rem; color: var(--color-error); margin-top: .3rem;
  min-height: 0; overflow: hidden; opacity: 0;
  transition: opacity .15s var(--ease);
}
.field.has-error .field__err { opacity: 1; }

/* segmented pill picker (service type) */
.segmented { display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label {
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: .8rem; font-weight: 500; color: var(--color-muted);
  padding: .5em .5em; border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  cursor: pointer; transition: all .15s var(--ease); margin: 0; line-height: 1.2;
  min-height: 40px;
}
.segmented label:hover { border-color: rgba(212,168,86,.5); color: var(--color-text); }
.segmented input:checked + label {
  border-color: var(--color-gold); color: var(--color-gold);
  background: rgba(212,168,86,.1); font-weight: 600;
}
.segmented input:focus-visible + label { box-shadow: 0 0 0 3px rgba(212,168,86,.25); }

/* conditional field reveal (\:not raises specificity above `.field label`) */
.field.field--conditional:not(.is-visible) { display: none; }
.field--conditional.is-visible { display: block; animation: fieldIn .35s var(--ease); }
@keyframes fieldIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* consent */
.consent { display: flex; gap: .7em; align-items: flex-start; margin: .1rem 0 .75rem; }
.consent input { margin-top: .2rem; width: 17px; height: 17px; accent-color: var(--color-gold); flex: 0 0 auto; }
.consent label { font-size: .72rem; color: var(--color-muted); line-height: 1.5; margin: 0; }
.consent a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 2px; }

/* honeypot, visually hidden but not display:none */
.hp-field {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.quote-card__foot-note { font-size: .72rem; color: #7d7d88; text-align: center; margin: .6rem 0 0; }
.quote-card__foot-note svg { width: 12px; height: 12px; vertical-align: -1px; color: var(--color-gold); }

/* success state */
.form-success { display: none; text-align: center; padding: 1.5rem .5rem; }
.form-success.is-on { display: block; animation: fieldIn .4s var(--ease); }
.form-success__check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  background: rgba(46,174,110,.12); border: 1px solid rgba(46,174,110,.5);
}
.form-success__check svg { width: 30px; height: 30px; color: var(--color-success); }
.form-success h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.form-success p { color: var(--color-muted); font-size: .95rem; margin: 0 auto; max-width: 36ch; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust { border-block: 1px solid var(--color-line); background: linear-gradient(180deg, #0d0d11, var(--color-bg)); }
.trust > .wrap { padding-block: clamp(22px, 3vw, 32px); }
.trust__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(14px, 2.4vw, 36px);
}
.trust__div { width: 1px; height: 30px; background: linear-gradient(180deg, transparent, rgba(212,168,86,.45) 25%, rgba(212,168,86,.45) 75%, transparent); }
.trust__item {
  display: inline-flex; align-items: center; gap: .65em;
  font-size: .93rem; font-weight: 500; color: var(--color-text); letter-spacing: .01em;
}
.trust__item svg { width: 21px; height: 21px; color: var(--color-gold); flex: 0 0 auto; }
.trust__stars { color: var(--color-gold); letter-spacing: .08em; }
.trust__rating { display: inline-flex; align-items: center; gap: .4em; }
.trust__rating b { font-family: var(--font-display); font-weight: 400; color: var(--color-gold); font-size: 1.3rem; line-height: 1; }
.trust__item--rating .trust__stars { font-size: .9rem; }
.trust__item--rating .trust__sub { color: var(--color-muted); }
.trust__award {
  display: flex; width: max-content; max-width: 92%; margin: clamp(16px, 2vw, 22px) auto 0;
  align-items: center; gap: .6em;
  border: 1px solid rgba(212,168,86,.4); background: rgba(212,168,86,.07);
  border-radius: 100px; padding: .55em 1.25em;
  font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--color-gold);
}
.trust__award svg { width: 15px; height: 15px; flex: 0 0 auto; }
@media (max-width: 720px) { .trust__div { display: none; } .trust__bar { gap: 14px 22px; } }

/* ============================================================
   Fleet
   ============================================================ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.fleet-card {
  background: linear-gradient(180deg, var(--color-surface-2), var(--color-surface));
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  position: relative; overflow: hidden;
}
.fleet-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, rgba(212,168,86,.07), transparent 60%);
  opacity: 0; transition: opacity .25s var(--ease);
}
.fleet-card:hover { transform: translateY(-5px); border-color: rgba(212,168,86,.4); box-shadow: 0 26px 50px -28px rgba(0,0,0,.9); }
.fleet-card:hover::before { opacity: 1; }
.fleet-card__img {
  height: 150px; display: grid; place-items: center; margin-bottom: 18px;
  position: relative;
}
.fleet-card__img::before {
  content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 72%; height: 16px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(212,168,86,.26), rgba(212,168,86,0) 70%);
  filter: blur(4px); opacity: 0; transition: opacity .25s var(--ease);
}
.fleet-card:hover .fleet-card__img::before { opacity: 1; }
.fleet-card__img img { max-height: 150px; width: auto; object-fit: contain; filter: drop-shadow(0 22px 22px rgba(0,0,0,.55)); }
.fleet-card__cap { display: inline-flex; align-items: center; gap: .5em; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--color-gold); margin-bottom: .55rem; }
.fleet-card h3 { font-size: 1.5rem; margin-bottom: .15rem; position: relative; display: inline-block; }
.fleet-card h3::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold-grad); transition: width .25s var(--ease); border-radius: 2px;
}
.fleet-card:hover h3::after { width: 48px; }
.fleet-card p { color: var(--color-muted); font-size: .92rem; margin: .7rem 0 0; }

/* ============================================================
   Services / occasions grid
   ============================================================ */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: clamp(12px, 1.4vw, 18px);
}

/* occasions carousel */
.svc-carousel { position: relative; }
.svc-track {
  display: flex; gap: clamp(14px, 1.6vw, 20px);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 4px 2px 8px;
}
.svc-track::-webkit-scrollbar { display: none; }
.svc-carousel .svc-tile {
  flex: 0 0 auto; width: clamp(286px, 31%, 384px); height: 432px;
  scroll-snap-align: start;
}
.svc-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(212,168,86,.5); background: rgba(11,11,13,.72);
  backdrop-filter: blur(8px); color: var(--color-gold);
  display: grid; place-items: center; cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease), opacity .25s var(--ease), border-color .15s var(--ease);
}
.svc-nav:hover { background: var(--gold-grad); color: #1a1407; border-color: transparent; }
.svc-nav svg { width: 22px; height: 22px; }
.svc-nav--prev { left: -8px; }
.svc-nav--next { right: -8px; }
.svc-nav[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 720px) { .svc-nav { display: none; } }
.svc-tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--color-line);
  display: flex; align-items: flex-end;
  cursor: pointer; text-align: left;
  background: var(--color-surface);
  padding: 0; color: var(--color-text);
}
.svc-tile--feature { grid-column: span 2; grid-row: span 2; }
.svc-tile--wide { grid-column: span 2; }
.svc-tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,11,13,.82) 0%, rgba(11,11,13,.2) 34%, transparent 60%);
  transition: background .3s var(--ease);
}
.svc-tile:hover .svc-tile__img { transform: scale(1.06); }
.svc-tile:hover::after { background: linear-gradient(0deg, rgba(11,11,13,.94) 10%, rgba(11,11,13,.66) 52%, rgba(11,11,13,.18) 100%); }
.svc-tile__body { position: relative; z-index: 1; padding: 20px 22px; width: 100%; }
.svc-tile__body h3 { font-size: 1.3rem; margin-bottom: .25rem; display: inline-block; position: relative; }
.svc-tile--feature .svc-tile__body h3 { font-size: 1.85rem; }
.svc-tile__body h3::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--gold-grad); transition: width .28s var(--ease); border-radius: 2px;
}
.svc-tile:hover .svc-tile__body h3::after { width: 100%; }
.svc-tile__body p {
  color: var(--color-muted); font-size: .88rem; margin: 0; max-width: 42ch;
  max-height: 0; opacity: 0; overflow: hidden; transform: translateY(6px);
  transition: max-height .4s var(--ease), opacity .3s var(--ease), transform .4s var(--ease), margin-top .4s var(--ease);
}
.svc-tile:hover .svc-tile__body p, .svc-tile:focus-visible .svc-tile__body p {
  max-height: 7em; opacity: 1; transform: none; margin-top: .4rem;
}
/* touch devices have no hover, so keep the copy visible there */
@media (hover: none) {
  .svc-tile__body p { max-height: 7em; opacity: 1; transform: none; margin-top: .4rem; }
  .svc-tile::after { background: linear-gradient(0deg, rgba(11,11,13,.93) 8%, rgba(11,11,13,.55) 50%, rgba(11,11,13,.14) 100%); }
}
.svc-tile__tag { position: absolute; top: 16px; left: 18px; z-index: 1; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--color-gold); font-weight: 600; background: rgba(11,11,13,.5); padding: .35em .7em; border-radius: 100px; border: 1px solid rgba(212,168,86,.3); backdrop-filter: blur(4px); }
.svc-tile__arrow { position: absolute; top: 16px; right: 16px; z-index: 1; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(244,244,242,.25); color: var(--color-text); opacity: 0; transform: translateY(-4px); transition: all .25s var(--ease); }
.svc-tile__arrow svg { width: 15px; height: 15px; }
.svc-tile:hover .svc-tile__arrow { opacity: 1; transform: none; border-color: var(--color-gold); color: var(--color-gold); }

/* ============================================================
   Why Nashlux
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: clamp(16px, 1.8vw, 24px); }
.why-feature { grid-column: 1; grid-row: 1 / span 2; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--color-line); min-height: 320px; }
.why-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.why-feature:hover img { transform: scale(1.05); }
.why-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,13,.92) 4%, rgba(11,11,13,.1) 55%, rgba(11,11,13,.35) 100%); }
.why-feature__cap { position: absolute; left: 24px; bottom: 22px; z-index: 1; }
.why-feature__eyebrow { display: block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--color-gold); margin-bottom: .45rem; font-weight: 600; }
.why-feature__cap strong { font-family: var(--font-display); font-weight: 400; font-size: 1.55rem; color: var(--color-text); }
.why-block { display: flex; gap: 18px; padding: 26px; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); position: relative; overflow: hidden; transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
.why-block::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.why-block:hover { border-color: rgba(212,168,86,.45); transform: translateY(-4px); box-shadow: 0 24px 46px -28px rgba(0,0,0,.95); }
.why-block:hover::before { transform: scaleX(1); }
.why-block--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 36%; align-items: center; gap: 30px; background: linear-gradient(110deg, rgba(212,168,86,.1), var(--color-surface) 55%); border-color: rgba(212,168,86,.35); }
.why-block__lead { display: flex; gap: 20px; }
.why-block__media { align-self: stretch; }
.why-block__media img { width: 100%; height: 100%; min-height: 170px; max-height: 220px; object-fit: cover; border-radius: 11px; border: 1px solid var(--color-line); }
.why-ico {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(212,168,86,.22), rgba(212,168,86,.06) 75%);
  border: 1px solid rgba(212,168,86,.4);
  color: var(--color-gold); transition: box-shadow .25s var(--ease), color .25s var(--ease);
}
.why-block:hover .why-ico { box-shadow: 0 0 0 5px rgba(212,168,86,.08); color: var(--color-gold-2); }
.why-ico svg { width: 27px; height: 27px; }
.why-block h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.why-block p { color: var(--color-muted); font-size: .96rem; margin: 0; }

/* ============================================================
   Anchored quote form section
   ============================================================ */
.quote-section { position: relative; background: linear-gradient(180deg, var(--color-bg), #0d0d11); }
.quote-section::before { content: ""; position: absolute; inset: 0; background: url("assets/client-interior-limo-red.jpg") center/cover no-repeat; opacity: .06; pointer-events: none; }
.quote-section > .wrap { position: relative; z-index: 1; }
.quote-section__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.quote-section__aside { position: sticky; top: 110px; }
.quote-section__aside .h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.quote-perks { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.quote-perks li { display: flex; gap: .8em; align-items: flex-start; color: var(--color-muted); font-size: .98rem; }
.quote-perks svg { width: 21px; height: 21px; color: var(--color-gold); flex: 0 0 auto; margin-top: 1px; }
.quote-perks strong { color: var(--color-text); font-weight: 600; }
.quote-section .quote-card .field--row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (min-width: 921px) {
  .quote-section .quote-card { padding: clamp(24px, 2.2vw, 34px); }
  .quote-section .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; }
  .quote-section .form-grid .cluster { grid-column: 1 / -1; }
}

/* ============================================================
   How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); position: relative; }
.steps__line {
  position: absolute; top: 33px; left: 16%; right: 16%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--color-gold) 0 7px, transparent 7px 16px);
  background-size: 32px 100%; opacity: .5;
  animation: routeFlow 1s linear infinite;
}
@keyframes routeFlow { to { background-position-x: 32px; } }
.step { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.step__node {
  width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(212,168,86,.2), var(--color-surface-2) 72%);
  border: 1px solid rgba(212,168,86,.5); color: var(--color-gold);
  box-shadow: 0 0 0 7px var(--color-surface), 0 12px 30px -12px rgba(212,168,86,.45);
  margin-bottom: 1rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step__node svg { width: 27px; height: 27px; }
.step:hover .step__node { transform: translateY(-3px); box-shadow: 0 0 0 7px var(--color-surface), 0 16px 38px -12px rgba(212,168,86,.7); }
.step__num { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-gold); opacity: .85; margin-bottom: .5rem; }
.step h3 { font-size: 1.4rem; margin-bottom: .45rem; }
.step p { color: var(--color-muted); font-size: .98rem; margin: 0 auto; max-width: 32ch; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-top { text-align: center; margin-bottom: 2.4rem; }
.gscore {
  display: inline-flex; align-items: center; gap: .8em;
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: 100px; padding: .7em 1.4em;
}
.gscore__num { font-family: var(--font-display); font-size: 1.7rem; color: var(--color-gold); line-height: 1; }
.gscore__stars { color: var(--color-gold); letter-spacing: .1em; }
.gscore__meta { font-size: .82rem; color: var(--color-muted); text-align: left; line-height: 1.3; }
.g-logo { width: 16px; height: 16px; display: inline-block; vertical-align: -3px; flex: 0 0 auto; }
.gscore .g-logo { width: 24px; height: 24px; vertical-align: middle; }
.trust__item .g-logo { width: 18px; height: 18px; }
.review__attr .src .g-logo { width: 14px; height: 14px; vertical-align: -2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.review {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column;
  position: relative;
}
.review__stars { color: var(--color-gold); letter-spacing: .12em; margin-bottom: 1rem; font-size: .95rem; }
.review__quote { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; line-height: 1.5; color: var(--color-text); margin: 0 0 1.3rem; }
.review__attr { margin-top: auto; text-align: right; }
.review__attr .name { font-weight: 600; font-size: .92rem; }
.review__attr .src { font-size: .76rem; color: var(--color-muted); display: inline-flex; align-items: center; gap: .4em; }
.review__attr .src svg { width: 13px; height: 13px; }

/* reviews auto-scroll marquee */
.reviews-marquee {
  position: relative; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex; gap: clamp(16px, 2vw, 24px); width: max-content;
  animation: reviewsScroll 56s linear infinite; will-change: transform;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviewsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.reviews-marquee .review { flex: 0 0 auto; width: min(360px, 82vw); }

/* polished placeholder treatment */
[data-placeholder="true"] { position: relative; }
.ph-tag {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--color-gold); background: rgba(212,168,86,.08);
  border: 1px dashed rgba(212,168,86,.4); border-radius: 100px;
  padding: .3em .7em; margin-bottom: 1rem;
}
.ph-tag svg { width: 11px; height: 11px; }

/* ============================================================
   Founder
   ============================================================ */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.founder-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; border: 1px solid var(--color-line);
  background:
    linear-gradient(160deg, rgba(212,168,86,.22), rgba(11,11,13,.7) 60%),
    repeating-linear-gradient(135deg, #14141A 0 14px, #17171f 14px 28px);
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.founder-photo .ph-note { font-family: var(--font-body); font-size: .82rem; color: var(--color-muted); letter-spacing: .04em; }
.founder-photo .ph-note .mono { display: block; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .72rem; color: #7d7d88; margin-top: .5rem; }
.founder-copy .h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.founder-copy p { color: var(--color-muted); margin: 0 0 1.1rem; }
.founder-quote { border-left: 2px solid var(--color-gold); padding: .2rem 0 .2rem 1.3rem; margin: 1.6rem 0 0; }
.founder-quote em { font-family: var(--font-display); font-style: italic; font-size: 1.32rem; color: var(--color-text); line-height: 1.4; }
.founder-quote .attr { text-align: right; margin-top: .9rem; font-size: .85rem; color: var(--color-muted); }
.founder-quote .attr strong { color: var(--color-gold); font-weight: 600; }

/* ============================================================
   Service area
   ============================================================ */
.area-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.area-copy p.area-list { font-size: 1.18rem; line-height: 1.7; color: var(--color-text); max-width: 30ch; }
.area-copy p.area-list .gold { color: var(--color-gold); }
.area-copy .sub { color: var(--color-muted); font-size: .98rem; margin-top: 1rem; }
.area-map {
  border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden;
  background: #0d0d12; aspect-ratio: 4 / 3;
}
.area-map svg { width: 100%; height: 100%; display: block; }

/* full-bleed animated service-area map */
.area-section { position: relative; overflow: hidden; padding-block: clamp(90px, 12vw, 160px); }
.area-fullmap { position: absolute; inset: 0; z-index: 0; }
.area-fullmap.reveal { opacity: 1; transform: none; }
.area-svg { width: 100%; height: 100%; display: block; }
.area-fade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,11,13,.97) 0%, rgba(11,11,13,.86) 30%, rgba(11,11,13,.35) 58%, rgba(11,11,13,.5) 100%),
    linear-gradient(0deg, rgba(11,11,13,.85) 2%, transparent 30%, transparent 72%, rgba(11,11,13,.85) 100%);
}
.area-section > .wrap { position: relative; z-index: 1; }
.area-panel { max-width: 480px; }
.area-panel .area-list { font-size: 1.16rem; line-height: 1.7; color: var(--color-text); max-width: 32ch; margin-bottom: .6rem; }
.area-panel .area-list .gold { color: var(--color-gold); }
.area-panel .sub { color: var(--color-muted); font-size: .98rem; margin: 0 0 1.6rem; }

/* map animations */
.area-pulse { transform-box: fill-box; transform-origin: center; opacity: 0; }
.area-pulse:nth-child(1) { animation: areaPulse 4s ease-out infinite; }
.area-pulse:nth-child(2) { animation: areaPulse 4s ease-out infinite 1.33s; }
.area-pulse:nth-child(3) { animation: areaPulse 4s ease-out infinite 2.66s; }
@keyframes areaPulse {
  0% { transform: scale(.18); opacity: .7; }
  80% { opacity: 0; }
  100% { transform: scale(3.6); opacity: 0; }
}
.area-route { stroke-dasharray: 620; stroke-dashoffset: 620; }
.is-in .area-route { animation: routeDraw 1.4s var(--ease) forwards; }
.is-in .area-route:nth-child(1) { animation-delay: .2s; }
.is-in .area-route:nth-child(2) { animation-delay: .45s; }
.is-in .area-route:nth-child(3) { animation-delay: .7s; }
.is-in .area-route:nth-child(4) { animation-delay: .95s; }
.is-in .area-route:nth-child(5) { animation-delay: 1.2s; }
@keyframes routeDraw { to { stroke-dashoffset: 0; } }
.area-city { opacity: 0; }
.is-in .area-city { animation: cityIn .5s var(--ease) forwards; }
.is-in .area-city:nth-child(1) { animation-delay: .8s; }
.is-in .area-city:nth-child(2) { animation-delay: 1.05s; }
.is-in .area-city:nth-child(3) { animation-delay: 1.3s; }
.is-in .area-city:nth-child(4) { animation-delay: 1.55s; }
.is-in .area-city:nth-child(5) { animation-delay: 1.8s; }
@keyframes cityIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.area-hub { opacity: 0; transform-box: fill-box; transform-origin: 980px 417px; }
.is-in .area-hub { animation: hubIn .6s var(--ease) .1s forwards; }
@keyframes hubIn { from { opacity: 0; transform: translateY(-14px) scale(.85); } to { opacity: 1; transform: none; } }
@media (max-width: 760px) {
  /* On mobile, render the map as its own card. The artwork places Nashville
     right-of-center (it sits behind the text panel on desktop), so the JS in
     nashlux.js swaps to a tighter viewBox (540 130 900 560) that centers
     Nashville with the cities around it. The card aspect matches that box so
     `slice` fills it with no crop and no dead space. */
  .area-section { padding-block: clamp(56px, 12vw, 90px); }
  .area-fullmap {
    position: relative; inset: auto; width: 100%; height: auto;
    aspect-ratio: 920 / 660; margin-bottom: clamp(10px, 3vw, 20px);
    /* no card chrome and no mask — the viewBox is framed so the glow fades to
       zero before the edges, so the map floats seamlessly on the page bg */
  }
  .area-fullmap .area-svg rect { fill: transparent; }   /* drop the solid backplate */
  /* the square grid is what betrays the rectangle (it cuts off hard at the box
     edge), so hide it on mobile — only the glow, rings, routes and pins remain,
     all of which fade organically into the page background */
  .area-fullmap .area-grid-lines { display: none; }
  /* labels render very small when the wide map is scaled into a phone, bump them */
  .area-svg .area-cities text { font-size: 26px; }
  .area-svg .area-cities circle { r: 5; }
  .area-svg .area-hub text { font-size: 34px; }
  .area-fade { display: none; }
  .area-panel { max-width: 100%; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--color-line); }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; color: var(--color-text);
  font-family: var(--font-display); font-size: 1.22rem; line-height: 1.3;
}
.faq-q:hover { color: var(--color-gold); }
.faq-chev { flex: 0 0 auto; width: 22px; height: 22px; color: var(--color-gold); transition: transform .3s var(--ease); }
.faq-item.is-open .faq-chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq-a__inner { padding: 0 0 1.5rem; color: var(--color-muted); font-size: .98rem; max-width: 68ch; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta { position: relative; text-align: center; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; left: 50%; top: 30%; transform: translate(-50%,-50%);
  width: 900px; height: 600px; max-width: 130vw;
  background: radial-gradient(closest-side, rgba(212,168,86,.18), rgba(212,168,86,0) 70%);
  pointer-events: none;
}
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta .cursor-glow { z-index: 0; }
.final-cta .cursor-glow::before { width: 540px; height: 540px; background: radial-gradient(circle, rgba(212,168,86,.2), rgba(212,168,86,.07) 40%, transparent 70%); }
.final-cta .h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-inline: auto; max-width: 18ch; }
.final-cta p { color: var(--color-muted); font-size: 1.1rem; max-width: 52ch; margin: 1rem auto 2rem; }
.final-cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* subtle gold-glow texture utility */
.gold-texture { position: relative; }
.gold-texture > .wrap { position: relative; z-index: 1; }
.gold-texture::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 75% at 88% 8%, rgba(212,168,86,.14), transparent 60%),
    radial-gradient(50% 70% at 8% 96%, rgba(212,168,86,.11), transparent 62%);
}
.gold-texture::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='gn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23gn)'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: .04; mix-blend-mode: overlay;
}

/* stats band */
.stats-band { position: relative; overflow: hidden; background: #0a0a0c; border-block: 1px solid var(--color-line); }
.stats-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(62% 130% at 50% -12%, rgba(212,168,86,.16), transparent 62%);
}
.stats-band::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px; opacity: .05; mix-blend-mode: soft-light;
}
.stats-band > .wrap { position: relative; z-index: 1; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); }
.stat { position: relative; text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 6vw, 92px); line-height: 1; letter-spacing: -.01em;
  background: linear-gradient(160deg, #F2DCA8 0%, #D4A856 50%, #B98B3C 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: .35rem;
}
.stat__label {
  display: block;
  font-size: clamp(.7rem, .95vw, .85rem); letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--color-muted);
}
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: calc(-1 * clamp(8px, 1.5vw, 20px)); top: 18%; bottom: 18%;
  width: 1px; background: linear-gradient(180deg, transparent, rgba(212,168,86,.35), transparent);
}
@media (max-width: 720px) { .stats-row { grid-template-columns: 1fr 1fr; gap: 30px 16px; } .stat:nth-child(2)::after { display: none; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #08080a; border-top: 1px solid var(--color-line); padding-block: clamp(48px, 6vw, 72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer-brand img { height: 76px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--color-muted); font-size: .92rem; max-width: 34ch; margin: 0 0 1.2rem; }
.footer-contact { display: grid; gap: .5rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .6em; color: var(--color-text); font-size: .92rem; }
.footer-contact a:hover { color: var(--color-gold); }
.footer-contact svg { width: 16px; height: 16px; color: var(--color-gold); }
.footer-col h4 { font-family: var(--font-body); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--color-gold); margin: 0 0 1.1rem; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a, .footer-col li { color: var(--color-muted); font-size: .92rem; }
.footer-col a:hover { color: var(--color-text); }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 56px); border-top: 1px solid var(--color-line);
  padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
}
.footer-bottom p { margin: 0; font-size: .82rem; color: #6c6c78; }
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom .links a { font-size: .82rem; color: #8a8a95; }
.footer-bottom .links a:hover { color: var(--color-gold); }

/* ============================================================
   Sticky mobile CTA bar
   ============================================================ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,11,13,.95); backdrop-filter: blur(12px); border-top: 1px solid var(--color-line);
}
.mobile-bar .btn { flex: 1; padding-block: 1em; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 680px; }
}
@media (max-width: 1020px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 640px; }
  .hero .quote-card { margin-top: 8px; }
  .quote-section__grid { grid-template-columns: 1fr; }
  .quote-section__aside { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .why-block--wide { grid-template-columns: 1fr; }
  .why-feature { grid-row: auto; min-height: 240px; }
  .founder-grid, .area-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps__line { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
  .site-header .btn--header { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .svc-tile--feature { grid-column: span 2; grid-row: span 1; }
  .svc-grid { grid-auto-rows: 180px; }
  /* full-width CTAs on mobile, hero + final band */
  .hero__cta, .final-cta__btns { flex-direction: column; align-items: stretch; }
  .hero__cta .btn, .final-cta__btns .btn { width: 100%; }
  /* date / time inputs: iOS sizes them to content and ignores width until focus,
     so pin them full width with a real tap height */
  input[type="date"].input, input[type="time"].input {
    width: 100%; min-width: 0; min-height: 48px; display: block;
  }
}
@media (max-width: 460px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-tile--feature { grid-column: span 1; }
  .svc-tile--wide { grid-column: span 1; }
  .fleet-grid { grid-template-columns: 1fr; }
  .segmented { grid-template-columns: 1fr; }
}

/* desktop input size restore */
@media (min-width: 921px) {
  .input, select.input, textarea.input { font-size: 14px; }
}

/* ============================================================
   Luxury enhancements
   ============================================================ */
/* thin gold hairline pinned to the very top of the page */
.site-header::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 20%, var(--color-gold-2) 50%, var(--color-gold) 80%, transparent);
  opacity: .9;
}

/* oversized monogram watermark behind select sections */
.has-monogram { position: relative; overflow: hidden; }
.has-monogram > .wrap { position: relative; z-index: 1; }
.has-monogram::after {
  content: "N"; position: absolute; z-index: 0; pointer-events: none;
  font-family: var(--font-display); line-height: 1;
  font-size: clamp(360px, 46vw, 760px);
  right: -6%; top: 50%; transform: translateY(-50%);
  color: var(--color-gold); opacity: .035;
  -webkit-user-select: none; user-select: none;
}
.has-monogram--left::after { right: auto; left: -8%; }

/* slow warm glow on the final-CTA headline */
.final-cta .h2 {
  background: linear-gradient(100deg, #F4F4F2 0%, #F4F4F2 38%, #F2DCA8 50%, #F4F4F2 62%, #F4F4F2 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldSheen 8s ease-in-out infinite;
}

/* refined gold focus halo on the segmented picker labels */
.segmented input:checked + label { box-shadow: inset 0 0 0 1px rgba(212,168,86,.4), 0 6px 18px -10px rgba(212,168,86,.5); }

/* gold-tinted hairline shimmer under centered rules */
.gscore { box-shadow: 0 10px 30px -16px rgba(212,168,86,.4); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal, .fade-up, .hero .quote-card { opacity: 1 !important; transform: none !important; }
  .reviews-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .reviews-marquee { -webkit-mask: none; mask: none; overflow: visible; }
}

/* ============================================================
   Thank-you page
   ============================================================ */
.ty-page { min-height: 100svh; display: flex; flex-direction: column; }
.ty-main {
  flex: 1 0 auto; display: grid; place-items: center; text-align: center;
  padding-block: clamp(140px, 17vw, 220px) clamp(64px, 8vw, 110px);
  position: relative; overflow: hidden;
}
.ty-main::before {
  content: ""; position: absolute; left: 50%; top: 32%; transform: translate(-50%,-50%);
  width: 1000px; height: 680px; max-width: 140vw; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(212,168,86,.16), rgba(212,168,86,0) 70%);
}
.ty-inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.ty-check {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 1.7rem;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(46,174,110,.24), rgba(46,174,110,.06) 75%);
  border: 1px solid rgba(46,174,110,.5);
  box-shadow: 0 0 0 9px rgba(46,174,110,.05), 0 20px 54px -18px rgba(46,174,110,.55);
  animation: tyPop .55s var(--ease) both;
}
.ty-check svg { width: 44px; height: 44px; color: var(--color-success); }
@keyframes tyPop { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: none; } }
.ty-inner h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); margin-bottom: 1rem; text-wrap: balance; }
.ty-inner h1 .gold {
  background: linear-gradient(100deg, #C0892F 0%, #D4A856 22%, #F2DCA8 44%, #D4A856 64%, #C0892F 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldSheen 7s ease-in-out infinite;
}
.ty-lead { color: var(--color-muted); font-size: 1.12rem; max-width: 54ch; margin: 0 auto 1.4rem; }
.ty-lead a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 2px; }
.ty-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px);
  margin: clamp(34px, 5vw, 52px) 0; text-align: left;
}
.ty-step {
  background: linear-gradient(180deg, var(--color-surface-2), var(--color-surface));
  border: 1px solid var(--color-line); border-radius: var(--radius);
  padding: 24px; position: relative; overflow: hidden;
}
.ty-step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.ty-step:hover::before { transform: scaleX(1); }
.ty-step__n {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-gold); opacity: .85; margin-bottom: .55rem;
}
.ty-step h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.ty-step p { color: var(--color-muted); font-size: .92rem; margin: 0; }
.ty-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.ty-note {
  margin-top: clamp(28px, 4vw, 40px); font-size: .9rem; color: var(--color-muted);
  display: inline-flex; align-items: center; gap: .6em; justify-content: center;
}
.ty-note svg { width: 16px; height: 16px; color: var(--color-gold); flex: 0 0 auto; }
@media (max-width: 720px) {
  .ty-steps { grid-template-columns: 1fr; }
}
