:root {

  --bg:            #F2EDE8;
  --bg-warm:       #E8DDD3;
  --bg-concrete:   #D8D2CA;
  --bg-dark:       #2C2420;
  --bg-dark-deep:  #1C1A18;
  --card:          #FAF7F3;

  --text:              #2C2420;
  --text-soft:         #6B5D4F;
  --text-footnote:     #9A8B79;
  --text-inverse:      #F5F0E8;
  --text-inverse-soft: #BFB2A2;
  --text-inverse-muted:#CFC3B4;
  --text-inverse-faint:#867867;

  --accent:      #8B7355;
  --accent-gold: #C4A882;

  --hairline:      #E3D9CC;
  --hairline-warm: #D8CDBE;
  --hairline-soft: #E0D6C7;
  --hairline-dark: rgba(245, 240, 232, .12);
  --dash:          #D8D2CA;
  --footnote-line: #EFE8DE;
  --field-border:  #C9BCA9;
  --skeleton-b:    #DFD9D0;

  --cta:       #2C2420;
  --cta-hover: #1C1A18;

  --font-display: 'Unbounded', sans-serif;
  --font-text:    'Montserrat', sans-serif;
  --font-logo:    'Dancing Script', cursive;
  --font-mono:    ui-monospace, 'SF Mono', Menlo, monospace;

  --radius-pill: 999px;
  --radius-btn:  12px;

  --header-h: 62px;

  --container-max: calc(1280px + 2 * clamp(20px, 4vw, 48px));
  --container-pad: clamp(20px, 4vw, 48px);

  --ease:     cubic-bezier(.2, .7, .3, 1);
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --dur:      .28s;
}

@media (min-width: 768px)  { :root { --header-h: 68px; } }
@media (min-width: 1024px) { :root { --header-h: 72px; } }

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

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

h1, h2, h3, p, figure { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

#calc, #how, #why, #delivery, #faq, #docs { scroll-margin-top: 88px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.marquee {
  background: var(--bg-dark);
  overflow: hidden;
  padding: 10px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: jm-marquee 32s linear infinite;
}
.marquee__item {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bg-warm);
}
.marquee__item i { color: var(--accent-gold); font-style: normal; }
@keyframes jm-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (min-width: 1024px) {
  .marquee { padding: 12px 0; }
  .marquee__item { font-size: 12px; letter-spacing: .16em; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

.brands {
  background: var(--bg);
  overflow: hidden;
  padding: clamp(12px, 1.5vw, 20px) 0;
  border-bottom: 1px solid var(--hairline);
}
.brands__track {
  display: flex;
  width: max-content;
  animation: jm-marquee 52s linear infinite;
}
.brands__item {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 2.1vw, 28px);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--bg-concrete);
}
.brands__item i { color: var(--accent-gold); font-style: normal; opacity: .5; }
@media (prefers-reduced-motion: reduce) { .brands__track { animation: none; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--hairline);
  background: rgba(242, 237, 232, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .25s var(--ease);
}
.site-header.is-hidden { transform: translateY(-100%); }

:target,
#calc, #how, #why, #delivery, #faq, #docs, #trust, #verify, #top {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
  flex: none;
  line-height: 1;
}

.nav { display: none; }
.nav__link {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--dur);
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"] { font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 16px 32px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.2;
  transition: background .25s, color .25s, transform .25s;
  white-space: nowrap;
}

.btn--dark:hover,
.btn--pill-dark:hover { transform: translateY(-2px); }
.header-cta:hover { transform: none; }

.header-cta {
  min-height: 0;
  box-shadow: 0 2px 6px -1px rgba(28, 26, 24, .18), 0 8px 20px -10px rgba(28, 26, 24, .34);
  transition: background .25s, box-shadow .25s;
}
.header-cta:hover {
  box-shadow: 0 3px 10px -2px rgba(28, 26, 24, .26), 0 12px 26px -12px rgba(28, 26, 24, .42);
}
@media (prefers-reduced-motion: reduce) {
  .btn { transition: background .25s, color .25s; }
  .btn--dark:hover, .btn--pill-dark:hover { transform: none; }
}
.btn--dark { background: var(--cta); color: var(--text-inverse); border-radius: var(--radius-btn); }
.btn--dark:hover { background: var(--cta-hover); }
.btn--pill-dark { background: var(--cta); color: var(--text-inverse); border-radius: var(--radius-pill); }
.btn--pill-dark:hover { background: var(--cta-hover); }
.btn--ghost {
  background: rgba(250, 247, 243, .75);
  color: var(--text);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-pill);
}
.btn--ghost:hover { background: var(--bg-warm); }
.btn--light { background: var(--text-inverse); color: var(--text); }
.btn--light:hover { background: var(--bg-warm); }
.btn--outline-inverse {
  background: transparent;
  color: var(--bg-warm);
  border: 1.5px solid var(--accent);
}
.btn--outline-inverse:hover { background: rgba(139, 115, 85, .25); color: var(--text-inverse); }

.header-cta {
  padding: 9px 14px;
  font-size: 13px;
  border-radius: 10px;
  margin-left: auto;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
  flex: none;
}
.burger__bar {
  width: 20px; height: 1.5px;
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.burger__bar:nth-child(3) { width: 14px; }
.burger.is-open .burger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 20px; }
.burger.is-open .burger__bar:nth-child(2) { opacity: 0; }
.burger.is-open .burger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 20px; }

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
  transition: max-height .25s var(--ease);
}
.mobile-nav.is-open { max-height: 260px; }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(28, 26, 24, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

.mobile-nav.is-open { overflow-y: auto; overscroll-behavior: contain; }

@media (prefers-reduced-motion: reduce) {
  .mobile-nav, .nav-scrim { transition: none; }
}
.mobile-nav__link {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-top: 1px solid var(--hairline);
}
.mobile-nav__link:first-child { border-top: 0; }

@media (min-width: 768px) and (max-width: 1023px) {
  .mobile-nav, .burger { display: none; }
  .nav { display: flex; gap: 20px; margin-left: auto; }
  .nav__link { font-size: 13px; }
  .header-cta { margin-left: 0; padding: 10px 16px; font-size: 13px; }
  .logo { font-size: 27px; }
}
@media (min-width: 1024px) {
  .mobile-nav, .burger { display: none; }
  .nav { display: flex; gap: 28px; margin-left: auto; }
  .nav__link { font-size: 14px; }
  .header-cta { margin-left: 0; padding: 12px 20px; font-size: 14px; border-radius: var(--radius-btn); }
  .logo { font-size: 30px; }
}

.hero {
  position: relative;
  height: 680px;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
  background: var(--bg-concrete);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.hero-slide.is-active { opacity: 1; z-index: 1; }

.hero-slide__zoom {
  position: absolute;
  inset: 0;
  animation: hero-kenburns 6s ease-out forwards;
  animation-play-state: paused;
}
.hero-slide.is-active .hero-slide__zoom { animation-play-state: running; }
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

.hero-slide__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-slide:nth-child(1) .hero-slide__img { object-position: 68% 50%; transform: translateY(11%) scale(1.32); }
.hero-slide:nth-child(2) .hero-slide__img { object-position: 70% 55%; }
.hero-slide:nth-child(3) .hero-slide__img { object-position: 60% 60%; }
.hero-slide:nth-child(4) .hero-slide__img { object-position: 48% 55%; }
.hero-slide:nth-child(5) .hero-slide__img { object-position: 78% 50%; }

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(242,237,232,.92) 0%, rgba(242,237,232,.84) 38%,
    rgba(242,237,232,.45) 64%, rgba(242,237,232,0) 86%);
}

.hero__content {
  position: absolute;
  inset: 0;
  padding: 36px 20px;
  pointer-events: none;
}
.hero__overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 29px;
  line-height: 1.2;
  margin: 0 0 16px;
}
.hero__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.hero__rate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border-radius: var(--radius-pill);
  padding: 9px 15px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(44,36,32,.1);
}
.hero__rate[hidden] { display: none; }
.hero__rate-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex: none;
}
.hero__rate b { color: var(--text); font-weight: 600; }

.hero__actions { display: flex; flex-direction: column; gap: 12px; }
.hero__actions .btn { pointer-events: auto; padding: 16px; font-size: 15px; }
.hero__actions .btn--ghost { padding: 14.5px; }

.hero__dots {
  position: absolute;
  right: 20px; bottom: 20px;
  display: flex;
  gap: 8px;
  pointer-events: auto;
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(44,36,32,.28);
  transition: background var(--dur), transform var(--dur);
}
.hero__dot.is-active { background: var(--accent-gold); transform: scale(1.3); }

@media (min-width: 768px) {
  .hero { height: 560px; }
  .hero__scrim {
    background: linear-gradient(90deg,
      rgba(242,237,232,.92) 0%, rgba(242,237,232,.8) 48%,
      rgba(242,237,232,.5) 70%, rgba(242,237,232,.2) 85%, rgba(242,237,232,0) 98%);
  }
  .hero__content { display: flex; align-items: center; padding: 0 28px; }
  .hero__text { max-width: 520px; }
  .hero__overline { margin-bottom: 18px; }
  .hero__title { font-size: 36px; line-height: 1.16; letter-spacing: -.015em; margin-bottom: 18px; }
  .hero__subtitle { font-size: 15px; max-width: 440px; margin-bottom: 20px; }
  .hero__rate { padding: 9px 16px; margin-bottom: 26px; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero__actions .btn { padding: 15px 28px; font-size: 14px; }
  .hero__actions .btn--ghost { padding: 13.5px 26px; }
  .hero-slide .hero-slide__img { object-position: 50% 50% !important; transform: none !important; }
}
@media (min-width: 1024px) {
  .hero { height: 720px; }
  .hero__scrim {
    background: linear-gradient(90deg,
      rgba(242,237,232,.96) 0%, rgba(242,237,232,.82) 34%,
      rgba(242,237,232,.35) 58%, rgba(242,237,232,0) 78%);
  }
  .hero__content { padding: 0 24px; }
  .hero__content-inner { max-width: 1392px; margin: 0 auto; width: 100%; }
  .hero__text { max-width: 640px; }
  .hero__overline { font-size: 12px; letter-spacing: .18em; margin-bottom: 24px; }
  .hero__title { font-size: 50px; line-height: 1.12; margin-bottom: 24px; }
  .hero__subtitle { font-size: 17px; max-width: 480px; margin-bottom: 28px; }
  .hero__rate { padding: 10px 18px; font-size: 14px; margin-bottom: 32px; }
  .hero__rate-dot { width: 7px; height: 7px; }
  .hero__actions { gap: 14px; }
  .hero__actions .btn { padding: 18px 34px; font-size: 15px; }
  .hero__actions .btn--ghost { padding: 16.5px 32px; }
  .hero__dots { right: 24px; bottom: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide__zoom { animation: none; }
}

.teaser {
  display: block;
  background: var(--bg-warm);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
  transition: background .25s;
}
.teaser:hover { background: #E2D5C6; color: var(--text); }
.teaser__inner {
  width: 100%;
  max-width: calc(1280px + 2 * clamp(20px, 4vw, 48px));
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.teaser__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex: none;
  animation: jm-pulse 2.4s ease-in-out infinite;
}
@keyframes jm-pulse { 0%, 100% { opacity: .45 } 50% { opacity: 1 } }
@media (prefers-reduced-motion: reduce) { .teaser__dot { animation: none; } }
.teaser__strong { font-size: 14px; font-weight: 600; }
.teaser__soft { display: none; font-size: 14px; color: var(--text-soft); }
.teaser__link {
  margin-left: auto;
  flex: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent-gold);
  padding-bottom: 2px;
  transition: color var(--dur);
}
.teaser__link:hover { color: var(--text); }

@media (min-width: 768px) {
  .teaser__dot { width: 8px; height: 8px; }
  .teaser__strong, .teaser__soft { font-size: 15px; }
  .teaser__soft { display: inline; }
  .teaser__link { font-size: 14px; }
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
}
.fact { background: var(--bg); padding: clamp(22px, 3vw, 36px); }
.fact__value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--accent);
}
.fact__label { font-size: 13px; line-height: 1.5; color: var(--text-soft); margin-top: 8px; }

.trust { display: flex; flex-direction: column; }
.trust__row {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  align-items: baseline;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 30px) 4px;
  border-top: 1px solid var(--hairline);
  color: var(--text);
  transition: background .25s;
}
.trust__row:last-child { border-bottom: 1px solid var(--hairline); }
a.trust__row:hover { background: #EDE6DD; }
.trust__main { display: flex; gap: clamp(14px, 2.4vw, 28px); align-items: baseline; flex-wrap: wrap; }
.trust__no { font-family: var(--font-display); font-size: 13px; color: var(--accent-gold); }
.trust__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.9vw, 22px);
  font-weight: 500;
}
.trust__text { font-size: 13.5px; color: var(--text-soft); }
.trust__link { font-size: 13px; font-weight: 600; color: var(--accent); flex: none; }

.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--warm { background: var(--bg-warm); }

.section--dark { background: var(--bg-dark); color: var(--text-inverse); }
.section--dark .section__eyebrow { color: var(--accent-gold); }
.section--dark .section__title { color: var(--text-inverse); }

.section--dark .section__lead,
.section--dark .calc__bullets,
.section--dark .calc__steps { color: rgba(245, 240, 232, .66); }

:root { --eyebrow-gap: 0px; }

.section__title.section__title--lg {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.1;
  margin-top: 20px;

  margin-bottom: 40px;
}

.section--dark .calc__layout { align-items: start; }
.section--dark .calc__manager { color: rgba(245, 240, 232, .45); }
.section--dark .receipt {
  color: var(--text);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .38);
}
.section--dark .link-accent { color: var(--accent-gold); }

.section--dark .calc__manager { display: block; }

.section__eyebrow {
  display: block;
  margin: 0;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 28px;
}
.section__lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 28px;
}
@media (min-width: 768px) {

  .section__title { font-size: 28px; margin-bottom: 32px; }
  .section__lead { margin-bottom: 32px; }
}
@media (min-width: 1024px) {

  .section__title { font-size: 34px; margin-bottom: 48px; }
  .section__lead { font-size: 17px; margin-bottom: 28px; }
}

.unbox { background: var(--bg); }
.unbox .section__eyebrow { font-size: 12px; letter-spacing: .16em; }
.unbox__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 14px;
}
.unbox__sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 28px;
  max-width: 520px;
}
.unbox__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-concrete);
  box-shadow: 0 24px 60px rgba(44,36,32,.14);
}
.unbox-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(.94) translateY(14px);
  transition: opacity .8s var(--ease), transform .5s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.unbox-frame.is-active { opacity: 1; transform: scale(1) translateY(0); }
.unbox-frame__img { width: 100%; height: 100%; object-fit: cover; }
.unbox-frame__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-concrete);
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-soft);
}
@media (prefers-reduced-motion: reduce) {
  .unbox-frame { transition: none; transform: none; }
}
@media (min-width: 768px) {
  .unbox__title { font-size: 28px; }
  .unbox__sub { font-size: 16px; }
  .unbox__stage { max-width: 720px; }
}
@media (min-width: 1024px) {
  .unbox__layout {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: center;
  }
  .unbox__title { font-size: 34px; margin-bottom: 18px; }
  .unbox__sub { font-size: 17px; margin-bottom: 0; max-width: 400px; }
  .unbox__stage { max-width: none; }
}

.calc__layout { margin-top: 0; }

.section__title.calc__title { margin: 20px 0 22px; }
.calc__lead { max-width: 440px; font-size: 15.5px; line-height: 1.7; }
.calc__layout { display: flex; flex-direction: column; }
@media (min-width: 768px) {
  .calc__layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
  }
}

.receipt {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(44,36,32,.1);
}
.receipt__head { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.receipt__emblem { width: 32px; height: 32px; border-radius: 50%; }
.receipt__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.receipt__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}
.receipt__row-label { font-size: 14px; font-weight: 600; }
.receipt__row-value { font-family: var(--font-display); font-size: 15px; font-weight: 500; }
.receipt__caption { font-size: 12px; color: var(--text-soft); margin-bottom: 16px; }

.receipt__divider {
  border-top: 1.5px dashed var(--dash);
  padding-top: 14px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.receipt__divider-label { font-size: 13px; color: var(--text-soft); }
.receipt__included {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  flex: none;
}
.receipt__total {
  border-top: 1.5px dashed var(--dash);
  padding-top: 15px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.receipt__total-label { font-size: 15px; font-weight: 600; }
.receipt__total-value { font-family: var(--font-display); font-size: 21px; font-weight: 600; }

.receipt__prepay {
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
}
.receipt__prepay-label { font-size: 13px; font-weight: 600; }
.receipt__prepay-value { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--accent); }
.receipt__rest { font-size: 12px; color: var(--text-soft); margin-bottom: 15px; }
.receipt__footnote {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-footnote);
  border-top: 1px solid var(--footnote-line);
  padding-top: 12px;
}

.calcbox {
  background: var(--card);
  color: var(--text);
  border-radius: 24px;
  padding: clamp(20px, 2.6vw, 32px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
}
.calcbox__row { display: flex; gap: 10px; flex-wrap: wrap; }
.calcbox__input {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border: 1.5px solid var(--bg-concrete);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 14px;
  font-family: var(--font-text);
  color: var(--text);
}
.calcbox__input::placeholder { color: var(--text-footnote); }
.calcbox__input:focus { border-color: var(--accent); }
.calcbox__find {
  background: var(--cta);
  color: var(--text-inverse);
  border: 0;
  border-radius: 12px;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-text);
  cursor: pointer;
  transition: background .25s;
}
.calcbox__find:hover { background: var(--cta-hover); }

.calcbox__idle {
  margin-top: 22px;
  border: 1.5px dashed var(--dash);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
}
.calcbox__idle-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-soft);
}
.calcbox__chips {
  margin-top: 14px;
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.calcbox__chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg);
  border-radius: var(--radius-pill);
  padding: 7px 12px;
}
.calcbox__chip--sum { color: var(--text); background: var(--bg-warm); }

.calc__steps { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }

.calc__step {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: normal;
}
.calc__step-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent-gold);
  flex: none;
}

.calc__cta {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  border-radius: var(--radius-btn);
  margin-top: 16px;
}

.calc__manager {
  font-size: 12.5px;
  line-height: 20px;
  color: var(--text-soft);
  text-align: left;
  margin-top: 30px;
}
.calc__bullets {
  display: none;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--text-soft);
}
.bullet { display: flex; gap: 12px; align-items: baseline; }
.bullet__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex: none;
  transform: translateY(-2px);
}
.link-accent {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-accent:hover { color: var(--text); }

@media (min-width: 768px) {

  .receipt { padding: 26px; }
  .receipt__total-value { font-size: 22px; }
  .receipt__prepay-value { font-size: 18px; }
  .calc__side { display: flex; flex-direction: column; gap: 16px; }
  .calc__cta { border-radius: var(--radius-pill); font-size: 14px; margin-top: 0; }
  .calc__manager { display: none; }
  .calc__bullets { display: flex; margin-top: 0; }
}
@media (min-width: 1024px) {

  .receipt { padding: 30px; box-shadow: 0 20px 56px rgba(44,36,32,.12); }
  .receipt__emblem { width: 36px; height: 36px; }
  .receipt__kicker { letter-spacing: .16em; }
  .receipt__row-label { font-size: 15px; }
  .receipt__row-value { font-size: 17px; }
  .receipt__caption { font-size: 13px; margin-bottom: 18px; }
  .receipt__divider { padding-top: 16px; margin-bottom: 16px; }
  .receipt__divider-label { font-size: 14px; }
  .receipt__included { font-size: 13px; letter-spacing: .08em; }
  .receipt__total { padding-top: 18px; }
  .receipt__total-label { font-size: 16px; }
  .receipt__total-value { font-size: 25px; }
  .receipt__prepay { padding: 16px 18px; }
  .receipt__prepay-label { font-size: 14px; }
  .receipt__prepay-value { font-size: 21px; }
  .receipt__rest { font-size: 13px; }
  .receipt__footnote { font-size: 12px; padding-top: 14px; }
  .calc__cta { border-radius: var(--radius-btn); padding: 17px 28px; font-size: 15px; margin-top: 20px; }
  .calc__bullets { max-width: 440px; }
}

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline-warm);
}
.steps .step:last-child { border-bottom: 1px solid var(--hairline-warm); }
.step__num { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--accent-gold); }
.step__title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.step__text { font-size: 14px; line-height: 1.55; color: var(--text-soft); }

.section-cta {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  font-size: 15px;
  border-radius: var(--radius-btn);
}
@media (min-width: 768px) {
  .step { grid-template-columns: 48px 1fr; gap: 20px; padding: 22px 0; }
  .section-cta { width: auto; margin-top: 32px; border-radius: var(--radius-pill); padding: 15px 28px; font-size: 14px; }
}
@media (min-width: 1024px) {
  .steps { max-width: 820px; }
  .step { grid-template-columns: 64px 260px 1fr; gap: 28px; padding: 26px 0; align-items: baseline; }
  .step__num { font-size: 15px; }
  .step__title { font-size: 16px; margin-bottom: 0; }
  .step__text { font-size: 15px; line-height: 1.6; }
  .section-cta { margin-top: 44px; border-radius: var(--radius-btn); padding: 16px 30px; font-size: 15px; }
}

.how__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: var(--eyebrow-gap);
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section__title.how__title { margin: 0; }
.how__note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 300px;
}
.how__grid { display: grid; gap: clamp(20px, 3.4vw, 56px); align-items: start; }

.how__rail { display: flex; flex-direction: column; gap: clamp(16px, 2.2vw, 24px); }
.how__list { display: flex; flex-direction: column; gap: 6px; }
.how__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #A79683;
  font-family: var(--font-text);
  text-align: left;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.how__row:hover { background: rgba(250, 247, 243, .6); color: var(--text); }
.how__row.is-active {
  background: var(--card);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(44, 36, 32, .07);
}
.how__row-no {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: .04em;
  width: 44px;
  flex: none;
  color: var(--accent);
}
.how__row.is-active .how__row-no { color: var(--accent-gold); }
.how__row-short { font-size: 13.5px; font-weight: 600; }

.how__detail { display: grid; }
.how__step {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.how__step.is-active { opacity: 1; visibility: visible; transform: none; }
.how__step-no {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.how__step-title {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.3vw, 30px);
  font-weight: 500;
  line-height: 1.18;
  margin: 10px 0 12px;
}
.how__step-text {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 420px;
}
.how__chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
}
.how__cta { align-self: flex-start; padding: 16px 30px; font-size: 14px; }

.how__panels { display: flex; flex-direction: column; gap: 16px; }
.how__panel {
  position: relative;
  height: min(74vh, 680px);
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: 0 24px 60px rgba(44, 36, 32, .12);
}
.how__panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.how__cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(250, 247, 243, .9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .how__grid { grid-template-columns: 1fr 1fr; }
  .how__rail { position: sticky; top: calc(var(--header-h) + 24px); }
}
@media (prefers-reduced-motion: reduce) {
  .how__step { transition: none; }
}

.cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.cards--delivery { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }

.card {
  background: var(--card);
  border-radius: 20px;
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: 0 6px 20px rgba(44, 36, 32, .06);
}
.card__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
.card__text { font-size: 14px; line-height: 1.65; color: var(--text-soft); }

.cards--why .card,
.card--media { transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.cards--why .card:hover,
.card--media:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(44, 36, 32, .12); }
@media (prefers-reduced-motion: reduce) {
  .cards--why .card:hover, .card--media:hover { transform: none; }
}

.card--media { padding: 0; overflow: hidden; border-radius: 24px; }
.card__media { aspect-ratio: 16 / 9; background: var(--bg-warm); }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__body { padding: clamp(22px, 2.6vw, 30px); }
.card__head { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; margin-bottom: 10px; }

.card__name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--text); }
.card__note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.bonus {
  position: relative;
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 72px);
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
}
.bonus__mark {
  position: absolute;
  right: -30px;
  bottom: -58px;
  font-family: var(--font-logo);
  font-size: clamp(120px, 16vw, 220px);
  color: rgba(196, 168, 130, .12);
  pointer-events: none;
  user-select: none;
}
.bonus__top {
  position: relative;
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: clamp(26px, 3.4vw, 40px);
}
.bonus__lead { max-width: 560px; }
.bonus__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 14px;
}
.bonus__title b { color: var(--accent-gold); font-weight: inherit; }

.bonus__text { margin: 0; font-size: 14.5px; line-height: 1.7; color: rgba(245, 240, 232, .65); }
.bonus__act { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.bonus__note {
    font-size: 12px; color: rgba(245, 240, 232, .45); }
.bonus__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1px;
  background: rgba(245, 240, 232, .14);
  border: 1px solid rgba(245, 240, 232, .14);
  border-radius: 18px;
  overflow: hidden;
}
.bonus__cell { background: var(--bg-dark); padding: clamp(20px, 2.6vw, 28px); }
.bonus__amount {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--accent-gold);
}
.bonus__cell-text { font-size: 13px; line-height: 1.5; color: rgba(245, 240, 232, .6); margin-top: 8px; }

@media (min-width: 1024px) {
  .cards--why .card { padding: clamp(22px, 2.6vw, 30px); border-radius: 20px; }
  .cards--why .card__num { font-size: 12px; margin-bottom: 16px; }
  .cards--why .card__title { font-size: 17px; margin-bottom: 10px; }
  .cards--why .card__text { font-size: 14px; line-height: 1.65; }
}

.vz { background: var(--bg); }
.vz__wrap { height: 210vh; position: relative; }
.vz__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vz__frame {
  position: relative;
  width: 60%;
  height: 56%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(44, 36, 32, .25);
  background: var(--bg-concrete);
  will-change: width, height;
}
.vz__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vz__label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(44, 36, 32, .85);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: var(--text-inverse);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.vz__scrim { position: absolute; inset: 0; background: var(--bg-dark-deep); opacity: 0; pointer-events: none; }
.vz__cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: clamp(20px, 4vw, 48px);
  opacity: 0;
  transform: translateY(26px);
  pointer-events: none;
}
.vz__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.6vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--text-inverse);
  max-width: 860px;
}
.vz__text {
  margin: 0;
  font-size: clamp(13px, 1.3vw, 15.5px);
  line-height: 1.75;
  color: var(--text-inverse-muted);
  max-width: 540px;
}

@media (prefers-reduced-motion: reduce) {
  .vz__wrap { height: auto; }
  .vz__sticky { position: static; height: auto; padding: 48px 0; }
  .vz__frame { width: 100%; height: min(72vh, 620px); border-radius: 0; }
  .vz__scrim { opacity: .58; }
  .vz__cap { opacity: 1; transform: none; }
  .vz__label { display: none; }
}

.verify__media {
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(44,36,32,.12);
  margin-top: 24px;
}
.verify__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.verify__stats { display: flex; flex-direction: column; max-width: 480px; margin-top: 24px; }
.verify__stat {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline-warm);
  font-size: 14.5px;
}
.verify__stats .verify__stat:last-child { border-bottom: 1px solid var(--hairline-warm); }
.verify__stat-label { font-weight: 600; }
.verify__stat-value { color: var(--text-soft); text-align: right; }

@media (min-width: 768px) {
  .verify__layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: center; }
  .verify__media { height: 340px; border-radius: 16px; margin-top: 0; }
}
@media (min-width: 1024px) {
  .verify__layout { grid-template-columns: 1fr 500px; gap: 80px; }
  .verify__lead { max-width: 480px; font-size: 16px; }
  .verify__media { height: 420px; }
  .verify__stats { margin-top: 32px; }
}

.tag {
  display: inline-flex;
  border: 1.5px solid var(--accent-gold);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.card__heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.card__body { font-size: 14px; line-height: 1.6; color: var(--text-soft); }

@media (min-width: 768px) {
  .cards--delivery .card { padding: 24px; }
}
@media (min-width: 1024px) {
  .cards--delivery { gap: 24px; }
  .cards--delivery .card { padding: 36px; }
  .cards--delivery .tag { padding: 7px 14px; font-size: 12px; letter-spacing: .12em; margin-bottom: 22px; }
  .cards--delivery .card__heading { font-size: 21px; margin-bottom: 14px; }
  .cards--delivery .card__body { font-size: 15px; line-height: 1.65; }
}

.bonus-tiles { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.bonus-tile {
  background: var(--card);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.bonus-tile__amount {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--accent);
  flex: none;
  min-width: 74px;
}
.bonus-tile__text { font-size: 13.5px; line-height: 1.5; color: var(--text-soft); }

.bonus-bullets { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: var(--text-soft); }
.bonus-bullets .bullet__dot { width: 5px; height: 5px; }
.bonus-bullets b { color: var(--text); }

@media (min-width: 768px) {
  .bonus-tile { flex-direction: column; align-items: flex-start; gap: 8px; padding: 24px; }
  .bonus-tile__amount { font-size: 25px; min-width: 0; }
  .bonus-tiles { margin-bottom: 28px; }
}
@media (min-width: 1024px) {
  .bonus-tiles { gap: 24px; margin-bottom: 36px; }
  .bonus-tile { padding: 30px; }
  .bonus-tile__amount { font-size: 31px; margin-bottom: 2px; }
  .bonus-tile__text { font-size: 14.5px; line-height: 1.55; }
  .bonus-bullets { flex-direction: row; gap: 40px; flex-wrap: wrap; font-size: 14.5px; }
  .bonus-bullets .bullet__dot { width: 6px; height: 6px; }
}

.proof { padding: 56px 0; }
.proof__title { font-family: var(--font-display); font-weight: 500; font-size: 21px; margin: 0 0 24px; }
.proof-row { padding: 18px 0; border-top: 1px solid var(--hairline-soft); }
.proof-list .proof-row:last-child { border-bottom: 1px solid var(--hairline-soft); }
.proof-row__label { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.proof-row__text { font-size: 13.5px; line-height: 1.5; color: var(--text-soft); margin-bottom: 10px; }
.proof-row__link {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent-gold);
  padding-bottom: 2px;
  transition: color var(--dur);
}
.proof-row__link:hover { color: var(--text); }

@media (min-width: 768px) {
  .proof { padding: 64px 0; }
  .proof__title { font-size: 23px; margin-bottom: 28px; }
  .proof-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 0; }
  .proof-row__text { margin-bottom: 0; }
  .proof-row__link { flex: none; }
}
@media (min-width: 1024px) {
  .proof { max-width: 860px; margin: 0 auto; padding: 88px 24px; }
  .proof__title { font-size: 27px; margin-bottom: 36px; }
  .proof-row { gap: 32px; padding: 22px 0; }
  .proof-row__label { font-size: 15.5px; margin-bottom: 5px; }
  .proof-row__text { font-size: 14.5px; }
  .proof-row__link { font-size: 14px; }
}

.faq { padding: 8px 0 64px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border-radius: 12px;
  padding: 17px 18px;
  box-shadow: 0 5px 16px rgba(44,36,32,.05);
}

.faq-item__q {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-text);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.faq-item__icon {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--accent);
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer { font-size: 14px; line-height: 1.7; color: var(--text-soft); padding-top: 12px; }
.faq__lead { font-size: 14.5px; line-height: 1.7; max-width: 380px; }

@media (min-width: 768px) {
  .faq { padding: 8px 0 72px; }
  .faq-item { padding: 18px 20px; }
  .faq-item__q { font-size: 15px; gap: 18px; }
  .faq-item__icon { font-size: 18px; }
}
@media (min-width: 1024px) {
  .faq { max-width: 860px; margin: 0 auto; padding: 8px 24px 96px; }
  .faq-list { gap: 12px; }
  .faq-item { padding: 22px 26px; border-radius: 14px; box-shadow: 0 6px 20px rgba(44,36,32,.06); }
  .faq-item__q { font-size: 16px; gap: 24px; }
  .faq-item__icon { font-size: 19px; }
  .faq-item__answer { padding-top: 14px; max-width: 640px; }
}

.final-cta { background: var(--bg-dark); text-align: center; padding: 64px 20px; }
.final-cta__logo {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 34px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  line-height: 1;
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--text-inverse);
  margin: 0 0 14px;
}
.final-cta__text { font-size: 14.5px; line-height: 1.6; color: var(--text-inverse-soft); margin: 0 0 28px; }
.final-cta__actions { display: flex; flex-direction: column; gap: 12px; }
.final-cta__actions .btn { padding: 16px; font-size: 15px; border-radius: var(--radius-btn); }
.final-cta__actions .btn--outline-inverse { padding: 14.5px; }

@media (min-width: 768px) {
  .final-cta { padding: 72px 28px; }
  .final-cta__logo { font-size: 37px; margin-bottom: 18px; }
  .final-cta__title { font-size: 29px; margin-bottom: 16px; }
  .final-cta__text { font-size: 15px; max-width: 440px; margin: 0 auto 30px; }
  .final-cta__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .final-cta__actions .btn { border-radius: var(--radius-pill); padding: 15px 28px; font-size: 14px; }
  .final-cta__actions .btn--outline-inverse { padding: 13.5px 26px; }
}
@media (min-width: 1024px) {
  .final-cta { padding: 104px 24px; }
  .final-cta__logo { font-size: 42px; margin-bottom: 22px; }
  .final-cta__title { font-size: 37px; margin-bottom: 20px; }
  .final-cta__text { font-size: 16.5px; max-width: 520px; margin-bottom: 40px; }
  .final-cta__actions { gap: 14px; }
  .final-cta__actions .btn { border-radius: var(--radius-btn); padding: 16px 30px; font-size: 15px; }
  .final-cta__actions .btn--outline-inverse { padding: 14.5px 28px; }
}

.final-cta { position: relative; overflow: hidden; }
.final-cta__mark {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-7deg);
  font-family: var(--font-logo);
  font-size: clamp(200px, 34vw, 520px);
  color: rgba(196, 168, 130, .07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.final-cta__inner { position: relative; }
.final-cta__kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin: 0 0 24px;
}
.final-cta__stroke { color: transparent; -webkit-text-stroke: 1.5px var(--accent-gold); }

.footer__top {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(245, 240, 232, .12);
}
.footer__brand { max-width: 340px; }
.footer__cols { display: flex; gap: clamp(32px, 5vw, 72px); flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; }

.footer { background: var(--bg-dark-deep); padding: 48px 20px 28px; }
.footer__logo {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 25px;
  color: var(--bg-warm);
  margin-bottom: 12px;
  line-height: 1;
}
.footer__desc { font-size: 13.5px; line-height: 1.6; color: var(--text-footnote); margin-bottom: 28px; max-width: 300px; }
.footer__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; margin-bottom: 26px; }
.footer__links a { color: var(--text-inverse-muted); transition: color var(--dur); }
.footer__links a:hover { color: var(--text-inverse); }
.footer__bottom {
  border-top: 1px solid var(--hairline-dark);
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-inverse-faint);
}
.footer__bottom span { display: block; }

.footer__legal { color: var(--text-inverse-faint); }
@media (min-width: 768px) { .footer__legal { text-align: center; } }

@media (min-width: 768px) {
  .footer { padding: 52px 28px 28px; }
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--hairline-dark);
    margin-bottom: 22px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__logo { font-size: 26px; }
  .footer__desc { max-width: 280px; margin-bottom: 0; }
  .footer__bottom { border: 0; padding-top: 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .footer__bottom span { display: inline; }
}
@media (min-width: 1024px) {

  .footer { padding: 64px 24px 36px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 44px; }
  .footer__brand { grid-column: auto; }
  .footer__logo { font-size: 29px; margin-bottom: 14px; }
  .footer__desc { font-size: 14px; max-width: 300px; }
  .footer__label { font-size: 12px; letter-spacing: .16em; margin-bottom: 16px; }
  .footer__links { font-size: 14px; gap: 10px; margin-bottom: 0; }
  .footer__bottom { padding-top: 26px; font-size: 13px; }
}

.stock-wrap { padding: 32px 20px 0; }
.stock__head-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.stock__h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 8px;
}
.stock__sub { font-size: 13px; color: var(--text-soft); margin-bottom: 22px; }

.stock__search {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--card);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  margin-bottom: 14px;
}
.stock__search-dot { width: 8px; height: 8px; border: 1.5px solid var(--accent); border-radius: 50%; flex: none; }
.stock__search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-text);
  font-size: 13.5px;
  color: var(--text);
}
.stock__search input::placeholder { color: var(--text-soft); }
.stock__sort-desktop { display: none; }

.stock__chips {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.stock__chips::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--hairline-warm);
  color: var(--text-soft);
  border-radius: var(--radius-pill);
  padding: 6.5px 14.5px;
  font-size: 12.5px;
  font-weight: 500;
  flex: none;
  cursor: pointer;
}
.chip.is-active { background: var(--cta); color: var(--text-inverse); border-color: var(--cta); font-weight: 600; padding: 8px 16px; }

.stock__mobtools { display: flex; gap: 8px; margin-bottom: 24px; }
.stock__mobtool {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--hairline-warm);
  border-radius: var(--radius-pill);
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
}
.stock__mobtool--filters { font-weight: 600; color: var(--text); }
.stock__mobtool-lines { display: flex; flex-direction: column; gap: 3px; }
.stock__mobtool-lines span { height: 1.5px; background: var(--accent); display: block; }
.stock__mobtool-lines span:nth-child(1) { width: 12px; }
.stock__mobtool-lines span:nth-child(2) { width: 8px; }
.stock__caret { font-size: 8px; color: var(--accent); }

.stock__sidebar {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--ease);
  overflow: hidden;
  margin-bottom: 0;
}
.stock__sidebar.is-open { grid-template-rows: 1fr; margin-bottom: 24px; }
.stock__sidebar-inner { min-height: 0; overflow: hidden; }

.filter-group { padding: 20px 0; border-top: 1px solid var(--hairline-soft); }
.filter-group:first-child { border-top: 0; padding-top: 4px; }
.filter-group__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.filter-cats { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.filter-cats span { color: var(--text-soft); cursor: pointer; }
.filter-cats span.is-active { font-weight: 600; color: var(--text); }

.filter-brands { display: flex; flex-direction: column; gap: 2px; }
.filter-brand { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-soft); cursor: pointer; padding: 4px 0; }
.filter-brand__box { width: 16px; height: 16px; border: 1.5px solid var(--field-border); border-radius: 4px; flex: none; background: var(--card); }
.filter-more { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--accent); border-bottom: 1.5px solid var(--accent-gold); padding-bottom: 2px; cursor: pointer; }

.filter-sizes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.filter-size {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--hairline-warm);
  border-radius: 8px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
}
.filter-cond { display: flex; gap: 8px; }
.filter-cond span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--hairline-warm);
  color: var(--text-soft);
}
.filter-cond span.is-active { background: var(--cta); color: var(--text-inverse); border-color: var(--cta); font-weight: 600; }

.price-track { position: relative; height: 18px; margin-bottom: 14px; }
.price-track__rail { position: absolute; left: 0; right: 0; top: 8px; height: 2px; background: var(--hairline-warm); border-radius: 2px; }
.price-track__fill { position: absolute; left: 18%; right: 32%; top: 8px; height: 2px; background: var(--accent); }
.price-track__knob { position: absolute; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--card); border: 2px solid var(--accent); box-shadow: 0 2px 6px rgba(44,36,32,.15); }
.price-track__knob--min { left: 18%; transform: translateX(-7px); }
.price-track__knob--max { right: 32%; transform: translateX(7px); }
.price-fields { display: flex; gap: 10px; align-items: center; }
.price-field { flex: 1; background: var(--card); border: 1.5px solid var(--hairline); border-radius: 10px; padding: 9px 12px; font-size: 13px; color: var(--text); }
.price-dash { width: 10px; height: 1.5px; background: var(--field-border); flex: none; }

.stock__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stock-card { background: var(--card); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 16px rgba(44,36,32,.05); }
.stock-card__ph {
  height: 140px;
  background: repeating-linear-gradient(45deg, var(--bg-concrete) 0 10px, var(--skeleton-b) 10px 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stock-card__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-soft);
  background: var(--bg);
  padding: 5px 9px;
  border-radius: 6px;
}
.stock-card__body { padding: 12px 14px 16px; }
.sk { border-radius: 5px; }
.sk--title { height: 11px; width: 75%; background: var(--bg-warm); margin-bottom: 7px; }
.sk--sub { height: 9px; width: 42%; background: var(--footnote-line); margin-bottom: 12px; }
.stock-card__foot { display: flex; justify-content: space-between; align-items: center; }
.sk--price { height: 12px; width: 40%; background: var(--bg-warm); }
.stock-card__tag { font-size: 9px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.stock__note { font-size: 12px; color: var(--text-footnote); margin-top: 22px; }

@media (min-width: 768px) {
  .stock-wrap { max-width: 1140px; margin: 0 auto; padding: 44px 28px 0; }
  .stock__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: 26px; flex-wrap: wrap; }
  .stock__head-eyebrow { font-size: 12px; letter-spacing: .18em; }
  .stock__h1 { font-size: 32px; margin-bottom: 0; }
  .stock__sub { margin: 0 0 6px; font-size: 14px; }
  .stock__toolbar { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; flex-wrap: wrap; }
  .stock__search { flex: 1; max-width: 520px; margin-bottom: 0; padding: 13px 22px; }
  .stock__search input { font-size: 14px; }
  .stock__sort-desktop {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--hairline-warm);
    border-radius: var(--radius-pill);
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    cursor: pointer;
  }
  .stock__chips, .stock__mobtools { display: none; }
  .stock__layout { display: grid; grid-template-columns: 210px 1fr; gap: 36px; align-items: start; }
  .stock__sidebar { display: block; grid-template-rows: none; overflow: visible; margin-bottom: 0; }
  .stock__sidebar.is-open { margin-bottom: 0; }
  .stock__sidebar-inner { overflow: visible; }
  .filter-group { padding: 22px 0; }
  .filter-group:first-child { padding-top: 0; }
  .stock__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stock-card { border-radius: 14px; box-shadow: 0 8px 28px rgba(44,36,32,.07); }
  .stock-card__ph { height: 190px; background: repeating-linear-gradient(45deg, var(--bg-concrete) 0 12px, var(--skeleton-b) 12px 24px); }
  .stock-card__badge { font-size: 12px; padding: 6px 11px; border-radius: 8px; }
  .stock-card__body { padding: 16px 18px 20px; }
  .sk--title { height: 13px; width: 72%; margin-bottom: 9px; border-radius: 6px; }
  .sk--sub { height: 11px; width: 38%; margin-bottom: 16px; border-radius: 6px; }
  .sk--price { height: 15px; width: 34%; border-radius: 6px; }
  .stock-card__tag { font-size: 11px; letter-spacing: .08em; }
  .stock__note { font-size: 13px; margin-top: 32px; }
}
@media (min-width: 1024px) {
  .stock-wrap { max-width: 1360px; padding: 52px 32px 0; }
  .stock__h1 { font-size: 36px; line-height: 1.15; }
  .stock__layout { grid-template-columns: 250px 1fr; gap: 44px; }
  .filter-group { padding: 24px 0; }
  .filter-group:first-child { padding-top: 0; padding-bottom: 24px; }
  .stock__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stock-card__ph { height: 210px; }
}

.stock-foot-gap { height: 44px; }
@media (min-width: 768px)  { .stock-foot-gap { height: 64px; } }
@media (min-width: 1024px) { .stock-foot-gap { height: 72px; } }

.doc-header {
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}
.doc-header__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.doc-main { max-width: 720px; margin: 0 auto; padding: 48px 20px 80px; }
.doc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.doc-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 12px;
}
.doc-date { font-size: 13px; color: var(--text-footnote); margin-bottom: 32px; }
.doc-body { font-size: 16px; line-height: 1.75; color: var(--text); }
.doc-body p { margin: 0 0 18px; }
.doc-body h2 { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin: 32px 0 14px; }
.doc-back { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--accent); border-bottom: 1.5px solid var(--accent-gold); padding-bottom: 2px; }
.doc-back:hover { color: var(--text); }

@media (min-width: 768px) {
  .doc-title { font-size: 34px; }
  .doc-main { padding: 64px 28px 96px; }
}

.notfound {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 20px;
}
.notfound__code {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 64px;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 20px;
}
.notfound__title { font-family: var(--font-display); font-weight: 500; font-size: 26px; margin: 0 0 12px; }
.notfound__text { font-size: 15px; color: var(--text-soft); margin: 0 0 32px; max-width: 420px; }
.notfound__actions { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
.notfound__actions .btn { padding: 16px; font-size: 15px; border-radius: var(--radius-btn); }
@media (min-width: 768px) {
  .notfound__code { font-size: 80px; }
  .notfound__title { font-size: 30px; }
  .notfound__actions { flex-direction: row; justify-content: center; max-width: none; }
  .notfound__actions .btn { border-radius: var(--radius-pill); padding: 15px 30px; }
}

.hs {

  --frame-ar: 1.79167;
  --focus-x: 70%;
  --focus-y: 55%;

  --plane-peak: .18;
  --plane-w: 26%;
  --dusk-peak: .09;

  height: 280vh;
  position: relative;

}

.hs__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  container-type: size;
}
.hs__scene { position: absolute; inset: 0; }

.hs__copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  will-change: transform, opacity;
}
.hs__copy-inner { max-width: 560px; }
.hs__overline {
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hs__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: .98;

  font-size: clamp(38px, 6.4vw, 92px);
  text-transform: uppercase;
  color: var(--text);
}
.hs__title span { display: block; }
.hs__title-stroke { color: transparent; -webkit-text-stroke: 1.5px var(--text); }

.hs__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 38px);
}
.hs__sub {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;

  color: #3B322A;
  max-width: 470px;
}

.hs__rise { animation: hs-rise .75s cubic-bezier(.2, .7, .3, 1) both; }
@keyframes hs-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hs__d1 { animation-delay: .06s; }
.hs__d2 { animation-delay: .14s; }
.hs__d3 { animation-delay: .22s; }
.hs__d4 { animation-delay: .30s; }
.hs__d5 { animation-delay: .38s; }

.hs__plate, .hs__planes {
  position: absolute;
  left: var(--focus-x);
  top:  var(--focus-y);
  width:  calc(2px + max(100cqw, 100cqh * var(--frame-ar)));
  height: calc(2px + max(100cqh, 100cqw / var(--frame-ar)));

  transform: translate(calc(-1 * var(--focus-x)), calc(-1 * var(--focus-y)));
}
.hs__img { width: 100%; height: 100%; object-fit: fill; display: block; }

.hs__planes {
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0 48%, rgba(0,0,0,.3) 57%, rgba(0,0,0,0) 64%);
          mask-image: linear-gradient(90deg, #000 0 48%, rgba(0,0,0,.3) 57%, rgba(0,0,0,0) 64%);
}
.hs__plane {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--plane-w);
  aspect-ratio: 1;
  mix-blend-mode: multiply;
  opacity: 0;
  will-change: transform, opacity;
}
.hs__plane svg { width: 100%; height: 100%; fill: #2A2E3C; filter: blur(18px); }

.hs__dusk {
  position: absolute;
  inset: 0;
  background: #2C2642;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  will-change: opacity;
}

.hs__rate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  background: var(--card);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-soft);
  box-shadow: 0 8px 24px rgba(44, 36, 32, .1);
}
.hs__rate[hidden] { display: none; }
.hs__rate-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex: none;
}
.hs__rate b { color: var(--text); font-weight: 600; }
.hs__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hs__actions .btn { padding: 17px 32px; font-size: 14px; }
.hs__actions .btn--ghost { padding: 15.5px 30px; }

.hs__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hs__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(90deg,
    rgba(242, 237, 232, .72) 0%,
    rgba(242, 237, 232, .52) 32%,
    rgba(242, 237, 232, 0)   60%);
}

.hs__hint {
  position: absolute;
  left: 50%;

  bottom: calc(clamp(14px, 2.2vw, 26px) + var(--hs-top-offset, 0px));
  translate: -50% 0;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(44, 36, 32, .85);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: var(--text-inverse);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.hs__hint span { animation: hs-nudge 2.2s ease-in-out infinite; }
@keyframes hs-nudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

.hs__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hs-next { background: var(--bg); min-height: 70vh; }

@media (max-width: 767px) {
  .hs { --focus-y: 42%; }
  .hs__copy {
    top: auto;
    bottom: 6vh;
    translate: 0 0;
  }
  .hs__copy-inner { max-width: none; }

  .hs__scrim {
    background: linear-gradient(180deg,
      rgba(242, 237, 232, 0)   24%,
      rgba(242, 237, 232, .34) 44%,
      rgba(242, 237, 232, .70) 62%,
      rgba(242, 237, 232, .84) 80%,
      rgba(242, 237, 232, .87) 100%);
  }
  .hs__title { font-size: clamp(30px, 8.4vw, 40px); }
  .hs__overline { margin-bottom: 14px; }
  .hs__lead { margin-top: 20px; gap: 14px; }
  .hs__sub { font-size: 14px; max-width: none; }
  .hs__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hs__actions .btn { width: 100%; max-width: 340px; padding: 16px; }
  .hs__fade { height: 8vh; }
}

@media (prefers-reduced-motion: reduce) {
  .hs__rise { animation: none; opacity: 1; transform: none; }
  .hs { height: 100vh; }
  .hs__planes, .hs__dusk, .hs__hint { display: none; }
}

.btn--pill-light {
  background: var(--text-inverse);
  color: var(--text);
  border-radius: var(--radius-pill);
}
.btn--pill-light:hover { background: var(--bg-warm); }
.btn--pill-outline {
  background: transparent;
  color: var(--text-inverse);
  border: 1.5px solid var(--hairline-dark);
  border-radius: var(--radius-pill);
}
.btn--pill-outline:hover { background: rgba(245, 240, 232, .08); }
.bonus__cta { font-size: 15px; font-weight: 700; }

.bonus__note { color: rgba(245, 240, 232, .62); }

.t-narrow,
.t-mob { display: none; }

@media (max-width: 1023px) {
  .t-wide { display: none; }
  .t-narrow { display: inline; }
}
@media (max-width: 767px) {
  .t-tab-up { display: none; }
  .t-mob { display: inline; }
}

@media (max-width: 1023px) {

  .marquee__item { line-height: normal; }

  .mobile-nav { border-bottom: 0; }
  .mobile-nav.is-open { border-bottom: 1px solid var(--hairline); }

  .header-cta { letter-spacing: 0; }
  .nav__link { line-height: normal; }
}

@media (max-width: 767px) {
  .marquee { padding: 9px 0; }
  .marquee__item { font-size: 10.5px; }

  .site-header__inner { gap: 12px; }
  .logo { font-size: 24px; }
  .header-cta { padding: 9px 13px; font-size: 12.5px; border-radius: 10px; }
  .burger { padding: 6px 2px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header-cta { border-radius: 10px; }

  .nav { gap: 18px; }

  .nav__link[href="/docs"] { display: none; }
}

.mobile-nav__foot { display: none; }

@media (max-width: 767px) {

  .mobile-nav__link { padding: 15px 20px; font-size: 15px; line-height: normal; }

  .mobile-nav.is-open { max-height: var(--nav-max, 520px); }

  .mobile-nav__foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 20px;
    border-top: 1px solid var(--hairline);
    background: var(--bg-warm);
  }
  .mobile-nav__cta {
    width: 100%;
    min-height: 0;
    padding: 15px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0;
  }
  .mobile-nav__rate {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    font-size: 12.5px;
    line-height: normal;
    color: var(--text-soft);
  }
  .mobile-nav__rate[hidden] { display: none; }
  .mobile-nav__rate b { color: var(--text); font-weight: 700; }
  .mobile-nav__rate i { font-style: normal; color: var(--accent-gold); }
  .mobile-nav__rate a { color: var(--accent); font-weight: 600; }
}

@media (max-width: 1023px) {
  #docs .footer__desc { display: none; }

  #docs .footer__logo { color: var(--text-inverse); }
  #docs .footer__label { color: var(--accent-gold); }
  #docs .footer__links a { color: rgba(245, 240, 232, .75); }
  #docs .footer__links a:hover { color: var(--text-inverse); }
  #docs .footer__bottom,
  #docs .footer__legal { color: rgba(245, 240, 232, .4); }
}

@media (max-width: 767px) {
  #docs.footer { padding: 44px 0 26px; }
  #docs .footer__logo { margin-bottom: 0; font-size: 32px; line-height: normal; }
  #docs .footer__brand { max-width: none; }
  #docs .footer__top {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  #docs .footer__cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--hairline-dark);
  }

  #docs .footer__col { min-width: 0; gap: 12px; }
  #docs .footer__label { margin-bottom: 0; font-size: 11px; letter-spacing: .18em; line-height: normal; }
  #docs .footer__links { gap: 12px; font-size: 13.5px; line-height: normal; }
  #docs .footer__bottom {
    flex-direction: column;
    gap: 6px;
    padding-top: 18px;
    border-top: 0;
    font-size: 12px;
    line-height: 1.6;
  }
  #docs .footer__bottom span { display: block; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #docs.footer { padding: 52px 0 30px; }
  #docs .footer__logo { margin-bottom: 0; font-size: 38px; line-height: normal; }
  #docs .footer__cols { gap: 64px; }
  #docs .footer__col { gap: 12px; }
  #docs .footer__label { margin-bottom: 0; }
  #docs .footer__links { gap: 12px; margin-bottom: 0; }
}

@media (max-width: 767px) {
  .page-stock #docs.footer { padding: 36px 0 24px; }

  .page-stock #docs .container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .page-stock #docs .footer__top {
    display: block;
    gap: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .page-stock #docs .footer__cols { display: none; }
  .page-stock #docs .footer__logo { font-size: 26px; margin-bottom: 0; }

  .page-stock #docs .footer__bottom {
    padding-top: 0;
    border-top: 0;
    font-size: 12px;
    line-height: normal;
  }
  .page-stock #docs .footer__legal,
  .page-stock #docs .footer__bottom span:last-child { display: none; }
}

.ym-pixel { position: absolute; left: -9999px; }

.has-cookie-note body { padding-bottom: var(--cookie-h, 0px); }

.cookie {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 35;
  background: var(--card);
  border-top: 1px solid var(--accent-gold);
  box-shadow: 0 -16px 44px rgba(44, 36, 32, .12);
}
.cookie[hidden] { display: none; }
.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 56px);
  padding-top: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.cookie__text {
  margin: 0;
  max-width: 68ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}
.cookie__text a {
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cookie__text a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.cookie__btn {
  flex: 0 0 auto;
  padding: 11px 32px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-inverse);
  background: var(--cta);
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cookie__btn:hover { background: var(--cta-hover); transform: translateY(-1px); }
.cookie__btn:active { transform: translateY(0); }

@media (max-width: 767px) {
  .cookie__inner {
    gap: 14px;
    padding-top: 13px;
    padding-bottom: max(13px, env(safe-area-inset-bottom));
  }
  .cookie__text { min-width: 0; max-width: none; font-size: 12.5px; line-height: 1.5; }
  .cookie__btn { padding: 11px 22px; font-size: 12.5px; white-space: nowrap; }
}

@media (max-width: 359px) {
  .cookie__inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie__btn { width: 100%; padding: 12px; }
}

@media (prefers-reduced-motion: no-preference) {

  .cookie { animation: cookie-rise .62s var(--ease-out) .9s both; }
  .cookie.is-leaving { animation: cookie-fall .34s var(--ease) both; }
  @keyframes cookie-rise { from { transform: translateY(100%); } }
  @keyframes cookie-fall { to { transform: translateY(100%); } }
}
