/* =========================================================
   LUXE TEMPLATE — shared chrome for all RV Best pages
   Palette: Lavender Bloom
   ========================================================= */
:root {
  --paper:    #f5f0fa;
  --paper-2:  #ffffff;
  --paper-3:  #ebe1f3;
  --ink:      #221538;
  --ink-2:    #4a3b65;
  --mist:     #7e7290;
  --line:     rgba(34,21,56,.10);
  --line-2:   rgba(34,21,56,.06);
  --gold:     #7b5fa0;
  --gold-dk:  #6a4f8c;
  --gold-mid: #9a7fbf;
  --glacier:  #c0a8d8;
  --champ:    linear-gradient(105deg,#7b5fa0,#9a7fbf 55%,#c0a8d8);
  --serif:    'Playfair Display', Georgia, serif;
  --display:  'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:     'JetBrains Mono', ui-monospace, monospace;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%; max-width: 100%;
}
/* never let media or the menu icon push past the viewport */
img, svg, video, iframe { max-width: 100%; }
.lx-header.menu-open .lx-menu-toggle svg { transform: rotate(90deg); transition: transform .3s ease; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold); color: #fff; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============ Typography helpers ============ */
/* Editorial section marker — monospace index + label, left aligned. */
.serif-eyebrow,
.lx-eyebrow {
  font-family: var(--mono); font-weight: 500; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dk);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.lx-eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block;
}
/* (no trailing rule — asymmetry reads as designed, not templated) */
.lx-eyebrow::after { display: none; }

.serif-h1, .lx-h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1.0; letter-spacing: -.035em;
  color: var(--ink);
}
.serif-h2, .lx-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04; letter-spacing: -.03em;
  color: var(--ink);
}
/* Accent words: solid italic serif in flat accent + a hand-set underline.
   No gradient-clip text (the dead giveaway). */
.serif-h1 em, .serif-h2 em, .lx-h1 em, .lx-h2 em,
.lx-page-hero h1 em, .lx-home-h1 em {
  font-style: italic; font-weight: 500;
  color: var(--gold-dk);
  background: none; -webkit-text-fill-color: currentColor;
  text-decoration: underline;
  text-decoration-color: var(--glacier);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.lx-lead {
  font-family: var(--body); font-size: 1.12rem;
  color: var(--ink-2); margin: 0 auto;
  max-width: 600px; line-height: 1.7;
}
.lx-lead b { color: var(--ink); font-weight: 600; }

/* ============ Buttons — squared, confident, signature arrow ============ */
/* Primary: solid ink slab. Hover shifts to accent — no pill, no glow, no lift. */
.btn-fill {
  font-family: var(--display); font-weight: 600; font-size: .82rem;
  letter-spacing: .02em;
  padding: 17px 26px; border-radius: 4px;
  background: var(--ink); color: var(--paper); border: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  transition: background .28s cubic-bezier(.2,.7,.2,1), gap .2s ease;
  cursor: pointer;
}
.btn-fill svg { transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.btn-fill:hover { background: var(--gold-dk); gap: 16px; }
.btn-fill:hover svg { transform: translateX(3px); }
.btn-fill-lg { padding: 20px 32px; font-size: .9rem; }

/* Secondary: text + animated rule underneath (link-as-button) */
.btn-line {
  font-family: var(--display); font-weight: 600; font-size: .82rem;
  letter-spacing: .02em;
  padding: 17px 6px; border-radius: 0;
  background: transparent; color: var(--ink); border: 0;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: color .2s ease;
}
.btn-line::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: 8px;
  height: 2px; background: var(--ink);
  transform: scaleX(1); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .2s ease;
}
.btn-line:hover { color: var(--gold-dk); }
.btn-line:hover::after { background: var(--gold-dk); transform: scaleX(.4); }

/* Accent slab — used for high-emphasis CTAs */
.btn-dark {
  font-family: var(--display); font-weight: 600; font-size: .82rem;
  letter-spacing: .02em;
  padding: 17px 26px; border-radius: 4px;
  background: var(--gold-dk); color: #fff; border: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  transition: background .28s ease, gap .2s ease;
  cursor: pointer;
}
.btn-dark:hover { background: var(--ink); gap: 16px; }

/* ============ HEADER (fixed glass) ============ */
.lx-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  /* solid bar so the hero photo never leaks up behind the nav */
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, box-shadow .25s ease;
}
.lx-header.scrolled {
  padding: 12px 32px;
  background: rgba(245,240,250,.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 6px 24px rgba(34,21,56,.07);
}
.lx-brand {
  font-family: var(--serif); font-weight: 700; font-size: 1.6rem;
  letter-spacing: -.02em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 11px;
}
.lx-brand i {
  font-style: italic; color: var(--gold);
  display: inline-block;
}
.lx-brand .lx-wordmark { display: inline-flex; align-items: baseline; }

/* ===== Real RVBest logo (from rvbest.ca) ===== */
.lx-logo-img { height: 42px; width: auto; display: block; transition: opacity .2s ease; }
.lx-brand:hover .lx-logo-img { opacity: .85; }
.lx-footer-brand .lx-logo-img { height: 48px; }
.lx-header.scrolled .lx-logo-img { height: 38px; }

/* legacy Summit Seal mark — kept for any page still referencing it */
.lx-mark { width: 34px; height: 34px; flex-shrink: 0; color: var(--ink); display: block; }
.lx-mark .pk-back { fill: var(--glacier); }
.lx-mark .pk-front { fill: var(--gold); }
.lx-mark .sun { fill: var(--gold); }
.lx-brand:hover .lx-mark .pk-front { fill: var(--gold-dk); }
.lx-footer-brand .lx-mark { width: 38px; height: 38px; }
.lx-nav {
  display: flex; gap: 30px; align-items: center;
  font-family: var(--display); font-weight: 500; font-size: .88rem;
  letter-spacing: .04em;
}
.lx-nav a { color: var(--ink-2); transition: color .15s ease; position: relative; }
.lx-nav a:hover, .lx-nav a.is-active { color: var(--ink); }
.lx-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0; background: var(--gold); transition: width .25s ease;
}
.lx-nav a:hover::after, .lx-nav a.is-active::after { width: 100%; }
.lx-header-right { display: flex; align-items: center; gap: 18px; }
.lx-signin {
  font-family: var(--display); font-weight: 500; font-size: .88rem;
  color: var(--ink-2); letter-spacing: .04em;
  transition: color .15s ease;
}
.lx-signin:hover { color: var(--ink); }
.lx-cta-btn {
  font-family: var(--display); font-weight: 600; font-size: .8rem;
  letter-spacing: .02em;
  padding: 13px 22px; border-radius: 4px;
  background: var(--ink); color: var(--paper); border: 0;
  transition: background .28s ease;
}
.lx-cta-btn:hover { background: var(--gold-dk); }
.lx-menu-toggle {
  display: none; background: transparent; border: 0; color: var(--ink); padding: 6px;
}

/* ============ PAGE HERO — scenic photo band, light text ============ */
.lx-page-hero {
  position: relative; padding: 180px 0 90px; overflow: hidden;
  background: #1a1f2b url('/assets/img/hero/hero-rockies.jpg') center 35% / cover no-repeat;
}
.lx-page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(14,12,20,.62) 0%, rgba(14,12,20,.40) 45%, rgba(14,12,20,.62) 100%),
    linear-gradient(90deg, rgba(123,95,160,.30), transparent 60%);
  pointer-events: none;
}
.lx-page-hero-inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 840px; margin: 0 auto;
}
.lx-crumb {
  font-family: var(--mono); font-weight: 500; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 28px;
}
.lx-crumb a:hover { color: var(--glacier); }
.lx-crumb .sep { margin: 0 8px; opacity: .5; }
.lx-page-hero h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1.0; letter-spacing: -.03em;
  color: #fff; margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.lx-page-hero h1 em { font-style: normal; color: #fff; text-decoration-color: var(--glacier); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.lx-page-hero .lx-eyebrow { color: var(--glacier); }
.lx-page-hero .lx-eyebrow::before { background: var(--glacier); }
.lx-page-hero .lead {
  font-family: var(--body); font-size: 1.16rem;
  color: rgba(255,255,255,.88); max-width: 640px; margin: 0 auto;
  line-height: 1.7; text-shadow: 0 1px 18px rgba(0,0,0,.3);
}
.lx-page-hero .lead b { color: #fff; }
.lx-page-hero .btn-fill { background: #fff; color: var(--ink); }
.lx-page-hero .btn-fill:hover { background: var(--glacier); }
.lx-page-hero .btn-line { color: #fff; }
.lx-page-hero .btn-line::after { background: #fff; }
.lx-page-hero .btn-line:hover { color: var(--glacier); }
.lx-page-hero .btn-line:hover::after { background: var(--glacier); }

/* Hero actions block (CTA row under the lead) */
.lx-hero-actions {
  display: inline-flex; gap: 14px; margin-top: 32px; flex-wrap: wrap;
  justify-content: center;
}

/* Status indicator — small static square (quieter, more deliberate than a pulsing dot) */
@keyframes lx-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(1.4); }
}
.lx-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 1px;
  background: #2f7a4a; margin-right: 7px; vertical-align: middle;
}

/* ============ Generic content sections ============ */
.lx-section { padding: 100px 0; position: relative; }
.lx-section.alt { background: var(--paper-3); }
.lx-section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.lx-section-head h2 { margin: 14px 0 16px; }
.lx-section-head p { color: var(--ink-2); font-size: 1.04rem; }

/* ============ FOOTER ============ */
.lx-footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--paper-3);
}
.lx-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 50px; border-bottom: 1px solid var(--line);
}
.lx-footer-brand {
  font-family: var(--serif); font-weight: 700; font-size: 1.9rem;
  color: var(--ink); margin-bottom: 16px; letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 12px;
}
.lx-footer-brand i { font-style: italic; color: var(--gold); }
.lx-footer-brand .lx-wordmark { display: inline-flex; align-items: baseline; }
.lx-footer p { color: var(--ink-2); font-size: .92rem; line-height: 1.6; max-width: 360px; }
.lx-footer h4 {
  font-family: var(--display); font-weight: 600; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.lx-footer a {
  display: block; color: var(--ink-2); font-size: .92rem;
  padding: 5px 0; transition: color .15s ease;
}
.lx-footer a:hover { color: var(--ink); }
.lx-footer-bot {
  padding-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .78rem; color: var(--mist); font-family: var(--mono);
  text-transform: uppercase; letter-spacing: .08em;
}

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

/* ============ Mobile ============ */
@media (max-width: 980px) {
  .lx-header { z-index: 60; }
  .lx-menu-toggle { display: block; z-index: 62; position: relative; }
  .lx-header-right .lx-signin { display: none; }

  /* pin the mobile header to a fixed height (every state) so the drawer can
     dock exactly beneath it; keep it solid + flat while the drawer is open */
  .lx-header,
  .lx-header.scrolled,
  .lx-header.menu-open,
  .lx-header.menu-open.scrolled {
    height: 72px; min-height: 72px; padding: 0 22px; gap: 14px;
    background: var(--paper);
  }
  .lx-header.menu-open,
  .lx-header.menu-open.scrolled {
    backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none;
  }
  /* logo stays left; CTA + hamburger group together on the right */
  .lx-brand { margin-right: auto; }
  .lx-header-right { gap: 12px; }

  /* ----- right-side slide-in panel (content height — ends at the last item) ----- */
  .lx-nav {
    position: fixed; top: 72px; right: 0; left: auto;
    width: min(84%, 340px); max-height: calc(100dvh - 84px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    padding: 6px 24px 12px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 0 14px;
    transform: translateX(100%);            /* hidden off the right edge */
    transition: transform .38s cubic-bezier(.2,.7,.2,1);
    box-shadow: -14px 0 40px rgba(34,21,56,.16);
    z-index: 55;                    /* behind the header bar (60) */
    overflow-y: auto;
  }
  /* slide in, and dim the rest of the page behind it (CSS-only scrim) */
  .lx-header.menu-open .lx-nav {
    transform: translateX(0);
    box-shadow: -14px 0 40px rgba(34,21,56,.16), 0 0 0 100vw rgba(20,12,40,.42);
  }
  .lx-nav a {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; white-space: nowrap;
    padding: 16px 2px; font-family: var(--serif); font-weight: 500;
    font-size: 1.18rem; letter-spacing: 0; line-height: 1.2; color: var(--ink-2);
    border-bottom: 1px solid var(--line);
    transition: color .18s ease;
  }
  .lx-nav a:last-of-type { border-bottom: 0; }
  /* subtle gold chevron affordance */
  .lx-nav a::after {
    content: "\203A"; position: static; width: auto; height: auto; background: none;
    font-family: var(--serif); font-weight: 400; font-size: 1.15rem;
    color: var(--gold); opacity: .4;
    transition: transform .2s ease, opacity .18s ease;
  }
  .lx-nav a:hover, .lx-nav a:active { color: var(--ink); }
  .lx-nav a:hover::after, .lx-nav a:active::after { opacity: .85; transform: translateX(3px); }
  body.lx-noscroll { overflow: hidden; }

  .lx-page-hero { padding: 140px 0 60px; }
  .lx-page-hero h1 br { display: none; }
  .lx-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 580px) {
  .wrap { padding: 0 18px; }
  .lx-header, .lx-header.scrolled,
  .lx-header.menu-open, .lx-header.menu-open.scrolled { height: 64px; min-height: 64px; padding: 0 18px; }
  .lx-logo-img { height: 32px; }
  .lx-cta-btn { padding: 10px 15px; font-size: .68rem; letter-spacing: .04em; }
  .lx-page-hero { padding: 124px 0 50px; }
  .lx-section { padding: 70px 0; }
  .lx-section-head { margin-bottom: 36px; }
  /* centered footer on mobile */
  .lx-footer-grid { grid-template-columns: 1fr; gap: 38px; text-align: center; }
  .lx-footer-brand { justify-content: center; }
  .lx-footer p { max-width: 320px; margin-left: auto; margin-right: auto; }
  .lx-footer-bot { justify-content: center; text-align: center; }
  /* right panel docks under the fixed 64px mobile header */
  .lx-nav { top: 64px; width: min(86%, 330px); max-height: calc(100dvh - 76px); padding: 6px 22px 12px; }
  .lx-nav a { font-size: 1.08rem; padding-top: 15px; padding-bottom: 15px; }
  .lx-nav a::after { font-size: 1.1rem; }
}

/* ============ HOMEPAGE HERO — editorial split layout ============ */
/* ===== Full-bleed photographic hero (vacation hook) ===== */
.lx-home-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background: #1a1f2b;
}
/* rotating unit carousel (background layer) */
.lx-hero-carousel { position: absolute; inset: 0; z-index: 0; }
.lx-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 58%;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.1s ease;
  will-change: opacity, transform;
}
.lx-hero-slide.active {
  opacity: 1;
  animation: lxHeroKen 6s ease-out forwards;
}
@keyframes lxHeroKen { from { transform: scale(1.05); } to { transform: scale(1.11); } }

/* legibility scrim — darker on the left where the text sits, clear on the right over the RV */
.lx-home-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,12,20,.80) 0%, rgba(14,12,20,.50) 38%, rgba(14,12,20,.08) 70%, rgba(14,12,20,0) 100%),
    linear-gradient(180deg, rgba(14,12,20,.40) 0%, transparent 26%, transparent 64%, rgba(14,12,20,.45) 100%);
  pointer-events: none;
}

/* unit caption (bottom-right) */
.lx-hero-cap {
  position: absolute; right: clamp(20px, 5vw, 64px); bottom: 64px; z-index: 3;
  text-align: right; color: #fff; line-height: 1.3;
  text-shadow: 0 1px 16px rgba(0,0,0,.5);
}
.lx-hero-cap .u-model {
  display: block; font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
  letter-spacing: -.01em;
}
.lx-hero-cap .u-meta {
  display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em;
  color: rgba(255,255,255,.82); margin-top: 3px;
}

/* slide dots */
.lx-hero-dots {
  position: absolute; left: 0; right: 0; bottom: 34px; z-index: 3;
  display: flex; gap: 8px; justify-content: center;
}
.lx-hero-dot {
  width: 9px; height: 9px; border-radius: 1px; padding: 0; border: 0; cursor: pointer;
  background: rgba(255,255,255,.42); transition: background .2s ease, width .25s ease;
}
.lx-hero-dot:hover { background: rgba(255,255,255,.7); }
.lx-hero-dot.active { background: #fff; width: 26px; }

/* Thor is in the photo now — hide the redundant right-column card */
.lx-home-hero-photo { display: none; }
.lx-home-hero-grid {
  display: grid; grid-template-columns: minmax(0, 660px) 1fr; gap: 40px;
  align-items: center; position: relative; z-index: 2;
}
.lx-home-h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  line-height: 1.0; letter-spacing: -.03em;
  color: #fff; margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
/* accent word over photo — warm champagne, brighter underline */
.lx-home-h1 em {
  color: var(--glacier);
  text-decoration-color: rgba(231,207,154,.6);
}
.lx-home-lead {
  font-family: var(--body); font-size: 1.16rem;
  color: rgba(255,255,255,.88); margin: 24px 0 0; max-width: 520px;
  line-height: 1.7; text-shadow: 0 1px 18px rgba(0,0,0,.3);
}
.lx-home-lead b { color: #fff; font-weight: 600; }
.lx-home-actions {
  display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap;
}
.lx-home-stats {
  display: flex; gap: 36px; margin-top: 44px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.22);
}
.lx-home-stat b {
  font-family: var(--serif); font-weight: 700; font-size: 2rem;
  color: #fff;
  display: block; letter-spacing: -.02em; line-height: 1; margin-bottom: 6px;
}
.lx-home-stat span {
  font-size: .68rem; color: rgba(255,255,255,.7); font-family: var(--mono);
  text-transform: uppercase; letter-spacing: .08em;
}
/* Hero eyebrow + buttons recolored for photo backdrop */
.lx-home-hero .lx-eyebrow { color: var(--glacier); }
.lx-home-hero .lx-eyebrow::before { background: var(--glacier); }
.lx-home-hero .btn-line { color: #fff; }
.lx-home-hero .btn-line::after { background: #fff; }
.lx-home-hero .btn-line:hover { color: var(--glacier); }
.lx-home-hero .btn-line:hover::after { background: var(--glacier); }
.lx-home-hero .btn-fill { background: #fff; color: var(--ink); }
.lx-home-hero .btn-fill:hover { background: var(--glacier); }

/* Hero photo composition */
.lx-home-hero-photo { position: relative; }
.lx-home-photo {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 4px; overflow: hidden;
  background: #1a1c22; position: relative;
  /* white gallery-frame ring so the featured card lifts off the lifestyle backdrop */
  box-shadow: 0 0 0 7px #fff, 0 40px 90px rgba(0,0,0,.45), 0 8px 20px rgba(0,0,0,.25);
}
.lx-home-photo img {
  width: 100%; height: 100%; object-fit: cover;
  /* brand color-grade — slight desaturate + warmth so it reads art-directed, not stock */
  filter: saturate(.82) contrast(1.04) brightness(1.02);
  transition: transform 8s ease, filter .6s ease;
}
.lx-home-photo:hover img { transform: scale(1.05); filter: saturate(.95) contrast(1.04); }
/* duotone wash — lavender in shadows, warm in highlights, via soft-light blend */
.lx-home-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(145deg, rgba(123,95,160,.40), rgba(34,21,56,.10) 55%, rgba(231,207,154,.26));
  mix-blend-mode: soft-light;
  transition: opacity .6s ease;
}
.lx-home-photo:hover::before { opacity: .55; }
/* fine film grain — kills the flat "stock JPEG" feel */
.lx-home-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05; mix-blend-mode: overlay;
}
.lx-home-pill {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  padding: 11px 16px;
  background: rgba(20,16,10,.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(244,241,234,.18);
  border-radius: 12px;
  color: #fff;
  font-family: var(--display); font-weight: 500; font-size: .78rem;
  display: flex; align-items: center; gap: 10px;
}
.lx-home-pill b {
  font-family: var(--mono); font-weight: 600;
  color: var(--glacier);
}
.lx-home-spec {
  position: absolute; bottom: -32px; left: -28px; z-index: 4;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  max-width: 270px;
  box-shadow: 0 24px 60px rgba(34,21,56,.14);
}
.lx-home-spec .tag {
  font-family: var(--display); font-weight: 600; font-size: .64rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.lx-home-spec h4 {
  font-family: var(--serif); font-weight: 700; font-size: 1.2rem;
  color: var(--ink); letter-spacing: -.01em; line-height: 1.15;
  margin-bottom: 12px;
}
.lx-home-spec .row {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: .8rem; color: var(--ink-2); font-family: var(--body);
  padding: 5px 0;
  border-top: 1px dashed var(--line);
}
.lx-home-spec .row b { color: var(--ink); font-weight: 600; font-family: var(--mono); font-size: .78rem; }
.lx-home-spec .row.first { border-top: 0; padding-top: 0; }

@media (max-width: 980px) {
  .lx-home-hero {
    min-height: 78vh; padding: 130px 0 60px;
    /* keep the Thor (right side, lower third) in frame on narrow screens */
    background-position: 64% 64%;
    align-items: flex-start;
  }
  /* uniform top-down scrim on stacked mobile layout */
  .lx-home-hero::before {
    background:
      linear-gradient(180deg, rgba(14,12,20,.80) 0%, rgba(14,12,20,.42) 50%, rgba(14,12,20,.30) 100%);
  }
  .lx-home-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .lx-home-h1 { font-size: clamp(2.6rem, 9vw, 3.6rem); }
  .lx-home-lead { max-width: none; }
  .lx-home-photo { aspect-ratio: 4/5; max-width: 440px; margin: 0 auto; }
  .lx-home-spec { left: 0; right: 0; max-width: none; bottom: -24px; }
  .lx-home-stats { flex-wrap: wrap; gap: 24px 28px; }

  /* inner page hero scrim a touch heavier for small screens */
  .lx-page-hero { padding: 150px 0 60px; }
}
@media (max-width: 580px) {
  .lx-home-actions { width: 100%; }
  .lx-home-actions .btn-fill,
  .lx-home-actions .btn-line { flex: 1 1 auto; min-width: 0; justify-content: center; }
  .lx-home-photo { max-width: 100%; }
}
