:root {
  --coal: #171612;
  --coal-soft: #242019;
  --paper: #f2ecdf;
  --ivory: #fffaf0;
  --ink: #201d18;
  --muted: #716a5f;
  --gold: #c99a42;
  --rust: #a34732;
  --line: rgba(32, 29, 24, 0.16);
  --line-dark: rgba(255, 250, 240, 0.16);
  --display: "Iowan Old Style", Baskerville, "Palatino Linotype", Georgia, serif;
  --body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--coal);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button,
a {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 15px;
  background: var(--ivory);
  color: var(--coal);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

.section {
  padding: clamp(80px, 8vw, 118px) max(24px, calc((100vw - var(--container)) / 2));
}

.section-label,
.eyebrow {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 22px;
  font-size: 0.8rem;
  font-weight: 850;
  transition: transform 160ms var(--ease), background 160ms ease, color 160ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: var(--coal);
}

.button-gold:hover {
  background: var(--ivory);
}

.button-light {
  background: var(--ivory);
  color: var(--coal);
}

.button-light:hover {
  background: var(--gold);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 16px max(24px, calc((100vw - var(--container)) / 2));
  color: var(--ivory);
  transition: background 220ms ease, min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 66px;
  background: rgba(23, 22, 18, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.76rem;
  font-weight: 780;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(860px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--coal);
  color: var(--ivory);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 11, 9, 0.94) 0%, rgba(12, 11, 9, 0.79) 34%, rgba(12, 11, 9, 0.18) 65%, rgba(12, 11, 9, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 11, 9, 0.3), transparent 40%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 52vw);
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: 132px 0 72px;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(4.1rem, 6.7vw, 7.25rem);
  line-height: 0.91;
}

.hero h1 em {
  display: inline-block;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.7;
}

.hero-exclusivity {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.82rem;
}

.hero-exclusivity strong {
  position: relative;
  color: var(--ivory);
}

.hero-exclusivity strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.hero-actions .button {
  margin-top: 0;
}

.hero-text-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: rgba(255, 250, 240, 0.5);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.hero-text-link:hover::after {
  transform: scaleX(0.55);
}

.hero .button {
  margin-top: 34px;
}

.illustrative-note {
  margin: 13px 0 0;
  color: rgba(255, 250, 240, 0.45);
  font-size: 0.66rem;
}

.js .hero-media {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 820ms var(--ease);
}

.js .hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.js.is-ready .hero-media {
  clip-path: inset(0);
}

.js.is-ready .hero-copy > * {
  opacity: 1;
  transform: none;
}

.js.is-ready .hero-copy > :nth-child(2) { transition-delay: 120ms; }
.js.is-ready .hero-copy > :nth-child(3) { transition-delay: 220ms; }
.js.is-ready .hero-copy > :nth-child(4) { transition-delay: 300ms; }
.js.is-ready .hero-copy > :nth-child(5) { transition-delay: 340ms; }

.js.is-ready .hero-copy > :nth-child(6) { transition-delay: 380ms; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

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

.conversion-band {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 74px);
  padding: 16px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--coal-soft);
  color: var(--ivory);
}

.conversion-band p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}

.conversion-band a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.conversion-band a:hover {
  color: var(--ivory);
}

.fact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: var(--gold);
  color: var(--coal);
}

.fact-bar p {
  min-height: 92px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 15px clamp(18px, 3vw, 44px);
  border-right: 1px solid rgba(32, 29, 24, 0.25);
}

.fact-bar p:first-child {
  border-left: 1px solid rgba(32, 29, 24, 0.25);
}

.fact-bar strong {
  font-family: var(--display);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 500;
}

.fact-bar strong span {
  font-family: var(--body);
  font-size: 1rem;
  font-style: normal;
}

.fact-bar p > span {
  font-size: 0.78rem;
  font-weight: 850;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: clamp(28px, 4.5vw, 68px);
  background: var(--paper);
}

.experience-copy {
  max-width: 670px;
}

.mechanism {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 42px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.mechanism::before,
.mechanism::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
}

.mechanism::before {
  width: 100%;
  background: rgba(163, 71, 50, 0.12);
}

.mechanism::after {
  width: 0;
  background: var(--rust);
  transition: width 900ms var(--ease);
}

.mechanism.is-scanned::after {
  width: 100%;
}

.mechanism li {
  display: grid;
  align-content: start;
  gap: 5px;
}

.step-icon {
  color: var(--rust);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
}

.mechanism strong {
  font-size: 0.83rem;
}

.mechanism small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.fixed-message {
  max-width: 620px;
  margin: 34px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.fixed-message strong {
  color: var(--ink);
}

.video-card {
  margin: 0;
  justify-self: center;
}

.video-card {
  width: 280px;
  padding: 10px 10px 14px;
  background: var(--coal-soft);
  box-shadow: 15px 15px 0 var(--rust), 0 26px 50px rgba(32, 29, 24, 0.16);
  color: var(--ivory);
}

.video-card video {
  width: 100%;
  height: min(500px, 62vh);
  min-height: 410px;
  background: var(--coal);
  object-fit: contain;
}

.video-card figcaption {
  padding-top: 12px;
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1.4;
}

.message-piece {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
  padding: clamp(70px, 7vw, 104px) max(24px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  background: var(--coal);
  color: var(--ivory);
}

.piece-image {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.piece-image::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--rust);
  opacity: 0.75;
}

.piece-image img {
  position: relative;
  z-index: 1;
  width: min(590px, 105%);
  height: auto;
  max-width: none;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.36));
}

.piece-copy {
  max-width: 650px;
}

.piece-copy .section-label {
  color: var(--gold);
}

.piece-copy > p:not(.section-label) {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: 1.02rem;
}

.piece-copy ul {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.piece-copy li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.piece-copy strong {
  color: var(--gold);
  font-size: 0.82rem;
}

.piece-copy li span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.82rem;
}

.applications {
  background: var(--ivory);
}

.applications-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 28px);
  margin-top: 48px;
}

.product-grid figure {
  min-width: 0;
  margin: 0;
}

.product-stage {
  height: clamp(260px, 26vw, 360px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.stage-ink { background: #d9d2c5; }
.stage-rose { background: #e6d2d1; }
.stage-blue { background: #d7e0df; }
.stage-earth { background: #d8c3aa; }

.product-stage img {
  width: auto;
  height: auto;
  max-width: 112%;
  max-height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(32, 29, 24, 0.16));
  transition: transform 220ms var(--ease);
}

.product-grid figure:hover img {
  transform: translateY(-5px) scale(1.012);
}

.product-grid figcaption {
  display: grid;
  gap: 3px;
  padding-top: 15px;
}

.product-grid figcaption span {
  color: var(--rust);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-grid figcaption strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.exclusivity-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.exclusivity-line > span {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.exclusivity-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.exclusivity-line p strong {
  position: relative;
  color: var(--ink);
}

.exclusivity-line p strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.8;
}

.exclusivity-line a {
  display: inline-flex;
  gap: 12px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.practical-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: var(--rust);
  color: var(--ivory);
}

.practical-bar p {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 3px;
  margin: 0;
  padding: 22px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 250, 240, 0.19);
}

.practical-bar p:first-child {
  border-left: 1px solid rgba(255, 250, 240, 0.19);
}

.practical-bar strong {
  font-size: 0.86rem;
}

.practical-bar span {
  color: rgba(255, 250, 240, 0.67);
  font-size: 0.78rem;
}

.access-offer {
  background: #ebe2d3;
}

.access-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.access-heading h2 {
  font-size: clamp(3rem, 5.4vw, 5.35rem);
}

.access-heading h2 em {
  position: relative;
  display: inline-block;
  color: var(--rust);
}

.access-heading h2 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  background: var(--rust);
  transform: rotate(-0.6deg);
}

.access-heading > p:last-child {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.24fr);
  max-width: 1100px;
  margin: 62px auto 0;
  background: var(--ivory);
  box-shadow: 0 30px 70px rgba(32, 29, 24, 0.1);
}

.price-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 620px;
  padding: 54px 42px;
  background: var(--coal-soft);
  color: var(--ivory);
  text-align: center;
}

.price-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  justify-content: center;
  gap: 0 12px;
  margin: 34px 0 0;
}

.price > span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.price > strong {
  grid-row: span 2;
  font-size: clamp(4.4rem, 7vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.price > strong small {
  font-size: 0.38em;
  letter-spacing: -0.03em;
}

.price > em {
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.68rem;
  font-style: normal;
}

.cash-price {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.8rem;
}

.button-conversion {
  width: 100%;
  margin-top: 34px;
  background: var(--rust);
  color: var(--ivory);
}

.button-conversion:hover {
  background: var(--gold);
  color: var(--coal);
}

.secure-note {
  display: grid;
  grid-template-columns: 22px 1fr;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.72);
  text-align: left;
}

.secure-note > span {
  grid-row: span 2;
  color: var(--gold);
}

.secure-note strong,
.secure-note small {
  display: block;
}

.secure-note strong {
  font-size: 0.72rem;
}

.secure-note small {
  color: rgba(255, 250, 240, 0.5);
  font-size: 0.64rem;
}

.benefits {
  padding: 56px clamp(34px, 5vw, 72px);
}

.benefits ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
}

.benefits li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.benefits li span {
  color: var(--rust);
  font-family: var(--display);
  font-size: 0.88rem;
  font-style: italic;
}

.benefits li strong {
  font-size: 0.85rem;
  line-height: 1.45;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
  background: var(--paper);
}

.faq-intro {
  max-width: 500px;
}

.faq-intro > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
}

.faq-checkout {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 54px 22px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1px;
  background: var(--rust);
  transition: transform 180ms var(--ease);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -2px 0 22px;
  color: var(--muted);
}

.closing {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--coal);
  color: var(--ivory);
}

.closing-photo,
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-photo {
  object-fit: cover;
  object-position: center;
}

.closing-shade {
  background: linear-gradient(90deg, rgba(16, 14, 11, 0.94) 0%, rgba(16, 14, 11, 0.78) 37%, rgba(16, 14, 11, 0.18) 66%, rgba(16, 14, 11, 0.07));
}

.closing-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 49vw);
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: 76px 0;
}

.closing .section-label {
  color: var(--gold);
}

.closing-copy > p:not(.section-label) {
  max-width: 530px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.7);
}

.closing .button {
  margin-top: 28px;
}

.closing-copy .closing-price {
  margin-top: 16px;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.7rem;
}

.closing-copy small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.42);
  font-size: 0.63rem;
}

.site-footer {
  min-height: 94px;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--coal);
  color: rgba(255, 250, 240, 0.54);
  font-size: 0.7rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ivory);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .hero-copy {
    width: min(650px, 58vw);
  }

  .experience {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 34px;
  }

  .video-card {
    width: 250px;
  }

}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 250, 240, 0.36);
    border-radius: 50%;
    background: rgba(23, 22, 18, 0.78);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--ivory);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 90px max(28px, 9vw);
    background: var(--coal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    padding: 8px 0;
    font-family: var(--display);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 500;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 59% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 11, 9, 0.94) 0%, rgba(12, 11, 9, 0.77) 44%, rgba(12, 11, 9, 0.12) 100%);
  }

  .hero-copy {
    width: min(620px, 68vw);
  }

  .experience {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: 760px;
  }

  .video-card {
    justify-self: center;
  }

  .message-piece,
  .faq {
    grid-template-columns: 1fr;
  }

  .message-piece,
  .faq {
    gap: 58px;
  }

  .piece-image {
    min-height: 400px;
  }

  .message-piece .piece-copy {
    order: -1;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exclusivity-line {
    grid-template-columns: 92px 1fr;
  }

  .exclusivity-line a {
    grid-column: 2;
  }

  .offer-shell {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .price-card {
    min-height: 500px;
  }

  .product-stage {
    height: 340px;
  }

  .closing-copy {
    width: min(590px, 62vw);
  }

  .site-footer {
    grid-template-columns: 1fr 1.5fr;
  }

  .site-footer p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: clamp(2.6rem, 12.5vw, 3.55rem);
  }

  .section {
    padding: 76px 22px;
  }

  .site-header {
    padding-inline: 22px;
  }

  .hero {
    min-height: 880px;
    align-items: end;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 11, 9, 0.96) 0%, rgba(12, 11, 9, 0.66) 55%, rgba(12, 11, 9, 0.12) 100%),
      linear-gradient(90deg, rgba(12, 11, 9, 0.58), transparent 80%);
  }

  .hero-copy {
    width: auto;
    margin: 0;
    padding: 120px 22px 48px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 4.55rem);
  }

  .hero-lead {
    max-width: 360px;
    font-size: 0.96rem;
  }

  .hero-exclusivity {
    font-size: 0.76rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-text-link {
    justify-content: center;
  }

  .hero .button {
    width: 100%;
  }

  .conversion-band {
    min-height: 132px;
    display: grid;
    gap: 6px;
    padding: 24px 22px;
    text-align: center;
  }

  .conversion-band a {
    justify-content: center;
    font-size: 0.68rem;
  }

  .fact-bar {
    padding-inline: 0;
  }

  .fact-bar p {
    min-height: 84px;
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 12px 10px;
    text-align: center;
  }

  .fact-bar p:first-child {
    border-left: 0;
  }

  .fact-bar strong {
    font-size: 1.55rem;
    line-height: 1;
  }

  .fact-bar p > span {
    font-size: 0.61rem;
  }

  .experience {
    grid-template-columns: 1fr;
    gap: 26px 14px;
  }

  .mechanism {
    gap: 8px;
  }

  .mechanism strong {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .mechanism small {
    font-size: 0.64rem;
  }

  .video-card {
    width: min(240px, 82vw);
    padding: 7px 7px 11px;
    box-shadow: 9px 9px 0 var(--rust), 0 18px 35px rgba(32, 29, 24, 0.14);
  }

  .video-card video {
    height: auto;
    min-height: 0;
    aspect-ratio: 482 / 850;
  }

  .video-card figcaption {
    font-size: 0.58rem;
  }

  .message-piece {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 72px 22px;
  }

  .piece-image {
    min-height: 310px;
  }

  .piece-image::before {
    width: 260px;
    height: 260px;
  }

  .piece-image img {
    width: 390px;
  }

  .piece-copy li {
    grid-template-columns: 88px 1fr;
    gap: 16px;
  }

  .product-grid {
    width: calc(100vw - 22px);
    display: flex;
    gap: 14px;
    margin-top: 38px;
    padding-right: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .product-grid figure {
    width: min(78vw, 330px);
    min-width: min(78vw, 330px);
    scroll-snap-align: start;
  }

  .product-stage {
    height: 310px;
  }

  .exclusivity-line {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 48px;
  }

  .exclusivity-line a {
    grid-column: auto;
  }

  .exclusivity-line p {
    line-height: 1.75;
  }

  .practical-bar {
    grid-template-columns: 1fr;
    padding: 20px 22px;
  }

  .practical-bar p,
  .practical-bar p:first-child {
    min-height: 86px;
    padding: 17px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.19);
  }

  .practical-bar p:last-child {
    border-bottom: 0;
  }

  .access-heading {
    text-align: left;
  }

  .access-heading h2 {
    font-size: clamp(2.8rem, 13vw, 3.7rem);
  }

  .access-heading h2 em::after {
    bottom: -5px;
  }

  .access-heading > p:last-child {
    margin-top: 26px;
  }

  .offer-shell {
    margin-top: 44px;
  }

  .price-card {
    min-height: 0;
    padding: 52px 26px;
  }

  .price > strong {
    font-size: clamp(4.6rem, 24vw, 6rem);
  }

  .benefits {
    padding: 44px 24px;
  }

  .benefits ol {
    grid-template-columns: 1fr;
  }

  .benefits li,
  .benefits li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .benefits li:last-child {
    border-bottom: 0;
  }

  .faq {
    gap: 42px;
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 0.94rem;
  }

  .closing {
    min-height: 690px;
    align-items: end;
  }

  .closing-photo {
    object-position: 62% center;
  }

  .closing-shade {
    background: linear-gradient(0deg, rgba(16, 14, 11, 0.96) 0%, rgba(16, 14, 11, 0.73) 58%, rgba(16, 14, 11, 0.14) 100%);
  }

  .closing-copy {
    width: auto;
    margin: 0;
    padding: 78px 22px 44px;
  }

  .closing-copy h2 {
    font-size: clamp(2.65rem, 12.8vw, 3.6rem);
  }

  .closing .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 30px 22px;
  }

  .site-footer p:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js .hero-media {
    clip-path: inset(0);
  }

  .js .hero-copy > * {
    opacity: 1;
    transform: none;
  }

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

  .mechanism::after {
    width: 100%;
  }
}
