/* ═══════════════════════════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
  color-scheme: dark;

  --white: #151311;
  /* card / elevated surface */
  --bg: #0B0A09;
  /* page */
  --bg-soft: #121110;
  --bg-sand: #211D18;

  --ink: #F6F1E7;
  /* headings */
  --ink-2: #C4BCAE;
  /* body */
  --ink-3: #948B7D;
  /* muted */
  --ink-4: #6F675C;
  /* faint */
  --line: #2B2622;
  --line-2: #221E1B;

  --gold: #D6AC63;
  --gold-2: #EACD93;
  --gold-tint: rgba(214, 172, 99, .13);
  --gold-glow: .2;

  --on-ink: #C4BCAEh; 
  /* text on an --ink filled surface */
  --on-gold: #1A1409;
  /* text on a gold filled surface */
  --mark-bg: rgba(214, 172, 99, .15);
  /* logo tile */

  --glass: rgba(28, 25, 22, .88);
  --hdr-bg: rgba(11, 10, 9, .84);

  --inv-bg: #141210;
  /* banner + footer */
  --inv-fg: #F6F1E7;
  --inv-fg-2: #9C9384;
  --inv-line: rgba(255, 255, 255, .08);
  --inv-surface: rgba(255, 255, 255, .05);

  --deco-col: #D9CCB2;
  --deco-op: .16;
  --map-filter: invert(1) hue-rotate(180deg) saturate(.5) brightness(.92) contrast(1.05);

  --wa: #25D366;
  --wa-2: #128C7E;

  --glow-gold: 0 0 0 1px rgba(214, 172, 99, .4), 0 0 26px 4px rgba(214, 172, 99, .38), 0 0 60px 10px rgba(214, 172, 99, .18);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --sh-1: 0 1px 2px rgba(0, 0, 0, .5), 0 4px 12px rgba(0, 0, 0, .34);
  --sh-2: 0 2px 6px rgba(0, 0, 0, .46), 0 14px 34px rgba(0, 0, 0, .44);
  --sh-3: 0 10px 24px rgba(0, 0, 0, .5), 0 34px 68px -20px rgba(0, 0, 0, .7);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wrap: 1280px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
}

/* ═══════════════════════════════════════════════════════════
   RESET / BASE
   ═══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: clip
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

p {
  margin: 0
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.06
}

::selection {
  background: var(--gold-2);
  color: var(--on-gold)
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
}

.skip:focus {
  left: 0
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px
}

@media(max-width:600px) {
  .wrap {
    padding-inline: 20px
  }
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
  z-index: 1
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0
}

/* ── Type scale (large, simple) ── */
.h1 {
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 700
}

.h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -.038em;
  font-weight: 700
}

.h1,
.h2 {
  will-change: transform
}

.h1:hover:not(#hero-h1),
.h2:hover {
  animation: title-drift 6s ease-in-out infinite
}

@keyframes title-drift {
  0%,
  100% {
    transform: translate(0, 0)
  }

  20% {
    transform: translate(6px, -5px)
  }

  40% {
    transform: translate(-5px, 4px)
  }

  60% {
    transform: translate(5px, 5px)
  }

  80% {
    transform: translate(-6px, -4px)
  }
}

.h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 700
}

.h4 {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.3;
  letter-spacing: -.02em;
  font-weight: 650
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  opacity: .55
}

.lede {
  font-size: clamp(16.5px, 1.7vw, 19.5px);
  line-height: 1.7;
  color: var(--ink-3);
  font-weight: 400
}

.muted {
  color: var(--ink-3)
}

.accent {
  color: var(--gold)
}

.head {
  max-width: 720px;
  margin-bottom: clamp(44px, 5vw, 72px)
}

.head.mid {
  margin-inline: auto;
  text-align: center
}

.head.mid .kicker::before {
  display: none
}

.head .lede {
  margin-top: 20px
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  --bg: #25D366;
  --fg: #FFFFFF;
  --bd: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bd);
  white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s var(--ease-2), color .3s var(--ease-2), border-color .3s var(--ease-2);
  will-change: transform;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(closest-side, rgba(214, 172, 99, .55), rgba(214, 172, 99, 0) 72%);
  opacity: 0;
  z-index: -1;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none
}

.btn:hover {
  transform: translateY(-2px)
}

.btn:hover::before {
  opacity: 1
}

.btn:active {
  transform: translateY(0)
}

.btn--dark {
  box-shadow: 0 8px 22px -10px rgba(14, 16, 19, .6)
}

.btn--dark:hover {
  box-shadow: 0 16px 34px -12px rgba(14, 16, 19, .5)
}

.btn--gold {
  --bg: var(--gold);
  --fg: var(--on-gold);
  box-shadow: 0 8px 22px -10px rgba(180, 137, 74, .85)
}

.btn--gold:hover {
  --bg: #A67C3D;
  box-shadow: 0 16px 34px -12px rgba(180, 137, 74, .8)
}

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  --bd: var(--line)
}

.btn--ghost:hover {
  --bd: var(--ink);
  --bg: var(--ink);
  --fg: var(--on-ink)
}

.btn--wa {
  --bg: var(--wa);
  --fg: #fff;
  box-shadow: 0 8px 22px -10px rgba(37, 211, 102, .9)
}

.btn--wa:hover {
  --bg: #1DBF5C
}

.btn--light {
  --bg: #FFFFFF;
  --fg: #0E1013;
  box-shadow: var(--sh-2)
}

.btn--sm {
  padding: 11px 20px;
  font-size: 14px
}

.btn--lg {
  padding: 19px 36px;
  font-size: 16.5px
}

.btn--block {
  width: 100%
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS  (transform/opacity only → GPU friendly)
   ═══════════════════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity
}

[data-anim="up"] {
  transform: translate3d(0, 44px, 0)
}

[data-anim="up-sm"] {
  transform: translate3d(0, 22px, 0)
}

[data-anim="left"] {
  transform: translate3d(-44px, 0, 0)
}

[data-anim="right"] {
  transform: translate3d(44px, 0, 0)
}

[data-anim="scale"] {
  transform: translate3d(0, 36px, 0) scale(.97)
}

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

[data-anim].in {
  will-change: auto
}

.h1-track {
  display: inline-block;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  will-change: transform
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important
  }

  [data-anim] {
    opacity: 1 !important;
    transform: none !important
  }

  .deco {
    display: none
  }
}

/* ═══════════════════════════════════════════════════════════
   BACKGROUND DECOR  (raining furniture icons, per-section)
   ═══════════════════════════════════════════════════════════ */
.deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  contain: strict
}

.deco i {
  position: absolute;
  top: -18vh;
  display: block;
  color: var(--deco-col);
  opacity: 0;
  animation: rain linear infinite;
  will-change: transform, opacity;
}

.deco svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round
}

@keyframes rain {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0
  }

  10% {
    opacity: var(--deco-op)
  }

  90% {
    opacity: var(--deco-op)
  }

  100% {
    transform: translateY(145vh) rotate(26deg);
    opacity: 0
  }
}

.deco i:nth-child(1) {
  left: 3%;
  width: 58px;
  height: 58px;
  animation-duration: 13s
}

.deco i:nth-child(2) {
  left: 12%;
  width: 44px;
  height: 44px;
  animation-duration: 17s;
  animation-delay: -4s
}

.deco i:nth-child(3) {
  left: 21%;
  width: 70px;
  height: 70px;
  animation-duration: 15s;
  animation-delay: -9s
}

.deco i:nth-child(4) {
  left: 29%;
  width: 50px;
  height: 50px;
  animation-duration: 20s;
  animation-delay: -2s
}

.deco i:nth-child(5) {
  left: 37%;
  width: 62px;
  height: 62px;
  animation-duration: 14s;
  animation-delay: -12s
}

.deco i:nth-child(6) {
  left: 45%;
  width: 46px;
  height: 46px;
  animation-duration: 18s;
  animation-delay: -6s
}

.deco i:nth-child(7) {
  left: 53%;
  width: 66px;
  height: 66px;
  animation-duration: 16s;
  animation-delay: -15s
}

.deco i:nth-child(8) {
  left: 61%;
  width: 42px;
  height: 42px;
  animation-duration: 12s;
  animation-delay: -3s
}

.deco i:nth-child(9) {
  left: 68%;
  width: 74px;
  height: 74px;
  animation-duration: 19s;
  animation-delay: -10s
}

.deco i:nth-child(10) {
  left: 75%;
  width: 52px;
  height: 52px;
  animation-duration: 15s;
  animation-delay: -7s
}

.deco i:nth-child(11) {
  left: 82%;
  width: 60px;
  height: 60px;
  animation-duration: 21s;
  animation-delay: -1s
}

.deco i:nth-child(12) {
  left: 89%;
  width: 48px;
  height: 48px;
  animation-duration: 13.5s;
  animation-delay: -13s
}

.deco i:nth-child(13) {
  left: 96%;
  width: 56px;
  height: 56px;
  animation-duration: 17.5s;
  animation-delay: -8s
}

.deco i:nth-child(14) {
  left: 7%;
  width: 40px;
  height: 40px;
  animation-duration: 22s;
  animation-delay: -16s
}

.deco i:nth-child(15) {
  left: 57%;
  width: 78px;
  height: 78px;
  animation-duration: 24s;
  animation-delay: -5s
}

.deco i:nth-child(16) {
  left: 41%;
  width: 54px;
  height: 54px;
  animation-duration: 11s;
  animation-delay: -9.5s
}

@media(max-width:900px) {
  .deco i:nth-child(n+9) {
    display: none
  }
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease-2), border-color .4s var(--ease-2),
    box-shadow .4s var(--ease-2), backdrop-filter .4s var(--ease-2);
}

.hdr.stuck,
.hdr.menu-open {
  background: var(--hdr-bg);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-color: var(--line);
  box-shadow: 0 4px 24px -14px rgba(14, 16, 19, .3);
}

.hdr .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 80px;
  max-width: 1360px
}

.logo {
  display: flex;
  align-items: center;
  flex: none
}

.logo img {
  height: 44px;
  width: auto;
  display: block
}

@media(max-width:600px) {
  .logo img {
    height: 38px
  }
}

.logo .lg-color {
  display: none
}

.logo .lg-cream {
  display: block
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 14px
}

.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .25s var(--ease-2), background .25s var(--ease-2);
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
  background: var(--bg-soft)
}

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600
}

@media(max-width:1080px) {
  .nav {
    display: none
  }
}

.hdr-act {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto
}

.hdr-tel {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: -.02em;
  padding: 8px 6px
}

.hdr-tel svg {
  width: 17px;
  height: 17px;
  color: var(--gold)
}

@media(max-width:760px) {
  .hdr-tel span {
    display: none
  }
}

@media(max-width:420px) {
  .hdr-tel {
    display: none
  }
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex: none;
  transition: background .25s var(--ease-2)
}

.burger:hover {
  background: var(--white)
}

.burger i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .35s var(--ease), opacity .2s
}

.burger i+i {
  margin-top: 5px
}

.burger[aria-expanded="true"] i:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger[aria-expanded="true"] i:nth-child(2) {
  opacity: 0
}

.burger[aria-expanded="true"] i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

@media(max-width:1080px) {
  .burger {
    display: flex
  }
}

.sheet {
  position: fixed;
  inset: 80px 0 auto 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 18px 0 28px;
  transform: translate3d(0, -14px, 0);
  opacity: 0;
  visibility: hidden;
  transition: transform .4s var(--ease), opacity .3s var(--ease), visibility .4s;
  box-shadow: var(--sh-2);
}

.sheet.open {
  transform: none;
  opacity: 1;
  visibility: visible
}

.sheet nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2)
}

.sheet .btn {
  margin-top: 20px
}

/* ═══════════════════════════════════════════════════════════
   1 · HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 84px) 0 clamp(64px, 7vw, 104px);
  overflow: hidden;
  z-index: 1;

  background-image: url('../images/hero-background-dark.webp'); 
  
  /* Ensure the image stretches to cover the whole section */
  background-size: cover; 
  
  /* Center the image within the section */
  background-position: center; 
  
  /* Prevent the image from repeating if it is small */
  background-repeat: no-repeat; 
  
  /* Give the section a minimum height so the image is visible */
  min-height: 500px; 
}

.hero::before {
  content: "";
  position: absolute;
  top: -320px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 820px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(210, 174, 114, var(--gold-glow)), rgba(210, 174, 114, 0) 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: clamp(36px, 4.4vw, 72px);
  align-items: center
}

@media(max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 9px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -.01em;
}

.pill b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold)
}

.pill b svg {
  width: 13px;
  height: 13px
}

.hero h1 {
  margin: 26px 0 0
}

.hero .lede {
  margin-top: 24px;
  max-width: 520px
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px
}

.trust {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 42px;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex: none
}

.trust-item span {
  font-size: 14px;
  font-weight: 550;
  color: var(--ink-2);
  letter-spacing: -.01em
}

/* Hero visual — frameless cutout */
.hv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.hv::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  translate: -50% -50%;
  width: 104%;
  aspect-ratio: 1/.72;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(214, 172, 99, .16), rgba(214, 172, 99, 0) 70%);
}

.hv-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  will-change: transform
}

@media(max-width:1024px) {
  .hv {
    max-width: 660px;
    margin-inline: auto
  }
}

/* mobile hero: the photo crops in close behind the copy, so darken it
   and brighten the body text enough to stay legible over it */
@media(max-width:1024px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(11, 10, 9, .55) 0%, rgba(11, 10, 9, .78) 55%, rgba(11, 10, 9, .93) 100%),
      url('../images/hero-background-dark.webp');
  }

  .hero .lede,
  .trust-item span {
    color: var(--ink);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
  }
}

.hero .btn--ghost {
  --bg: rgba(21, 19, 17, .4);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}

/* ═══════════════════════════════════════════════════════════
   2 · SEO CONTENT
   ═══════════════════════════════════════════════════════════ */
.seo {
  background: var(--white)
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(64px, 7vw, 104px);
  padding: clamp(30px, 3.4vw, 44px);
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
}

@media(max-width:760px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px
  }
}

.stat {
  text-align: center
}

.stat b {
  display: block;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -.045em;
  color: var(--ink);
  line-height: 1
}

.stat>span {
  display: block;
  margin-top: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3)
}

.stat b .num {
  font: inherit;
  letter-spacing: inherit;
  color: inherit
}

/* ═══════════════════════════════════════════════════════════
   2B · PRODUCT OFFERS
   ═══════════════════════════════════════════════════════════ */
.offers {
  background: var(--inv-bg);
  color: var(--inv-fg-2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.offers-glow {
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 760px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(214, 172, 99, .16), rgba(214, 172, 99, 0) 72%);
}

.offers .wrap {
  position: relative
}

.offers .head.mid {
  max-width: 640px
}

.offers .head.mid .lede {
  color: var(--inv-fg-2)
}

.offers-h2 {
  color: var(--inv-fg);
  font-weight: 600;
  letter-spacing: -.015em
}

.kicker.flank {
  gap: 16px;
  color: var(--gold-2)
}

.kicker.flank i {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  opacity: .45;
  border-radius: 2px
}

.offer-grid {
  display: grid;
  gap: clamp(64px, 8vw, 120px);
  margin-top: clamp(56px, 6vw, 88px)
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
}

@media(max-width:860px) {
  .offer-card {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

.offer-card--flip .offer-media {
  order: 2
}

.offer-card--flip .offer-body {
  order: 1
}

@media(max-width:860px) {

  .offer-card--flip .offer-media,
  .offer-card--flip .offer-body {
    order: 0
  }
}

.offer-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-media img {
  width: 100%;
  max-width: 650;
  max-height: 470;
  height: auto;
  object-fit: contain;
  display: block;
  margin-inline: auto;
  background: transparent;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, .5));
  transition: transform .5s var(--ease), filter .45s var(--ease);
}

.offer-card:hover .offer-media img {
  transform: translateY(-6px) scale(1.025);
  filter: drop-shadow(0 0 34px rgba(214, 172, 99, .4)) drop-shadow(0 34px 54px rgba(0, 0, 0, .55));
}

@media(max-width:860px) {
  .offer-media img {
    max-height: 300px
  }
}

.offer-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-num-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px
}

.offer-num {
  font-size: 40px;
  font-weight: 600;
  color: var(--gold-2);
  opacity: .55;
  line-height: 1
}

.offer-cat {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--inv-fg-2);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--inv-line)
}

.offer-eyebrow {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 10px
}

.offer-h3 {
  font-weight: 600;
  color: var(--inv-fg);
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: 18px
}

.offer-p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--inv-fg-2);
  max-width: 420px
}

.offer-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px
}

.offer-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--inv-fg-2)
}

.offer-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(214, 172, 99, .15);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 1px
}

.offer-check svg {
  width: 13px;
  height: 13px
}

/* ═══════════════════════════════════════════════════════════
   3 · PHONE BANNER
   ═══════════════════════════════════════════════════════════ */
.banner {
  position: relative;
  background: var(--inv-bg);
  color: var(--inv-fg);
  overflow: hidden;
  z-index: 1;
  padding: clamp(44px, 5vw, 68px) 0
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 300px at 15% 110%, rgba(180, 137, 74, .34), transparent 70%)
}

.ticker {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  margin-bottom: clamp(26px, 3vw, 38px)
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: slide 26s linear infinite;
  will-change: transform
}

.ticker:hover .ticker-track {
  animation-play-state: paused
}

@keyframes slide {
  to {
    transform: translate3d(-50%, 0, 0)
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  flex: none
}

.ticker-item b {
  font-size: clamp(26px, 4.2vw, 54px);
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--inv-fg);
  white-space: nowrap
}

.ticker-item i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-2);
  flex: none;
  display: block
}

.ticker-item.alt b {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, .36)
}

.banner-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center
}

.banner-cta p {
  font-size: clamp(15.5px, 1.7vw, 18.5px);
  color: var(--inv-fg-2);
  max-width: 520px
}

/* ═══════════════════════════════════════════════════════════
   4 · TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testi {
  background: var(--bg-soft);
  overflow: hidden
}

.rail {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent)
}

.rail-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slide 56s linear infinite;
  will-change: transform
}

.rail:hover .rail-track,
.rail:focus-within .rail-track {
  animation-play-state: paused
}

.tcard {
  flex: none;
  width: 400px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-1);
  display: flex;
  flex-direction: column;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}

.tcard:hover {
  box-shadow: var(--sh-3), var(--glow-gold);
  border-color: rgba(214, 172, 99, .35);
  transform: translateY(-4px);
  z-index: 1
}

@media(max-width:520px) {
  .tcard {
    width: 300px;
    padding: 26px
  }
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px
}

.stars svg {
  width: 17px;
  height: 17px;
  color: #E8B54A;
  fill: currentColor
}

.tcard blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  flex: 1
}

.tcard footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2)
}

.avatar {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex: none;
  overflow: hidden;
  background: var(--bg-sand);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.02em;
}

.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tcard footer b {
  display: block;
  font-size: 15px;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -.015em
}

.tcard footer span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-4);
  margin-top: 1px
}

/* ═══════════════════════════════════════════════════════════
   5 · BRANDS
   ═══════════════════════════════════════════════════════════ */
.brands {
  background: var(--white)
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px
}

@media(max-width:560px) {
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
  }
}

.brand {
  display: grid;
  place-items: center;
  height: 120px;
  padding: 22px;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  background: var(--bg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease-2), background .3s;
}

.brand img {
  height: 46px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) invert(1) contrast(.9);
  opacity: .66;
  transition: filter .45s var(--ease-2), opacity .45s var(--ease-2), transform .45s var(--ease)
}

.brand:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold);
  background: #F3EEE4;
  border-color: transparent
}

.brand:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05)
}

@media(max-width:560px) {
  .brand {
    height: 98px;
    padding: 16px
  }

  .brand img {
    height: 34px
  }
}

/* ═══════════════════════════════════════════════════════════
   6 · LOCATION & CONTACT
   ═══════════════════════════════════════════════════════════ */
.loc {
  background: var(--bg-soft)
}

.loc-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: stretch
}

@media(max-width:940px) {
  .loc-grid {
    grid-template-columns: 1fr
  }
}

.loc-panel {
  display: flex;
  flex-direction: column
}

.info {
  display: grid;
  gap: 12px;
  margin-top: 34px
}

.info li a,
.info li div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--line-2);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}

.info li a:hover {
  transform: translateX(5px);
  box-shadow: var(--sh-2), var(--glow-gold);
  border-color: rgba(214, 172, 99, .35)
}

.info-ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--gold-tint);
  color: var(--gold)
}

.info-ico svg {
  width: 19px;
  height: 19px
}

.info small {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-4)
}

.info b {
  display: block;
  font-size: 16px;
  font-weight: 650;
  color: var(--ink);
  margin-top: 3px;
  letter-spacing: -.015em
}

.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px
}

.map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  background: var(--bg-sand);
  min-height: 420px;
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: var(--map-filter)
}

.map-fab {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-fab .btn {
  box-shadow: var(--sh-3)
}

@media(max-width:940px) {
  .map {
    min-height: 340px
  }
}

/* ═══════════════════════════════════════════════════════════
   7 · FOOTER
   ═══════════════════════════════════════════════════════════ */
.ftr {
  background: var(--inv-bg);
  color: var(--inv-fg-2);
  padding-top: clamp(60px, 7vw, 92px);
  position: relative;
  z-index: 1
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 3.4vw, 52px)
}

@media(max-width:900px) {
  .ftr-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .ftr-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.ftr-about {
  margin-top: 22px;
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 330px
}

.ftr-soc {
  display: flex;
  gap: 10px;
  margin-top: 24px
}

.ftr-soc a {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--inv-surface);
  border: 1px solid var(--inv-line);
  color: var(--inv-fg);
  transition: transform .35s var(--ease), background .3s, border-color .3s
}

.ftr-soc a svg {
  width: 18px;
  height: 18px
}

.ftr-soc a:hover {
  transform: translateY(-3px)
}

.ftr-soc a.wa:hover {
  background: var(--wa);
  border-color: var(--wa)
}

.ftr-soc a.ig:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B 50%, #8134AF);
  border-color: transparent
}

.ftr-soc a.fb:hover {
  background: #1877F2;
  border-color: #1877F2
}

.ftr h4 {
  color: var(--inv-fg);
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 20px;
  letter-spacing: -.01em
}

.ftr-col ul {
  display: grid;
  gap: 11px
}

.ftr-col a {
  font-size: 14.5px;
  transition: color .25s, transform .25s var(--ease);
  display: inline-block
}

.ftr-col a:hover {
  color: var(--gold-2);
  transform: translateX(3px)
}

.ftr-contact li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 15px
}

.ftr-contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold-2);
  flex: none;
  margin-top: 3px
}

.ftr-legal {
  margin-top: clamp(44px, 5vw, 64px);
  padding: 24px 0;
  border-top: 1px solid var(--inv-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.ftr-legal nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.ftr-legal a:hover {
  color: var(--gold-2)
}

.ftr-co {
  padding-bottom: 26px;
  font-size: 12.5px;
  color: var(--ink-4);
  line-height: 1.7
}

.ftr-credit {
  padding-bottom: 26px;
  font-size: 12.5px;
  color: var(--ink-4);
  text-align: center
}

.ftr-credit a {
  color: var(--ink-4);
  text-decoration: underline;
  text-underline-offset: 2px
}

.ftr-credit a:hover {
  color: var(--gold-2)
}

/* ═══════════════════════════════════════════════════════════
   FLOATING SOCIAL
   ═══════════════════════════════════════════════════════════ */
.fabs {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-end
}

.fab {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .42);
  transition: transform .35s var(--ease)
}

.fab svg {
  width: 23px;
  height: 23px
}

.fab:hover {
  transform: scale(1.09) translateY(-2px)
}

.fab.wa {
  width: 58px;
  height: 58px;
  background: linear-gradient(140deg, #25D366, #128C7E)
}

.fab.wa svg {
  width: 27px;
  height: 27px
}

.fab.ig {
  background: linear-gradient(45deg, #F58529, #DD2A7B 45%, #8134AF 75%, #515BD4)
}

.fab.fb {
  background: #1877F2
}

.fab.wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ring 2.6s ease-out infinite
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: .75
  }

  100% {
    transform: scale(1.55);
    opacity: 0
  }
}

.fab-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  translate: 6px -50%;
  background: var(--ink);
  color: var(--on-ink);
  font-size: 12.5px;
  font-weight: 550;
  padding: 7px 13px;
  border-radius: 9px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), translate .3s var(--ease);
}

.fab:hover .fab-tip,
.fab:focus-visible .fab-tip {
  opacity: 1;
  translate: 0 -50%
}

@media(max-width:600px) {
  .fabs {
    right: 14px;
    bottom: 14px;
    gap: 9px
  }

  .fab {
    width: 46px;
    height: 46px
  }

  .fab svg {
    width: 20px;
    height: 20px
  }

  .fab.wa {
    width: 52px;
    height: 52px
  }

  .fab.wa svg {
    width: 24px;
    height: 24px
  }
}

.totop {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 88;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-1);
  opacity: 0;
  visibility: hidden;
  translate: 0 10px;
  transition: opacity .35s var(--ease), translate .35s var(--ease), visibility .35s, background .3s, color .3s;
}

.totop.on {
  opacity: 1;
  visibility: visible;
  translate: 0 0
}

.totop:hover {
  background: var(--ink);
  color: var(--on-ink)
}

.totop svg {
  width: 17px;
  height: 17px
}

@media(max-width:600px) {
  .totop {
    left: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px
  }
}

/* ═══════════════════════════════════════════════════════════
   MODALS (legal)
   ═══════════════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s var(--ease)
}

.modal[hidden] {
  display: none
}

.modal.open {
  opacity: 1;
  visibility: visible
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(14, 16, 19, .5);
  backdrop-filter: blur(3px)
}

.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 34px;
  box-shadow: var(--sh-3);
  transform: translateY(14px) scale(.98);
  transition: transform .35s var(--ease);
}

.modal.open .modal-box {
  transform: none
}

.modal-box h3 {
  margin-bottom: 16px
}

.modal-box p {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--ink-2)
}

.modal-box h4 {
  font-size: 15.5px;
  margin: 22px 0 8px
}

.modal-x {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: var(--white)
}

.modal-x svg {
  width: 16px;
  height: 16px
}

@media(max-width:600px) {
  .modal-box {
    padding: 26px 22px
  }
}