/* =====================================================================
   TARINI · Bengali Esoteric Consultancy
   Design system + layout
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------- */
:root {
  /* Sacred, bright palette */
  --ivory:      #FFFBF3;
  --cream:      #FBF3E4;
  --cream-2:    #F6E9D2;
  --cream-3:    #F1DEC0;
  --maroon:     #5B1418;
  --maroon-2:   #46100F;
  --maroon-3:   #360B0B;
  --alta:       #B81E24;
  --sindoor:    #E23A26;
  --marigold:   #EE9B2D;
  --gold:       #C4922E;
  --gold-soft:  #D9B15A;
  --gold-line:  rgba(196, 146, 46, .38);
  --ink:        #2A1712;
  --ink-soft:   #6E574A;
  --ink-mute:   #927866;
  --line:       rgba(91, 20, 24, .14);
  --line-soft:  rgba(91, 20, 24, .09);

  /* Fonts */
  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:    "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-bn:      "Noto Serif Bengali", var(--f-display);

  /* Shape + depth */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(74, 16, 15, .06);
  --shadow:    0 18px 44px -22px rgba(74, 16, 15, .32);
  --shadow-lg: 0 34px 70px -30px rgba(74, 16, 15, .45);

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);
}

/* ----------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: clamp(1rem, .96rem + .2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--sindoor); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }

/* Warm paper grain */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------- Utilities ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { position: relative; padding-block: var(--section-y); }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--f-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--alta);
  margin-bottom: 1.1rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow__dot {
  width: 26px; height: 1px; background: currentColor; display: inline-block;
  position: relative;
}
.eyebrow__dot::after {
  content: ""; position: absolute; right: -5px; top: -2px;
  width: 5px; height: 5px; border-radius: 50%; background: currentColor;
}

.section__head { max-width: 40rem; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 1.3rem + 3.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--maroon);
}
.section__title--light { color: var(--ivory); }
.section__sub {
  margin-top: 1.1rem; color: var(--ink-soft);
  font-size: 1.06rem;
}
.section__sub--light { color: rgba(255, 251, 243, .82); }

/* ----------------------------- Buttons ------------------------------ */
.btn {
  --btn-bg: var(--maroon);
  --btn-fg: var(--ivory);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--f-body); font-weight: 700;
  font-size: .95rem; letter-spacing: .01em;
  padding: .85em 1.5em;
  border-radius: 100px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn__icon { width: 1.15em; height: 1.15em; transition: transform .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn__icon { transform: translateX(3px); }
.btn--lg { padding: 1.02em 1.9em; font-size: 1rem; }
.btn--sm { padding: .6em 1.1em; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--alta), var(--sindoor) 76%, var(--marigold));
  color: #fff;
  text-shadow: 0 1px 2px rgba(74, 16, 15, .4);
  box-shadow: 0 14px 30px -14px rgba(226, 58, 38, .7);
}
.btn--primary:hover { box-shadow: 0 20px 40px -16px rgba(226, 58, 38, .8); }
.btn--ghost {
  background: transparent; color: var(--maroon);
  border-color: var(--gold-line);
}
.btn--ghost:hover { background: var(--ivory); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.btn--outline {
  background: transparent; color: var(--maroon);
  border-color: rgba(91, 20, 24, .28);
}
.btn--outline:hover { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.btn--light {
  background: var(--ivory); color: var(--maroon);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .55);
}
.btn--light:hover { background: #fff; }

/* Arched image frame (temple-arch aesthetic) */
.arch-frame {
  position: relative;
  border-radius: 50% 50% var(--radius) var(--radius) / 34% 34% var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.arch-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 6px rgba(255, 251, 243, .35), inset 0 0 60px rgba(74, 16, 15, .18);
  pointer-events: none;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 243, 228, .82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-stuck {
  border-color: var(--line-soft);
  box-shadow: 0 8px 30px -22px rgba(74, 16, 15, .5);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ivory);
  background: radial-gradient(circle at 30% 25%, var(--sindoor), var(--maroon) 78%);
  box-shadow: inset 0 0 0 1px rgba(255, 251, 243, .25), var(--shadow-sm);
}
.brand__mark svg { width: 21px; height: 21px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--f-display); font-weight: 600; font-size: 1.32rem;
  color: var(--maroon); letter-spacing: .01em;
}
.brand__bn { font-family: var(--f-bn); font-size: .74rem; color: var(--alta); margin-top: 2px; }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 1.7rem; }
.nav-menu a:not(.btn) { font-weight: 600; font-size: .92rem; color: var(--ink-soft); transition: color .2s ease; position: relative; }
.nav-menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--sindoor); transition: width .28s ease; border-radius: 2px;
}
.nav-menu a:not(.btn):hover { color: var(--maroon); }
.nav-menu a:not(.btn):hover::after { width: 100%; }
.nav-menu__cta { margin-left: .4rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; color: var(--maroon); }
.nav-toggle svg { width: 26px; height: 26px; margin-inline: auto; }
.nav-toggle__close { display: none; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3.5rem, 7vw, 6rem); }
.hero__glow {
  position: absolute; z-index: 0; inset: auto -10% -30% auto;
  right: -12%; top: -18%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(238, 155, 45, .28), rgba(238, 155, 45, 0) 62%);
  pointer-events: none;
}
.deco-burst {
  position: absolute; z-index: 0; width: 340px; height: 340px; pointer-events: none;
  background:
    repeating-conic-gradient(from 0deg, var(--gold-line) 0deg 1.2deg, transparent 1.2deg 9deg);
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle, transparent 40%, #000 41%, #000 47%, transparent 48%);
          mask: radial-gradient(circle, transparent 40%, #000 41%, #000 47%, transparent 48%);
  opacity: .5;
}
.deco-burst--tl { top: 8%; left: -140px; }

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__copy { max-width: 34rem; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--maroon);
}
.hero__title em { font-style: italic; color: var(--sindoor); font-weight: 500; }
.hero__lead { margin-top: 1.4rem; color: var(--ink-soft); font-size: 1.1rem; }
.hero__lead strong { color: var(--maroon); font-weight: 700; }
.hero__lead em { font-style: italic; color: var(--alta); font-weight: 500; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 1.3rem 1.6rem; margin-top: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.hero__proof li { display: inline-flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.hero__proof svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

.hero__visual { position: relative; max-width: 440px; margin-inline: auto; }
.hero__figure {
  aspect-ratio: 4 / 5;
  width: 100%;
}
/* favour the younger woman on the left; the right recedes under the collage */
.hero__figure img { object-position: 32% 24%; }
.hero__badge {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: .55rem 1.15rem; border-radius: 100px;
  background: rgba(54, 11, 11, .58);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(217, 177, 90, .4);
  color: var(--ivory); white-space: nowrap;
}
.hero__badge-bn { font-family: var(--f-bn); font-size: .92rem; color: var(--gold-soft); line-height: 1.1; }
.hero__badge-en { font-size: .68rem; letter-spacing: .04em; opacity: .9; }
.hero__seal {
  position: absolute; top: 6%; right: -6%;
  width: 74px; height: 74px; display: grid; place-items: center;
  border-radius: 50%; color: var(--maroon);
  background: var(--ivory);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.hero__seal svg { width: 38px; height: 38px; }
@keyframes floaty { 50% { transform: translateY(-9px); } }

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust { background: var(--maroon); color: var(--ivory); position: relative; z-index: 2; }
.trust__inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 4vw, 3.5rem); flex-wrap: wrap;
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
}
.trust__item { display: flex; flex-direction: column; gap: .2rem; min-width: 150px; }
.trust__num {
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--gold-soft); line-height: 1;
}
.trust__plus { color: var(--marigold); }
.trust__label { font-size: .84rem; color: rgba(255, 251, 243, .8); font-weight: 500; }
.trust__div { color: rgba(217, 177, 90, .5); }
.trust__div svg { width: 30px; height: 30px; }

/* =====================================================================
   LINEAGE
   ===================================================================== */
.lineage { background: linear-gradient(180deg, var(--cream), var(--ivory)); }
.lineage__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 6vw, 5rem); align-items: center;
}
.lineage__media { position: relative; max-width: 440px; margin-inline: auto; padding-bottom: .5rem; }
.lineage__main { aspect-ratio: 4 / 5; width: 100%; }
/* Maa Tara centred; nudge down so the top watermark is cropped by the arch */
.lineage__main img { object-position: center 30%; }
/* collage fade on the right of the hero two-women image, under stamp + grandmother card */
.lineage__fade {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(100deg, transparent 46%, rgba(255, 251, 243, .45) 76%, rgba(255, 251, 243, .85) 100%);
}
/* grandmother card overlaps the bottom-right, further veiling the right figure */
.lineage__inset {
  position: absolute; right: -4%; bottom: -5%;
  width: 47%; max-width: 220px;
  border-radius: 14px; overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-lg);
  background: var(--maroon-3);
  transform: rotate(3.5deg);
}
.lineage__inset img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: grayscale(.1) contrast(1.03); }
.lineage__inset figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: .8rem .7rem .55rem;
  font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 600;
  color: var(--ivory); text-align: center;
  background: linear-gradient(transparent, rgba(54, 11, 11, .85));
}
.lineage__stamp {
  position: absolute; right: -8px; top: 22%;
  display: flex; flex-direction: column; gap: 2px;
  padding: .5rem .9rem; border-radius: 10px;
  background: var(--ivory); border: 1px solid var(--gold-line);
  box-shadow: var(--shadow); transform: rotate(4deg);
}
.lineage__stamp-bn { font-family: var(--f-bn); color: var(--alta); font-size: .95rem; line-height: 1; }
.lineage__stamp-en { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }

.lineage__copy p { margin-top: 1.1rem; color: var(--ink-soft); }
.lineage__copy p em { font-style: italic; color: var(--alta); }
.lineage__copy p strong { color: var(--maroon); font-weight: 700; }
.section__title + p { margin-top: 1.3rem; }

.feature-list { margin-top: 1.7rem; display: grid; gap: .85rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .8rem; font-weight: 600; color: var(--ink); font-size: .96rem; }
.feature-list svg { width: 26px; height: 26px; color: var(--sindoor); flex: none; padding: 2px; }

.pull-quote {
  margin-top: 2rem; padding: .2rem 0 .2rem 1.4rem;
  border-left: 3px solid var(--gold);
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: 1.4rem; line-height: 1.35; color: var(--maroon);
}

/* =====================================================================
   EXPERTISE
   ===================================================================== */
.expertise { background: var(--ivory); position: relative; overflow: hidden; }
.expertise__texture {
  position: absolute; z-index: 0; top: -6%; right: -14%;
  width: min(56vw, 620px); aspect-ratio: 1; pointer-events: none;
  opacity: .1;
  -webkit-mask: radial-gradient(circle at 60% 40%, #000, transparent 68%);
          mask: radial-gradient(circle at 60% 40%, #000, transparent 68%);
}
.expertise__texture img { width: 100%; height: 100%; object-fit: cover; }
.expertise .container { position: relative; z-index: 1; }

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}
.card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--alta), var(--marigold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-line); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 16px; margin-bottom: 1.2rem;
  color: var(--maroon);
  background: radial-gradient(circle at 30% 25%, var(--cream-2), var(--cream-3));
  border: 1px solid var(--gold-line);
}
.card__icon svg { width: 30px; height: 30px; }
.card__title { font-family: var(--f-display); font-weight: 600; font-size: 1.5rem; color: var(--maroon); }
.card__text { margin-top: .7rem; color: var(--ink-soft); font-size: .97rem; }
.card__points { margin-top: 1.2rem; display: grid; gap: .55rem; }
.card__points li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 600; color: var(--ink); }
.card__points svg { width: 20px; height: 20px; color: var(--sindoor); flex: none; }

.card--featured {
  background: linear-gradient(165deg, var(--maroon), var(--maroon-2));
  border-color: transparent;
}
.card--featured .card__title { color: var(--ivory); }
.card--featured .card__text { color: rgba(255, 251, 243, .82); }
.card--featured .card__points li { color: var(--cream); }
.card--featured .card__points svg { color: var(--marigold); }
.card--featured .card__icon {
  background: rgba(255, 251, 243, .1); color: var(--gold-soft); border-color: rgba(217, 177, 90, .4);
}
.card--featured::before { background: linear-gradient(90deg, var(--marigold), var(--gold-soft)); transform: scaleX(1); }
.card__ribbon {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--maroon-2); background: var(--gold-soft);
  padding: .3rem .7rem; border-radius: 100px;
}

.specialties {
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  text-align: center;
  border-top: 1px solid var(--line); padding-top: clamp(2rem, 4vw, 2.8rem);
}
.specialties__label {
  font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 1.3rem;
}
.specialties__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1rem;
}
.specialties__list li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem; border-radius: 100px;
  background: var(--cream); border: 1px solid var(--gold-line);
  font-weight: 600; font-size: .9rem; color: var(--maroon);
  transition: transform .2s ease, background .2s ease;
}
.specialties__list li:hover { transform: translateY(-2px); background: var(--cream-2); }
.specialties__list svg { width: 20px; height: 20px; color: var(--sindoor); }
.specialties__note {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.6rem; max-width: 44rem; margin-inline: auto;
  font-size: .88rem; color: var(--ink-mute);
}
.specialties__note svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* =====================================================================
   BAND (Maa Tara · moon)
   ===================================================================== */
.band { position: relative; isolation: isolate; overflow: hidden; color: var(--ivory); text-align: center; }
.band__bg { position: absolute; inset: 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.band__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(17, 16, 20, .35), rgba(12, 11, 15, .82) 88%),
    linear-gradient(180deg, rgba(17, 16, 20, .5), rgba(12, 11, 15, .78));
}
.band__inner {
  padding-block: clamp(4rem, 9vw, 7rem);
  max-width: 46rem; margin-inline: auto;
}
.band__motif { display: inline-grid; place-items: center; width: 60px; height: 60px; margin-bottom: 1.2rem; color: var(--gold-soft); }
.band__motif svg { width: 44px; height: 44px; }
.band__bn { font-family: var(--f-bn); font-size: 1.25rem; color: var(--gold-soft); letter-spacing: .04em; margin-bottom: 1rem; }
.band__quote {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.5rem); line-height: 1.32;
  letter-spacing: -.01em; text-wrap: balance;
}
.band__caption { margin-top: 1.4rem; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 251, 243, .7); }

/* =====================================================================
   PROCESS
   ===================================================================== */
.process { background: #161318; color: var(--ivory); position: relative; overflow: hidden; }
.process__texture { position: absolute; inset: 0; z-index: 0; opacity: .14; }
.process__texture img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.process::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, rgba(217, 177, 90, .10), transparent 60%);
}
.process .container { position: relative; z-index: 1; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.6rem); counter-reset: step; }
.step {
  position: relative;
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 251, 243, .04);
  border: 1px solid rgba(217, 177, 90, .22);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.step:hover { transform: translateY(-6px); background: rgba(255, 251, 243, .07); border-color: rgba(217, 177, 90, .45); }
.step__num {
  font-family: var(--f-display); font-weight: 600; font-size: 2.6rem;
  color: rgba(217, 177, 90, .45); line-height: 1; display: block;
}
.step__icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px;
  margin: 1rem 0 1.1rem; color: var(--marigold);
  background: rgba(238, 155, 45, .12); border: 1px solid rgba(238, 155, 45, .3);
}
.step__icon svg { width: 26px; height: 26px; }
.step__title { font-family: var(--f-display); font-weight: 600; font-size: 1.35rem; color: var(--ivory); }
.step__text { margin-top: .5rem; font-size: .92rem; color: rgba(255, 251, 243, .74); }

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing { background: linear-gradient(180deg, var(--ivory), var(--cream)); }

.assessment {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: var(--maroon);
  color: var(--ivory);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.assessment::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 120% at 100% 0%, rgba(238, 155, 45, .28), transparent 55%);
}
.assessment__body { position: relative; }
.assessment__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--maroon-2); background: var(--gold-soft);
  padding: .4rem .9rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.assessment__tag svg { width: 18px; height: 18px; }
.assessment__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--ivory); }
.assessment__text { margin-top: .9rem; color: rgba(255, 251, 243, .82); font-size: 1rem; max-width: 34rem; }
.assessment__meta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; }
.assessment__meta li { display: inline-flex; align-items: center; gap: .55rem; font-size: .88rem; font-weight: 600; color: var(--cream); }
.assessment__meta svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; }

.assessment__price {
  position: relative;
  text-align: center;
  background: rgba(255, 251, 243, .06);
  border: 1px solid rgba(217, 177, 90, .3);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  display: grid; gap: .5rem; justify-items: center;
}
.assessment__amount { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; color: var(--gold-soft); }
.assessment__note { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 251, 243, .7); margin-bottom: .6rem; }
.assessment__price .btn { width: 100%; }
.assessment__fine { font-size: .76rem; color: rgba(255, 251, 243, .6); margin-top: .2rem; }

.tier-divider { display: flex; align-items: center; gap: 1rem; margin: clamp(2.4rem, 5vw, 3.4rem) auto clamp(1.4rem, 3vw, 2rem); max-width: 420px; color: var(--gold); }
.tier-divider span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line)); }
.tier-divider span:last-child { background: linear-gradient(90deg, var(--gold-line), transparent); }
.tier-divider svg { width: 34px; height: 34px; }

.tiers__intro { text-align: center; color: var(--ink-soft); max-width: 40rem; margin: 0 auto clamp(1.8rem, 4vw, 2.6rem); }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.6rem); align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tier:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tier__head { padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); margin-bottom: 1.2rem; }
.tier__bn { font-family: var(--f-bn); font-size: .95rem; color: var(--alta); }
.tier__name { font-family: var(--f-display); font-weight: 600; font-size: 1.9rem; color: var(--maroon); line-height: 1.1; margin-top: .1rem; }
.tier__for { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-top: .3rem; }
.tier__price { font-family: var(--f-display); font-weight: 700; font-size: 2.3rem; color: var(--maroon); margin-bottom: .4rem; }
.tier__from { font-family: var(--f-body); font-size: .8rem; font-weight: 600; color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase; margin-right: .3rem; vertical-align: middle; }
.tier__desc { color: var(--ink-soft); font-size: .93rem; min-height: 3em; }
.tier__list { margin: 1.3rem 0 1.7rem; display: grid; gap: .7rem; flex: 1; }
.tier__list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; color: var(--ink); }
.tier__list svg { width: 20px; height: 20px; color: var(--sindoor); flex: none; margin-top: 2px; }

.tier--featured {
  background: linear-gradient(170deg, #fff, var(--cream));
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.tier--featured:hover { transform: translateY(-13px); }
.tier--featured .tier__price { color: var(--sindoor); }
.tier__flag {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 2px rgba(74, 16, 15, .4);
  background: linear-gradient(135deg, var(--alta), var(--sindoor) 70%, var(--marigold));
  padding: .4rem .95rem; border-radius: 100px;
  box-shadow: 0 8px 18px -8px rgba(226, 58, 38, .7); white-space: nowrap;
}

.pricing__disclaimer {
  display: flex; align-items: flex-start; gap: .7rem; justify-content: center; text-align: center;
  max-width: 44rem; margin: clamp(2.2rem, 4vw, 3rem) auto 0;
  font-size: .88rem; color: var(--ink-mute);
}
.pricing__disclaimer svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* =====================================================================
   VOICES / TESTIMONIALS
   ===================================================================== */
.voices { background: var(--cream); }
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.7rem); }
.voice {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-sm);
}
.voice__quote {
  position: absolute; top: .2rem; left: 1.3rem;
  font-family: var(--f-display); font-size: 4.5rem; line-height: 1; color: var(--gold-soft); opacity: .5;
}
.voice blockquote { position: relative; color: var(--ink); font-size: 1.02rem; font-style: italic; font-family: var(--f-display); font-weight: 500; line-height: 1.5; }
.voice figcaption { margin-top: 1.2rem; font-size: .86rem; color: var(--ink-mute); font-weight: 600; letter-spacing: .04em; }
.voice__who { color: var(--maroon); }
.voices__note { text-align: center; margin-top: 1.8rem; font-size: .82rem; color: var(--ink-mute); letter-spacing: .04em; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--ivory); }
.faq__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq__list { display: grid; gap: .8rem; }
.faq__item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq__item[open] { border-color: var(--gold-line); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.3rem; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; color: var(--maroon);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; width: 22px; height: 22px;
  background: currentColor; color: var(--alta);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s ease;
}
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__body { padding: 0 1.3rem 1.25rem; }
.faq__body p { color: var(--ink-soft); font-size: .96rem; }

/* =====================================================================
   NEXT STEPS
   ===================================================================== */
.next { position: relative; isolation: isolate; overflow: hidden; color: var(--ivory); text-align: center; }
.next__bg { position: absolute; inset: 0; z-index: -2; }
.next__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* heavy overlay keeps the source image atmospheric and hides its UI chrome */
.next__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 100% at 50% 30%, rgba(91, 20, 24, .82), rgba(54, 11, 11, .94) 80%),
    linear-gradient(180deg, rgba(54, 11, 11, .9), rgba(54, 11, 11, .96));
}
.next__inner { padding-block: clamp(4rem, 9vw, 7rem); max-width: 44rem; margin-inline: auto; }
.next__motif { display: inline-grid; place-items: center; width: 58px; height: 58px; color: var(--gold-soft); margin-bottom: 1rem; }
.next__motif svg { width: 42px; height: 42px; }
.next__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem, 1.4rem + 3vw, 3.2rem); line-height: 1.1; color: var(--ivory); }
.next__lead { margin-top: 1.2rem; color: rgba(255, 251, 243, .82); font-size: 1.08rem; }
.next__steps {
  display: grid; gap: .8rem; text-align: left;
  max-width: 30rem; margin: 2.2rem auto; counter-reset: n;
}
.next__steps li {
  display: flex; align-items: center; gap: 1rem;
  padding: .95rem 1.2rem; border-radius: 100px;
  background: rgba(255, 251, 243, .07); border: 1px solid rgba(217, 177, 90, .28);
  font-weight: 500; color: var(--cream); font-size: .96rem;
}
.next__steps li strong { color: var(--gold-soft); font-weight: 700; }
.next__steps li > span:first-child {
  flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--alta), var(--marigold)); color: var(--ivory);
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
}
.next__handle { margin-top: 1rem; font-weight: 700; letter-spacing: .05em; color: var(--gold-soft); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--maroon-3); color: rgba(255, 251, 243, .78); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); padding-bottom: 2.6rem; }
.brand--footer .brand__name { color: var(--ivory); }
.footer__tag { margin-top: 1.1rem; font-size: .92rem; max-width: 28rem; line-height: 1.7; }
.footer__mantra { margin-top: 1rem; font-family: var(--f-bn); color: var(--gold-soft); font-size: 1.05rem; }
.footer__nav h4, .footer__contact h4 {
  font-family: var(--f-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1.1rem; font-weight: 700;
}
.footer__nav ul { display: grid; gap: .6rem; }
.footer__nav a { font-size: .95rem; transition: color .2s ease; }
.footer__nav a:hover { color: var(--ivory); }
.footer__ig {
  display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ivory);
  padding: .7rem 1.1rem; border-radius: 100px; border: 1px solid rgba(217, 177, 90, .35);
  transition: background .25s ease, transform .2s ease;
}
.footer__ig svg { width: 22px; height: 22px; color: var(--gold-soft); }
.footer__ig:hover { background: rgba(217, 177, 90, .12); transform: translateY(-2px); }
.footer__conf { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.1rem; font-size: .84rem; }
.footer__conf svg { width: 18px; height: 18px; color: var(--gold-soft); }

.footer__base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.5rem; border-top: 1px solid rgba(255, 251, 243, .1);
  font-size: .8rem; color: rgba(255, 251, 243, .55);
}
.footer__disc { max-width: 40rem; }

/* =====================================================================
   STICKY MOBILE CTA
   ===================================================================== */
.mobile-cta {
  position: fixed; z-index: 45; left: 50%; bottom: 14px; transform: translateX(-50%) translateY(140%);
  display: none; align-items: center; gap: .6rem;
  padding: .95em 1.6em; border-radius: 100px;
  background: linear-gradient(135deg, var(--alta), var(--sindoor) 76%, var(--marigold));
  color: #fff; font-weight: 700; font-size: .95rem;
  text-shadow: 0 1px 2px rgba(74, 16, 15, .4);
  box-shadow: 0 16px 34px -12px rgba(226, 58, 38, .7);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
}
.mobile-cta svg { width: 20px; height: 20px; }
.mobile-cta.is-shown { transform: translateX(-50%) translateY(0); }

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

/* =====================================================================
   LANGUAGE TOGGLE
   ===================================================================== */
.nav { gap: .85rem; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .8rem; border-radius: 100px;
  border: 1px solid var(--gold-line); color: var(--maroon);
  background: var(--ivory); font-weight: 700; font-size: .82rem;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.lang-toggle:hover { background: var(--cream-2); transform: translateY(-1px); border-color: var(--gold); }
.lang-toggle svg { width: 18px; height: 18px; color: var(--alta); }
.lang-toggle__label { font-family: "Noto Sans Devanagari", var(--f-body); line-height: 1; }

/* =====================================================================
   HERO OFFER CHIP
   ===================================================================== */
.hero__offer {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; padding: .5rem .95rem; border-radius: 100px;
  background: linear-gradient(135deg, rgba(238, 155, 45, .18), rgba(226, 58, 38, .12));
  border: 1px solid var(--gold-line); color: var(--maroon);
  font-weight: 600; font-size: .86rem;
}
.hero__offer svg { width: 18px; height: 18px; color: var(--sindoor); flex: none; }
.hero__offer b { color: var(--sindoor); }

/* =====================================================================
   CASES GRID
   ===================================================================== */
.cases { background: var(--ivory); position: relative; overflow: hidden; }
.cases .container { position: relative; z-index: 1; }
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
.case {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-line); }
.case__icon {
  flex: none; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 13px; color: var(--maroon);
  background: radial-gradient(circle at 30% 25%, var(--cream-2), var(--cream-3));
  border: 1px solid var(--gold-line);
}
.case__icon svg { width: 26px; height: 26px; }
.case__title { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: var(--maroon); line-height: 1.2; }
.case__text { margin-top: .4rem; font-size: .92rem; color: var(--ink-soft); }
.cases__note {
  display: flex; align-items: flex-start; gap: .7rem; justify-content: center; text-align: center;
  max-width: 46rem; margin: clamp(2rem, 4vw, 2.8rem) auto 0; font-size: .9rem; color: var(--ink-mute);
}
.cases__note svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* =====================================================================
   ASSESSMENT — slashed price
   ===================================================================== */
.assessment__pricewrap { display: flex; align-items: baseline; gap: .6rem; justify-content: center; }
.assessment__was {
  font-family: var(--f-display); font-size: 1.6rem; color: rgba(255, 251, 243, .55);
  text-decoration: line-through; text-decoration-color: var(--sindoor); text-decoration-thickness: 2px;
}
.assessment__amount { text-transform: uppercase; letter-spacing: .02em; }

/* =====================================================================
   TIER tweaks (who / range)
   ===================================================================== */
.tier__who {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--alta); background: var(--cream-2); border: 1px solid var(--gold-line);
  padding: .3rem .7rem; border-radius: 100px; margin-bottom: .7rem;
}
.tier--featured .tier__who { color: var(--maroon-2); background: var(--gold-soft); border-color: transparent; }
.tier__range { font-size: 1.3rem; color: var(--ink-mute); font-weight: 600; }

/* =====================================================================
   TIMELINE
   ===================================================================== */
.timeline { background: var(--cream); }
.timeline__track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2rem);
  position: relative; margin-top: 1rem;
}
.timeline__track::before {
  content: ""; position: absolute; top: 27px; left: 14%; right: 14%; height: 2px;
  background: linear-gradient(90deg, var(--gold-line), var(--sindoor), var(--gold-line));
  opacity: .55;
}
.tl { position: relative; text-align: center; padding: 0 .5rem; }
.tl__dot {
  position: relative; z-index: 1; width: 56px; height: 56px; margin: 0 auto 1rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--ivory); border: 2px solid var(--gold); color: var(--sindoor);
  box-shadow: var(--shadow-sm);
}
.tl__dot svg { width: 28px; height: 28px; }
.tl__day { display: block; font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--alta); letter-spacing: .05em; }
.tl__title { font-family: var(--f-display); font-weight: 600; font-size: 1.3rem; color: var(--maroon); margin-top: .2rem; }
.tl__text { margin-top: .5rem; font-size: .92rem; color: var(--ink-soft); max-width: 22rem; margin-inline: auto; }
.timeline__note {
  display: flex; align-items: flex-start; gap: .6rem; justify-content: center; text-align: center;
  max-width: 44rem; margin: clamp(2rem, 4vw, 2.6rem) auto 0; font-size: .9rem; color: var(--ink-mute);
}
.timeline__note svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* =====================================================================
   FOOTER book button + next handle link
   ===================================================================== */
.footer__book {
  margin-top: .9rem; display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.2rem; border-radius: 100px; font-weight: 700; font-size: .88rem;
  color: var(--ivory); background: transparent; border: 1px solid rgba(217, 177, 90, .4);
  transition: background .2s ease, transform .2s ease;
}
.footer__book:hover { background: rgba(217, 177, 90, .14); transform: translateY(-2px); }
.next__handle a { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-soft); font-weight: 700; }
.next__handle svg { width: 20px; height: 20px; }
.next__handle a:hover { color: var(--ivory); }

/* =====================================================================
   BOOKING MODAL
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal__overlay {
  position: absolute; inset: 0; background: rgba(42, 23, 18, .55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: fadein .25s ease;
}
.modal__dialog {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(93vw, 460px); max-height: 92vh; overflow-y: auto;
  background: var(--ivory); border: 1px solid var(--gold-line);
  border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  animation: pop .3s cubic-bezier(.2, .8, .2, 1);
}
@keyframes fadein { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translate(-50%, -46%) scale(.96); } }
.modal__close {
  position: absolute; top: .8rem; right: .8rem; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 50%; color: var(--maroon);
  background: var(--cream); border: 1px solid var(--line);
}
.modal__close:hover { background: var(--cream-2); }
.modal__close svg { width: 20px; height: 20px; }
.modal__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .03em;
  color: var(--maroon); background: var(--cream-2); border: 1px solid var(--gold-line);
  padding: .35rem .75rem; border-radius: 100px; margin-bottom: 1rem;
}
.modal__badge svg { width: 16px; height: 16px; color: var(--sindoor); }
.modal__badge s { color: var(--ink-mute); }
.modal__badge b { color: var(--sindoor); }
.modal__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.5rem, 4vw, 2rem); color: var(--maroon); line-height: 1.15; }
.modal__sub { margin-top: .6rem; color: var(--ink-soft); font-size: .95rem; }
.bookform { margin-top: 1.4rem; display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field__label { font-size: .82rem; font-weight: 700; color: var(--maroon); letter-spacing: .02em; }
.field__label em { font-style: normal; color: var(--ink-mute); font-weight: 500; }
.field__input {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border-radius: 12px;
  background: var(--cream); border: 1.5px solid var(--line);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field__input::placeholder { color: var(--ink-mute); opacity: .7; }
.field__input:focus { outline: none; border-color: var(--sindoor); background: #fff; box-shadow: 0 0 0 3px rgba(226, 58, 38, .12); }
.bookform__error { color: var(--alta); font-size: .86rem; font-weight: 600; }
.bookform__note { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--ink-mute); }
.bookform__note svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.modal__panel[data-panel="success"] { text-align: center; display: grid; gap: 1rem; }
.modal__panel[data-panel="pay"] { display: grid; gap: .85rem; }
.paysteps__title { font-size: .82rem; font-weight: 700; color: var(--ink-soft); text-align: center; margin-top: .2rem; }
.payqr {
  display: flex; align-items: center; gap: 1rem;
  background: var(--cream); border: 1px solid var(--gold-line); border-radius: var(--radius-sm);
  padding: .75rem;
}
.payqr__img { width: 108px; height: 108px; border-radius: 8px; background: #fff; padding: 4px; flex: none; }
.payqr__side { display: grid; gap: .55rem; min-width: 0; }
.payqr__scan { font-size: .8rem; color: var(--ink-mute); line-height: 1.4; }
.payqr__id {
  display: inline-flex; align-items: center; justify-content: space-between; gap: .5rem;
  font-weight: 700; font-size: .82rem; color: var(--maroon);
  background: var(--ivory); border: 1px solid var(--gold-line); border-radius: 100px;
  padding: .5rem .8rem; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.payqr__id span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.payqr__id svg { width: 16px; height: 16px; color: var(--alta); flex: none; }
.payqr__id:hover { background: var(--cream-2); }
.payqr__id.is-copied { background: #e9f7ec; border-color: #9ed3ab; color: #237a3a; }
.payqr__id.is-copied svg { color: #237a3a; }
.modal__tick {
  width: 64px; height: 64px; margin: .5rem auto 0; display: grid; place-items: center;
  border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--alta), var(--marigold));
  box-shadow: 0 12px 26px -12px rgba(226, 58, 38, .7);
}
.modal__tick svg { width: 34px; height: 34px; }

/* =====================================================================
   HINDI TYPOGRAPHY
   ===================================================================== */
html.lang-hi body { font-family: "Noto Sans Devanagari", var(--f-body); }
html.lang-hi .section__title,
html.lang-hi .hero__title,
html.lang-hi .modal__title,
html.lang-hi .case__title,
html.lang-hi .tier__name,
html.lang-hi .step__title,
html.lang-hi .tl__title,
html.lang-hi .tl__day,
html.lang-hi .trust__num,
html.lang-hi .assessment__title,
html.lang-hi .next__title,
html.lang-hi .band__quote,
html.lang-hi .pull-quote,
html.lang-hi .voice blockquote {
  font-family: "Noto Serif Devanagari", var(--f-display);
}
html.lang-hi .hero__title { line-height: 1.18; }
html.lang-hi .eyebrow { letter-spacing: .08em; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }

  .hero__visual { order: -1; max-width: 360px; }
  .hero__figure { max-width: none; }
  .hero__copy { max-width: none; }
  .lineage__inner { grid-template-columns: 1fr; }
  .lineage__media { max-width: 400px; }
  .faq__inner { grid-template-columns: 1fr; }
  .cards, .tiers, .voices__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-menu {
    position: absolute; top: calc(100% + 1px); right: var(--gutter); left: var(--gutter);
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
    padding: .8rem; box-shadow: var(--shadow-lg);
    transform-origin: top;
    opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.98);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav.is-open .nav-menu { opacity: 1; visibility: visible; transform: none; }
  .nav.is-open .nav-toggle__open { display: none; }
  .nav.is-open .nav-toggle__close { display: block; }
  .nav-menu a:not(.btn) { display: block; padding: .8rem 1rem; border-radius: 10px; }
  .nav-menu a:not(.btn)::after { display: none; }
  .nav-menu a:not(.btn):hover { background: var(--cream); }
  .nav-menu__cta { margin: .3rem 0 0; }
  .nav-menu__cta .btn { width: 100%; }

  .assessment { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
}

@media (max-width: 620px) {
  .cards, .tiers, .voices__grid, .steps, .footer__inner { grid-template-columns: 1fr; }
  .tier--featured, .tier--featured:hover { transform: none; }
  .trust__div { display: none; }
  .trust__inner { gap: 1.6rem; }
  .hero__seal { width: 60px; height: 60px; right: 2%; }
  .hero__seal svg { width: 30px; height: 30px; }
  .lineage__inset { width: 52%; right: 0; }
  .pull-quote { font-size: 1.2rem; }
  .footer__base { flex-direction: column; align-items: flex-start; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__seal { animation: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* New components — responsive */
@media (max-width: 960px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .timeline__track { grid-template-columns: 1fr; gap: 1.4rem; max-width: 30rem; margin-inline: auto; }
  .timeline__track::before { display: none; }
}
@media (max-width: 620px) {
  .cases-grid { grid-template-columns: 1fr; }
  .case { padding: 1.2rem; }
  .brand__name { font-size: 1.15rem; }
}

/* =====================================================================
   FOOTER LEGAL LINKS
   ===================================================================== */
.footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.footer__legal a { font-size: .8rem; color: rgba(255, 251, 243, .62); transition: color .2s ease; }
.footer__legal a:hover { color: var(--gold-soft); }
.footer__base .footer__disc { flex-basis: 100%; max-width: 62rem; margin-top: .4rem; opacity: .8; }

/* =====================================================================
   LEGAL PAGES
   ===================================================================== */
.legal-top { position: sticky; top: 0; z-index: 40; background: rgba(251, 243, 228, .9); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--line-soft); }
.legal-top__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.legal-back { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--maroon); font-size: .9rem; }
.legal-back svg { width: 18px; height: 18px; }
.legal-back:hover { color: var(--sindoor); }
.legal-hero { padding: clamp(2.5rem, 6vw, 4rem) 0 .5rem; text-align: center; }
.legal-hero h1 { font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); color: var(--maroon); }
.legal-hero p { color: var(--ink-soft); margin-top: .6rem; }
.legal-nav { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 1.6rem auto 0; }
.legal-nav a { padding: .5rem 1.05rem; border-radius: 100px; border: 1px solid var(--gold-line); font-size: .85rem; font-weight: 600; color: var(--maroon); background: var(--ivory); transition: background .2s ease, transform .2s ease; }
.legal-nav a:hover { background: var(--cream-2); transform: translateY(-1px); }
.legal-notice { display: flex; gap: .7rem; align-items: flex-start; max-width: 58rem; margin: 2rem auto 0; padding: 1rem 1.2rem; border-radius: 14px; background: rgba(238, 155, 45, .12); border: 1px solid var(--gold-line); color: var(--ink-soft); font-size: .9rem; }
.legal-notice svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.legal-section { max-width: 58rem; margin: 0 auto; padding: clamp(2rem, 5vw, 3rem) 0; border-top: 1px solid var(--line); scroll-margin-top: 84px; }
.legal-section > h2 { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--maroon); }
.legal-section h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: var(--maroon); margin-top: 1.5rem; }
.legal-section p { color: var(--ink-soft); margin-top: .8rem; }
.legal-section ul { padding-left: 1.2rem; margin-top: .6rem; }
.legal-section li { list-style: disc; color: var(--ink-soft); margin-top: .45rem; }
.legal-section a { color: var(--alta); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-updated { font-size: .82rem; color: var(--ink-mute); margin-top: .5rem; }
