/* ==========================================================================
   klai. — early access landing page
   Palette + typography from the KLAI Brand Guide
   ========================================================================== */

:root {
  --black-soap: #0E0906;
  --deep-brown: #241409;
  --deep-brown-2: #382212;
  --oud-brown: #5A321B;
  --cream: #EFE2CF;
  --cream-soft: #F6EFE4;
  --cream-dim: #d9cbb3;
  --gold: #C8A46A;
  --gold-bright: #dcb87e;
  --sand: #C7A982;

  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.22, .68, 0, 1);

  --nav-h: 78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  margin: 0;
  background: var(--black-soap);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.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: absolute; left: 1rem; top: -100px;
  background: var(--gold); color: var(--black-soap);
  padding: .75rem 1.25rem; border-radius: 4px;
  font-weight: 600; z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* ---------- shared type ---------- */

.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.kicker--dark { color: var(--oud-brown); }
.kicker--gold { color: var(--gold-bright); }

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--deep-brown-2);
  margin: 0 0 1.1rem;
}
.h2--light { color: var(--cream); }

/* Real stacked wordmark. It is tall and narrow (0.42 w/h), so it is sized
   by height and the nav is given room rather than shrinking it to fit. */
.logo { display: block; width: auto; }
.logo--nav { height: 52px; }
.logo--foot { height: 64px; }

.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.01em;
}
.wordmark--small { font-size: 1.2rem; }
.wordmark__dot { color: var(--gold); display: inline-block; transform-origin: center bottom; }
.wordmark__dot.js-drop { animation: dotDrop .85s var(--ease) .2s both; }
@keyframes dotDrop {
  0%   { transform: translateY(-18px) scale(1.35); opacity: 0; }
  55%  { transform: translateY(3px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--black-soap);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: none;
  border-radius: 6px;
  padding: .95rem 1.7rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(200,164,106,.55);
  filter: brightness(1.05);
}
.btn:active { transform: translateY(0); }
.btn--sm { padding: .6rem 1.1rem; font-size: .8rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn[aria-disabled="true"] {
  background: rgba(239,226,207,.16);
  color: rgba(239,226,207,.75);
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(14,9,6,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(239,226,207,.12);
}
/* Same max-width + gutter as every other section, so the logo lines up
   with the content grid instead of floating out at the viewport edge. */
.nav__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__mark { text-decoration: none; flex: none; }

.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0 auto 0 0;
  padding: 0;
}
.nav__links a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--cream-dim);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav__links a:hover { color: var(--cream); border-bottom-color: var(--gold); }

.nav__cta { flex: none; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(90,50,27,.55), transparent 60%),
    linear-gradient(160deg, var(--black-soap) 0%, var(--deep-brown) 62%, var(--deep-brown-2) 100%);
  display: flex;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.hero__texture {
  position: absolute; inset: 0;
  background: url('assets/texture-oud-wood.webp') center / cover;
  opacity: .16;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 100%, rgba(0,0,0,.55), transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(1rem, 2.4vw, 1.75rem);
}

.hero__photo { margin: 0; }
.hero__photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.8);
}

.hero__meta {
  margin: 1.1rem 0 0;
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(239,226,207,.55);
}
.hero__copy::before {
  content: '';
  position: absolute;
  left: 0; top: .3em;
  width: 2px;
  height: calc(100% - .6em);
  background: linear-gradient(to bottom, var(--gold), transparent 85%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s var(--ease) .15s;
}
.hero__copy.js-pour::before { transform: scaleY(1); }

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--cream);
  margin: 0 0 1.2rem;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--cream-dim);
  max-width: 46ch;
  margin: 0 0 2rem;
}

/* ---------- capture form ---------- */

.capture {
  display: flex;
  gap: .65rem;
  max-width: 460px;
  flex-wrap: wrap;
}
.capture__input {
  flex: 1 1 220px;
  min-width: 0;
  background: rgba(20,12,7,.72);
  border: 1px solid rgba(239,226,207,.3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .95rem 1.1rem;
  border-radius: 6px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.capture__input::placeholder { color: rgba(239,226,207,.45); }
.capture__input:focus {
  outline: none;
  border-color: var(--gold-bright);
  background: rgba(20,12,7,.88);
}
.capture__input:invalid[data-touched="true"] { border-color: #c46a5a; }

.capture__submit.is-loading span { opacity: 0; }
.capture__submit.is-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(14,9,6,.35);
  border-top-color: var(--black-soap);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.capture.is-success .capture__input,
.capture.is-success .capture__submit { display: none; }

.capture__success {
  display: none;
  align-items: center;
  gap: .6rem;
  min-height: 52px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-bright);
  animation: successIn .5s var(--ease) both;
}
.capture__success::before {
  content: '';
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px 2px rgba(220,184,126,.6);
}
.capture.is-success .capture__success { display: flex; }

/* Brevo spam trap — off-screen rather than display:none, which some bots skip */
.capture__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Failure keeps the field in place so the address isn't lost */
.capture__success--error {
  display: flex;
  color: #e0a08f;
}
.capture__success--error::before {
  background: #e0a08f;
  box-shadow: 0 0 10px 2px rgba(224,160,143,.5);
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  background: var(--deep-brown-2);
  border-top: 1px solid rgba(200,164,106,.22);
  border-bottom: 1px solid rgba(200,164,106,.22);
  overflow: hidden;
  padding: .85rem 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ==========================================================================
   THE SOAP
   ========================================================================== */

.soap {
  background: var(--cream);
  color: var(--deep-brown-2);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
}
.soap__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.soap__media { margin: 0; }
.soap__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 50px -24px rgba(56,34,18,.55);
}
.soap__media figcaption {
  margin-top: .9rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--oud-brown);
}

.soap__lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(56,34,18,.86);
  margin: 0 0 2rem;
  max-width: 48ch;
}

.ingredients {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  border-top: 1px solid rgba(90,50,27,.22);
}
.ingredients li {
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(90,50,27,.22);
}
.ingredients h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oud-brown);
  margin: 0 0 .35rem;
}
.ingredients p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(56,34,18,.82);
}

/* ==========================================================================
   THE RITUAL
   ========================================================================== */

.ritual {
  position: relative;
  background: var(--black-soap);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
}
.ritual__texture {
  position: absolute; inset: 0;
  background: url('assets/texture-matte-leather.webp') center / cover;
  opacity: .3;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.ritual__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.steps__item {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(239,226,207,.2);
}
.steps__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .8rem;
}
.steps__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  margin: 0 0 .45rem;
}
.steps__item p {
  margin: 0;
  color: rgba(239,226,207,.72);
  font-size: .95rem;
}

/* ==========================================================================
   BUY
   ========================================================================== */

.buy {
  background: linear-gradient(180deg, var(--deep-brown-2), var(--black-soap) 72%);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(200,164,106,.16);
}
.buy__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.buy__media { margin: 0; }
.buy__media img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.85);
}

.buy__panel {
  border: 1px solid rgba(239,226,207,.18);
  border-radius: 14px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: linear-gradient(165deg, rgba(90,50,27,.32), rgba(14,9,6,.6));
}
.buy__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cream);
  margin: 0 0 .3rem;
}
.buy__tagline {
  margin: 0 0 1.5rem;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.buy__price {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(239,226,207,.18);
}
.buy__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--cream);
  line-height: 1;
}
.buy__size { font-size: .86rem; color: rgba(239,226,207,.62); }

.buy__points { list-style: none; padding: 0; margin: 0 0 1.9rem; }
.buy__points li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .6rem;
  font-size: .93rem;
  color: rgba(239,226,207,.82);
}
.buy__points li::before {
  content: '';
  position: absolute;
  left: 0; top: .52em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- scent picker ---------- */

.variant {
  border: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: .6rem;
}
.variant__legend {
  padding: 0;
  margin-bottom: .75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand);
}
.variant__option {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(239,226,207,.24);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.variant__option:hover { border-color: rgba(200,164,106,.6); }
.variant__option input {
  flex: none;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.variant__option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(200,164,106,.1);
}
.variant__option:has(input:focus-visible) {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
.variant__body { display: flex; flex-direction: column; gap: .15rem; }
.variant__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--cream);
}
.variant__note { font-size: .8rem; color: rgba(239,226,207,.62); }

.buy__note {
  margin: .9rem 0 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(239,226,207,.55);
}
.buy__alt {
  margin: 1.5rem 0 0;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(239,226,207,.14);
  font-size: .88rem;
  color: rgba(239,226,207,.68);
}
.buy__alt a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   STORY
   ========================================================================== */

.story {
  background: var(--cream-soft);
  color: var(--deep-brown-2);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
}
.story__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.story__quote { margin: 0 0 1.5rem; }
.story__quote p {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1.35;
  color: var(--deep-brown-2);
  margin: 0;
}
.story__body {
  color: rgba(56,34,18,.85);
  max-width: 52ch;
  margin: 0 auto 1.75rem;
}
.story__sign {
  font-size: .88rem;
  color: var(--oud-brown);
  margin: 0;
  line-height: 1.5;
}
.story__sign strong { color: var(--deep-brown-2); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  background: var(--cream);
  color: var(--deep-brown-2);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
}
.faq__inner { max-width: 780px; margin: 0 auto; }
.faq__list { margin-top: 2.25rem; border-top: 1px solid rgba(90,50,27,.22); }

.faq__item { border-bottom: 1px solid rgba(90,50,27,.22); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-brown-2);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  position: absolute;
  right: .4rem; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--oud-brown);
  border-bottom: 2px solid var(--oud-brown);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item summary:hover { color: var(--oud-brown); }
.faq__item p {
  margin: 0 0 1.3rem;
  max-width: 62ch;
  color: rgba(56,34,18,.85);
  font-size: .96rem;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final {
  position: relative;
  background: linear-gradient(180deg, var(--deep-brown-2), var(--black-soap) 78%);
  padding: clamp(4.5rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  text-align: center;
}
.final__texture {
  position: absolute; inset: 0;
  background: url('assets/texture-smoke.webp') center 30% / cover;
  opacity: .13;
  mix-blend-mode: screen;
  pointer-events: none;
}
.final__inner { position: relative; max-width: 620px; margin: 0 auto; }
.final__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--cream);
  margin: 0 0 2rem;
}
.final__sub {
  color: var(--cream-dim);
  max-width: 42ch;
  margin: -1rem auto 2rem;
}
.final .capture { margin: 0 auto; justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.foot {
  background: var(--black-soap);
  border-top: 1px solid rgba(239,226,207,.12);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem) 0;
}
.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.foot__brand p {
  margin: 1rem 0 0;
  font-size: .88rem;
  color: rgba(239,226,207,.6);
  line-height: 1.6;
}
.foot__col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; }
.foot__col li { margin-bottom: .6rem; font-size: .88rem; color: rgba(239,226,207,.6); }
.foot__col a { text-decoration: none; transition: color .2s var(--ease); }
.foot__col a:hover { color: var(--gold-bright); }

.foot__bar {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(239,226,207,.12);
  padding: 1.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.foot__bar p { margin: 0; font-size: .78rem; color: rgba(239,226,207,.45); }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem clamp(1rem, 4vw, 1.5rem);
  background: rgba(14,9,6,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(200,164,106,.28);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-cta__text strong {
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--gold-bright);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sticky-cta__text span { font-size: .78rem; color: rgba(239,226,207,.7); }

/* ==========================================================================
   REVEAL
   ========================================================================== */

/* Reveals only hide when .js-anim is set (see the inline guard in <head>),
   so content is never left invisible if scripting or IO is unavailable. */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js-anim .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
  .wordmark__dot { animation: none !important; }
  .hero__copy::before { transform: scaleY(1); transition: none; }
  .capture__success { animation: none; }
  .marquee__track { animation: none; }
  .btn:hover { transform: none; }
  .sticky-cta { transition: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav { justify-content: space-between; }

  .soap__inner { grid-template-columns: 1fr; }
  .soap__media { max-width: 320px; }

  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps__item { padding: 1.4rem 0; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { max-width: 460px; }

  .buy__inner { grid-template-columns: 1fr; }
  .buy__media { max-width: 460px; }

  .foot__inner { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .capture { flex-direction: column; }
  .capture__input { flex: 0 0 auto; width: 100%; }
  .capture__submit { flex: 0 0 auto; width: 100%; }


  .sticky-cta { display: flex; }
  .foot { padding-bottom: 4.5rem; }
  .foot__inner { grid-template-columns: 1fr; gap: 2rem; }
}
