:root {
  --ember-black: #070604;
  --charcoal: #0d0d0b;
  --surface: #13110f;
  --surface-lift: #191511;
  --ember-brown: #0f0d0b;
  --wood: #8a5428;
  --wood-light: #b9783c;
  --cedar-dark: #3b2112;
  --cedar-mid: #7a4825;
  --cedar-raw: #d7a868;
  --bronze: #9f6a32;
  --wood-gradient: linear-gradient(135deg, #160b05 0%, #5b3219 58%, #a56d35 120%);
  --cedar-well: radial-gradient(90% 120% at 50% 0%, rgba(215,168,104,.32), transparent 58%),
    linear-gradient(135deg, #130b07 0%, #3b2112 46%, #7a4825 100%);
  --gold: #c99a42;
  --gold-light: #e4bf73;
  --cream: #f3e7cf;
  --paper: #fff4dc;
  --text: #f3e7cf;
  --muted: #c1b195;
  --line: rgba(201,154,66,.18);
  --sale: #d65a2f;

  --navy: var(--charcoal);
  --navy-deep: var(--ember-black);
  --ink: var(--ember-black);
  --sand: var(--surface-lift);
  --timber: var(--wood-light);

  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --gut: clamp(1.25rem, 5vw, 4.5rem);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ember-black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button, input { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gut);
}
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .82rem; }

.display {
  font-size: clamp(3rem, 8.6vw, 7.25rem);
  line-height: .88;
  letter-spacing: 0;
  font-weight: 800;
  color: var(--paper);
  text-shadow: 0 6px 34px rgba(0,0,0,.34);
}
.display-sm {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 800;
  color: var(--paper);
}
.lead {
  max-width: 58ch;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.72;
  color: inherit;
}
.eyebrow {
  margin-bottom: .8rem;
  color: var(--gold);
  font-size: .68rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.rule {
  display: block;
  width: 46px;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--gold);
}

.section {
  position: relative;
  padding: clamp(6rem, 12vw, 11rem) 0;
}
.section--light {
  --section-bg: var(--charcoal);
  background:
    radial-gradient(80% 70% at 50% -20%, rgba(122,72,37,.055), transparent 72%),
    var(--section-bg);
  color: var(--text);
}
.section--light:nth-of-type(even) { --section-bg: var(--ember-brown); }
.section--light:nth-of-type(3n) { --section-bg: var(--surface); }
.section--cream {
  background:
    linear-gradient(180deg, rgba(122,72,37,.07), rgba(7,6,4,.42)),
    var(--surface-lift);
  color: var(--text);
}
.section--tight { padding-top: clamp(3.5rem, 7vw, 6rem); }
.section__head {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 7vw, 5.8rem);
}
.section__head.compact { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 4.4rem); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--gold,
.btn--light {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 54%, var(--bronze));
  color: var(--ember-black);
  box-shadow: 0 14px 34px rgba(201,154,66,.18);
}
.btn--white {
  background: rgba(7,6,4,.74);
  color: var(--paper);
  border-color: rgba(201,154,66,.5);
}
.btn--dark {
  background: var(--surface);
  color: var(--paper);
  border-color: var(--line);
}
.btn--dark:hover,
.btn--white:hover {
  background: var(--gold);
  color: var(--ember-black);
}
.btn--sm { min-height: 36px; padding: .65rem 1rem; }
.btn--pill { min-height: 30px; padding: .46rem 1rem; font-size: .62rem; }

.announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: var(--ember-black);
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}
.announcement span + span { border-left: 1px solid rgba(201,154,66,.3); }

.nav {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(201,154,66,.18);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav__brand img {
  width: auto;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.42));
  transition: height .35s var(--ease);
}
.nav__menu ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2rem);
}
.nav__menu a {
  position: relative;
  color: var(--paper);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nav__cart {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--paper);
  background: rgba(201,154,66,.12);
  border: 1px solid rgba(201,154,66,.22);
}
.nav.is-scrolled {
  background: rgba(7,6,4,.9);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.nav.is-scrolled .nav__menu a,
.nav.is-scrolled .nav__cart { color: var(--paper); }
.nav.is-scrolled .nav__menu a:hover { color: var(--gold-light); }
.nav.is-scrolled .nav__cart { background: rgba(201,154,66,.1); }
.nav.is-scrolled .nav__brand img { height: 84px; }

.hero {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(10rem, 16vw, 15rem) var(--gut) clamp(5rem, 9vw, 8rem);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: kenburns 22s var(--ease) infinite alternate;
  filter: saturate(.92) brightness(.74) contrast(1.04);
}
@keyframes kenburns {
  0% { transform: scale(1.03); }
  100% { transform: scale(1.11) translate(-1%, -.8%); }
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,6,4,.86) 0%, rgba(7,6,4,.42) 54%, rgba(7,6,4,.14) 100%),
              linear-gradient(180deg, rgba(7,6,4,.56) 0%, rgba(7,6,4,.12) 35%, rgba(7,6,4,.8) 100%);
}
.hero__radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 55% at 20% 82%, rgba(201,154,66,.13), transparent 68%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__content .eyebrow,
.hero__content .lead { color: var(--paper); }
.hero__content .lead {
  margin-top: 1.1rem;
  margin-bottom: 1.4rem;
  font-weight: 600;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.hero__cta { display: flex; gap: .65rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  width: 1px;
  height: 48px;
  overflow: hidden;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--paper), transparent);
  animation: scrollcue 2.4s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.intro { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.intro.section--light {
  background:
    radial-gradient(70% 60% at 50% -10%, rgba(122,72,37,.08), transparent 70%),
    var(--charcoal);
}
.intro .display-sm { max-width: 900px; margin-inline: auto; }
.feature-poster {
  position: relative;
  margin-top: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.feature-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02) brightness(.84);
}
.feature-poster__actions {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.25rem);
}
.product-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1060px;
  margin-inline: auto;
}
.product-grid--repeat {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin-inline: auto;
}
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 72px rgba(0,0,0,.22);
}
.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.18 / 1;
  background: var(--cedar-well);
  overflow: hidden;
}
.product-card__media--dark { background: linear-gradient(135deg, #090806, #1a1009 55%, var(--cedar-dark)); }
.product-card__media--photo { background: var(--cedar-well); }
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transition: transform .8s var(--ease);
}
.product-card__media--photo img {
  object-fit: cover;
  padding: 0;
}
.product-card:hover .product-card__media img { transform: scale(1.035); }
.badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 2;
  padding: .34rem .55rem;
  border-radius: 2px;
  background: rgba(7,6,4,.78);
  color: var(--gold-light);
  border: 1px solid rgba(201,154,66,.28);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge--sale { background: var(--sale); color: var(--paper); border-color: transparent; }
.product-card__body {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  padding: 1.35rem 1.25rem 1.2rem;
  text-align: center;
}
.product-card__body h3 {
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 600;
}
.product-card__body p {
  min-height: 2.1em;
  margin-top: .42rem;
  color: var(--muted);
  font-size: .78rem;
}
.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .55rem;
  margin: 1.35rem 0 1.1rem;
  color: var(--cedar-raw);
}
.price span { font-weight: 600; font-size: 1rem; }
.price s { color: rgba(243,231,207,.46); font-size: .72rem; }
.product-card__button {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 54%, var(--bronze));
  color: var(--ember-black);
  font-size: .68rem;
  font-weight: 800;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.product-card__button:hover { background: var(--gold-light); transform: translateY(-1px); }

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.3rem, 3vw, 2.2rem);
}
.guarantee-grid--bottom {
  max-width: 1080px;
  margin: clamp(3rem, 7vw, 5.5rem) auto 0;
}
.guarantee-card {
  min-height: 190px;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(201,154,66,.045), rgba(122,72,37,.035)),
    var(--surface);
  color: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}
.guarantee-card__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: .9rem;
  border-radius: 50%;
  background: rgba(216,195,160,.18);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 800;
}
.guarantee-card h3 {
  font-size: .95rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}
.guarantee-card p {
  max-width: 34ch;
  margin: .65rem auto 0;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
}

.quoteband {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ember-black);
}
.quoteband__bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.quoteband__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,6,4,.32), rgba(7,6,4,.82));
}
.quoteband__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 10vw, 9rem);
}
.quoteband .eyebrow,
.quoteband blockquote { color: var(--paper); }
.quoteband blockquote {
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 1;
  font-weight: 800;
}

.proof-band {
  padding: clamp(5.5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(138,84,40,.11), transparent 72%),
    var(--ember-black);
  color: var(--paper);
}
.proof-band .eyebrow { color: var(--gold); }
.proof-band h2 {
  font-size: clamp(1.7rem, 4.6vw, 3.1rem);
  line-height: 1;
  font-weight: 800;
}
.proof-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2rem, 5vw, 3.8rem);
}
.proof-logos span {
  color: rgba(238,228,207,.82);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 800;
  font-style: italic;
}

.social-proof {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  grid-auto-rows: minmax(150px, auto);
  gap: clamp(1.3rem, 3vw, 2rem);
}
.quote-card {
  min-height: 175px;
  padding: clamp(1.35rem, 2vw, 1.8rem);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(201,154,66,.045), transparent),
    var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}
.quote-card h3 {
  margin-bottom: .75rem;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.quote-card p {
  color: var(--muted);
  font-size: .88rem;
}
.quote-card--image {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
}
.quote-card--image.tall { grid-row: span 2; }
.quote-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-tabs {
  display: inline-flex;
  max-width: 100%;
  margin-top: 1.2rem;
  padding: .2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}
.benefit-tabs button {
  min-width: 116px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  padding: .45rem .9rem;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.benefit-tabs .is-active {
  background: var(--gold);
  color: var(--ember-black);
}
.benefit-hero {
  max-width: 1040px;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  aspect-ratio: 16 / 6.8;
  overflow: hidden;
  border-radius: 6px;
}
.benefit-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
  margin-inline: auto;
  gap: clamp(2rem, 4vw, 3.4rem) clamp(1.5rem, 6vw, 6rem);
}
.benefit-list h3 {
  margin-bottom: .45rem;
  color: var(--cedar-raw);
  font-size: .92rem;
  line-height: 1.25;
  font-weight: 800;
}
.benefit-list p {
  color: var(--muted);
  font-size: .82rem;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.3rem, 3vw, 2rem);
}
.lifestyle-grid article {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 6px;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  background-size: cover;
  background-position: center;
  color: var(--paper);
}
.lifestyle-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,6,4,.16), rgba(7,6,4,.78));
}
.lifestyle-grid h3,
.lifestyle-grid span {
  position: relative;
  z-index: 1;
}
.lifestyle-grid h3 {
  max-width: 18ch;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.05;
  font-weight: 800;
}
.lifestyle-grid span {
  position: absolute;
  top: .9rem;
  right: .9rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
}

.moment {
  padding-top: clamp(3rem, 7vw, 6rem);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.moment__copy { max-width: 520px; }
.moment__copy .lead { margin: 1.25rem 0 1.8rem; }
.moment__image,
.media-square {
  overflow: hidden;
  border-radius: 6px;
  background: var(--cedar-well);
  border: 1px solid var(--line);
}
.moment__image { aspect-ratio: 1.42 / 1; }
.media-square { aspect-ratio: 1 / 1; }
.moment__image img,
.media-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-square img { object-fit: contain; padding: 0; }

.footer {
  padding: clamp(6rem, 10vw, 9rem) 0 2.5rem;
  background: var(--ember-black);
  color: var(--paper);
}
.footer__headline {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  text-align: center;
}
.footer__headline h2 {
  color: var(--gold);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: .98;
  font-weight: 800;
}
.footer__top {
  display: grid;
  grid-template-columns: .75fr 1.7fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: 4rem;
}
.footer__brand img { width: 140px; height: auto; }
.footer .eyebrow { color: var(--paper); }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer__cols li { margin: .42rem 0; }
.footer__cols a,
.footer__news p,
.footer__base p {
  color: rgba(255,255,255,.78);
  font-size: .82rem;
}
.footer__cols a:hover { color: var(--gold); }
.footer__news .small { margin-bottom: 1rem; }
.news__field {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.news__field input {
  min-width: 0;
  flex: 1;
  height: 40px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 3px;
  background: rgba(0,0,0,.2);
  color: var(--paper);
  padding: 0 .8rem;
}
.news__field input::placeholder { color: rgba(255,255,255,.7); }
.news__field button {
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ember-black);
  padding: 0 .9rem;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
}

[data-reveal], [data-reveal-children] > * {
  opacity: 0;
  transform: translateY(24px);
}
.is-revealed, .is-revealed > * {
  opacity: 1 !important;
  transform: none !important;
}
[data-reveal-words] .word,
[data-reveal-lines] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1;
}
[data-reveal-words] .word__inner,
[data-reveal-lines] .word__inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
[data-reveal-words].is-ready .word__inner,
[data-reveal-lines].is-ready .word__inner { transform: translateY(0); }
[data-clip-reveal] {
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}
[data-clip-reveal] img {
  transform: scale(1.04);
  transition: transform 1.1s var(--ease-out-expo);
}
[data-clip-reveal].is-revealed img { transform: scale(1); }

.tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 2px;
  background: var(--timber);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.cursor,
.cursor__dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.cursor {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 1px solid var(--navy);
}
.cursor__dot {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: var(--navy);
}
.cursor.is-active,
.cursor__dot.is-active { opacity: 1; }
.cursor.is-hover {
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  background: rgba(45,50,77,.08);
}

.curtain {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.curtain__half {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--navy);
  z-index: 1;
  will-change: transform;
}
.curtain__half--top { top: 0; }
.curtain__half--bottom { bottom: 0; }
.curtain__mark {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
}
.curtain__mark .rule {
  margin: 0 auto .8rem;
  background: var(--gold);
}
.curtain__mark .wordmark {
  color: var(--paper);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
}
.curtain__mark .wordmark em { color: var(--gold); font-style: normal; }
.is-curtain-open { overflow: hidden; }

@media (max-width: 980px) {
  .announcement {
    grid-template-columns: repeat(2, 1fr);
    height: 44px;
    row-gap: 0;
  }
  .announcement span { line-height: 22px; }
  .nav { top: 44px; }
  .nav__menu { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; min-height: 64px; }
  .nav__brand img { height: 140px; }
  .product-grid,
  .product-grid--repeat,
  .product-grid--two,
  .guarantee-grid,
  .benefit-list,
  .lifestyle-grid,
  .split,
  .footer__top { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .social-proof { grid-template-columns: 1fr 1fr; }
  .feature-poster { aspect-ratio: 16 / 9; }
  .section__head { max-width: 680px; }
  .proof-logos { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .display { font-size: clamp(2.7rem, 16vw, 4.5rem); }
  .display-sm { font-size: clamp(1.85rem, 10vw, 2.7rem); }
  .section {
    padding: clamp(4.25rem, 18vw, 6.5rem) 0;
  }
  .section--tight {
    padding-top: clamp(3.25rem, 14vw, 5rem);
  }
  .section__head,
  .section__head.compact {
    margin-bottom: clamp(2.2rem, 11vw, 3.5rem);
  }
  .hero {
    min-height: 86svh;
    padding-top: 8rem;
  }
  .hero__vignette {
    background: linear-gradient(180deg, rgba(19,21,31,.28) 0%, rgba(19,21,31,.3) 35%, rgba(19,21,31,.78) 100%);
  }
  .nav__right .btn { display: none; }
  .feature-poster__actions { width: calc(100% - 2rem); }
  .product-card__media { aspect-ratio: 1.18 / 1; }
  .product-card__body {
    min-height: 196px;
    padding: 1.15rem 1rem 1rem;
  }
  .guarantee-card {
    min-height: 168px;
  }
  .lifestyle-grid article {
    min-height: 310px;
  }
  .social-proof,
  .proof-logos,
  .footer__cols { grid-template-columns: 1fr; }
  .quote-card--image,
  .quote-card--image.tall { min-height: 260px; grid-row: auto; }
  .benefit-tabs { display: flex; width: 100%; }
  .benefit-tabs button { flex: 1; min-width: 0; padding-inline: .45rem; font-size: .58rem; }
  .footer__base { flex-direction: column; }
}

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor__dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-children] > * { opacity: 1; transform: none; }
  [data-reveal-words] .word__inner,
  [data-reveal-lines] .word__inner { transform: none; }
  [data-clip-reveal] { clip-path: none; }
  [data-clip-reveal] img { transform: none; }
  .curtain, .cursor, .cursor__dot, .scroll-progress { display: none !important; }
}
