/* =====================================================================
   RV Best — Calgary & Area  ·  premium mock stylesheet
   Design language: alpine-luxe — deep teal-night, glacier, sunset gold
   ===================================================================== */

:root {
  /* core palette — Obsidian & Champagne */
  --night:      #0e1015;
  --midnight:   #141720;
  --deep:       #171a23;
  --teal:       #232733;
  --teal-2:     #7b5fa0;
  --glacier:    #c0a8d8;
  --glacier-dk: #6a4f8c;
  --sun:        #7b5fa0;
  --sun-2:      #9a7fbf;
  --gold:       #c0a8d8;
  --snow:       #f5f0fa;
  --paper:      #ffffff;
  --ink:        #221538;
  --mist:       #7e7290;
  --line:       #e2d6ef;
  --line-dk:    rgba(255,255,255,.10);
  --on-accent:  #ffffff;

  --radius:     22px;
  --radius-sm:  13px;
  --radius-lg:  30px;

  --shadow-sm:  0 4px 14px rgba(8,26,38,.08);
  --shadow:     0 18px 48px rgba(8,26,38,.16);
  --shadow-lg:  0 36px 90px rgba(8,26,38,.30);
  --glow-sun:   0 14px 40px rgba(123,95,160,.40);
  --glow-glacier: 0 14px 40px rgba(192,168,216,.40);

  --max: 1240px;
  --display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--sun); color: #fff; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 26px; }

h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 3.05rem); }
h3 { font-size: 1.28rem; font-weight: 600; }
p  { color: var(--mist); }

.grad-text {
  color: var(--glacier-dk);
  font-style: italic; font-weight: 500;
  text-decoration: underline; text-decoration-color: var(--glacier);
  text-decoration-thickness: 2px; text-underline-offset: 6px;
}

/* ---------- shared section scaffolding ---------- */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em; font-size: .72rem;
  color: var(--glacier-dk);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--sun); border-radius: 0; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin: 14px 0 14px; }
.section-head p { font-size: 1.08rem; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--sun);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 600; font-size: .85rem; letter-spacing: .02em;
  padding: 17px 28px; border-radius: 4px; border: 0; cursor: pointer;
  transition: background .28s cubic-bezier(.2,.7,.2,1), color .2s ease, gap .2s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.btn:hover { gap: 16px; }
.btn:hover svg { transform: translateX(3px); }
/* Primary: solid ink slab, shifts to accent on hover (no pill, no glow, no lift) */
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--glacier-dk); }
.btn-glacier { background: var(--glacier-dk); color: #fff; }
.btn-glacier:hover { background: var(--ink); }
.btn-dark { background: var(--deep); color: #fff; }
.btn-dark:hover { background: var(--night); }
/* Ghost on dark sections — outlined, fills on hover */
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.32); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-lg { padding: 19px 34px; font-size: .92rem; }
.btn-sm { padding: 11px 18px; font-size: .8rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- announcement ribbon ---------- */
.ribbon {
  background: linear-gradient(90deg, var(--night), var(--teal), var(--night));
  color: #cde7e6; text-align: center; font-size: .8rem; font-weight: 500;
  padding: 9px 14px; letter-spacing: .01em;
}
.ribbon b { color: #fff; }
.ribbon a { color: var(--gold); font-weight: 600; }
.ribbon a:hover { text-decoration: underline; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(245,240,250,.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(24,26,32,.08);
}
.nav { display: flex; align-items: center; gap: 36px; height: 80px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.36rem; letter-spacing: -.04em; padding: 4px 0; }
.logo img { height: 44px; width: auto; display: block; transition: opacity .2s ease; }
.logo:hover img { opacity: .82; }
.site-footer .logo img { height: 50px; margin-bottom: 4px; }
/* legacy mark/wordmark — kept for fallback compatibility */
.logo .mark {
  width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(135deg, var(--teal-2), var(--glacier-dk));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 20px rgba(46,167,159,.4);
}
.logo .b { color: var(--sun); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links > a, .nav-links .dropdown-trigger { font-family: var(--display); font-weight: 500; font-size: .94rem; color: var(--ink); position: relative; padding: 4px 0; cursor: pointer; }
.nav-links > a::after, .nav-links .dropdown-trigger::after { content:""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--sun); border-radius: 2px; transition: width .25s ease; }
.nav-links > a:hover::after, .nav-links .has-dropdown:hover .dropdown-trigger::after { width: 100%; }
.nav-links .dropdown-trigger .caret { display: inline-block; margin-left: 4px; font-size: .68em; opacity: .7; transition: transform .2s ease; }
.nav-links .has-dropdown:hover .dropdown-trigger .caret { transform: rotate(180deg); }
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute !important; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px; max-width: 280px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow); padding: 10px; z-index: 100;
  opacity: 0; visibility: hidden; pointer-events: none;
  /* belt-and-suspenders: also zero out via clip — even if opacity/visibility fail, the element is hidden */
  clip-path: inset(0 0 100% 0);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, clip-path .2s ease;
}
.nav-links .has-dropdown:hover .dropdown-menu,
.nav-links .has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  clip-path: inset(0 0 0 0);
}
.nav-links .dropdown-menu::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-links .dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 9px; font-family: var(--body);
  font-size: .92rem; font-weight: 500; color: var(--ink); transition: background .12s ease, color .12s ease;
}
.nav-links .dropdown-menu a:hover { background: var(--snow); color: var(--sun); }
.nav-links .dropdown-menu a small { display: block; font-size: .76rem; color: var(--mist); font-weight: 400; margin-top: 2px; }
.nav-cta { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.nav-cta .signin { font-family: var(--display); font-weight: 600; font-size: .94rem; padding: 10px 6px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; background: var(--night); overflow: hidden; }
.hero-sky {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 540px at 78% -8%, rgba(192,168,216,.26), transparent 60%),
    radial-gradient(720px 520px at 12% 0%, rgba(199,146,86,.14), transparent 62%),
    linear-gradient(180deg, #0e1015 0%, #14171f 46%, #191d27 100%);
}
.hero-scene { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; }
.hero-scene svg { width: 100%; display: block; }
.cloud {
  position: absolute; border-radius: 100px;
  background: rgba(255,255,255,.10); filter: blur(8px);
  animation: drift 46s linear infinite;
}
.cloud.c1 { width: 230px; height: 46px; top: 16%; left: -260px; }
.cloud.c2 { width: 150px; height: 34px; top: 30%; left: -200px; animation-duration: 64s; animation-delay: -22s; }
.cloud.c3 { width: 300px; height: 52px; top: 9%;  left: -340px; animation-duration: 82s; animation-delay: -48s; opacity: .6; }
@keyframes drift { to { transform: translateX(116vw); } }

.hero-inner { position: relative; z-index: 3; padding: 80px 0 230px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: start; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px); color: #dff1f0;
  padding: 8px 16px; border-radius: 999px; font-size: .82rem; font-weight: 500;
  margin-bottom: 26px;
}
.hero-badge .avs { display: flex; }
.hero-badge .avs span {
  width: 22px; height: 22px; border-radius: 50%; margin-left: -7px;
  border: 2px solid #0e1015; font-size: .6rem; display: grid; place-items: center;
  color: #04262a; font-weight: 800;
}
.hero-badge .avs span:first-child { margin-left: 0; }
.hero h1 { color: #fff; }
.hero .lead { color: #b9d2d8; font-size: 1.18rem; margin: 22px 0 0; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 30px; margin-top: 38px; }
.hero-stats .hs b { font-family: var(--display); font-size: 1.7rem; font-weight: 700; color: #fff; display: block; }
.hero-stats .hs span { font-size: .82rem; color: #8fb0b8; }

/* hero side: floating glass cards */
.hero-side { position: relative; min-height: 360px; }
.glass-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-radius: var(--radius);
  padding: 20px; color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
}
.float-card { position: absolute; animation: bob 6s ease-in-out infinite; }
.float-card.fc1 { top: 0; right: 10px; width: 264px; }
.float-card.fc2 { top: 168px; left: 0; width: 230px; animation-delay: -3s; }
.float-card.fc3 { top: 300px; right: 36px; width: 210px; animation-delay: -1.5s; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.mini-rv {
  height: 122px; border-radius: 15px; margin-bottom: 13px; position: relative; overflow: hidden;
}
.float-card h4 { font-family: var(--display); font-size: 1rem; color: #fff; }
.float-card .row { display: flex; justify-content: space-between; align-items: center; margin-top: 7px; }
.float-card .price { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.float-card .rate { font-size: .8rem; color: var(--gold); font-weight: 600; }
.float-card.fc2 { padding: 17px 19px; }
.float-card.fc2 .big { font-family: var(--display); font-size: 2.1rem; font-weight: 700; color: var(--gold); }
.float-card.fc2 small { color: #b9d2d8; font-size: .8rem; }
.float-card.fc3 { display: flex; align-items: center; gap: 11px; padding: 15px 18px; }
.float-card.fc3 .ico { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg,var(--glacier-dk),var(--glacier)); display: grid; place-items: center; flex: none; }
.float-card.fc3 b { font-family: var(--display); font-size: .92rem; }
.float-card.fc3 span { font-size: .76rem; color: #b9d2d8; }

/* search bar — overlaps hero bottom */
.search-shell { position: relative; z-index: 6; margin-top: -118px; }
.search-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px; display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.1fr 1.1fr auto; gap: 8px;
  border: 1px solid var(--line);
}
.sf { padding: 12px 18px; border-radius: 16px; cursor: pointer; transition: background .18s ease; }
.sf:hover { background: var(--snow); }
.sf label { font-family: var(--display); font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--mist); display: flex; align-items: center; gap: 6px; }
.sf input, .sf select {
  border: 0; background: none; font-family: var(--body);
  font-size: 1rem; font-weight: 600; color: var(--ink); width: 100%;
  padding: 4px 0 0; outline: none;
}
.search-card .btn { align-self: stretch; }

/* ---------- marquee ---------- */
.marquee { background: var(--deep); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 54px; white-space: nowrap; animation: scrollx 32s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 600; color: rgba(255,255,255,.55); font-size: .96rem; display: flex; align-items: center; gap: 54px; }
.marquee-track span::after { content:"●"; color: var(--sun); font-size: .6rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease;
}
.stat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat-tile .n { font-family: var(--display); font-size: 2.7rem; font-weight: 700; letter-spacing: -.04em; }
.stat-tile .n .grad-text { display: inline; }
.stat-tile .l { color: var(--mist); font-weight: 500; font-size: .94rem; margin-top: 2px; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }

/* photo placeholder system — gradient alpine scenes */
.ph { position: relative; overflow: hidden; isolation: isolate; }
.ph::before {
  content:""; position: absolute; inset: 0; z-index: -1;
}
.ph-glacier { background: linear-gradient(155deg,#3c4453,#272c38 58%,#191c25); }
.ph-pine    { background: linear-gradient(155deg,#6f5c3e,#493a26 58%,#2b2318); }
.ph-sunset  { background: linear-gradient(155deg,#7e5d52,#56403a 58%,#332827); }
.ph-dusk    { background: linear-gradient(155deg,#4c3e54,#332a3d 58%,#211c29); }
.ph-lake    { background: linear-gradient(155deg,#414c5e,#2b3441 58%,#1a212a); }
.ph-amber   { background: linear-gradient(155deg,#7d6845,#574731 58%,#352b1d); }
.ph-mtn { /* shared subtle mountain silhouette */ }
.ph .ph-rv { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); opacity: .95; filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }
.ph .ph-label {
  position: absolute; top: 12px; left: 12px;
  font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75); background: rgba(0,0,0,.18);
  padding: 4px 9px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ph-peaks {
  position: absolute; left: 0; right: 0; bottom: 0; height: 58%;
  z-index: -1; opacity: .55;
}

/* RV class card */
.class-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.class-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.class-card .thumb { height: 170px; position: relative; overflow: hidden; background:#1a1c22; }
.class-card .thumb > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.class-card:hover .thumb > img { transform: scale(1.05); }
.class-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55)); pointer-events: none; }
.class-card .thumb .ph-label { z-index: 2; }
.class-card .cc-body { padding: 22px 24px 24px; }
.class-card h3 { display: flex; align-items: center; justify-content: space-between; }
.class-card .arrow { width: 30px; height: 30px; border-radius: 50%; background: var(--snow); display: grid; place-items: center; transition: background .2s ease, transform .2s ease; flex: none; }
.class-card:hover .arrow { background: var(--sun); transform: rotate(-45deg); }
.class-card:hover .arrow svg path { stroke: #fff; }
.class-card p { font-size: .9rem; margin-top: 7px; }
.class-card .from { margin-top: 15px; font-family: var(--display); font-weight: 700; color: var(--teal-2); font-size: .92rem; }
.class-card .from s { color: var(--mist); font-weight: 500; margin-right: 6px; }

/* ---------- editorial benefit grid (no soft cards, no emoji) ---------- */
.bx-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  margin-top: 6px;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.bx-item {
  position: relative; background: #fff; padding: 40px 34px 42px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.bx-item::before {
  content: ""; position: absolute; left: -1px; top: -1px; bottom: -1px;
  width: 2px; background: var(--sun);
  transform: scaleY(0); transform-origin: top;
  transition: transform .34s cubic-bezier(.2,.7,.2,1);
}
.bx-item:hover { background: #fcfaff; }
.bx-item:hover::before { transform: scaleY(1); }
.bx-num {
  display: block; margin-bottom: 18px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  color: var(--glacier-dk);
}
.bx-item h3 {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 600;
  font-size: 1.42rem; line-height: 1.2; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 11px;
}
.bx-item p { font-size: .94rem; line-height: 1.62; color: var(--mist); margin: 0; }
@media (max-width: 900px) {
  .bx-grid { grid-template-columns: repeat(2,1fr); }
  .bx-item { padding: 32px 26px 34px; }
}
@media (max-width: 560px) {
  .bx-grid { grid-template-columns: 1fr; }
}

/* RV listing card */
.rv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.rv-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.rv-photo { height: 214px; position: relative; background: #1a1c22; }
.rv-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.rv-photo .tag {
  position: absolute; top: 13px; left: 13px;
  background: rgba(255,255,255,.96); color: var(--deep);
  font-family: var(--display); font-weight: 600; font-size: .73rem;
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 5px;
}
.rv-photo .tag.hot { background: linear-gradient(120deg,var(--sun),var(--sun-2)); color: #fff; }
.rv-photo .heart {
  position: absolute; top: 11px; right: 13px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center;
  transition: transform .15s ease;
}
.rv-photo .heart:hover { transform: scale(1.14); }
.rv-card .rc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.rv-loc { font-size: .8rem; color: var(--mist); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.rv-card h3 { font-size: 1.1rem; }
.rv-specs { display: flex; gap: 13px; flex-wrap: wrap; margin: 5px 0 6px; }
.rv-specs span { font-size: .8rem; color: var(--mist); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.rv-card .rc-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.rv-card .price b { font-family: var(--display); font-size: 1.4rem; }
.rv-card .price span { font-size: .82rem; color: var(--mist); }
.stars { color: var(--gold); font-weight: 700; font-size: .86rem; display: flex; align-items: center; gap: 4px; }
.stars .rev { color: var(--mist); font-weight: 500; }

/* =====================================================================
   DESTINATIONS (Rockies) — big visual cards
   ===================================================================== */
.dest-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 218px; gap: 20px; }
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
  background: #1a1c22;
}
.dest:hover { transform: scale(1.018); }
.dest > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; z-index: 0; }
.dest:hover > img { transform: scale(1.06); }
.dest::after { content:""; position: absolute; inset: 0; background: linear-gradient(transparent 28%, rgba(6,20,28,.82)); z-index: 1; }
.dest > *:not(img) { position: relative; z-index: 2; }
.dest.big { grid-row: span 2; }
.dest .km { font-size: .78rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; }
.dest h3 { font-size: 1.5rem; color: #fff; margin-top: 3px; }
.dest.big h3 { font-size: 2.1rem; }
.dest p { color: rgba(255,255,255,.8); font-size: .88rem; margin-top: 5px; }

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; position: relative; }
.step { position: relative; }
.step .num {
  width: 58px; height: 58px; border-radius: 17px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--teal-2), var(--glacier-dk));
  color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.4rem;
  display: grid; place-items: center; box-shadow: var(--glow-glacier);
}
.step:nth-child(2) .num { background: linear-gradient(135deg, var(--sun), var(--sun-2)); box-shadow: var(--glow-sun); }
.step:nth-child(3) .num { background: linear-gradient(135deg, var(--gold), var(--sun-2)); }
.step h3 { margin-bottom: 8px; font-size: 1.22rem; }
.step p { font-size: .93rem; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.t-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative;
}
.t-card .quote-mark { font-family: var(--display); font-size: 4rem; line-height: .6; color: var(--glacier); opacity: .35; }
.t-card .stars { margin: 6px 0 12px; }
.t-card p { color: var(--ink); font-size: 1.01rem; }
.t-who { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.t-av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #fff; flex: none; }
.t-who b { font-family: var(--display); font-size: .94rem; }
.t-who small { color: var(--mist); }

/* =====================================================================
   HOST CTA
   ===================================================================== */
.host-cta { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--night); }
.host-cta .host-sky { position: absolute; inset: 0; background:
  radial-gradient(620px 420px at 84% 8%, rgba(231,207,154,.24), transparent 62%),
  radial-gradient(520px 420px at 6% 100%, rgba(199,146,86,.17), transparent 62%); }
.host-cta-inner { position: relative; z-index: 2; padding: 70px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; }
.host-cta h2 { color: #fff; }
.host-cta p { color: #b9d2d8; margin: 14px 0 26px; max-width: 460px; }
.earn-dial {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 30px; text-align: center; color: #fff;
  backdrop-filter: blur(10px);
}
.earn-dial .big { font-family: var(--display); font-size: 3.5rem; font-weight: 700; letter-spacing: -.04em; }
.earn-dial .cap { color: #b9d2d8; font-size: .9rem; }
.earn-dial .bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.14); margin: 16px 0 8px; overflow: hidden; }
.earn-dial .bar i { display: block; height: 100%; width: 78%; border-radius: 999px; background: linear-gradient(90deg,var(--glacier),var(--gold),var(--sun)); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 26px; font-family: var(--display); font-weight: 600; font-size: 1.04rem;
  color: var(--ink); display: flex; justify-content: space-between; gap: 18px; align-items: center;
}
.faq-q .ic {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--snow); display: grid; place-items: center;
  font-size: 1.3rem; color: var(--sun); transition: transform .25s ease, background .2s ease;
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--sun); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 340px; }
.faq-a p { padding: 0 26px 24px; font-size: .96rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--night); color: #9fc0c4; padding: 80px 0 34px; position: relative; overflow: hidden; }
.site-footer .foot-glow { position: absolute; inset: 0; background: radial-gradient(640px 300px at 80% 0%, rgba(231,207,154,.11), transparent 60%); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { font-family: var(--display); color: #fff; font-size: .96rem; margin-bottom: 16px; }
.site-footer a { display: block; color: #9fc0c4; font-size: .9rem; padding: 6px 0; transition: color .15s ease, padding-left .15s ease; }
.site-footer a:hover { color: var(--gold); padding-left: 4px; }
.site-footer .logo { color: #fff; margin-bottom: 16px; }
.foot-news { display: flex; gap: 8px; margin-top: 14px; }
.foot-news input { flex: 1; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; font-family: var(--body); font-size: .88rem; }
.foot-news input::placeholder { color: #6f9398; }
.foot-bottom { position: relative; border-top: 1px solid rgba(255,255,255,.1); margin-top: 52px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: #6f9398; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; padding: 0; }
.foot-social a:hover { background: var(--sun); padding-left: 0; }

/* =====================================================================
   INNER PAGE BITS — breadcrumb, page hero, layout, listing detail
   ===================================================================== */
.crumb { font-size: .84rem; color: var(--mist); padding: 20px 0; font-weight: 500; }
.crumb a:hover { color: var(--sun); }
.crumb .sep { margin: 0 8px; opacity: .45; }

.page-hero { position: relative; background: var(--night); overflow: hidden; }
.page-hero .hero-sky { position: absolute; inset: 0; }
.page-hero .hero-scene { position: absolute; left:0; right:0; bottom:0; }
.page-hero-inner { position: relative; z-index: 3; padding: 36px 0 96px; }
.page-hero .crumb { color: #9fc0c4; }
.page-hero .crumb a { color: #cfe6e6; }
.page-hero h1 { color: #fff; max-width: 780px; }
.page-hero .ph-lead { color: #b9d2d8; max-width: 620px; margin-top: 16px; font-size: 1.1rem; }
.page-hero .ph-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.page-hero .ph-meta span {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #dff1f0; padding: 9px 16px; border-radius: 999px; font-size: .86rem; font-weight: 600;
  display: flex; align-items: center; gap: 7px; backdrop-filter: blur(6px);
}

.seo-note {
  background: linear-gradient(120deg,#fff6ee,#fdf0e6);
  border: 1px dashed var(--sun); border-radius: var(--radius-sm);
  padding: 15px 20px; font-size: .84rem; color: #9a4a23;
}
.seo-note b { color: var(--sun); font-family: var(--display); }
.seo-note code { background: rgba(255,122,77,.14); padding: 1px 6px; border-radius: 5px; font-size: .82em; }

.layout { display: grid; grid-template-columns: 1fr 350px; gap: 44px; align-items: start; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  background: #fff; border: 1.4px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-family: var(--display); font-size: .86rem; font-weight: 500;
  cursor: pointer; color: var(--ink); transition: all .16s ease;
}
.chip:hover { border-color: var(--teal-2); }
.chip.active { background: var(--deep); color: #fff; border-color: var(--deep); }

.sidebar, .book-card {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.sidebar h3 { margin-bottom: 16px; }
.field { margin-bottom: 15px; }
.field label { font-family: var(--display); font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--mist); display: block; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border: 1.4px solid var(--line); border-radius: 12px;
  font-family: var(--body); font-size: .94rem; color: var(--ink); transition: border-color .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--teal-2); }
/* Currency input wrapper — adds $ prefix / % suffix */
.ccy-wrap { position: relative; }
.ccy-wrap > input { padding-left: 30px !important; }
.ccy-wrap > input[id$="-apr"] { padding-left: 14px !important; padding-right: 32px !important; }
.ccy-prefix, .ccy-suffix {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-weight: 700; color: var(--mist);
  font-size: 1rem; pointer-events: none;
}
.ccy-prefix { left: 14px; }
.ccy-suffix { right: 14px; }
/* Cycle / workflow diagram */
.cycle { position: relative; margin-top: 24px; }
.cycle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cycle-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; position: relative; transition: transform .2s ease, box-shadow .25s ease;
}
.cycle-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cycle-step .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-2), var(--glacier-dk));
  color: var(--on-accent); font-family: var(--display); font-weight: 700; font-size: 1rem;
  display: grid; place-items: center; margin-bottom: 14px; box-shadow: var(--glow-glacier);
}
.cycle-step:nth-child(2) .num,
.cycle-step:nth-child(5) .num { background: linear-gradient(135deg, var(--sun), var(--sun-2)); box-shadow: var(--glow-sun); }
.cycle-step:nth-child(3) .num,
.cycle-step:nth-child(6) .num { background: linear-gradient(135deg, var(--gold), var(--sun-2)); }
.cycle-step .ico { font-size: 1.6rem; margin-bottom: 8px; }
.cycle-step h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 6px; }
.cycle-step p { font-size: .9rem; color: var(--ink); line-height: 1.55; }
.cycle-step .money { font-family: var(--display); font-weight: 700; color: var(--teal-2); margin-top: 8px; font-size: .88rem; }
.cycle-loop {
  margin-top: 26px; padding: 22px 28px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255,194,75,.10), rgba(123,95,160,.10));
  border: 1px dashed var(--gold); display: flex; gap: 18px; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; color: var(--ink); flex-wrap: wrap; text-align: center;
}
.cycle-loop .arrow { font-size: 1.3rem; color: var(--sun); }
@media (max-width: 920px) { .cycle-grid { grid-template-columns: 1fr; } }

.prose { max-width: 820px; }
.prose h2 { margin: 40px 0 14px; }
.prose h3 { margin: 26px 0 8px; font-size: 1.2rem; }
.prose p { margin-bottom: 14px; color: var(--ink); }
.prose ul { margin: 0 0 18px 4px; list-style: none; }
.prose li { margin-bottom: 9px; padding-left: 28px; position: relative; color: var(--ink); }
.prose li::before { content:""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg,var(--glacier),var(--teal-2)); }
.prose li::after { content:"✓"; position: absolute; left: 3.5px; top: 6px; color: #fff; font-size: .62rem; font-weight: 900; }

/* listing gallery */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; border-radius: var(--radius); overflow: hidden; }
.gallery .g-main { grid-row: 1 / 3; min-height: 420px; }
.gallery .g-sm { min-height: 204px; }
.gallery .ph { border-radius: 14px; }
.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 26px 0; }
.spec-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; text-align: center; }
.spec-box .v { font-family: var(--display); font-weight: 700; font-size: 1.25rem; }
.spec-box .k { font-size: .78rem; color: var(--mist); font-weight: 500; }
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 16px 0; }
.amenities div { font-size: .92rem; color: var(--ink); font-weight: 500; display: flex; gap: 9px; align-items: center; }
.amenities .ax { width: 22px; height: 22px; border-radius: 7px; background: var(--snow); display: grid; place-items: center; color: var(--glacier-dk); flex: none; font-weight: 800; font-size: .7rem; }
.book-card .price-line { display: flex; align-items: baseline; gap: 7px; }
.book-card .price-line b { font-family: var(--display); font-size: 2.2rem; font-weight: 700; }
.book-card .price-line span { color: var(--mist); }
.host-box { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-top: 26px; }

.city-quad { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.city-tile {
  position: relative; height: 160px; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; padding: 18px; color: #fff;
  font-family: var(--display); font-weight: 600; box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.city-tile:hover { transform: translateY(-6px); }
.city-tile::after { content:""; position: absolute; inset: 0; background: linear-gradient(transparent 36%, rgba(6,20,28,.78)); }
.city-tile span { position: relative; z-index: 2; }
.city-tile small { display: block; font-weight: 400; font-size: .78rem; opacity: .82; font-family: var(--body); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-inner { padding-bottom: 200px; }
  .grid-4, .statband { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 920px) {
  /* tighter, symmetric gutters on tablet/phone */
  .wrap { padding: 0 20px; }
  .nav { gap: 14px; height: 68px; }
  .logo img { height: 38px; }

  /* ---- mobile drawer for the main nav ---- */
  .nav-links { display: none; }
  .nav-toggle { display: block; order: 3; padding: 6px; margin-left: 4px; }
  /* When .show is added by JS, the nav-links becomes a drop-down panel under the header */
  .nav-links.show {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(245,240,250,.98);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(8,26,38,.10);
    padding: 8px 20px 18px;
    z-index: 60;
  }
  .nav-links.show > a,
  .nav-links.show .dropdown-trigger {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(13,42,60,.06);
    font-size: 1rem;
    width: 100%;
  }
  .nav-links.show > a::after { display: none; }
  .nav-links.show .has-dropdown { width: 100%; }
  .nav-links.show .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none; pointer-events: auto;
    box-shadow: none; border: 0; padding: 0 0 8px 16px; margin: 0;
    background: transparent; min-width: 0;
  }
  .nav-links.show .dropdown-menu a { padding: 10px 0; border-bottom: 0; font-size: .94rem; }

  /* "Sign in" link rendered inside the drawer when JS injects it */
  .nav-links.show .drawer-signin {
    display: block;
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
    font-family: var(--display);
    font-weight: 600;
    font-size: .96rem;
    color: var(--ink);
    background: #fff;
  }

  /* nav-cta stays visible on mobile but gets slimmer */
  .nav-cta { gap: 8px; margin-left: auto; }
  .nav-cta .signin { font-size: .86rem; padding: 8px 6px; }
  .nav-cta .btn.btn-sm { padding: 8px 14px; font-size: .82rem; }

  .grid-3, .grid-2, .steps, .t-grid, .layout, .host-cta-inner, .spec-grid, .city-quad { grid-template-columns: 1fr; }
  .search-card { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest.big { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .host-cta-inner { padding: 40px 28px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .g-main { grid-row: auto; grid-column: 1 / 3; }
  .sidebar, .book-card { position: static; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  /* keep Sign in visible — collapse the button label instead */
  .nav-cta .signin { display: inline-block; font-size: .82rem; padding: 6px 2px; }
  .nav-cta .btn.btn-sm { padding: 7px 12px; font-size: .76rem; }

  .grid-4, .statband, .search-card, .dest-grid, .footer-grid, .city-quad, .gallery { grid-template-columns: 1fr; }
  .hero-inner { padding: 48px 0 160px; }
  .host-cta-inner { padding: 28px 22px; }
  .search-shell { margin-top: -100px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 28px; }
  h1, .h1 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
}

@media (max-width: 380px) {
  /* very narrow phones — keep Sign in visible as a compact icon-link */
  .nav-cta { gap: 6px; }
  .nav-cta .signin {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; padding: 0; border-radius: 50%;
    background: rgba(13,42,60,.06); font-size: 0;
  }
  .nav-cta .signin::before {
    content: "⇥"; font-size: 1rem; color: var(--ink); transform: translateX(1px);
  }
  .nav-cta .btn.btn-sm { padding: 7px 10px; font-size: .72rem; }
}

/* =========================================================
   MOBILE POLISH — symmetric gutters, centered hero, no overflow
   ========================================================= */
@media (max-width: 720px) {
  /* Guaranteed-symmetric horizontal padding for everything */
  html, body { overflow-x: clip; }
  .wrap { padding-left: clamp(16px, 5vw, 22px); padding-right: clamp(16px, 5vw, 22px); }

  /* Hero: stack vertically, center for visual balance, no off-screen artifacts */
  .hero-inner { padding: 56px 0 130px; }
  .hero-grid { gap: 28px; text-align: center; }
  .hero-grid > .reveal { display: flex; flex-direction: column; align-items: center; }
  .hero-badge { margin: 0 auto; max-width: 100%; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem) !important; }
  .hero h1 br { display: none; }                /* let it flow naturally on phones */
  .hero .lead { margin: 18px auto 0; font-size: 1rem; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px; width: 100%; margin-top: 28px; text-align: center;
  }
  .hero-stats .hs b { font-size: 1.35rem; }
  .hero-stats .hs span { font-size: .72rem; line-height: 1.3; display: block; }

  /* Center section heads on mobile (they look unbalanced when left-aligned in a narrow column) */
  .section-head { text-align: center; margin-inline: auto; }
  .section-head .eyebrow { justify-content: center; }
  .section-head .eyebrow::before { display: none; }

  /* Don't let inline max-widths or absolute-positioned chrome push the layout */
  section, header, footer { overflow-x: clip; }
  img, svg, video { max-width: 100%; height: auto; }

  /* Header: never let sign-in disappear from the top bar */
  .nav-cta { flex-wrap: nowrap; }
  .nav-cta .signin { white-space: nowrap; }
}

/* Tiny phones (≤380): the sign-in becomes a circular icon — already handled above. */

/* =========================================================
   PROSPECTIVE INVENTORY — refined card grid (gucci edition)
   ========================================================= */
.fleet-section .eyebrow::before { display:none; }
.fleet-section .eyebrow .dot-live {
  display:inline-block; width:7px; height:7px; border-radius:50%;
  background:#1aa05a; margin-right:8px; vertical-align:middle;
  animation:fleet-pulse 1.8s ease-in-out infinite;
}
@keyframes fleet-pulse {
  0%, 100% { opacity:1; transform:scale(1); }
  50%      { opacity:.45; transform:scale(1.35); }
}

/* Filter chips */
.fleet-filter {
  display:flex; flex-wrap:wrap; gap:9px; justify-content:center;
  align-items:center; margin:0 0 32px;
}
.fleet-filter .chip {
  font-family:var(--display); font-weight:600; font-size:.82rem;
  letter-spacing:.02em; padding:8px 16px; border-radius:999px;
  background:#fff; color:var(--ink); border:1.5px solid var(--line);
  cursor:pointer; transition:all .15s ease;
  display:inline-flex; align-items:center; gap:7px;
}
.fleet-filter .chip:hover { border-color:var(--gold); }
.fleet-filter .chip.active {
  background:var(--ink); color:#fff; border-color:var(--ink);
}
.fleet-filter-sep {
  display:inline-block; width:1px; height:22px; background:var(--line); margin:0 6px;
}
.fleet-filter .chip-avail .adot { width:8px; height:8px; }

/* Grid */
.fleet-grid {
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr));
  gap:24px;
}
@media (max-width:1180px){ .fleet-grid { grid-template-columns:repeat(3, minmax(0,1fr)); } }
@media (max-width:880px) { .fleet-grid { grid-template-columns:repeat(2, minmax(0,1fr)); gap:18px; } }
@media (max-width:540px) { .fleet-grid { grid-template-columns:1fr; max-width:420px; margin:0 auto; } }

/* Card */
.fleet-card {
  background:#fff; border:1px solid var(--line); border-radius:16px;
  overflow:hidden; display:flex; flex-direction:column;
  position:relative;
  transition:transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .25s ease;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.fleet-card.hidden { display:none; }
.fleet-card:hover {
  transform:translateY(-4px);
  box-shadow:0 22px 50px rgba(20,16,8,.10), 0 4px 14px rgba(123,95,160,.08);
  border-color:#e2d6b8;
}

/* Photo — slim cinematic 21:9 with a hard height cap so it never dominates */
.fleet-photo {
  position:relative; aspect-ratio:21/9; max-height:200px;
  overflow:hidden; background:#1a1c22;
}
.fleet-photo img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .5s cubic-bezier(.2,.7,.2,1);
}
.fleet-card:hover .fleet-photo img { transform:scale(1.045); }
.fleet-photo::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,15,10,.12) 0%, rgba(20,15,10,0) 38%, rgba(20,15,10,.55) 100%);
  pointer-events:none;
}

/* Category badge — top-left, refined */
.fleet-cat {
  position:absolute; top:12px; left:12px; z-index:2;
  font-family:var(--display); font-weight:700; font-size:.64rem;
  letter-spacing:.18em; padding:6px 10px; border-radius:5px;
  text-transform:uppercase; color:#fff;
  background:rgba(20,16,10,.78); backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 4px 12px rgba(0,0,0,.25);
}
.fleet-cat.cat-a  { background:rgba(96,40,124,.88); }
.fleet-cat.cat-b  { background:rgba(26,75,128,.88); }
.fleet-cat.cat-c  { background:rgba(168,84,28,.88); }
.fleet-cat.cat-tt { background:rgba(48,96,52,.88); }
.fleet-cat.cat-aq { background:rgba(20,112,132,.88); }

/* Availability pill — floating top-right, glassmorphic */
.fleet-photo .fleet-avail {
  position:absolute; top:12px; right:12px; z-index:2;
  display:inline-flex; align-items:center; gap:7px;
  padding:6px 11px; border-radius:999px;
  background:rgba(255,255,255,.92); backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 4px 14px rgba(0,0,0,.18);
  font-family:var(--display); font-weight:600; font-size:.72rem; letter-spacing:.01em;
  max-width:calc(100% - 100px); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.fleet-photo .fleet-avail .alabel { color:var(--ink); }
.fleet-photo .fleet-avail .anote { display:none; }   /* keep pill compact — note shown in body */

/* Card body */
.fleet-body {
  padding:18px 20px 18px; flex:1; display:flex; flex-direction:column; gap:9px;
  position:relative;
}
/* hairline gold accent under the photo */
.fleet-body::before {
  content:""; position:absolute; top:0; left:20px; right:20px; height:1px;
  background:linear-gradient(90deg, transparent, var(--glacier), transparent);
  opacity:.6;
}

.fleet-body h3 {
  font-family:var(--display); font-weight:600; font-size:1.04rem;
  line-height:1.22; letter-spacing:-.012em; color:var(--ink); margin:2px 0 0;
}

/* Meta line — refined with dot separators */
.fleet-meta {
  font-size:.79rem; color:var(--mist); display:flex; flex-wrap:wrap;
  gap:6px; align-items:center; font-family:var(--body);
}
.fleet-meta > span:not(:last-child)::after {
  content:""; display:inline-block; width:3px; height:3px; border-radius:50%;
  background:var(--mist); opacity:.5; margin-left:8px; vertical-align:middle;
}
.fleet-meta > span { display:inline-flex; align-items:center; }
/* Hide the old explicit "·" separator spans we shipped in earlier markup */
.fleet-meta > span:has(+ span)[aria-hidden],
.fleet-meta > span:empty { display:none; }

/* Body availability note (under meta) — small refined line, NOT redundant with pill */
.fleet-body .fleet-avail {
  display:none;   /* hide the body version when the pill is on the photo */
}
/* Status note row instead — pulled from .anote into a tiny chip-style strip */
.fleet-status-note {
  font-family:var(--body); font-size:.72rem; color:var(--mist);
  display:flex; align-items:center; gap:6px; margin-top:-2px;
}
.fleet-status-note .adot { width:6px; height:6px; }

/* Earn block — premium dark obsidian with gold gradient number */
.fleet-earn {
  margin-top:6px;
  padding:14px 16px;
  border-radius:11px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(192,168,216,.20), transparent 60%),
    linear-gradient(135deg, #1a1d24 0%, #0e1015 100%);
  border:1px solid rgba(192,168,216,.22);
  position:relative; overflow:hidden;
}
.fleet-earn::before {
  content:""; position:absolute; left:0; top:14px; bottom:14px; width:3px;
  background:linear-gradient(180deg, var(--sun), var(--gold)); border-radius:0 3px 3px 0;
}
.fleet-earn small {
  font-family:var(--display); font-weight:600; font-size:.62rem;
  text-transform:uppercase; letter-spacing:.18em;
  color:var(--glacier); display:block; margin-left:10px;
}
.fleet-earn .amt {
  font-family:var(--serif); font-weight:700; font-size:1.6rem;
  letter-spacing:-.025em; margin:2px 0 2px 10px;
  display:flex; align-items:baseline; gap:5px;
  color:var(--ink);
}
.fleet-earn .amt .num { font-family:'JetBrains Mono',ui-monospace,monospace; font-variant-numeric:tabular-nums; }
.fleet-earn .amt .per {
  font-family:var(--body); font-size:.8rem; font-weight:500;
  color:#9a9ba2; -webkit-text-fill-color:#9a9ba2;
}
.fleet-earn .rng {
  font-family:var(--body); text-transform:none; letter-spacing:0;
  font-weight:500; color:#8a8d96; font-size:.72rem; margin-left:10px;
}

/* CTA row */
.fleet-cta {
  margin-top:auto; padding:12px 0 2px; border-top:1px solid var(--line);
  font-family:var(--display); font-weight:600; font-size:.84rem; letter-spacing:.02em;
  color:var(--ink); display:flex; justify-content:space-between; align-items:center;
  transition:color .15s ease;
}
.fleet-cta::after {
  content:"→"; transition:transform .25s cubic-bezier(.2,.7,.2,1); color:var(--sun);
}
.fleet-cta:hover { color:var(--sun); }
.fleet-cta:hover::after { transform:translateX(4px); }

/* Conversion nudge band */
.fleet-nudge {
  margin-top:40px; padding:28px 32px;
  background:linear-gradient(135deg, #f6ecfb, #ecdcf3);
  border:1px dashed #c0a8d8; border-radius:16px;
  display:flex; justify-content:space-between; align-items:center;
  gap:24px; flex-wrap:wrap;
}
.fleet-nudge > div { flex:1; min-width:260px; }
.fleet-nudge p { color:#3a3c44 !important; }

/* Reusable status dots */
.adot {
  display:inline-block; width:9px; height:9px; border-radius:50%;
  flex-shrink:0; animation:fleet-pulse 1.8s ease-in-out infinite;
}
.adot-green { background:#1aa05a; }
.adot-amber { background:#d99a1f; }
.adot-red   { background:#cc2a2a; }

@media (max-width:720px) {
  .fleet-filter { gap:6px; }
  .fleet-filter .chip { padding:7px 13px; font-size:.76rem; }
  .fleet-filter-sep { display:none; }
  .fleet-nudge { padding:22px 20px; text-align:center; }
  .fleet-nudge > div { min-width:0; }
  .fleet-nudge .btn { width:100%; justify-content:center; }

  /* /our-fleet page hero — tighten on mobile, center the text block */
  .page-hero-inner { padding:20px 0 60px; text-align:center; }
  .page-hero .crumb { display:none; }
  .page-hero h1 { font-size:clamp(2rem, 9vw, 2.8rem); margin-inline:auto; }
  .page-hero h1 br { display:none; }
  .page-hero .ph-lead { margin-left:auto; margin-right:auto; font-size:1rem; }

  /* Trim the fleet section's vertical padding on phones so the grid sits closer */
  .fleet-section { padding:36px 0 60px; }
  .fleet-section .section-head { margin-bottom:24px; }

  /* Filter row scrolls horizontally instead of wrapping into 3 messy lines */
  .fleet-filter {
    flex-wrap:nowrap; justify-content:flex-start;
    overflow-x:auto; padding:4px 4px 12px;
    -webkit-overflow-scrolling:touch; scrollbar-width:none;
  }
  .fleet-filter::-webkit-scrollbar { display:none; }
  .fleet-filter .chip { flex-shrink:0; }
}

/* Phone — single column with FULL gutter symmetry */
@media (max-width:540px) {
  .fleet-grid { gap:14px; max-width:none; }
  .fleet-card { border-radius:14px; }
  .fleet-photo { aspect-ratio:21/9; max-height:170px; }
  .fleet-body { padding:14px 16px 14px; }
  .fleet-body h3 { font-size:1rem; }
  .fleet-earn { padding:12px 14px; }
  .fleet-earn .amt { font-size:1.35rem; }
  .fleet-photo .fleet-avail {
    top:10px; right:10px; padding:5px 9px; font-size:.66rem;
    max-width:calc(100% - 90px);
  }
  .fleet-cat { top:10px; left:10px; padding:5px 8px; font-size:.6rem; }
}

/* =========================================================
   MOTORHOME SHOWCASE — slideshow on the homepage
   ========================================================= */
.showcase-section {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, var(--snow) 0%, #ecdfc7 100%);
  position: relative;
}
.showcase-head {
  max-width: 660px;
  margin: 0 auto 40px;
  text-align: center;
}
.showcase-head h2 { margin: 14px 0 12px; }
.showcase-head p { font-size: 1.04rem; }

.showcase {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(20,16,8,.22), 0 6px 20px rgba(123,95,160,.10);
  background: #0e1015;
  aspect-ratio: 16 / 9;
  max-height: 580px;
}

.sc-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .85s cubic-bezier(.65,0,.35,1);
  will-change: transform;
}

.sc-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.sc-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}
.sc-slide.is-active img {
  transform: scale(1.12);   /* slow Ken Burns zoom while active */
}

/* Caption overlay — glassmorphic bottom-left card */
.sc-caption {
  position: absolute;
  left: 32px; bottom: 32px;
  max-width: 460px;
  padding: 22px 26px 20px;
  background: rgba(20,16,10,.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(192,168,216,.26);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  transform: translateY(28px);
  opacity: 0;
  transition: opacity .55s ease .35s, transform .65s cubic-bezier(.2,.7,.2,1) .35s;
}
.sc-slide.is-active .sc-caption {
  transform: translateY(0);
  opacity: 1;
}
.sc-caption .sc-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
  margin-bottom: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 0;
}
.sc-caption .sc-tag.tag-a,
.sc-caption .sc-tag.tag-b,
.sc-caption .sc-tag.tag-c,
.sc-caption .sc-tag.tag-tt { background: rgba(255,255,255,.92); color: var(--ink); }

.sc-caption h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.12;
}
.sc-caption .sc-meta {
  font-family: var(--body);
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 12px;
}
.sc-caption .sc-earn {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(192,168,216,.26);
  font-family: var(--display);
  font-size: .9rem;
}
.sc-caption .sc-earn small {
  font-weight: 600;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--glacier);
}
.sc-caption .sc-earn b {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: #fff;
}

/* Arrows */
.sc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.5);
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease;
}
.sc-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.sc-arrow.sc-prev { left: 18px; }
.sc-arrow.sc-next { right: 18px; }

/* Progress bar */
.sc-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 5;
}
.sc-progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sun), var(--glacier));
  width: 0%;
  transition: width 60ms linear;
}

/* Dot indicators */
.sc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.sc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(20,16,8,.18);
  border: 0;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, width .25s ease;
  padding: 0;
}
.sc-dot:hover { background: rgba(20,16,8,.4); }
.sc-dot.is-active {
  background: var(--sun);
  width: 26px;
  border-radius: 5px;
}

.sc-cta {
  text-align: center;
  margin-top: 26px;
}
.sc-cta .btn { box-shadow: var(--shadow-sm); }

@media (max-width: 720px) {
  .showcase-section { padding: 56px 0 70px; }
  .showcase-head { margin-bottom: 26px; }
  .showcase-stage { aspect-ratio: 4 / 3; border-radius: 16px; }
  .sc-caption {
    left: 14px; right: 14px; bottom: 14px;
    max-width: none;
    padding: 16px 18px 14px;
    border-radius: 12px;
  }
  .sc-caption h3 { font-size: 1.1rem; }
  .sc-caption .sc-meta { font-size: .82rem; margin-bottom: 8px; }
  .sc-caption .sc-earn b { font-size: 1.1rem; }
  .sc-arrow { width: 40px; height: 40px; }
  .sc-arrow.sc-prev { left: 10px; }
  .sc-arrow.sc-next { right: 10px; }
  .sc-dot.is-active { width: 22px; }
}

@media (max-width: 460px) {
  .showcase-stage { aspect-ratio: 3 / 4; max-height: 520px; }
}
