/* ==========================================================================
   STAR RIDE WORLDWIDE LOGISTICS — Design System
   --------------------------------------------------------------------------
   00. Tokens
   01. Reset + base
   02. Typography
   03. Buttons + links
   04. Layout utilities
   05. Reveal / motion system
   06. Preloader
   07. Cursor
   08. Header + navigation
   09. Mobile menu
   10. Hero
   11. Marquee (cities)
   12. Stat bar
   13. Difference cards
   14. Services
   15. Fleet showcase
   16. Amenities
   17. Process timeline
   18. Testimonials
   19. Journal
   20. CTA band
   21. Footer
   22. Page hero (inner pages)
   23. Forms + booking
   24. Accordion / FAQ
   25. Misc blocks
   26. Responsive
   27. Reduced motion
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Marcellus&display=swap');

/* 00. Tokens ============================================================== */
:root {
  --ink:        #07080a;
  --ink-2:      #0c0e12;
  --ink-3:      #12151b;
  --ink-4:      #1a1e26;

  --gold-deep:  #8f6520;
  --gold:       #c9962e;
  --gold-lit:   #e8c87a;
  --gold-pale:  #f7e9be;

  --text:       #f3f2ef;
  --muted:      rgba(243, 242, 239, 0.62);
  --faint:      rgba(243, 242, 239, 0.38);
  --line:       rgba(243, 242, 239, 0.09);
  --line-2:     rgba(243, 242, 239, 0.16);

  --grad-gold:  linear-gradient(115deg, #8f6520 0%, #c9962e 24%, #f7e9be 52%, #d9ab48 74%, #8f6520 100%);
  --grad-sheen: linear-gradient(115deg, rgba(247,233,190,0) 0%, rgba(247,233,190,.55) 50%, rgba(247,233,190,0) 100%);

  --display:    'Cinzel', 'Times New Roman', serif;
  --serif:      'Marcellus', Georgia, serif;
  --sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap:       1240px;
  --gut:        clamp(20px, 5vw, 56px);
  --sec:        clamp(76px, 10vw, 148px);

  --r-sm:       6px;
  --r:          14px;
  --r-lg:       24px;

  --ease:       cubic-bezier(.22, 1, .36, 1);
  --ease-io:    cubic-bezier(.65, .05, .36, 1);
  --t:          .5s var(--ease);

  --shadow:     0 30px 70px -30px rgba(0,0,0,.9);
  --shadow-gold:0 24px 60px -28px rgba(201,150,46,.45);
}

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

* { margin: 0; padding: 0; }

/* `overflow-x: hidden` on <body> alone propagates to the viewport and stops the
   body from clipping, so the widest descendant (the scaled hero image, the
   marquee track) stretches the layout and pushes fixed, full-width elements —
   the header — off-screen on mobile. `clip` on both clips without propagating.
   `hidden` stays first as the fallback for browsers without `clip`. */
html, body {
  overflow-x: hidden;
  overflow-x: clip;
}

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

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

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

ul, ol { list-style: none; }

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

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #0a0a0a; }

/* Ambient page grain + vignette */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #262a33; border-radius: 20px; border: 3px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* 02. Typography ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.005em;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.6rem); letter-spacing: .01em; }
h4 { font-size: 1.05rem; letter-spacing: .04em; }

p { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-lit);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow.is-centered::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(270deg, transparent, var(--gold));
}

.gold-text {
  font-style: normal;
  background: var(--grad-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShift 9s linear infinite;
}

@keyframes goldShift {
  to { background-position: 200% center; }
}

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  color: var(--muted);
  max-width: 60ch;
}

.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 76px); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 + p { margin-top: 22px; }

/* 03. Buttons + links ===================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 34px;
  border: 0;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), color .35s ease;
  will-change: transform;
}

.btn svg { width: 15px; height: 15px; transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn:active { transform: scale(.97); }

/* Primary — gold */
.btn-gold {
  background: var(--grad-gold);
  background-size: 220% auto;
  color: #14100a;
  box-shadow: var(--shadow-gold);
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad-sheen);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform .8s var(--ease);
}

.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 30px 70px -26px rgba(201,150,46,.7); }
.btn-gold:hover::after { transform: translateX(120%) skewX(-18deg); }

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-2);
}

.btn-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(243,242,239,.07);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease);
}

.btn-ghost:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--gold); color: var(--gold-pale); }
.btn-ghost:hover::after { transform: scaleY(1); }

.btn-sm { padding: 13px 26px; font-size: .7rem; }

/* Text link with underline sweep */
.link-u {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold-lit);
  padding-bottom: 5px;
}

.link-u::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .55s var(--ease);
}

.link-u:hover::after { transform: scaleX(1); transform-origin: left; }
.link-u svg { width: 14px; height: 14px; transition: transform .45s var(--ease); }
.link-u:hover svg { transform: translateX(5px); }

/* 04. Layout utilities ==================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.wrap-wide { max-width: 1520px; }

section { position: relative; }

.sec-pad { padding-block: var(--sec); }
.sec-pad-t { padding-top: var(--sec); }
.sec-pad-b { padding-bottom: var(--sec); }

.bg-2 { background: var(--ink-2); }

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 22%, var(--line-2) 78%, transparent);
}

/* Soft radial glow behind sections */
.glow { position: relative; }
.glow::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 900px; height: 900px;
  top: -280px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,150,46,.11), transparent 62%);
  pointer-events: none;
}
.glow > * { position: relative; z-index: 1; }

/* 05. Reveal / motion system ============================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

[data-reveal="fade"]  { transform: none; }
[data-reveal="left"]  { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="zoom"]  { transform: scale(.94); }

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Clip-mask reveal for images */
[data-reveal="mask"] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.3s var(--ease);
}
[data-reveal="mask"].is-in { clip-path: inset(0 0 0 0); }

/* Line-by-line headline reveal */
.split-line { display: block; overflow: hidden; padding-bottom: .06em; }
.split-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.15s var(--ease);
  transition-delay: var(--d, 0ms);
}
.is-in .split-line > span,
.split-line.is-in > span { transform: translateY(0); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

@keyframes pulseRing {
  0%   { transform: scale(.9); opacity: .8; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* 06. Preloader =========================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity .7s ease, visibility .7s ease;
}

.preloader.is-done { opacity: 0; visibility: hidden; }

.preloader__inner { text-align: center; }

.preloader__mark { animation: floatY 3s ease-in-out infinite; }
.preloader__mark img { width: 78px; height: auto; margin-inline: auto; }

.preloader__word {
  margin-top: 24px;
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .5em;
  text-indent: .5em;
  color: var(--text);
}

.preloader__tag {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--gold-lit);
}

.preloader__bar {
  width: 190px;
  height: 1px;
  margin: 26px auto 0;
  background: var(--line-2);
  overflow: hidden;
}

.preloader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: loadBar 1.25s var(--ease-io) forwards;
}

@keyframes loadBar { to { transform: scaleX(1); } }

/* 07. Cursor ============================================================== */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 998;
  border-radius: 50%;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s ease;
}

.cursor {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(255,255,255,.55);
  transition: opacity .3s ease, width .35s var(--ease), height .35s var(--ease),
              margin .35s var(--ease), background-color .35s ease;
}

.cursor-dot {
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: #fff;
}

.cursor.is-live, .cursor-dot.is-live { opacity: 1; }

.cursor.is-hot {
  width: 66px; height: 66px;
  margin: -33px 0 0 -33px;
  background: rgba(255,255,255,.16);
}

/* 08. Header + navigation ================================================= */
.site-head {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 120;
  padding-block: 22px;
  transition: padding .5s var(--ease), background-color .5s var(--ease),
              backdrop-filter .5s var(--ease), box-shadow .5s var(--ease);
}

.site-head::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--line);
  opacity: 0;
  transition: opacity .5s var(--ease);
}

.site-head.is-stuck {
  padding-block: 12px;
  background: rgba(7,8,10,.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 44px -34px rgba(0,0,0,.95);
}

.site-head.is-stuck::after { opacity: 1; }

.site-head.is-hidden { transform: translateY(-104%); }

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}

/* Brand lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

/* The mark is the logo's own gold star-and-swoosh artwork; the wordmark stays
   live type so it renders crisply at header sizes, where the descender line
   would be ~5px tall as a raster. */
.brand__mark {
  width: 50px;
  height: auto;
  flex-shrink: 0;
  transition: transform .7s var(--ease);
}

.brand:hover .brand__mark { transform: rotate(-10deg) scale(1.08); }

.brand__type { display: flex; flex-direction: column; line-height: 1; }

.brand__name {
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--text);
}

.brand__sub {
  margin-top: 5px;
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .34em;
  color: var(--gold-lit);
}

.brand__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  font-family: var(--serif);
  font-style: italic;
  font-size: .68rem;
  letter-spacing: .1em;
  color: rgba(243, 242, 239, .56);
  transition: color .4s ease;
}

.brand__tag::before {
  content: '';
  width: 14px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.brand:hover .brand__tag { color: var(--gold-pale); }

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }

.nav a {
  position: relative;
  padding: 9px 16px;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .35s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 16px; bottom: 2px;
  width: calc(100% - 32px); height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}

.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a.is-current { color: var(--gold-lit); }
.nav a.is-current::after { transform: scaleX(1); }

.head-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.head-actions > * { flex-shrink: 0; }

.head-tel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
  transition: color .35s ease;
}

.head-tel svg { width: 15px; height: 15px; color: var(--gold); }
.head-tel:hover { color: var(--gold-pale); }

/* Burger */
.burger {
  display: none;
  position: relative;
  flex: 0 0 46px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color .4s ease, transform .4s var(--ease);
}

.burger:hover { border-color: var(--gold); }

.burger i {
  position: absolute;
  left: 50%;
  width: 17px; height: 1.5px;
  margin-left: -8.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .5s var(--ease), opacity .3s ease, width .4s var(--ease);
}

.burger i:nth-child(1) { top: 18px; }
.burger i:nth-child(2) { top: 23px; width: 11px; }
.burger i:nth-child(3) { top: 28px; }

.burger.is-open i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; width: 0; }
.burger.is-open i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Scroll progress bar */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 130;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* 09. Mobile menu ========================================================= */
.menu {
  position: fixed;
  inset: 0;
  z-index: 115;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gut) 48px;
  clip-path: circle(0% at calc(100% - 46px) 46px);
  transition: clip-path .85s var(--ease);
  overflow-y: auto;
}

.menu.is-open { clip-path: circle(155% at calc(100% - 46px) 46px); }

.menu__list { display: flex; flex-direction: column; gap: 4px; }

.menu__list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 8vw, 3rem);
  font-weight: 600;
  color: var(--text);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), color .3s ease;
}

.menu.is-open .menu__list a { opacity: 1; transform: none; }
.menu__list a:hover { color: var(--gold-lit); }

.menu__list a span {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold);
}

.menu__foot {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease) .5s, transform .7s var(--ease) .5s;
}

.menu.is-open .menu__foot { opacity: 1; transform: none; }

.menu__foot a { font-size: .84rem; color: var(--muted); letter-spacing: .06em; }
.menu__foot a:hover { color: var(--gold-lit); }

/* 10. Hero ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 90px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.14);
  animation: kenBurns 22s var(--ease-io) infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.14) translate3d(0, 0, 0); }
  to   { transform: scale(1.26) translate3d(-2.2%, -1.6%, 0); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(7,8,10,.96) 0%, rgba(7,8,10,.86) 34%, rgba(7,8,10,.42) 62%, rgba(7,8,10,.72) 100%),
    linear-gradient(180deg, rgba(7,8,10,.9) 0%, transparent 26%, transparent 62%, rgba(7,8,10,.95) 100%);
}

/* Mouse-tracked spotlight */
.hero__spot {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--mx, 62%) var(--my, 42%), rgba(201,150,46,.16), transparent 68%);
  transition: background .28s ease-out;
}

.hero__inner { position: relative; z-index: 4; width: 100%; }
.hero__col { max-width: 780px; }

.hero h1 { margin-bottom: 30px; }
.hero h1 .split-line > span { will-change: transform; }

.hero__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: rgba(243,242,239,.74);
  max-width: 56ch;
  margin-bottom: 40px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 56px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(243,242,239,.72);
}

.hero__trust svg { width: 17px; height: 17px; color: var(--gold-lit); flex-shrink: 0; }

/* Floating glass card */
.hero__card {
  position: absolute;
  right: var(--gut);
  bottom: clamp(90px, 12vh, 150px);
  z-index: 5;
  width: 254px;
  padding: 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  background: rgba(12,14,18,.58);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--shadow);
  animation: floatY 6s ease-in-out infinite;
}

.hero__card .dot {
  position: relative;
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #45d483;
  margin-right: 10px;
}

.hero__card .dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #45d483;
  animation: pulseRing 2.2s ease-out infinite;
}

.hero__card__label {
  display: flex;
  align-items: center;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero__card p {
  font-family: var(--display);
  font-size: 1.32rem;
  line-height: 1.3;
  color: var(--text);
}

.hero__card small {
  display: block;
  margin-top: 12px;
  font-size: .76rem;
  color: var(--faint);
  letter-spacing: .04em;
}

/* Scroll cue */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--faint);
}

.hero__cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 52px;
  background: var(--line-2);
  overflow: hidden;
}

.hero__cue i::after {
  content: '';
  position: absolute;
  top: -52px; left: 0;
  width: 1px; height: 52px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: cueRun 2.4s var(--ease-io) infinite;
}

@keyframes cueRun {
  0%   { transform: translateY(0); }
  100% { transform: translateY(104px); }
}

/* 11. Marquee (cities) ==================================================== */
.marquee {
  position: relative;
  padding-block: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; z-index: 2;
  width: clamp(60px, 12vw, 190px); height: 100%;
  pointer-events: none;
}

.marquee::before { left: 0;  background: linear-gradient(90deg, var(--ink-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--ink-2), transparent); }

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__track ul {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-right: clamp(28px, 4vw, 56px);
}

.marquee__track li {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  font-family: var(--display);
  font-size: clamp(.9rem, 1.5vw, 1.22rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(243,242,239,.42);
  white-space: nowrap;
  transition: color .4s ease;
}

.marquee__track li:hover { color: var(--gold-lit); }

.marquee__track li::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
  flex-shrink: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee__label {
  display: block;
  text-align: center;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

/* 12. Stat bar ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat {
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.4vw, 32px);
  background: var(--ink-2);
  text-align: center;
  transition: background-color .5s var(--ease);
}

.stat:hover { background: var(--ink-3); }

.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1;
  background: var(--grad-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Direct child only — the counter lives in a nested <span> inside <b>. */
.stat > span {
  display: block;
  margin-top: 14px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* 13. Difference cards ==================================================== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.diff {
  position: relative;
  padding: 38px 32px 34px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--ink-2), var(--ink));
  overflow: hidden;
  transition: transform .6s var(--ease), border-color .5s ease;
  transform-style: preserve-3d;
}

/* gold wash that follows the pointer */
.diff::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--px, 50%) var(--py, 0%), rgba(201,150,46,.15), transparent 62%);
  opacity: 0;
  transition: opacity .5s ease;
}

.diff:hover { transform: translateY(-8px); border-color: var(--line-2); }
.diff:hover::before { opacity: 1; }

.diff > * { position: relative; }

.diff__ico {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 26px;
  border-radius: 16px;
  border: 1px solid var(--line-2);
  background: rgba(201,150,46,.07);
  color: var(--gold-lit);
  transition: transform .6s var(--ease), background-color .5s ease, color .4s ease;
}

.diff__ico svg { width: 24px; height: 24px; }
.diff:hover .diff__ico { transform: translateY(-4px) rotate(-7deg); background: rgba(201,150,46,.16); color: var(--gold-pale); }

/* Two lines reserved so the body copy starts on the same baseline across the row. */
.diff h3 { margin-bottom: 14px; min-height: 2.2em; }
.diff p { font-size: .93rem; }

.diff__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(243,242,239,.045);
  line-height: 1;
  transition: color .5s ease;
}

.diff:hover .diff__num { color: rgba(201,150,46,.16); }

/* 14. Services ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: 34px;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
}

.svc__img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.svc__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.4s var(--ease), filter 1s var(--ease);
  filter: saturate(.75) brightness(.72);
}

.svc:hover .svc__img img { transform: scale(1.12); filter: saturate(1) brightness(.82); }

.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,8,10,.16) 0%, rgba(7,8,10,.66) 48%, rgba(7,8,10,.96) 100%);
  transition: opacity .7s var(--ease);
}

.svc__tag {
  align-self: flex-start;
  padding: 7px 15px;
  margin-bottom: auto;
  border-radius: 100px;
  border: 1px solid rgba(243,242,239,.24);
  background: rgba(7,8,10,.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.svc h3 { margin-bottom: 14px; }

.svc__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .75s var(--ease), opacity .55s var(--ease), margin .7s var(--ease);
}

.svc:hover .svc__body,
.svc:focus-within .svc__body { max-height: 220px; opacity: 1; }

.svc__body p { font-size: .93rem; color: rgba(243,242,239,.76); margin-bottom: 20px; }

.svc__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(243,242,239,.14);
}

.svc__arrow {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(243,242,239,.22);
  color: var(--text);
  transition: background-color .5s var(--ease), color .4s ease, transform .5s var(--ease), border-color .4s ease;
}

.svc__arrow svg { width: 16px; height: 16px; }
.svc:hover .svc__arrow { background: var(--gold); border-color: var(--gold); color: #14100a; transform: rotate(-45deg); }

/* 15. Fleet showcase ====================================================== */
.fleet {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.fleet__tabs { display: flex; flex-direction: column; gap: 4px; }

.fleet__tab {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 22px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  transition: background-color .5s var(--ease), padding-left .5s var(--ease);
}

.fleet__tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 100%;
  background: var(--grad-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .6s var(--ease);
}

.fleet__tab:hover { background: rgba(243,242,239,.03); }
.fleet__tab.is-active { background: rgba(243,242,239,.045); padding-left: 28px; }
.fleet__tab.is-active::before { transform: scaleY(1); }

.fleet__tab i {
  font-family: var(--display);
  font-size: .8rem;
  font-style: normal;
  letter-spacing: .1em;
  color: var(--gold);
  flex-shrink: 0;
}

.fleet__tab h3 {
  font-size: 1.14rem;
  color: var(--muted);
  transition: color .4s ease;
}

.fleet__tab.is-active h3 { color: var(--text); }

.fleet__tab small {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .05em;
  color: var(--faint);
}

.fleet__stage {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fleet__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s var(--ease), visibility .8s;
}

.fleet__panel.is-active { opacity: 1; visibility: visible; }

.fleet__panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s var(--ease-io);
}

.fleet__panel.is-active img { transform: scale(1); }

.fleet__panel figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 32px 30px;
  background: linear-gradient(180deg, transparent, rgba(7,8,10,.92));
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.fleet__panel figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(243,242,239,.82);
}

.fleet__panel figcaption span::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* 16. Amenities =========================================================== */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.amen {
  position: relative;
  padding: clamp(30px, 3.2vw, 42px) clamp(22px, 2.4vw, 30px);
  background: var(--ink);
  overflow: hidden;
  transition: background-color .55s var(--ease);
}

.amen::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}

.amen:hover { background: var(--ink-3); }
.amen:hover::after { transform: scaleX(1); }

.amen svg {
  width: 26px; height: 26px;
  margin-bottom: 20px;
  color: var(--gold-lit);
  transition: transform .6s var(--ease);
}

.amen:hover svg { transform: translateY(-5px) scale(1.1); }

.amen h4 {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.amen p { font-size: .86rem; line-height: 1.6; }

/* 17. Process timeline ==================================================== */
.process-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
}

.process-shell__aside { position: sticky; top: 118px; }
.process-shell__aside .section-head { margin-bottom: 36px; }

.process { position: relative; }

.process__line {
  position: absolute;
  left: 27px; top: 8px;
  width: 1px;
  height: calc(100% - 60px);
  background: var(--line-2);
}

.process__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--grad-gold);
  transform: scaleY(var(--fill, 0));
  transform-origin: top;
  transition: transform .15s linear;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(20px, 3vw, 42px);
  padding-bottom: clamp(38px, 4.4vw, 56px);
}

.step:last-child { padding-bottom: 0; }

.step__dot {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--ink);
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--faint);
  transition: color .5s ease, border-color .5s ease, background-color .5s ease, transform .6s var(--ease);
}

.step.is-lit .step__dot {
  color: #14100a;
  border-color: transparent;
  background: var(--grad-gold);
  transform: scale(1.06);
}

.step__body { padding-top: 9px; }
.step h3 { margin-bottom: 12px; transition: color .4s ease; }
.step p { font-size: .95rem; max-width: 62ch; }

.step__list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.step__list li {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  font-size: .76rem;
  letter-spacing: .05em;
  color: var(--muted);
}

/* 18. Testimonials ======================================================== */
.quotes { position: relative; }

.quotes__stage {
  position: relative;
  min-height: 330px;
}

.quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), visibility .8s;
}

.quote.is-active { opacity: 1; visibility: visible; transform: none; }

.quote__mark {
  font-family: var(--display);
  font-size: 4.6rem;
  line-height: .7;
  color: rgba(201,150,46,.28);
  margin-bottom: 26px;
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.14rem, 2.1vw, 1.65rem);
  line-height: 1.62;
  color: var(--text);
  max-width: 66ch;
  margin-bottom: 32px;
}

.quote cite {
  display: block;
  font-style: normal;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lit);
}

.quote cite span {
  display: block;
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--faint);
}

.quote__stars { display: flex; gap: 6px; margin-bottom: 24px; }
.quote__stars svg { width: 15px; height: 15px; color: var(--gold); }

.quotes__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.quotes__dot {
  position: relative;
  width: 38px; height: 2px;
  background: var(--line-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.quotes__dot i {
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
}

.quotes__dot.is-active i { animation: dotFill 7s linear forwards; }

@keyframes dotFill { to { transform: scaleX(1); } }

.quotes__arrow {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: border-color .4s ease, color .4s ease, transform .5s var(--ease);
}

.quotes__arrow svg { width: 15px; height: 15px; }
.quotes__arrow:hover { border-color: var(--gold); color: var(--gold-pale); transform: scale(1.08); }

/* 19. Journal ============================================================= */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.post {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: transform .6s var(--ease), border-color .5s ease;
}

.post:hover { transform: translateY(-8px); border-color: var(--line-2); }

.post__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.post__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.8) brightness(.86);
  transition: transform 1.3s var(--ease), filter .8s var(--ease);
}

.post:hover .post__img img { transform: scale(1.08); filter: saturate(1) brightness(1); }

.post__cat {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(7,8,10,.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(243,242,239,.16);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.post__body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }

.post time {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}

.post h3 {
  font-size: 1.14rem;
  line-height: 1.32;
  margin-bottom: 14px;
  transition: color .4s ease;
}

.post:hover h3 { color: var(--gold-pale); }
.post p { font-size: .9rem; margin-bottom: 22px; }
.post .link-u { margin-top: auto; align-self: flex-start; }

/* 20. CTA band ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.3) saturate(.7);
  transform: scale(1.06);
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(720px circle at 50% 120%, rgba(201,150,46,.24), transparent 68%),
    linear-gradient(180deg, rgba(7,8,10,.86), rgba(7,8,10,.94));
}

.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.cta h2 { margin-bottom: 24px; }
.cta p { margin-bottom: 40px; font-size: 1.05rem; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }

/* 21. Footer ============================================================== */
.site-foot {
  background: var(--ink-2);
  padding-top: clamp(64px, 8vw, 100px);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(34px, 4vw, 60px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.foot-brand .brand { margin-bottom: 22px; }
.foot-brand p { font-size: .92rem; max-width: 34ch; margin-bottom: 26px; }

.foot-social { display: flex; gap: 10px; }

.foot-social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: border-color .4s ease, color .4s ease, transform .5s var(--ease), background-color .4s ease;
}

.foot-social svg { width: 16px; height: 16px; }
.foot-social a:hover { border-color: var(--gold); color: var(--gold-pale); background: rgba(201,150,46,.09); transform: translateY(-3px); }

.foot-col h4 {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-lit);
  margin-bottom: 24px;
}

.foot-col li { margin-bottom: 13px; }

.foot-col a {
  position: relative;
  font-size: .92rem;
  color: var(--muted);
  transition: color .35s ease, padding-left .4s var(--ease);
}

.foot-col a:hover { color: var(--text); padding-left: 9px; }

.foot-col a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 5px; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .35s ease;
}

.foot-col a:hover::before { opacity: 1; }

.foot-contact li {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
  font-size: .92rem;
  color: var(--muted);
}

.foot-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 5px; }
.foot-contact a:hover { color: var(--gold-pale); }

.foot-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: var(--faint);
}

.foot-bar ul { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-bar a:hover { color: var(--gold-lit); }

/* Big background wordmark */
.foot-word {
  padding-top: 12px;
  overflow: hidden;
  line-height: .82;
  text-align: center;
}

.foot-word span {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 15vw, 13rem);
  font-weight: 700;
  letter-spacing: .04em;
  background: linear-gradient(180deg, rgba(243,242,239,.09), rgba(243,242,239,0) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(12,14,18,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s, border-color .4s ease, color .4s ease;
}

.to-top svg { width: 16px; height: 16px; }
.to-top.is-live { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--gold); color: var(--gold-pale); }

/* 22. Page hero (inner pages) ============================================= */
.page-hero {
  position: relative;
  padding-top: clamp(160px, 20vh, 230px);
  padding-bottom: clamp(70px, 9vw, 116px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__bg { position: absolute; inset: 0; z-index: 0; }

.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.34) saturate(.72);
  transform: scale(1.08);
  animation: kenBurns 26s var(--ease-io) infinite alternate;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(760px circle at 18% 30%, rgba(201,150,46,.14), transparent 62%),
    linear-gradient(180deg, rgba(7,8,10,.92) 0%, rgba(7,8,10,.66) 45%, rgba(7,8,10,.96) 100%);
}

.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { max-width: 16ch; margin-bottom: 24px; }
.page-hero p { max-width: 58ch; font-size: 1.05rem; }

.crumbs {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
}

.crumbs a { color: var(--gold-lit); }
.crumbs a:hover { color: var(--gold-pale); }
.crumbs span { color: var(--line-2); }

/* 23. Forms + booking ===================================================== */
.form-shell {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(32px, 4vw, 66px);
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 120px;
  padding: clamp(30px, 3.4vw, 42px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--ink-2), var(--ink));
}

.form-aside h3 { margin-bottom: 18px; }
.form-aside p { font-size: .93rem; margin-bottom: 28px; }

.form-aside ul { display: flex; flex-direction: column; gap: 16px; }

.form-aside li {
  display: flex;
  gap: 13px;
  font-size: .9rem;
  color: var(--muted);
}

.form-aside svg { width: 17px; height: 17px; color: var(--gold-lit); flex-shrink: 0; margin-top: 4px; }

/* Booking widget panel — the reservation system renders a light-themed,
   self-resizing iframe, so the panel gives it a light surface of its own
   instead of dropping a white block inside a dark card. */
.book-panel {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: #fff;
  box-shadow: var(--shadow);
}

.book-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  padding: 20px 26px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.book-panel__head b {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text);
}

.book-panel__head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-lit);
}

.book-panel__head svg { width: 14px; height: 14px; }

/* The loader replaces the anchor with its own auto-resizing iframe. */
.widget-embed { background: #fff; min-height: 300px; }
.widget-embed iframe { display: block; width: 100%; border: 0; }

/* Fallback if the widget script is blocked or slow: the anchor stays a real
   link straight through to the reservation system. */
.widget-embed > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 40px 26px;
  padding: 17px 34px;
  border-radius: 100px;
  background: var(--grad-gold);
  color: #14100a;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.form-note { font-size: .8rem; color: var(--faint); }

/* Contact info tiles */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.info {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: transform .55s var(--ease), border-color .4s ease;
}

.info:hover { transform: translateY(-6px); border-color: var(--line-2); }

.info svg { width: 22px; height: 22px; color: var(--gold-lit); margin-bottom: 20px; }

.info h4 {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}

.info a, .info p {
  font-family: var(--display);
  font-size: 1.04rem;
  color: var(--text);
  overflow-wrap: anywhere;   /* the email address is wider than a narrow tile */
  transition: color .35s ease;
}

.info a:hover { color: var(--gold-lit); }

/* 24. Accordion / FAQ ===================================================== */
.faq { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  font-weight: 600;
  color: var(--text);
  transition: color .4s ease;
}

.faq__q:hover { color: var(--gold-pale); }

.faq__q i {
  position: relative;
  display: block;
  width: 15px; height: 15px;
  flex-shrink: 0;
}

.faq__q i::before,
.faq__q i::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 15px; height: 1.5px;
  margin-top: -.75px;
  background: var(--gold);
  transition: transform .5s var(--ease);
}

.faq__q i::after { transform: rotate(90deg); }
.faq__item.is-open .faq__q i::after { transform: rotate(0); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .7s var(--ease);
}

.faq__a p { padding-bottom: 30px; font-size: .96rem; max-width: 76ch; }

/* 25. Misc blocks ========================================================= */
/* Two-column media + copy */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.duo h2 { margin-bottom: 22px; }

.duo__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  border: 1px solid var(--line);
}

.duo__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}

.duo__badge {
  position: absolute;
  right: 20px; bottom: 20px;
  padding: 20px 24px;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  background: rgba(12,14,18,.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
}

.duo__badge b {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.duo__badge span {
  display: block;
  margin-top: 8px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
}

.duo__list { margin-top: 34px; display: flex; flex-direction: column; gap: 20px; }

.duo__list li {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.duo__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.duo__list svg { width: 19px; height: 19px; color: var(--gold-lit); flex-shrink: 0; margin-top: 4px; }
.duo__list b { display: block; font-family: var(--display); font-size: 1.02rem; margin-bottom: 6px; color: var(--text); }
.duo__list p { font-size: .9rem; }

/* Values / who-we-serve grid */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.who {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .4s ease;
}

.who::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(247,233,190,.06), transparent);
  transition: left .9s var(--ease);
}

.who:hover { transform: translateY(-6px); border-color: var(--line-2); }
.who:hover::after { left: 120%; }

.who h3 { font-size: 1.08rem; margin-bottom: 12px; color: var(--gold-pale); }
.who p { font-size: .92rem; }

/* Coverage list */
/* Four across so the sixteen markets fill exactly four rows — no orphan cells. */
.cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.cities li {
  padding: 20px 22px;
  background: var(--ink-2);
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .09em;
  color: var(--muted);
  transition: background-color .45s var(--ease), color .35s ease, padding-left .45s var(--ease);
}

.cities li:hover { background: var(--ink-3); color: var(--gold-pale); padding-left: 28px; }

/* 26. Responsive ========================================================== */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .head-tel span { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .form-shell { grid-template-columns: 1fr; }
  .form-aside { position: static; }
}

@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .process-shell { grid-template-columns: 1fr; }
  .process-shell__aside { position: static; }
  .cities { grid-template-columns: 1fr 1fr; }
  .fleet { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .duo__media { aspect-ratio: 4 / 3.2; }
  .hero__card { display: none; }
  .quotes__stage { min-height: 400px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding-top: 122px; min-height: 92svh; }
  .hero__cue { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; }
  .step__dot { width: 44px; height: 44px; font-size: .84rem; }
  .process__line { left: 21px; }

  /* The header keeps only the phone icon and the burger — booking lives in the menu. */
  .head-actions .btn { display: none; }
  .diff h3 { min-height: 0; }   /* cards stack — no need to reserve a second line */
  .brand__mark { width: 34px; }
  .brand__name { font-size: 1rem; }
  .brand__sub { font-size: .45rem; letter-spacing: .3em; }
  .site-head .brand__tag { display: none; }   /* keep the mobile bar to two lines */

  .cta__btns .btn { width: 100%; }
  .book-panel__head { padding: 18px 20px; }
  .widget-embed > a { margin: 30px 20px; }

  .foot-bar { flex-direction: column; align-items: flex-start; }
  .cursor, .cursor-dot { display: none; }
}

/* 27. Reduced motion ====================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .split-line > span { transform: none !important; }
  .hero__media img { transform: scale(1.06); }
  .marquee__track { animation: none; }
  .cursor, .cursor-dot { display: none; }
}
