/* ==========================================================================
   SahiNeev — design system
   Palette sampled from the brand marks in /exports
   ========================================================================== */

:root {
  /* Brand */
  --ink:          #191614;
  --ink-soft:     #2A2521;
  --brass:        #B08542;
  --brass-deep:   #8F6A31;
  --brass-light:  #C79A4F;
  --cream:        #F2ECDE;
  --sand:         #EFE9DC;
  --paper:        #FBF8F1;

  /* Supporting earth tones */
  --terracotta:   #C4633C;
  --terracotta-l: #E0855C;
  --forest:       #3F5D46;
  --clay:         #D9C7A7;

  /* Text */
  --text:         #191614;
  --text-muted:   #6B625A;
  --text-faint:   #8E857B;
  --on-dark:      #F2ECDE;
  --on-dark-mute: #B9B0A3;

  /* Lines & surfaces */
  --line:         #E2D8C4;
  --line-strong:  #CFC0A5;
  --card:         #FFFFFF;

  /* Type */
  --font-hi: "Noto Sans Devanagari", "Nirmala UI", "Mangal", system-ui, sans-serif;
  --font-en: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space & shape */
  --gutter: 20px;
  --maxw: 1140px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(25,22,20,.05), 0 2px 8px rgba(25,22,20,.05);
  --shadow-md: 0 2px 4px rgba(25,22,20,.05), 0 10px 28px rgba(25,22,20,.08);
  --shadow-lg: 0 4px 10px rgba(25,22,20,.06), 0 22px 50px rgba(25,22,20,.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-hi);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1 0 auto; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0; }

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

.lang-en { font-family: var(--font-en); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 800px; }

.section { padding: 72px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--on-dark); }

@media (min-width: 768px) {
  body { font-size: 19px; }
  .section { padding: 104px 0; }
  .section--tight { padding: 80px 0; }
  :root { --gutter: 32px; }
}

/* Hairline rule that reads like a survey line */
.section + .section:not(.section--sand):not(.section--ink):not(.section--cream)::before {
  content: "";
  position: absolute;
  inset-inline: var(--gutter);
  top: 0;
  height: 1px;
  background: var(--line);
}

/* ---------- Typography scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--brass-deep);
  background: rgba(176,133,66,.10);
  border: 1px solid rgba(176,133,66,.22);
  padding: 7px 14px;
  border-radius: 999px;
}
.section--ink .eyebrow {
  color: var(--brass-light);
  background: rgba(199,154,79,.12);
  border-color: rgba(199,154,79,.28);
}

.h1 { font-size: clamp(2rem, 7.2vw, 3.6rem); line-height: 1.14; letter-spacing: -0.02em; }
.h2 { font-size: clamp(1.6rem, 5.2vw, 2.6rem); line-height: 1.2; }
.h3 { font-size: clamp(1.15rem, 3.4vw, 1.4rem); }
.lede { font-size: clamp(1.02rem, 2.6vw, 1.2rem); color: var(--text-muted); line-height: 1.7; }
.section--ink .lede { color: var(--on-dark-mute); }
.small { font-size: 14.5px; }
.muted { color: var(--text-muted); }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 16px; }
.section-head .lede { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brass);
  color: #fff;
  box-shadow: 0 1px 0 var(--brass-deep), 0 10px 24px rgba(176,133,66,.30);
}
.btn--primary:hover { background: var(--brass-deep); box-shadow: 0 1px 0 var(--brass-deep), 0 14px 30px rgba(176,133,66,.38); }

.btn--ink { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-md); }
.btn--ink:hover { background: var(--ink-soft); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(176,133,66,.08); border-color: var(--brass); }
.section--ink .btn--ghost { color: var(--on-dark); border-color: rgba(242,236,222,.28); }
.section--ink .btn--ghost:hover { background: rgba(242,236,222,.08); }

.btn--lg { min-height: 64px; padding: 20px 36px; font-size: 19.5px; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-note { font-size: 14px; color: var(--text-faint); }
.section--ink .cta-note { color: var(--on-dark-mute); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,248,241,.88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 18px rgba(25,22,20,.05); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 1px 2px rgba(25,22,20,.18);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.logo__name .en { font-family: var(--font-en); }
.logo__tag { font-size: 11.5px; color: var(--brass-deep); font-weight: 600; letter-spacing: .01em; }

.nav { display: none; }
@media (min-width: 940px) {
  .nav { display: flex; align-items: center; gap: 28px; }
  .nav a { font-size: 16px; font-weight: 600; color: var(--text-muted); transition: color .15s ease; }
  .nav a:hover { color: var(--text); }
}
.header-cta { display: none; }
@media (min-width: 720px) { .header-cta { display: inline-flex; padding: 12px 22px; font-size: 15.5px; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 940px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 12px var(--gutter) 22px;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 940px) { .mobile-nav, .mobile-nav.is-open { display: none; } }
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 40px 0 56px;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(176,133,66,.14) 0%, rgba(176,133,66,0) 58%),
    linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset-inline: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.hero__grid { display: grid; gap: 32px; align-items: center; }
.hero__grid > * { min-width: 0; }
@media (min-width: 900px) {
  .hero { padding: 64px 0 84px; }
  .hero__grid { grid-template-columns: 1.02fr 1fr; gap: 56px; }
  .hero__art { order: 2; }
}
.hero__copy > * + * { margin-top: 20px; }
.hero .h1 { margin-top: 18px; }
.hero__sub p + p { margin-top: 14px; }
.hero .cta-group { margin-top: 28px; }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px;
  margin-top: 18px; font-size: 14.5px; color: var(--text-faint);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { flex: none; }

.hero__art { position: relative; }
.hero__art figcaption {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--text-faint);
}
.hero__art figcaption span:last-child { color: var(--brass-deep); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid > *, .aha__grid > *, .value__grid > *, .story__grid > *, .steps > *, .suite > *, .quotes > * { min-width: 0; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } gap: 24px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__art { margin: -6px 0 18px; }
.card__title { font-size: 1.18rem; margin-bottom: 10px; }
.card__title::before {
  content: ""; display: block; width: 34px; height: 3px; border-radius: 2px;
  background: var(--brass); margin-bottom: 14px;
}
.card p { color: var(--text-muted); }

.pull-quote {
  margin-top: 44px;
  text-align: center;
  font-size: clamp(1.2rem, 3.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.pull-quote em { font-style: normal; color: var(--brass-deep); }

/* ---------- Aha / benefits ---------- */
.aha__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .aha__grid { grid-template-columns: 0.9fr 1.1fr; gap: 60px; } }

.benefit-list { display: grid; gap: 14px; margin-top: 28px; }
.benefit {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.benefit__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(176,133,66,.12);
  color: var(--brass-deep);
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 4px; }
.benefit p { font-size: 15.5px; color: var(--text-muted); line-height: 1.6; }

/* ---------- Steps ---------- */
.steps { position: relative; display: grid; gap: 28px; margin-top: 48px; }
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .steps::before {
    content: "";
    position: absolute; top: 46px; left: 16%; right: 16%;
    border-top: 2px dashed var(--line-strong);
    z-index: 0;
  }
}
.step { position: relative; z-index: 1; text-align: center; }
.step__badge {
  width: 92px; height: 92px; margin: 0 auto 20px;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.step__num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  color: var(--brass-deep);
  margin-bottom: 8px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 16px; max-width: 30ch; margin-inline: auto; }

/* ---------- Value stack ---------- */
.value__grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 940px) { .value__grid { grid-template-columns: 1.15fr .85fr; gap: 56px; } }

.checklist { display: grid; gap: 2px; margin-top: 28px; }
.checklist li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}
.checklist li:first-child { border-top: 1px solid var(--line); }
.checklist .tick {
  flex: none; width: 26px; height: 26px; margin-top: 2px;
  border-radius: 50%;
  background: var(--brass);
  display: grid; place-items: center;
  color: #fff;
}
.checklist strong { display: block; font-size: 16.5px; }
.checklist span.desc { display: block; color: var(--text-muted); font-size: 15.5px; line-height: 1.5; }

.price-card {
  position: sticky; top: 88px;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--r-xl);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 5px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
}
.price-card__label { font-size: 14.5px; color: var(--on-dark-mute); font-weight: 600; }
.price-card__amount {
  display: flex; align-items: baseline; gap: 10px; margin: 8px 0 4px;
  font-size: clamp(2.6rem, 9vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em;
}
.price-card__amount small { font-size: 15px; font-weight: 600; color: var(--brass-light); letter-spacing: 0; }
.price-card ul { margin: 22px 0; display: grid; gap: 12px; }
.price-card li { display: flex; gap: 12px; font-size: 15.5px; color: var(--on-dark-mute); }
.price-card li svg { flex: none; margin-top: 4px; color: var(--brass-light); }
.price-card .btn { margin-top: 6px; }
.price-card__fine { margin-top: 14px; font-size: 13px; color: rgba(185,176,163,.8); text-align: center; }

/* ---------- Product suite ---------- */
.suite { display: grid; gap: 18px; margin-top: 44px; }
@media (min-width: 700px) { .suite { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .suite { grid-template-columns: repeat(3, 1fr); } }

.product {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-sm);
}
.product--live { border-color: var(--brass); box-shadow: 0 0 0 1px rgba(176,133,66,.28), var(--shadow-md); }
.product__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.product__icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
  background: rgba(176,133,66,.12); color: var(--brass-deep);
}
.product--live .product__icon { background: var(--brass); color: #fff; }
.status {
  font-size: 12.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
  white-space: nowrap;
}
.status--live { background: rgba(63,93,70,.12); color: var(--forest); }
.status--soon { background: rgba(25,22,20,.06); color: var(--text-faint); }
.product h3 { font-size: 1.15rem; }
.product p { font-size: 15.5px; color: var(--text-muted); flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 4px; }
.product__price { font-weight: 700; font-size: 19px; }
.product__price small { font-weight: 600; font-size: 13px; color: var(--text-faint); }
.btn--soon {
  padding: 11px 18px; font-size: 14.5px; font-weight: 600;
  background: transparent; border: 1px dashed var(--line-strong); color: var(--text-muted);
  border-radius: 999px;
}
.btn--soon:hover { border-color: var(--brass); color: var(--brass-deep); border-style: solid; }
.btn--buy { padding: 11px 20px; font-size: 15px; }

/* ---------- Story (ink section) ---------- */
.story__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .story__grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.story__copy > * + * { margin-top: 18px; }
.story__copy p { color: var(--on-dark-mute); font-size: 17px; line-height: 1.75; }
.story__copy p.emphasis { color: var(--on-dark); font-weight: 600; font-size: 18.5px; }
.story__sign {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid rgba(242,236,222,.16);
  font-size: 15px; color: var(--brass-light); font-weight: 600;
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 20px; margin-top: 44px; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-sm);
}
.quote__mark { color: var(--clay); }
.quote p { font-size: 16.5px; line-height: 1.65; font-weight: 600; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; padding-top: 4px; border-top: 1px solid var(--line); }
.quote__who img, .quote__who svg { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.quote__who > span { display: block; }
.quote__name { display: block; font-size: 15.5px; font-weight: 700; line-height: 1.3; }
.quote__city { display: block; font-size: 13.5px; color: var(--text-faint); }

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 17.5px; line-height: 1.5;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass-deep); }
.faq .chev { flex: none; margin-top: 4px; color: var(--brass); transition: transform .2s ease; }
.faq details[open] .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 4px 24px; color: var(--text-muted); max-width: 68ch; }

/* ---------- Final CTA (photographic band) ---------- */
.final {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  text-align: center;
}
.final__bg { position: absolute; inset: 0; z-index: -2; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.final::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 50% 45%, rgba(25,22,20,.30) 0%, rgba(25,22,20,.78) 78%),
    linear-gradient(180deg, rgba(25,22,20,.85) 0%, rgba(25,22,20,.35) 42%, rgba(25,22,20,.88) 100%);
}
.final__inner { position: relative; padding: 88px 0 96px; }
@media (min-width: 768px) { .final__inner { padding: 132px 0 140px; } }
.final .h2 { max-width: 22ch; margin-inline: auto; text-shadow: 0 2px 20px rgba(25,22,20,.5); }
.final .lede { max-width: 46ch; margin: 16px auto 0; color: var(--on-dark-mute); }
.final .cta-group { justify-content: center; margin-top: 30px; }
.final .cta-note { color: var(--on-dark-mute); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-mute); padding: 60px 0 0; font-size: 15.5px; }
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; } }
.footer-brand .logo__name { color: var(--on-dark); }
.footer-brand p { margin-top: 14px; font-size: 15px; }
.footer-brand .tagline { color: var(--brass-light); font-weight: 600; }
.footer-col h4 {
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brass-light); margin-bottom: 16px; font-family: var(--font-en); font-weight: 700;
}
.footer-col li + li { margin-top: 11px; }
.footer-col a { transition: color .15s ease; }
.footer-col a:hover { color: var(--on-dark); }
.footer-col .soon { font-size: 12px; color: var(--text-faint); }

.footer-legal {
  margin-top: 48px; padding: 26px 0 34px;
  border-top: 1px solid rgba(242,236,222,.12);
  font-family: var(--font-en);
  font-size: 13.5px; line-height: 1.75;
  color: rgba(185,176,163,.85);
}
.footer-legal strong { color: var(--on-dark); font-weight: 600; }
.footer-legal a { color: var(--brass-light); }
.footer-legal .copyright { margin-top: 12px; color: var(--text-faint); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 55;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,248,241,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
@media (min-width: 940px) { .sticky-cta { display: none; } }

/* ---------- Modal (notify me) ---------- */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(25,22,20,.55);
  backdrop-filter: blur(3px);
}
.modal__panel {
  width: 100%; max-width: 420px;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
}
.modal__panel h3 { font-size: 1.3rem; }
.modal__panel p { margin-top: 8px; color: var(--text-muted); font-size: 15.5px; }
.modal__panel form { margin-top: 20px; display: grid; gap: 12px; }
.modal__close {
  background: none; border: 0; cursor: pointer; color: var(--text-faint);
  font-size: 14px; font-weight: 600; margin-top: 12px; width: 100%;
}

/* ---------- Forms ---------- */
.field { display: grid; gap: 7px; }
.field label { font-size: 14.5px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font: inherit; font-size: 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(176,133,66,.18); }
.form-note { font-size: 13.5px; color: var(--text-faint); }

/* ---------- Content pages (policy / about / contact) ---------- */
.page-hero {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 44px;
}
.page-hero .h1 { font-size: clamp(1.8rem, 5.6vw, 2.7rem); }
.page-hero p { margin-top: 12px; color: var(--text-muted); }
.page-hero .updated { font-family: var(--font-en); font-size: 14px; color: var(--text-faint); margin-top: 10px; }

.prose { font-family: var(--font-en); font-size: 16.5px; line-height: 1.75; color: #2E2925; }
.prose :where(h2) { font-size: 1.35rem; margin: 40px 0 12px; }
.prose :where(h3) { font-size: 1.1rem; margin: 28px 0 10px; }
.prose :where(h2):first-child { margin-top: 0; }
.prose p + p { margin-top: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin: 12px 0; }
.prose ul li { margin-top: 8px; }
.prose a { color: var(--brass-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose .hi { font-family: var(--font-hi); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }
.callout {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--brass);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  margin: 26px 0;
}
.info-block {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.info-block dt { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); font-weight: 700; }
.info-block dd { margin: 4px 0 18px; font-size: 16.5px; }
.info-block dd:last-child { margin-bottom: 0; }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
}

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 8px; z-index: 200;
}
.skip-link:focus { left: 16px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Quiz & result ---------- */
.quiz-shell { min-height: calc(100vh - 66px); background: var(--sand); padding: 28px 0 60px; }
.quiz-card {
  max-width: 620px; margin-inline: auto;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 30px 26px 32px; box-shadow: var(--shadow-md);
}
@media (min-width: 700px) { .quiz-card { padding: 38px 40px 40px; } }
.progress { max-width: 620px; margin: 0 auto 20px; }
.progress__bar { height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; }
.progress__fill { height: 100%; width: 0; background: var(--brass); border-radius: 99px; transition: width .3s cubic-bezier(.22,.61,.36,1); }
.progress__meta { display: flex; justify-content: space-between; margin-top: 10px; font-size: 14px; color: var(--text-muted); font-weight: 600; }

.q-step[hidden] { display: none; }
.q-step h2 { font-size: clamp(1.35rem, 4.6vw, 1.75rem); }
.q-step .hint { margin-top: 8px; color: var(--text-muted); font-size: 15.5px; }
.options { display: grid; gap: 12px; margin-top: 24px; }
.options--2 { grid-template-columns: 1fr 1fr; }
@media (min-width: 560px) { .options--3 { grid-template-columns: repeat(3, 1fr); } }
.option {
  display: block;
  width: 100%; text-align: left;
  padding: 17px 18px;
  background: #fff; border: 2px solid var(--line); border-radius: var(--r-md);
  cursor: pointer; font-weight: 600;
  transition: border-color .15s ease, background-color .15s ease, transform .12s ease;
}
.option:hover { border-color: var(--brass); background: rgba(176,133,66,.05); }
.option.is-selected { border-color: var(--brass); background: rgba(176,133,66,.10); }
.option small { display: block; font-weight: 500; font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.option__ico { color: var(--brass-deep); }
.q-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 26px; }
.q-back { background: none; border: 0; cursor: pointer; font-weight: 600; color: var(--text-muted); padding: 10px 4px; }
.q-back:hover { color: var(--text); }
.q-privacy { margin-top: 18px; font-size: 13.5px; color: var(--text-faint); text-align: center; }

.result-hero { background: var(--ink); color: var(--on-dark); padding: 44px 0 40px; text-align: center; }
.result-amount { font-size: clamp(2.2rem, 9vw, 3.4rem); font-weight: 700; letter-spacing: -.02em; margin-top: 10px; }
.result-range { color: var(--brass-light); font-weight: 600; margin-top: 8px; font-size: 16px; }
.result-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-top: 18px; font-size: 14.5px; color: var(--on-dark-mute); }
.locked { position: relative; }
.locked__blur { filter: blur(6px); opacity: .55; pointer-events: none; user-select: none; }
.lock-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--brass-deep);
  background: rgba(176,133,66,.12); border-radius: 999px; padding: 6px 14px;
}

/* ==========================================================================
   Icons (lucide sprite) & photographic art
   ========================================================================== */
.ico { width: 1.25em; height: 1.25em; flex: none; display: inline-block; vertical-align: -.18em; }
.ico--sm { width: 1em; height: 1em; }
.ico--lg { width: 1.6em; height: 1.6em; }

/* Art frames */
.art {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 1px 2px rgba(25,22,20,.06), 0 18px 44px rgba(25,22,20,.14);
}
.art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art--wide { aspect-ratio: 3 / 2; }
.art--card { aspect-ratio: 16 / 10; border-radius: var(--r-md); box-shadow: none; }
.art--band { aspect-ratio: 21 / 9; border-radius: var(--r-xl); }
.art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(25,22,20,.08);
  border-radius: inherit;
}
.art__tag {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(25,22,20,.72);
  backdrop-filter: blur(6px);
  color: var(--cream); font-size: 13px; font-weight: 600;
}
.art__tag .ico { color: var(--brass-light); }

.card__art--photo { margin: -26px -24px 20px; }
.card__art--photo .art { border-radius: 0; }

/* ---------- Credibility strip under hero ---------- */
.cred-strip {
  display: grid; gap: 10px;
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
@media (min-width: 560px) { .cred-strip { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.cred {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.45; color: var(--text-muted);
}
.cred .ico { color: var(--brass); margin-top: 1px; }
.cred strong { display: block; color: var(--text); font-size: 15px; }

/* ---------- Engine / proprietary-data section ---------- */
.engine__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 940px) { .engine__grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.engine__grid > * { min-width: 0; }

.stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin-top: 30px;
  background: rgba(242,236,222,.14);
  border: 1px solid rgba(242,236,222,.14);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 620px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--ink); padding: 20px 18px; }
.stat__num {
  font-family: var(--font-en); font-size: clamp(1.4rem, 4.6vw, 1.9rem);
  font-weight: 700; letter-spacing: -.02em; color: var(--cream);
}
.stat__label { font-size: 13.5px; color: var(--on-dark-mute); margin-top: 4px; line-height: 1.4; }

.engine-list { display: grid; gap: 18px; margin-top: 28px; }
.engine-item { display: flex; gap: 16px; align-items: flex-start; }
.engine-item .badge-ico {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(199,154,79,.14); color: var(--brass-light);
}
.section--ink .engine-item h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--on-dark); }
.section--ink .engine-item p { font-size: 15.5px; color: var(--on-dark-mute); line-height: 1.6; }

/* ---------- Payment / delivery trust strip ---------- */
.pay-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(242,236,222,.14);
  font-size: 13px; color: var(--on-dark-mute);
}
.pay-strip span { display: inline-flex; align-items: center; gap: 6px; }
.pay-strip .ico { color: var(--brass-light); }
.pay-strip .brand-wa { color: #25D366; }
.pay-strip .brand-rz { color: #3395FF; }

/* ---------- Monogram avatars ---------- */
.mono {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--brass-light), var(--brass-deep));
  color: #fff; font-weight: 700; font-size: 16px;
  font-family: var(--font-hi);
}

/* Icon-tinted step badges */
.step__badge .ico { width: 34px; height: 34px; color: var(--brass-deep); }
.benefit__icon .ico, .product__icon .ico { width: 22px; height: 22px; }
.checklist .tick .ico { width: 14px; height: 14px; }

/* ==========================================================================
   Bilingual system — one language visible at a time
   <html data-lang="hi"> or <html data-lang="en">
   Without JS the page stays in Hindi, so nothing is ever blank.
   ========================================================================== */
html[data-lang="hi"] [lang="en"] { display: none !important; }
html[data-lang="en"] [lang="hi"] { display: none !important; }
html[data-lang="en"] body { font-family: var(--font-en); }
html[data-lang="en"] .h1 { letter-spacing: -0.025em; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
}
.lang-switch button {
  min-height: 40px;
  padding: 8px 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.lang-switch button[aria-pressed="true"] { background: var(--ink); color: var(--cream); }
.lang-switch button:not([aria-pressed="true"]):hover { color: var(--text); }
.site-footer .lang-switch { border-color: rgba(242,236,222,.28); background: rgba(242,236,222,.06); }
.site-footer .lang-switch button { color: var(--on-dark-mute); }
.site-footer .lang-switch button[aria-pressed="true"] { background: var(--brass); color: #fff; }

/* ==========================================================================
   Clarity pass — bigger, calmer, easier to scan
   ========================================================================== */
.lede { font-size: clamp(1.08rem, 2.7vw, 1.28rem); line-height: 1.72; }
.card p, .step p, .product p { font-size: 16.5px; line-height: 1.65; }
.benefit h3, .engine-item h3 { font-size: 1.12rem; }
.benefit p, .engine-item p { font-size: 16.5px; }
.checklist strong { font-size: 17.5px; }
.checklist span.desc { font-size: 16px; }
.faq summary { font-size: 18.5px; padding: 24px 4px; }
.faq .answer { font-size: 17px; line-height: 1.72; padding-bottom: 26px; }
.hero__trust { font-size: 15.5px; gap: 10px 18px; }
.cta-note { font-size: 15px; }
.step p { max-width: 34ch; }

/* Numbered steps read better than icons alone at this age */
.step__badge { position: relative; }
.step__count {
  position: absolute; top: -10px; right: -10px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brass); color: #fff;
  font-family: var(--font-en); font-size: 16px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(176,133,66,.4);
}

/* Softer, more premium surfaces */
.card, .benefit, .product, .quote {
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #fff 0%, #FEFCF8 100%);
}
.card:hover, .product:hover { transform: translateY(-4px); }
.section-head--center .lede { margin-inline: auto; }

/* Help affordance — this audience wants a human on the other end */
.help-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 18px;
  padding: 20px;
  margin-top: 44px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
  font-size: 16.5px;
}
.help-bar .btn { min-height: 50px; padding: 12px 22px; font-size: 16.5px; }
.help-bar .wa { color: #1FA855; }

.section--ink .help-bar {
  background: rgba(242,236,222,.06);
  border-color: rgba(242,236,222,.16);
  color: var(--on-dark-mute);
}

/* Sticky CTA gets a helper line */
.sticky-cta .btn { min-height: 58px; font-size: 18px; }

/* Quiz: larger everything */
.option { padding: 20px 20px; font-size: 18px; min-height: 68px; display: flex; align-items: center; }
.option small { font-size: 15px; margin-top: 3px; }
.option__col { display: block; }
.q-step h2 { font-size: clamp(1.45rem, 5vw, 1.9rem); line-height: 1.35; }
.q-step .hint { font-size: 16.5px; }
.field input, .field textarea, .field select { padding: 16px 18px; font-size: 17px; min-height: 58px; }
.field label { font-size: 15.5px; }
.q-back { font-size: 16.5px; min-height: 48px; }
.progress__meta { font-size: 15px; }
