/* ═══════════════════════════════════════════════════════════════
   nataliesandler.com: EDEN language, standalone
   Black canvas · gold-gradient headings · cream accent · RTL · zero italics
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Birzia';
  src: url('/assets/fonts/Birzia-Regular.woff2') format('woff2');
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: 'Birzia';
  src: url('/assets/fonts/Birzia-Black.woff2') format('woff2');
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --lime: #E5AC8F;            /* cream: the single accent */
  --lime-ink: #2B1A12;
  --gold: #d3c0a3;
  --gold-grad: linear-gradient(90deg, #d3c0a3 20%, #ffffff 60%, #d3c0a3 90%);
  --body: rgba(255, 255, 255, 0.92);
  --mut: rgba(255, 255, 255, 0.62);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --head: 'Birzia', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sys: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Heebo', sans-serif;
  --wrap: 1220px;
  --gutter: clamp(20px, 6vw, 120px);
  --safe-s: env(safe-area-inset-left, 0px);
  --safe-e: env(safe-area-inset-right, 0px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  -webkit-tap-highlight-color: rgba(229, 172, 143, 0.18);
  background: #000;
  color: var(--body);
  font-family: var(--sys);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em, i { font-style: normal; }  /* zero italics, by law */

.skip-link {
  position: absolute; inset-inline-start: -9999px; top: 0;
  background: var(--lime); color: var(--lime-ink);
  padding: 10px 22px; z-index: 200; border-radius: 0 0 12px 12px;
  font-weight: 600;
}
.skip-link:focus { inset-inline-start: 16px; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: calc(var(--gutter) + var(--safe-s)) calc(var(--gutter) + var(--safe-e));
}

/* ───────────────────────── headings ───────────────────────── */
.g {
  font-family: var(--head);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.g .w {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* no-JS / pre-JS fallback: whole-heading gradient */
.g:not(.split) {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2.g { font-size: clamp(34px, 5vw, 64px); max-width: 20ch; }
/* Latin-only headings are dir=ltr for word order: keep them visually on the right */
.g[dir="ltr"] { text-align: right; }

.sec-kicker {
  color: var(--lime);
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: 0.04em;
}
.sec-sub {
  color: var(--body);
  max-width: 56ch;
  font-size: clamp(17px, 2vw, 21px);
}
.statement {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(20px, 2.85vw, 36px);
  color: #fff;
  line-height: 1.4;
  max-width: 30ch;
}

/* ───────────────────────── reveal motion ───────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }
.g.split[data-reveal] { transform: none; }  /* keep background-clip stable */
.g.split .w {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px);
  transition: opacity .9s var(--ease), filter .9s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--d, 0s) + var(--wi, 0) * 90ms);
}
.g.split.is-in .w { opacity: 1; filter: none; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], .g.split .w {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ───────────────────────── top nav ───────────────────────── */
.topnav {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease),
              backdrop-filter .5s var(--ease);
}
.topnav.scrolled {
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(211, 192, 163, 0.28);
}
.topnav-in {
  max-width: var(--wrap); margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: block; flex-shrink: 0; }
.brand img {
  width: clamp(76px, 7.5vw, 96px);
  height: auto;
  transition: opacity .25s var(--ease);
}
@media (hover: hover) { .brand:hover img { opacity: 0.82; } }
.nav-links { display: flex; gap: 28px; margin-inline-start: 14px; }
.nav-links a {
  font-family: var(--head); font-weight: 600; font-size: 15px;
  color: var(--mut);
  transition: color .2s var(--ease);
  padding-block: 6px;
}
@media (hover: hover) { .nav-links a:hover { color: #fff; } }
.nav-cta {
  margin-inline-start: auto;
  font-family: var(--head); font-weight: 600; font-size: 14px;
  color: var(--lime);
  border: 1px solid rgba(229, 172, 143, 0.45);
  border-radius: 999px;
  padding: 8px 20px;
  transition: background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
@media (hover: hover) { .nav-cta:hover { background: var(--lime); color: var(--lime-ink); } }
.burger { display: none; }

.mobile-sheet {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  padding: 110px var(--gutter) 40px;
}
.mobile-sheet ul { display: grid; gap: clamp(14px, 2vw, 22px); }
.mobile-sheet a {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(24px, 6vw, 34px); color: #fff;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger {
    display: grid; gap: 6px; margin-inline-start: auto;
    background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .burger span {
    width: 24px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
  }
  .burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
}

/* ───────────────────────── hero ───────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
}
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 28% 30%;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 34%, rgba(0,0,0,0.05) 62%),
    linear-gradient(to top, #000 0%, rgba(0,0,0,0) 30%),
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 22%);
}
.hero-copy {
  position: relative;
  grid-column: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 18px;
  padding: clamp(110px, 16vh, 160px) var(--gutter) clamp(90px, 12vh, 130px);
}
.hero-eyebrow {
  color: var(--gold);
  font-family: var(--head); font-weight: 600;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.34em;
}
h1.g {
  font-size: clamp(58px, 9vw, 132px);
  line-height: 1.02;
}
.hero-sub {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(18px, 2.2vw, 25px);
  color: #fff;
  line-height: 1.55;
  max-width: 26ch;
}
.hero-line { color: var(--body); max-width: 40ch; }
.hero-divider {
  width: min(340px, 70%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-block: 10px;
}
.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(22px, 3.5vw, 48px);
}
.hero-stats li { display: grid; gap: 2px; }
.hero-stats strong {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(26px, 3.4vw, 40px);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.1;
  direction: ltr; unicode-bidi: isolate;
}
.hero-stats span { color: var(--mut); font-size: clamp(13px, 1.5vw, 15px); }
.hero-social { display: flex; gap: 22px; margin-block-start: 8px; }
.hero-social a {
  font-family: var(--head); font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em; color: var(--mut);
  transition: color .2s var(--ease);
}
.hero-social a:hover { color: var(--lime); }

.scroll-cue {
  position: absolute; bottom: 26px; inset-inline-start: 50%;
  translate: -50% 0;
  width: 26px; height: 44px;
  border: 1px solid rgba(211, 192, 163, 0.5);
  border-radius: 999px;
  display: grid; justify-content: center; padding-top: 8px;
}
[dir="rtl"] .scroll-cue { translate: 50% 0; }
.scroll-cue span {
  width: 3px; height: 8px; border-radius: 2px;
  background: var(--gold);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; align-items: end; }
  .hero-media img { object-position: 18% 20%; }
  .hero-copy { padding-block-start: 54svh; }
  .hero-veil {
    background:
      linear-gradient(to top, #000 26%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
  }
}

/* ───────────────────────── sections ───────────────────────── */
.sec { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.sec-head {
  display: flex; flex-direction: column; gap: 18px;
  margin-block-end: clamp(40px, 6vw, 64px);
}

/* story */
.story-body {
  max-width: 56ch;
  display: grid; gap: clamp(18px, 2.6vw, 28px);
}
.story-lede {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.6; color: #fff;
}
.story-quote {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.5;
  color: var(--lime);
  border-inline-start: 2px solid var(--gold);
  padding-inline-start: clamp(18px, 3vw, 28px);
  margin-block: clamp(10px, 2vw, 20px);
}
.nw { white-space: nowrap; }
.story-fig {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(211, 192, 163, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  margin-block: clamp(10px, 2vw, 20px);
}
.story-fig img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 40%;
}

/* numbers: fully centered */
.sec-numbers { text-align: center; }
.sec-numbers .sec-head { align-items: center; }
.sec-numbers .sec-head h2 { margin-inline: auto; }
.num-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px) clamp(22px, 3vw, 44px);
}
.num-grid > div {
  display: grid; gap: 6px; align-content: start; justify-items: center;
  flex: 0 1 230px;
}
.num-grid dt {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  direction: ltr; unicode-bidi: isolate;
}
.num-grid dd { color: var(--mut); max-width: 24ch; }

/* collection */
.col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.col-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(26px, 3.4vw, 44px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(211, 192, 163, 0.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
@media (hover: hover) { .col-card:hover { border-color: rgba(211, 192, 163, 0.5); transform: translateY(-4px); } }
.col-media {
  margin: calc(-1 * clamp(26px, 3.4vw, 44px)) calc(-1 * clamp(26px, 3.4vw, 44px)) 6px;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  border-block-end: 1px solid rgba(211, 192, 163, 0.22);
}
.col-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .6s var(--ease);
}
@media (hover: hover) { .col-card:hover .col-media img { transform: scale(1.035); } }
.col-card h3[dir="ltr"] { text-align: right; }
.col-media-book img { object-position: center 62%; }
.col-media-method img { object-position: 100% 20%; }
.col-tag {
  color: var(--lime); font-family: var(--head); font-weight: 600;
  font-size: 13px; letter-spacing: 0.18em;
}
.col-card h3 {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.3;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.col-card p:not(.col-tag) { font-size: clamp(15px, 1.7vw, 17px); color: var(--body); }
.col-link {
  margin-block-start: auto;
  color: var(--lime); font-family: var(--head); font-weight: 600;
  font-size: clamp(15px, 1.7vw, 17px);
  transition: opacity .2s var(--ease);
}
@media (hover: hover) { .col-link:hover { opacity: 0.75; } }

/* method */
.method-intro {
  max-width: 56ch;
  display: grid; gap: 18px;
  margin-block-end: clamp(40px, 6vw, 64px);
}
.method-mock {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(211, 192, 163, 0.35);
  box-shadow: 0 0 60px rgba(211, 192, 163, 0.14), 0 40px 100px rgba(0, 0, 0, 0.6);
  margin-block-end: clamp(48px, 7vw, 80px);
}
.mock-bar {
  display: flex; gap: 7px; align-items: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-block-end: 1px solid rgba(211, 192, 163, 0.2);
}
.mock-bar i {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(211, 192, 163, 0.4);
}
.method-mock img { width: 100%; display: block; }
.path {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  counter-reset: none;
  margin-block-end: clamp(40px, 6vw, 64px);
  position: relative;
}
.path-step {
  position: relative;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: 26px;
  border: 1px solid rgba(211, 192, 163, 0.18);
  background: linear-gradient(180deg, rgba(211,192,163,0.05), rgba(0,0,0,0));
  display: grid; gap: 10px; align-content: start;
}
.path-num {
  font-family: var(--head); font-weight: 900;
  font-size: 15px; letter-spacing: 0.2em;
  color: var(--gold);
}
.path-step h3 {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(24px, 2.8vw, 32px);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.path-line { font-family: var(--head); font-weight: 600; color: #fff; font-size: clamp(16px, 1.9vw, 19px); }
.path-step p:not(.path-line) { color: var(--mut); font-size: clamp(15px, 1.7vw, 17px); }
.method-strip {
  color: var(--gold);
  font-family: var(--head); font-weight: 600;
  font-size: clamp(14px, 1.7vw, 18px);
  letter-spacing: 0.02em;
  padding-block: 18px;
  border-block: 1px solid rgba(211, 192, 163, 0.18);
  margin-block-end: clamp(40px, 6vw, 64px);
  text-align: center;
}
.sec-method .statement { margin-block-end: clamp(28px, 4vw, 44px); }

.quiz-note {
  margin-block-start: clamp(48px, 7vw, 80px);
  padding: clamp(26px, 3.4vw, 44px);
  border-radius: 26px;
  border: 1px solid rgba(229, 172, 143, 0.3);
  background: rgba(229, 172, 143, 0.045);
  display: grid; gap: 12px;
  max-width: 640px;
}
.quiz-note h3 {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(20px, 2.4vw, 27px); color: #fff;
}
.quiz-note p { font-size: clamp(15px, 1.8vw, 18px); }

/* CTA */
.cta-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.btn-gate {
  position: relative;
  display: inline-block;
  font-family: var(--head); font-weight: 600;
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--lime-ink);
  background: linear-gradient(110deg, #e8cba6, #f7e8cf 40%, #d3b285 75%, #e8cba6);
  background-size: 220% 100%;
  padding: 16px 34px;
  border-radius: 999px;
  box-shadow: 0 0 34px rgba(211, 192, 163, 0.25), 0 4px 18px rgba(0, 0, 0, 0.5);
  animation: gate-flow 6s linear infinite;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
@media (hover: hover) {
  .btn-gate:hover {
    box-shadow: 0 0 54px rgba(211, 192, 163, 0.45), 0 6px 22px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
  }
}
@keyframes gate-flow {
  from { background-position: 0% 0; }
  to { background-position: 220% 0; }
}
@media (prefers-reduced-motion: reduce) { .btn-gate { animation: none; } }
.btn-ghost {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(16px, 1.9vw, 19px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 32px; border-radius: 999px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
@media (hover: hover) { .btn-ghost:hover { border-color: var(--gold); background: rgba(211, 192, 163, 0.08); } }

/* follow */
.reels {
  margin-block-end: clamp(28px, 4vw, 44px);
}
.reels-track {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-block-end: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(211, 192, 163, 0.35) transparent;
}
.reel {
  flex: 0 0 min(280px, 76vw);
  margin: 0;
  scroll-snap-align: center;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(211, 192, 163, 0.22);
  background: #0a0a0a;
}
.reel iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19;
  height: auto;
  border: 0;
  background: #0a0a0a;
}
.follow-count {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(18px, 2.4vw, 26px);
  color: #fff;
  margin-block-end: clamp(18px, 3vw, 28px);
}
.follow-count strong {
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-inline-end: 6px;
}

/* knowledge */
.kn-latest {
  font-family: var(--head); font-weight: 600; font-size: 13px;
  letter-spacing: 0.18em; color: #8A6233;
  margin-block-end: clamp(14px, 2vw, 20px);
}
.kn-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  margin-block-end: clamp(28px, 4vw, 44px);
}
@media (max-width: 860px) { .kn-grid { grid-template-columns: 1fr; } }
.kn-featured {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(30px, 4vw, 56px);
  border-radius: 26px;
  background: linear-gradient(180deg, #FBF6EC, #F1E6D3);
  color: var(--lime-ink);
  transition: transform .25s var(--ease);
}
.kn-media {
  margin: calc(-1 * clamp(30px, 4vw, 56px)) calc(-1 * clamp(30px, 4vw, 56px)) 8px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
}
.kn-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
@media (hover: hover) { .kn-featured:hover .kn-media img { transform: scale(1.03); } }
@media (hover: hover) { .kn-featured:hover { transform: translateY(-4px); } }
.kn-tag {
  font-family: var(--head); font-weight: 600; font-size: 13px;
  letter-spacing: 0.18em; color: #8A6233;
}
.kn-featured h3 {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(24px, 3vw, 38px); line-height: 1.2;
  background: linear-gradient(90deg, #8A6233 10%, #2B1A12 50%, #8A6233 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kn-featured p { color: rgba(43, 26, 18, 0.8); font-size: clamp(15px, 1.8vw, 18px); }
.kn-featured .kn-more { color: #8A6233; }
.kn-side { display: grid; gap: clamp(14px, 2vw, 22px); align-content: stretch; }
.kn-item {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 20px);
  padding: clamp(16px, 2.2vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(211, 192, 163, 0.22);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.kn-thumb {
  width: clamp(84px, 9vw, 118px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.kn-item-txt { display: grid; gap: 8px; }
@media (hover: hover) { .kn-item:hover { border-color: rgba(211, 192, 163, 0.5); background: rgba(255, 255, 255, 0.03); } }
.kn-item h3 {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(17px, 2vw, 21px); color: #fff; line-height: 1.4;
}
.kn-more {
  font-family: var(--head); font-weight: 600; font-size: 14px;
  color: var(--lime);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  max-width: 68ch;
}
.faq-item {
  display: grid; gap: 10px;
  padding-block-end: clamp(22px, 3vw, 34px);
  border-block-end: 1px solid rgba(211, 192, 163, 0.14);
}
.faq-item:last-child { border-block-end: 0; padding-block-end: 0; }
.faq-item h3 {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(19px, 2.3vw, 26px);
  color: var(--lime);
  line-height: 1.35;
}
.faq-item p {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--body);
  max-width: 62ch;
}

/* mission */
.mission {
  position: relative;
  padding-block: clamp(110px, 16vw, 220px);
  overflow: hidden;
}
.mission-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 30% 40%;
}
.mission-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.35) 26%, rgba(0,0,0,0.45) 70%, #000 100%),
    linear-gradient(to left, rgba(0,0,0,0.2), rgba(0,0,0,0.72));
}
.mission-copy {
  position: relative;
  display: flex; flex-direction: column; gap: clamp(18px, 3vw, 30px);
  align-items: flex-start;
}
.mission-lines {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(20px, 2.85vw, 36px);
  color: #fff; line-height: 1.5;
}
.mission .g { font-size: clamp(32px, 4.6vw, 58px); max-width: 18ch; }
.mission-body { max-width: 46ch; color: var(--body); }
.mission .statement { color: var(--lime); }

/* footer */
.footer {
  border-top: 1px solid rgba(211, 192, 163, 0.16);
  padding-block: clamp(56px, 8vw, 90px) 36px;
}
.footer .wrap { display: grid; gap: clamp(40px, 6vw, 64px); }
.foot-brand { display: grid; gap: 8px; justify-items: start; }
.foot-brand img { width: clamp(140px, 16vw, 190px); height: auto; opacity: 0.85; margin-block-end: 6px; }
.foot-name {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px); letter-spacing: 0.16em; color: #fff;
}
.foot-role { color: var(--mut); font-size: 14px; letter-spacing: 0.06em; }
.foot-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.foot-head {
  font-family: var(--head); font-weight: 600; font-size: 13px;
  letter-spacing: 0.2em; color: var(--gold);
  margin-block-end: 14px;
}
.foot-nav ul { display: grid; gap: 10px; }
.foot-nav a { color: var(--mut); font-size: 15px; transition: color .2s var(--ease); }
@media (hover: hover) { .foot-nav a:hover { color: #fff; } }
.foot-legal {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  color: var(--mut); font-size: 13.5px;
  border-top: 1px solid rgba(211, 192, 163, 0.12);
  padding-block-start: 24px;
}
.foot-legal a { color: var(--mut); }
@media (hover: hover) { .foot-legal a:hover { color: var(--lime); } }


/* ═══════════ mobile: touch targets, safe areas, tighter crops ═══════════ */

/* every inline link gets a 44px tap box without changing how it looks */
.col-link, .kn-more, .foot-nav a, .foot-legal a, .hero-social a, .mobile-sheet a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}
.brand { min-height: 44px; display: flex; align-items: center; }
.scroll-cue { padding-inline: 12px; box-sizing: content-box; }

@media (max-width: 860px) {
  .burger { padding: 12px 10px; min-width: 44px; min-height: 44px; align-content: center; }
  .mobile-sheet { padding-block-end: calc(40px + env(safe-area-inset-bottom, 0px)); }
  .mobile-sheet ul { gap: 4px; }

  /* the platform screenshot is a desktop capture: crop into it so the
     interface stays legible instead of shrinking to a texture */
  .method-mock img { aspect-ratio: 5 / 4; object-fit: cover; object-position: 88% 42%; }
  .col-media-method img { aspect-ratio: 5 / 4; object-position: 88% 42%; }

  /* footer reads as one column on a phone rather than a ragged 2-col grid */
  .foot-nav { grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 4vw, 28px); }
  .foot-nav ul { gap: 2px; }
  .foot-legal { padding-block-end: env(safe-area-inset-bottom, 0px); }

  /* long-form copy sits a touch tighter on small screens */
  .story-body { gap: clamp(16px, 4vw, 24px); }
  .faq-item { padding-block-end: clamp(18px, 4vw, 26px); }
}

@media (max-width: 480px) {
  .foot-nav { grid-template-columns: 1fr; }
  .cta-row { width: 100%; }
  .cta-row .btn-gate, .cta-row .btn-ghost { width: 100%; text-align: center; }
}

/* short landscape phones: the hero must not become a scroll trap */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding-block: 96px 48px; }
  .hero-copy { padding-block: 0; }
  .scroll-cue { display: none; }
}
