/* ============================================================
   ARCHANA VEDA — A Ritual for Body & Soul
   Stylesheet v1.0
   ============================================================ */

:root {
  /* Palette */
  --cream: #F5EFE3;
  --cream-dim: #EDE4D2;
  --sage: #8DA068;
  --sage-deep: #6A7F4F;
  --sage-soft: #B4C29A;
  --charcoal: #1F1F1F;
  --soft: #6B6B6B;
  --soft-2: #999999;
  --kraft: #B39164;
  --white: #FFFDF8;
  --line: rgba(31,31,31,.08);
  --shadow: 0 12px 32px rgba(31,31,31,.06);
  --shadow-hover: 0 18px 48px rgba(31,31,31,.10);

  /* Ritual family colors */
  --glow: #C99A4A;
  --calm: #B5A4C9;
  --heal: #6A7F4F;
  --hydrate: #E8D9B7;
  --hair: #B86A4B;
  --little: #E8B4B4;

  /* Type scale */
  --fs-display: clamp(2.4rem, 6vw, 4.5rem);
  --fs-h1: clamp(2rem, 4.5vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.35rem);
  --fs-body: 1rem;
  --fs-small: .85rem;
  --fs-tiny: .72rem;

  /* Spacing */
  --pad-page: clamp(1rem, 3vw, 2rem);
  --gutter: clamp(.75rem, 2vw, 1.25rem);
  --section-pad-y: clamp(3rem, 8vw, 6rem);

  /* Header */
  --header-h: 72px;
  --header-h-slim: 56px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display { font-weight: 600; letter-spacing: .015em; }
.italic { font-style: italic; }
.upper { text-transform: uppercase; letter-spacing: .12em; }
.tagline { font-style: italic; color: var(--soft); font-size: var(--fs-small); }

/* Serif display face for editorial headlines (homepage, story, journal) */
.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.08;
}
.serif em, .serif i { font-style: italic; font-weight: 400; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; color: var(--charcoal); letter-spacing: .005em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

h2.serif { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 500; }
h1.display.serif { font-size: clamp(3rem, 8vw, 6rem); font-weight: 500; }

p { color: var(--charcoal); }
.lead { font-size: 1.1rem; color: var(--soft); line-height: 1.7; }
.muted { color: var(--soft); }

.devanagari {
  font-family: 'Noto Sans Devanagari', 'Mangal', 'Devanagari Sangam MN', sans-serif;
  font-weight: 500;
  letter-spacing: normal !important;
  font-style: normal !important;
  word-spacing: normal;
  font-feature-settings: "kern" 1, "liga" 1;
}
.eyebrow .devanagari { letter-spacing: .05em !important; }
.pull-tr { font-size: .85rem; color: var(--soft); font-style: normal; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--pad-page); }
.section { padding: var(--section-pad-y) 0; }
.section-tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.divider { height: 1px; background: var(--line); margin: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,239,227,.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: height .35s ease, border-color .35s ease, background .35s ease;
}
.site-header.slim {
  height: var(--header-h-slim);
  border-bottom-color: var(--line);
  background: rgba(245,239,227,.98);
}
.site-header .container {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center;
}
.brand .brand-logo {
  height: 42px; width: auto; transition: height .35s ease;
  max-width: 280px; object-fit: contain;
}
.site-header.slim .brand .brand-logo { height: 32px; }
@media (max-width: 600px) {
  .brand .brand-logo { height: 34px; max-width: 200px; }
  .site-header.slim .brand .brand-logo { height: 28px; }
}

.nav {
  display: flex; align-items: center; gap: 2rem;
  font-size: .9rem;
}
.nav a { color: var(--charcoal); position: relative; padding: .25rem 0; }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--sage); transition: right .3s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a:hover { color: var(--sage-deep); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.icon-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s;
}
.icon-btn:hover { background: rgba(141,160,104,.12); }
.icon-btn svg { width: 22px; height: 22px; stroke: var(--charcoal); }

.tray-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--sage); color: white;
  font-size: .65rem; font-weight: 600;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0); transition: all .25s;
}
.tray-count.show { opacity: 1; transform: scale(1); }

/* Mobile menu */
.menu-toggle { display: none; width: 28px; height: 28px; }
.menu-toggle span {
  display: block; width: 100%; height: 1.5px; background: var(--charcoal);
  margin: 6px 0; transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0;
    padding: 1rem 0; transform: translateY(-20px); opacity: 0;
    pointer-events: none; transition: transform .35s, opacity .35s;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 1rem var(--pad-page); width: 100%; font-size: 1.05rem; }
  .nav a::after { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--header-h) + clamp(4rem, 10vw, 7rem));
  padding-bottom: clamp(4rem, 9vw, 7rem);
  text-align: center;
  position: relative;
}
.hero .eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 2rem; font-weight: 600;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero h1.display {
  margin: 0 auto 2rem;
  max-width: 12em;
  opacity: 0; animation: fadeUp .9s .35s forwards;
}
.hero h1.display.serif {
  font-weight: 500;
  line-height: 1.05;
}
.hero h1.display.serif br + * { display: inline; }
.hero p.lead {
  max-width: 44ch; margin: 0 auto 2.5rem;
  font-size: 1.15rem; color: var(--charcoal); opacity: .82;
  opacity: 0; animation: fadeUp 1s .55s forwards;
}
.hero p.lead { color: var(--charcoal); opacity: 1; }
.hero .cta-row {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s .75s forwards;
}
.hero-mark {
  margin: 0 auto 1.5rem; width: 56px; height: 56px;
  opacity: 0; animation: fadeUp .8s .1s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-size: .9rem; font-weight: 600; letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--charcoal); color: var(--cream); }
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }
.btn-sage { background: var(--sage); color: white; }
.btn-sage:hover { background: var(--sage-deep); }
.btn-whatsapp {
  background: #25D366; color: white;
}
.btn-whatsapp:hover { background: #1ebd5a; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.3); }
.btn-whatsapp svg { width: 18px; height: 18px; }
.btn-ghost { color: var(--sage-deep); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--charcoal); }
.btn-ghost::after {
  content: '→'; margin-left: .4rem; transition: transform .25s;
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* ============================================================
   PURE PROMISE BAR
   ============================================================ */
.promise-bar {
  background: var(--cream-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
}
.promise-bar .container {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1.5rem 2rem;
}
.promise-bar .promise-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 1rem; color: var(--charcoal);
  text-transform: none; letter-spacing: 0;
  margin-right: .5rem;
}
.promise-bar .promise-label::before { content: none; }
.promise-bar div:not(.promise-label) {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft); font-weight: 600;
}
.promise-bar div:not(.promise-label)::before {
  content: '◇'; color: var(--sage); margin-right: .55rem; font-size: .6rem;
}
@media (max-width: 720px) {
  .promise-bar .container { gap: .9rem 1.4rem; }
  .promise-bar .promise-label { width: 100%; text-align: center; margin-right: 0; margin-bottom: .25rem; }
}

/* ============================================================
   RITUAL COLLECTIONS GRID
   ============================================================ */
.section-header {
  text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .eyebrow {
  font-size: .68rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 1rem; font-weight: 600;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600;
  margin-bottom: 1.25rem;
}
.section-header h2.serif { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 500; max-width: 26ch; margin-left: auto; margin-right: auto; line-height: 1.1; }
.section-header p { color: var(--soft); max-width: 52ch; margin: 0 auto; font-size: 1.02rem; line-height: 1.7; }

.rituals-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
@media (max-width: 880px) { .rituals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rituals-grid { grid-template-columns: 1fr; } }
.ritual-card {
  position: relative; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden;
  background: var(--cream-dim);
  cursor: pointer; transition: transform .4s ease;
}
.ritual-card:hover { transform: translateY(-4px); }
.ritual-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
  filter: brightness(.96);
}
.ritual-card:hover img { transform: scale(1.06); }
.ritual-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,31,31,.55) 100%);
}
.ritual-card .meta {
  position: absolute; z-index: 2; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  color: white;
}
.ritual-card .ritual-tag {
  display: inline-block; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px); margin-bottom: .75rem;
}
.ritual-card h3 { color: white; font-size: 1.6rem; margin-bottom: .25rem; }
.ritual-card p { color: rgba(255,255,255,.85); font-size: .85rem; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.product-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid var(--line);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card .pc-img {
  position: relative; aspect-ratio: 1; background: var(--cream-dim);
  overflow: hidden;
}
.product-card .pc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.product-card:hover .pc-img img { transform: scale(1.04); }
.product-card .pc-band {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.product-card .pc-body {
  padding: 1.25rem; display: flex; flex-direction: column; gap: .35rem;
  flex: 1;
}
.product-card .pc-family {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--soft);
}
.product-card h3 {
  font-size: 1.05rem; font-weight: 600;
}
.product-card .pc-sub {
  font-size: .85rem; color: var(--soft); margin-bottom: .75rem;
  font-style: italic;
}
.product-card .pc-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line);
}
.product-card .pc-price {
  font-weight: 600; font-size: 1rem; letter-spacing: .02em;
}
.product-card .pc-add {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.product-card .pc-add:hover { background: var(--sage-deep); transform: rotate(90deg); }
.product-card .pc-add svg { width: 16px; height: 16px; stroke: white; }

/* ============================================================
   FOUNDER SNIPPET
   ============================================================ */
.founder {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
@media (max-width: 840px) { .founder { grid-template-columns: 1fr; } }
.founder .img-box {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px;
  background: var(--cream-dim);
}
.founder .img-box img {
  width: 100%; height: 100%; object-fit: cover;
}
.founder .img-box::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(141,160,104,.15) 100%);
}
.founder .text .eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: .75rem;
}
.founder .text h2 { margin-bottom: 1.5rem; }
.founder .text p { margin-bottom: 1rem; color: var(--charcoal); line-height: 1.75; }
.founder .text .pull {
  font-style: italic; font-size: 1.1rem; color: var(--sage-deep);
  border-left: 2px solid var(--sage); padding-left: 1rem; margin: 1.5rem 0;
}

/* ============================================================
   TESTIMONIALS / WHATSAPP SCREENSHOTS
   ============================================================ */
.testimonials { background: var(--cream-dim); }
.tlist {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tcard {
  background: white; padding: 1.5rem 1.75rem; border-radius: 6px;
  box-shadow: 0 4px 16px rgba(31,31,31,.04);
  border: 1px solid var(--line);
}
.tcard p { font-style: italic; color: var(--charcoal); margin-bottom: 1rem; line-height: 1.65; }
.tcard .who { font-size: .85rem; color: var(--soft); }
.tcard .who::before { content: '— '; }

/* ============================================================
   JOURNAL CARDS
   ============================================================ */
.journal-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.j-card { display: flex; flex-direction: column; }
.j-card .j-img {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 4px;
  background: var(--cream-dim); margin-bottom: 1rem;
}
.j-card .j-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.j-card:hover .j-img img { transform: scale(1.05); }
.j-card .j-meta {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: .5rem;
}
.j-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.j-card p { color: var(--soft); font-size: .9rem; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal); color: rgba(245,239,227,.85);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  margin-top: clamp(4rem, 8vw, 6rem);
}
.site-footer .container {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,239,227,.12);
}
@media (max-width: 800px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .site-footer .container { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--cream); font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 1.25rem; font-weight: 600;
}
.site-footer .f-brand img { height: 36px; margin-bottom: 1rem; filter: invert(1) brightness(2); }
.site-footer .f-brand p { color: rgba(245,239,227,.7); font-size: .85rem; max-width: 30ch; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .75rem; font-size: .9rem; }
.site-footer a { color: rgba(245,239,227,.7); transition: color .2s; }
.site-footer a:hover { color: var(--sage-soft); }
.site-footer .copyright {
  padding-top: 2rem; text-align: center; font-size: .8rem; color: rgba(245,239,227,.5);
}

/* ============================================================
   STICKY MOBILE WHATSAPP BUTTON
   ============================================================ */
.fab-whatsapp {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
  transition: transform .25s ease;
  animation: pulse 4s infinite;
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.0); }
}

/* ============================================================
   MULTI-SELECT TRAY (slides from bottom on mobile, side on desktop)
   ============================================================ */
.tray-backdrop {
  position: fixed; inset: 0; background: rgba(31,31,31,.4);
  opacity: 0; pointer-events: none; transition: opacity .3s;
  z-index: 110;
}
.tray-backdrop.open { opacity: 1; pointer-events: auto; }
.tray {
  position: fixed; z-index: 120;
  background: var(--white); display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
@media (min-width: 700px) {
  .tray {
    top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
    transform: translateX(100%);
    box-shadow: -12px 0 40px rgba(31,31,31,.15);
  }
  .tray.open { transform: translateX(0); }
}
@media (max-width: 699px) {
  .tray {
    left: 0; right: 0; bottom: 0; max-height: 85vh;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -12px 40px rgba(31,31,31,.15);
  }
  .tray.open { transform: translateY(0); }
}
.tray-head {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.tray-head h3 { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; }
.tray-close { width: 32px; height: 32px; border-radius: 50%; }
.tray-close:hover { background: var(--cream-dim); }
.tray-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.tray-item {
  display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.tray-item:last-child { border-bottom: none; }
.tray-item img {
  width: 60px; height: 60px; object-fit: cover; border-radius: 4px;
  background: var(--cream-dim);
}
.tray-item .ti-body { flex: 1; }
.tray-item h4 { font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.tray-item .ti-sub { font-size: .75rem; color: var(--soft); }
.tray-item .ti-remove {
  color: var(--soft-2); font-size: .8rem;
}
.tray-item .ti-remove:hover { color: var(--charcoal); }
.tray-empty {
  padding: 3rem 1.5rem; text-align: center; color: var(--soft);
}
.tray-foot { padding: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .65rem; }
.tray-foot .btn-whatsapp { width: 100%; justify-content: center; }
.btn-tray-continue {
  width: 100%; justify-content: center;
  background: transparent; color: var(--charcoal);
  border: 1px solid var(--line);
  padding: .75rem 1.2rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  transition: background .2s, border-color .2s;
}
.btn-tray-continue:hover { background: var(--cream-dim); border-color: var(--charcoal); }
.tray-foot .small { font-size: .75rem; color: var(--soft); text-align: center; margin-top: .25rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   QUANTITY STEPPER
   ============================================================ */
.qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}
.qty button {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--charcoal);
  transition: background .2s;
}
.qty button:hover { background: var(--cream-dim); }
.qty button:disabled { opacity: .35; cursor: not-allowed; }
.qty .qty-val {
  min-width: 36px; text-align: center;
  font-weight: 600; font-size: .9rem;
  letter-spacing: .02em;
}
.qty-sm { transform: scale(.85); transform-origin: center; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31,31,31,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  padding: 1rem;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  user-select: none;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245,239,227,.18); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(245,239,227,.32);
  transform: scale(1.05);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--cream); font-size: .85rem; letter-spacing: .15em;
  background: rgba(245,239,227,.15); padding: .35rem 1rem; border-radius: 999px;
}
@media (max-width: 600px) {
  .lightbox-prev { left: .5rem; width: 40px; height: 40px; }
  .lightbox-next { right: .5rem; width: 40px; height: 40px; }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pdp { padding-top: calc(var(--header-h) + 2rem); }
.pdp-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: 1rem;
}
@media (max-width: 860px) { .pdp-grid { grid-template-columns: 1fr; } }
.pdp-imgs { display: flex; flex-direction: column; gap: 1rem; }
.pdp-img {
  aspect-ratio: 1; background: var(--cream-dim); border-radius: 6px;
  overflow: hidden; position: relative; cursor: zoom-in;
}
.pdp-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.pdp-img:hover img { transform: scale(1.04); }
.pdp-img .zoom-hint {
  position: absolute; bottom: .75rem; right: .75rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(245,239,227,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.pdp-img:hover .zoom-hint { opacity: 1; }
.pdp-img .zoom-hint svg { width: 18px; height: 18px; stroke: var(--charcoal); }
.pdp-thumbs { display: flex; gap: .75rem; flex-wrap: wrap; }
.pdp-thumbs button {
  width: 70px; height: 70px; border-radius: 4px; overflow: hidden;
  border: 2px solid transparent; transition: border .2s;
  background: var(--cream-dim); padding: 0;
}
.pdp-thumbs button.active { border-color: var(--sage); }
.pdp-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info {}
.pdp-info .family-tag {
  display: inline-block;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: .75rem;
}
.pdp-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.pdp-info .pdp-sub { font-size: 1.05rem; color: var(--soft); font-style: italic; margin-bottom: 1.5rem; }
.pdp-info .pdp-price { font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; }
.pdp-info .pdp-cta { display: flex; gap: .75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.pdp-info .pdp-meta { font-size: .85rem; color: var(--soft); margin-bottom: .75rem; }
.pdp-info .pdp-meta strong { color: var(--charcoal); font-weight: 600; }
.pdp-section { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.pdp-section h3 {
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 1rem;
}
.pdp-section p { color: var(--charcoal); line-height: 1.75; font-size: .95rem; }
.pdp-ingredients { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.pdp-ingredients li {
  font-size: .8rem; padding: .35rem .8rem;
  background: var(--cream-dim); border-radius: 999px;
}
.moms-note {
  background: var(--cream-dim); padding: 1.5rem; border-radius: 6px;
  border-left: 3px solid var(--sage);
  font-style: italic; color: var(--charcoal); line-height: 1.7;
}
.moms-note .label {
  display: block; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sage-deep); font-style: normal; margin-bottom: .5rem;
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
}
.story-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); max-width: 22ch; margin: 0 auto 1rem; }
.story-hero p { color: var(--soft); max-width: 50ch; margin: 0 auto; font-size: 1.1rem; }
.story-body {
  max-width: 64ch; margin: 0 auto; font-size: 1.05rem; line-height: 1.85;
}
.story-body p { margin-bottom: 1.4rem; color: var(--charcoal); }
.story-body .pull {
  font-style: italic; font-size: 1.4rem; color: var(--sage-deep);
  border-left: 2px solid var(--sage); padding: .5rem 0 .5rem 1.5rem;
  margin: 2rem 0;
}
.story-body .hi {
  font-family: 'Noto Sans Devanagari', 'Mangal', sans-serif;
  font-size: 1.2rem; color: var(--sage-deep); font-style: italic;
}

/* ============================================================
   QUIZ PAGE
   ============================================================ */
.quiz {
  padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem;
  max-width: 640px; margin: 0 auto;
}
.quiz-step { display: none; padding: 1rem 0; }
.quiz-step.active { display: block; animation: fadeUp .5s; }
.quiz h2 { font-size: 1.6rem; margin-bottom: 2rem; text-align: center; }
.quiz-options { display: grid; gap: 1rem; }
.quiz-option {
  padding: 1rem 1.25rem; border: 1px solid var(--line); border-radius: 6px;
  background: var(--white); cursor: pointer; text-align: left;
  transition: all .2s; font-size: 1rem;
}
.quiz-option:hover {
  border-color: var(--sage); background: var(--cream-dim);
  transform: translateX(4px);
}
.quiz-progress {
  height: 2px; background: var(--cream-dim); margin-bottom: 2rem; border-radius: 999px;
}
.quiz-progress div {
  height: 100%; background: var(--sage); width: 20%; transition: width .4s;
  border-radius: 999px;
}

/* ============================================================
   GLOSSARY
   ============================================================ */
.glossary-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gloss-card {
  background: white; padding: 1.25rem 1.5rem; border-radius: 6px;
  border: 1px solid var(--line); transition: transform .25s, box-shadow .25s;
}
.gloss-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.gloss-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.gloss-card .hi { font-style: italic; color: var(--sage-deep); font-size: .9rem; margin-bottom: .75rem; display: block; }
.gloss-card p { font-size: .9rem; color: var(--soft); line-height: 1.55; }
.gloss-card .used-in { margin-top: .75rem; font-size: .7rem; color: var(--sage-deep);
  text-transform: uppercase; letter-spacing: .2em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 1.25rem 0;
}
.faq summary {
  cursor: pointer; list-style: none; font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
  padding-right: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.4rem; color: var(--sage-deep); transition: transform .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 1rem; color: var(--soft); line-height: 1.7; font-size: .95rem;
}

/* ============================================================
   FILTERS (Shop page)
   ============================================================ */
.filter-row {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem;
  justify-content: center;
}
.filter-chip {
  padding: .5rem 1.1rem; border: 1px solid var(--line); border-radius: 999px;
  background: transparent; font-size: .85rem; letter-spacing: .05em;
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--sage); }
.filter-chip.active {
  background: var(--charcoal); color: var(--cream); border-color: var(--charcoal);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none; } }
.only-mobile { display: none; }
@media (max-width: 700px) { .only-mobile { display: block; } }

/* Selection color */
::selection { background: var(--sage); color: white; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   FOUNDER PORTRAIT — Story page
   ============================================================ */
.founder-portrait {
  margin: 0 auto 3rem;
  max-width: 520px;
  display: block;
}
.founder-portrait img {
  width: 100%; height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(31,31,31,.10);
}
.founder-portrait figcaption {
  margin-top: 1rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--soft);
  line-height: 1.5;
}

/* Founder snippet (home page) — make the portrait crop nicely */
.founder .img-box {
  aspect-ratio: 4/5;
  background: var(--cream-dim);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.founder .img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Glossary cards — with ingredient image */
.gloss-card {
  padding: 0 0 1.25rem 0;
  overflow: hidden;
}
.gloss-card .gloss-img {
  aspect-ratio: 1;
  background: var(--cream-dim);
  overflow: hidden;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.gloss-card .gloss-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gloss-card:hover .gloss-img img { transform: scale(1.04); }
.gloss-card h3, .gloss-card .hi, .gloss-card p, .gloss-card .used-in {
  padding-left: 1.25rem; padding-right: 1.25rem;
}

/* Kitchen-strip — three brand banners on the home page */
.kitchen-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
@media (max-width: 720px) { .kitchen-strip { grid-template-columns: 1fr; } }
.ks-card {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-dim);
  display: block;
}
.ks-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.ks-card:hover img { transform: scale(1.05); }

/* Rituals overview page — six cards arranged 3×2 desktop, 2×3 tablet, 1 col mobile */
.rituals-grid-overview { grid-template-columns: repeat(3, 1fr); }
.rituals-grid-overview .ritual-card { aspect-ratio: 4/5; }
@media (max-width: 880px) { .rituals-grid-overview { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rituals-grid-overview { grid-template-columns: 1fr; } }

/* ============================================================
   QUANTITY-DISCOUNT TIERS — PDP card + tray ladder
   ============================================================ */
.pdp-tiers {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.1rem 1.1rem;
  background: var(--cream-dim);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.pdp-tiers-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: .75rem;
}
.tiers-eyebrow {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sage-deep); font-weight: 600;
}
.tiers-sub {
  font-size: .8rem; color: var(--sage-deep); font-weight: 600;
}
.tier-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
}
.tier-grid .tier {
  display: flex; flex-direction: column; align-items: center;
  gap: .15rem; padding: .65rem .4rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 6px; cursor: pointer;
  transition: border-color .2s, transform .15s, background .2s;
  font-family: inherit;
}
.tier-grid .tier:hover { border-color: var(--sage-soft); transform: translateY(-1px); }
.tier-grid .tier.active {
  border-color: var(--sage); background: rgba(141,160,104,.08);
  box-shadow: 0 0 0 1px var(--sage) inset;
}
.tier-qty { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
.tier-price { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-top: .1rem; }
.tier-each { font-size: .65rem; color: var(--soft); text-align: center; line-height: 1.25; }
.tier-grid .tier.active .tier-each { color: var(--sage-deep); font-weight: 600; }

@media (max-width: 520px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tray tier progress block */
.tray-tier {
  margin-top: .75rem; padding: .9rem .9rem 1rem;
  background: var(--cream-dim); border-radius: 6px;
}
.tray-tier-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem;
  margin-bottom: .6rem;
}
.tt-step {
  padding: .45rem .3rem; text-align: center;
  font-size: .72rem; font-weight: 600; letter-spacing: .03em;
  background: var(--white); color: var(--soft-2);
  border: 1px solid var(--line); border-radius: 4px;
  transition: all .2s;
}
.tt-step.on {
  background: var(--sage); color: white; border-color: var(--sage);
}
.tray-tier-nudge {
  font-size: .8rem; color: var(--sage-deep); font-weight: 600;
  text-align: center; letter-spacing: .02em;
}

/* Per-item strikethrough when discount applies */
.tray-item .ti-sub .strike {
  text-decoration: line-through;
  color: var(--soft-2);
  font-weight: 400;
  margin-right: .25rem;
}

/* Always-visible totals block at the bottom of the tray body */
.tray-totals {
  margin-top: .75rem;
  padding: .9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.tray-totals .tt-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .9rem;
  padding: .25rem 0;
}
.tray-totals .tt-row.discount {
  color: var(--sage-deep);
  font-weight: 600;
}
.tray-totals .tt-row.grand {
  border-top: 1px solid var(--line);
  margin-top: .35rem;
  padding-top: .65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}
