/* ═══════════════════════════════════════════════════════════
   INDIAN CULTURE — Shared Stylesheet
   Ancient wisdom. Modern ritual.
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --rose:      #C0425A;
  --rose-dk:   #a33450;
  --rose-lt:   #F2C4C4;
  --rose-pale: #FDF0EE;
  --sand:      #E8D5B0;
  --sand-dk:   #C4A87A;
  --cream:     #FAF6EF;
  --cream-2:   #F4ECDD;
  --dark:      #1E1712;
  --herb:      #4A6741;
  --herb-lt:   #8BAA72;
  --herb-pale: #E4EDD8;
  --gold:      #B8842A;
  --gold-lt:   #E8C97A;
  --saffron:   #D87C26;
  --jasmine:   #F4E4B8;

  --serif: 'Playfair Display', serif;
  --sans:  'DM Sans', sans-serif;

  --shadow-sm: 0 4px 12px rgba(30,23,18,0.06);
  --shadow-md: 0 10px 30px rgba(30,23,18,0.08);
  --shadow-lg: 0 20px 60px rgba(30,23,18,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── NOISE TEXTURE OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ── NAV ───────────────────────────────────────────────── */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(250,246,239,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,132,42,0.15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--dark);
}
.nav-logo span { color: var(--rose); font-style: italic; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(30,23,18,0.55); transition: color 0.2s;
  position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a.active { color: var(--dark); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0; height: 1px;
  background: var(--rose);
}
.nav-cta {
  background: var(--rose); color: #fff; border: none;
  padding: 10px 22px; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--rose-dk); }

.nav-toggle {
  display: none; background: none; border: none;
  width: 28px; height: 28px; flex-direction: column;
  justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 22px;
  background: var(--dark); transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  background: var(--rose); color: #fff; border: none;
  padding: 14px 32px; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.25s;
  font-weight: 500;
}
.btn-primary:hover { background: var(--rose-dk); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; border: 1px solid rgba(30,23,18,0.3);
  color: var(--dark); padding: 14px 32px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }
.btn-dark {
  background: var(--dark); color: var(--cream); border: none;
  padding: 14px 32px; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.25s;
}
.btn-dark:hover { background: #2c2018; }

/* ── SECTION UTILITIES ─────────────────────────────────── */
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 14px; display: inline-block;
}
.section-eyebrow.dark { color: var(--gold); }
.section-eyebrow.rose { color: var(--rose); }
.section-eyebrow.herb { color: var(--herb); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px); font-weight: 400;
  line-height: 1.15; color: var(--cream);
}
.section-title em { color: var(--rose-lt); font-style: italic; }
.section-title-dark {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px); font-weight: 400;
  line-height: 1.15; color: var(--dark);
}
.section-title-dark em { color: var(--rose); font-style: italic; }
.section-sub {
  font-size: 15px; font-weight: 300; color: rgba(30,23,18,0.55);
  max-width: 520px; margin: 16px auto 0; line-height: 1.7;
}
.section-sub.light { color: rgba(250,246,239,0.55); }

.section-divider {
  display: flex; align-items: center; gap: 20px;
  padding: 0 48px; margin: 0;
}
.divider-line { flex: 1; height: 1px; background: rgba(30,23,18,0.1); }
.divider-icon { color: var(--rose); font-size: 20px; opacity: 0.5; }

/* ── FADE-UP SCROLL ANIMATION ──────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ═════════════════════════════════════════════════════════
   HOMEPAGE
   ═════════════════════════════════════════════════════════ */
.brand-hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 50%, var(--rose-pale) 100%);
  overflow: hidden;
}
.brand-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.brand-hero-bg::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,66,90,0.10) 0%, transparent 70%);
}
.brand-hero-bg::after {
  content: '';
  position: absolute; bottom: -60px; left: 20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,103,65,0.07) 0%, transparent 70%);
}
.brand-hero-left { position: relative; z-index: 2; max-width: 580px; }
.brand-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,132,42,0.12); border-radius: 20px;
  padding: 6px 16px; margin-bottom: 28px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.brand-hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lt); }
.brand-hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700; line-height: 1.02;
  color: var(--dark); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.brand-hero-title .italic { font-style: italic; font-weight: 400; color: var(--rose); }
.brand-hero-tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px); font-style: italic; font-weight: 400;
  color: var(--sand-dk); margin-bottom: 28px; letter-spacing: 0.01em;
}
.brand-hero-desc {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(30,23,18,0.65); max-width: 480px; margin-bottom: 40px;
}
.brand-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.brand-hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  min-height: 500px;
}
.hero-orbit {
  position: relative; width: 440px; height: 440px;
}
.hero-orbit-ring {
  position: absolute; inset: 0;
  border: 1px dashed rgba(184,132,42,0.3); border-radius: 50%;
  animation: rotate 80s linear infinite;
}
.hero-orbit-ring.inner { inset: 60px; border-color: rgba(192,66,90,0.25); animation-duration: 60s; animation-direction: reverse; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, var(--cream) 0%, var(--rose-pale) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(192,66,90,0.15);
}
.hero-orbit-center-label {
  font-family: var(--serif); font-style: italic;
  color: var(--rose); font-size: 18px;
  text-align: center; line-height: 1.4;
}
.hero-orbit-center-sub {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 8px;
}
.orbit-node {
  position: absolute; width: 64px; height: 64px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(184,132,42,0.15);
}
.orbit-node.n1 { top: 0;        left: 50%; transform: translateX(-50%); }
.orbit-node.n2 { top: 50%;      right: 0;  transform: translateY(-50%); }
.orbit-node.n3 { bottom: 0;     left: 50%; transform: translateX(-50%); }
.orbit-node.n4 { top: 50%;      left: 0;   transform: translateY(-50%); }
.orbit-node.n5 { top: 14%;      right: 14%; }
.orbit-node.n6 { bottom: 14%;   left: 14%; }

/* ── HOMEPAGE PRODUCT GRID ─────────────────────────────── */
.products-section {
  padding: 100px 48px;
  background: var(--cream);
}
.products-header { text-align: center; margin-bottom: 64px; }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(30,23,18,0.06);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-visual {
  height: 260px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card.rose .product-card-visual { background: linear-gradient(160deg, #3D1F28 0%, #6B2A3A 100%); }
.product-card.gold .product-card-visual { background: linear-gradient(160deg, #5A3D14 0%, #B8842A 100%); }
.product-card.herb .product-card-visual { background: linear-gradient(160deg, #2A3D1F 0%, #4A7830 100%); }
.product-card.combo .product-card-visual { background: linear-gradient(160deg, #1E1712 0%, #3D1F28 50%, #5A3D14 100%); }
.product-card-pack {
  width: 110px; height: 170px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding: 18px 12px;
  backdrop-filter: blur(2px);
}
.product-card-pack .icon { font-size: 30px; margin-bottom: 10px; }
.product-card-pack .label {
  font-family: var(--serif); color: #fff;
  font-size: 11px; text-align: center; line-height: 1.3;
  font-weight: 600;
}
.product-card-pack .sub {
  font-size: 8px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px;
}
.product-card-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.95); color: var(--dark);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 20px; font-weight: 500;
}
.product-card-body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.product-card-category {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(30,23,18,0.4); margin-bottom: 10px;
}
.product-card-name {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600; color: var(--dark);
  line-height: 1.3; margin-bottom: 8px;
}
.product-card-desc {
  font-size: 13px; font-weight: 300; line-height: 1.65;
  color: rgba(30,23,18,0.6); margin-bottom: 18px; flex: 1;
}
.product-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(30,23,18,0.06);
}
.product-card-price {
  font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--dark);
}
.product-card-link {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); font-weight: 500; transition: gap 0.2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.product-card:hover .product-card-link { gap: 8px; }

/* Wide horizontal combo card */
.combo-strip {
  max-width: 1200px; margin: 36px auto 0;
}
.combo-strip .product-card {
  display: grid; grid-template-columns: 280px 1fr auto;
  align-items: center; padding: 0; gap: 0;
}
.combo-strip .product-card-visual { height: 200px; }
.combo-strip .product-card-pack { width: 100px; height: 150px; }
.combo-strip .product-card-body { padding: 32px; }
.combo-strip .product-card-body .product-card-desc { margin-bottom: 0; }
.combo-strip-cta { padding: 32px; }

/* ── MOOD / SCENT SELECTOR ─────────────────────────────── */
.mood-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative; overflow: hidden;
}
.mood-section::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,132,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mood-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.mood-header { text-align: center; margin-bottom: 50px; }
.mood-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.mood-tab {
  background: transparent; border: 1px solid rgba(30,23,18,0.15);
  padding: 14px 28px; border-radius: 30px;
  font-family: var(--serif); font-size: 18px;
  color: rgba(30,23,18,0.6); transition: all 0.25s;
  position: relative;
}
.mood-tab::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  margin-right: 10px; vertical-align: middle;
  background: var(--herb-lt);
}
.mood-tab[data-mood="fresh"]::before   { background: var(--herb-lt); }
.mood-tab[data-mood="floral"]::before  { background: var(--rose); }
.mood-tab[data-mood="earthy"]::before  { background: var(--gold); }
.mood-tab[data-mood="citrus"]::before  { background: var(--saffron); }
.mood-tab:hover { color: var(--dark); border-color: rgba(30,23,18,0.3); }
.mood-tab.active {
  background: var(--dark); color: var(--cream); border-color: var(--dark);
}
.mood-panel {
  display: none; opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mood-panel.active { display: grid; opacity: 1; transform: translateY(0); }
.mood-panel {
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  background: #fff; border-radius: 24px;
  padding: 50px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(184,132,42,0.1);
}
.mood-panel-icon {
  font-size: 120px; text-align: center; line-height: 1;
}
.mood-panel-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.mood-panel h3 {
  font-family: var(--serif); font-size: 38px;
  font-weight: 400; line-height: 1.2; margin-bottom: 16px;
}
.mood-panel h3 em { color: var(--rose); font-style: italic; }
.mood-panel p {
  font-size: 14px; line-height: 1.8;
  color: rgba(30,23,18,0.65); font-weight: 300;
  margin-bottom: 24px;
}
.mood-notes {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px;
}
.mood-note {
  background: var(--cream-2); color: var(--dark);
  font-size: 12px; padding: 6px 14px; border-radius: 20px;
  letter-spacing: 0.04em;
}
.mood-products-line {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(30,23,18,0.4); margin-bottom: 10px;
}
.mood-products {
  font-family: var(--serif); font-size: 16px; font-style: italic;
  color: var(--dark);
}

/* ── STORY INTRO STRIP ─────────────────────────────────── */
.story-intro {
  padding: 110px 48px;
  background: var(--dark); color: var(--cream);
  position: relative; overflow: hidden;
}
.story-intro::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 80px,
    rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px
  );
  pointer-events: none;
}
.story-intro-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.story-intro h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2; margin-bottom: 28px;
}
.story-intro h2 em { color: var(--rose-lt); font-style: italic; }
.story-intro p {
  font-size: 16px; font-weight: 300; line-height: 1.9;
  color: rgba(250,246,239,0.7); max-width: 680px; margin: 0 auto 36px;
}
.story-stat-row {
  display: flex; justify-content: center; gap: 0;
  flex-wrap: wrap; margin-top: 56px;
}
.story-stat {
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.story-stat:last-child { border-right: none; }
.story-stat-val {
  font-family: var(--serif); font-size: 44px; font-weight: 700;
  color: var(--cream); line-height: 1;
}
.story-stat-val em { color: var(--rose-lt); font-style: italic; }
.story-stat-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(250,246,239,0.4); margin-top: 10px;
}

/* ── INGREDIENT PREVIEW STRIP ──────────────────────────── */
.ing-preview {
  padding: 100px 48px; background: var(--cream);
}
.ing-preview-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  max-width: 1100px; margin: 0 auto 50px; gap: 30px; flex-wrap: wrap;
}
.ing-preview-header h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.2; max-width: 560px;
}
.ing-preview-header h2 em { color: var(--rose); font-style: italic; }
.ing-preview-link {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
  padding-bottom: 6px; border-bottom: 1px solid var(--rose);
}
.ing-preview-link:hover { gap: 12px; }
.ing-preview-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}

/* ── FOOTER ────────────────────────────────────────────── */
footer.main-footer {
  background: var(--dark); padding: 64px 48px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.foot-logo {
  font-family: var(--serif);
  font-size: 26px; color: var(--cream); font-weight: 700;
}
.foot-logo span { color: var(--rose-lt); font-style: italic; }
.foot-tagline {
  font-size: 13px; color: rgba(250,246,239,0.45);
  margin-top: 8px; margin-bottom: 20px;
  font-style: italic; font-family: var(--serif);
}
.foot-blurb {
  font-size: 13px; color: rgba(250,246,239,0.5);
  line-height: 1.8; font-weight: 300; max-width: 320px;
}
.foot-col h4 {
  font-family: var(--serif);
  font-size: 14px; font-weight: 600; color: var(--cream);
  margin-bottom: 20px; letter-spacing: 0.02em;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a {
  font-size: 13px; color: rgba(250,246,239,0.5);
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--rose-lt); }
.foot-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 30px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.foot-copy { font-size: 12px; color: rgba(250,246,239,0.3); letter-spacing: 0.02em; }
.foot-social { display: flex; gap: 18px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(250,246,239,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(250,246,239,0.55);
  transition: all 0.25s;
}
.foot-social a:hover {
  border-color: var(--rose-lt); color: var(--rose-lt);
  transform: translateY(-2px);
}

/* ═════════════════════════════════════════════════════════
   PRODUCT PAGE (Gulab Chandan)
   ═════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 48px 60px;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 55%, var(--rose-pale) 100%);
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute; right: -80px; top: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,66,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-petals {
  position: absolute; bottom: -40px; left: 30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,103,65,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--herb-pale); border-radius: 20px;
  padding: 6px 16px; margin-bottom: 28px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--herb); font-weight: 500;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--herb-lt); }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700; line-height: 1.08;
  color: var(--dark); margin-bottom: 10px;
}
.hero-title .rose { color: var(--rose); }
.hero-title .italic { font-style: italic; font-weight: 400; }
.hero-subtitle {
  font-family: var(--serif);
  font-size: 22px; font-style: italic; font-weight: 400;
  color: var(--sand-dk); margin-bottom: 24px; letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(30,23,18,0.65); max-width: 420px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stars { display: flex; align-items: center; gap: 8px; margin-top: 24px; }
.stars { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 16px; }
.review-text { font-size: 13px; color: rgba(30,23,18,0.5); }
.review-text strong { color: var(--dark); font-weight: 500; }

.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
}
.product-showcase { position: relative; width: 340px; height: 400px; }
.pack-card {
  position: absolute; border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px 20px;
  box-shadow: 0 20px 60px rgba(30,23,18,0.12);
}
.pack-card.main {
  width: 200px; height: 300px;
  background: linear-gradient(160deg, #3D1F28 0%, #6B2A3A 50%, #3D1F28 100%);
  left: 70px; top: 40px; z-index: 3;
  border: 1px solid rgba(192,66,90,0.3);
}
.pack-card.back {
  width: 190px; height: 285px;
  background: linear-gradient(160deg, #2A3D1F 0%, #3A6B2A 50%, #2A3D1F 100%);
  left: 120px; top: 60px; z-index: 2;
  transform: rotate(6deg);
  border: 1px solid rgba(74,103,65,0.3);
}
.pack-label {
  font-family: var(--serif);
  color: rgba(255,255,255,0.9); text-align: center;
}
.pack-label .brand { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin-bottom: 6px; }
.pack-label .product-name { font-size: 15px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.pack-label .product-sub { font-size: 10px; font-style: italic; opacity: 0.65; }
.pack-circle {
  width: 70px; height: 70px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 28px;
}
.pack-tag {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; border-radius: 20px;
  padding: 6px 16px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; white-space: nowrap; z-index: 4;
}
.floating-badge {
  position: absolute; background: var(--cream);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(30,23,18,0.1);
  border: 1px solid rgba(184,132,42,0.2);
}
.floating-badge.b1 { top: 10px; left: 0; }
.floating-badge.b2 { bottom: 20px; left: -10px; }
.floating-badge .fb-val { font-size: 18px; font-weight: 700; color: var(--dark); font-family: var(--serif); }
.floating-badge .fb-label { font-size: 10px; color: rgba(30,23,18,0.5); letter-spacing: 0.06em; }

/* ── JOURNEY TIMELINE ──────────────────────────────────── */
.journey {
  padding: 100px 48px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.journey::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 80px,
    rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px
  );
  pointer-events: none;
}
.journey-header { text-align: center; margin-bottom: 64px; }
.timeline {
  position: relative;
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rose) 15%, var(--gold) 50%, var(--herb-lt) 85%, transparent);
  transform: translateX(-50%);
}
.timeline-step {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  align-items: center; gap: 0; min-height: 140px;
}
.timeline-step:nth-child(odd) .step-content { grid-column: 1; text-align: right; padding-right: 40px; }
.timeline-step:nth-child(odd) .step-visual { grid-column: 3; padding-left: 40px; }
.timeline-step:nth-child(even) .step-content { grid-column: 3; grid-row: 1; text-align: left; padding-left: 40px; }
.timeline-step:nth-child(even) .step-visual { grid-column: 1; grid-row: 1; padding-right: 40px; text-align: right; }
.step-node {
  grid-column: 2; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.step-dot {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; border: 2px solid;
  background: var(--dark);
}
.step-dot.rose { border-color: var(--rose); }
.step-dot.gold { border-color: var(--gold); }
.step-dot.herb { border-color: var(--herb-lt); }
.step-dot.cream { border-color: var(--cream); }
.step-num {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(250,246,239,0.35); margin-bottom: 8px;
}
.step-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  color: var(--cream); margin-bottom: 10px;
}
.step-body {
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: rgba(250,246,239,0.55); max-width: 300px;
}
.timeline-step:nth-child(odd) .step-body { margin-left: auto; }
.step-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.timeline-step:nth-child(odd) .step-chips { justify-content: flex-end; }
.chip {
  font-size: 11px; padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.06em; font-weight: 400;
}
.chip-rose { background: rgba(192,66,90,0.2); color: var(--rose-lt); }
.chip-gold { background: rgba(184,132,42,0.2); color: var(--gold-lt); }
.chip-herb { background: rgba(74,103,65,0.2); color: var(--herb-pale); }
.step-visual-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 90px; height: 90px; border-radius: 16px;
  font-size: 36px;
}
.step-visual-box.rose-bg { background: rgba(192,66,90,0.12); border: 1px solid rgba(192,66,90,0.2); }
.step-visual-box.gold-bg { background: rgba(184,132,42,0.12); border: 1px solid rgba(184,132,42,0.2); }
.step-visual-box.herb-bg { background: rgba(74,103,65,0.12); border: 1px solid rgba(74,103,65,0.2); }
.step-visual-box.cream-bg { background: rgba(250,246,239,0.08); border: 1px solid rgba(250,246,239,0.15); }

/* ═════════════════════════════════════════════════════════
   SCENE ANIMATIONS — Storytelling visuals on timeline
   ═════════════════════════════════════════════════════════ */
.scene {
  position: relative;
  width: 180px; height: 180px;
  border-radius: 18px;
  overflow: hidden;
  display: inline-block;
}
.scene-rose   { background: radial-gradient(circle at 50% 60%, rgba(192,66,90,0.10), rgba(74,103,65,0.10) 100%); border: 1px solid rgba(192,66,90,0.18); }
.scene-wood   { background: radial-gradient(circle at 50% 60%, rgba(184,132,42,0.14), rgba(61,31,40,0.08) 100%); border: 1px solid rgba(184,132,42,0.22); }
.scene-jar    { background: radial-gradient(circle at 50% 60%, rgba(74,103,65,0.12), rgba(184,132,42,0.10) 100%); border: 1px solid rgba(74,103,65,0.22); }
.scene-glow   { background: radial-gradient(circle at 50% 50%, rgba(250,246,239,0.20), rgba(192,66,90,0.10) 100%); border: 1px solid rgba(250,246,239,0.25); }

/* ── Scene 1: Rose plucking ──────────────────────────── */
.scene-rose .field {
  position: absolute; bottom: 0; left: 0; right: 0; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(74,103,65,0.35));
}
.scene-rose .stem {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 60px;
  background: linear-gradient(180deg, rgba(74,103,65,0.25), rgba(74,103,65,0.7));
}
.scene-rose .leaf {
  position: absolute; bottom: 60px; left: 47%;
  font-size: 12px; opacity: 0.7;
  transform: rotate(-30deg);
}
.scene-rose .rose {
  position: absolute; bottom: 78px; left: 50%; transform: translateX(-50%);
  font-size: 38px;
  filter: drop-shadow(0 4px 10px rgba(192,66,90,0.25));
  animation: rosePluck 5s ease-in-out infinite;
  transform-origin: 50% 100%;
}
@keyframes rosePluck {
  0%, 15%   { transform: translateX(-50%) translateY(0) rotate(0deg); }
  30%       { transform: translateX(-50%) translateY(-4px) rotate(-6deg); }
  45%       { transform: translateX(-30%) translateY(-28px) rotate(18deg) scale(1.05); }
  60%       { transform: translateX(20%)  translateY(-40px) rotate(28deg) scale(1); opacity: 1; }
  72%       { transform: translateX(50%)  translateY(-30px) rotate(35deg) scale(0.9); opacity: 0; }
  73%       { transform: translateX(-50%) translateY(0)     rotate(0deg)  scale(1);   opacity: 0; }
  85%, 100% { transform: translateX(-50%) translateY(0)     rotate(0deg)  scale(1);   opacity: 1; }
}
.scene-rose .petal {
  position: absolute; left: 50%; bottom: 100px;
  font-size: 11px; opacity: 0; color: var(--rose);
  animation: petalFall 5s ease-in infinite;
}
.scene-rose .petal.p1 { animation-delay: 0.6s; }
.scene-rose .petal.p2 { animation-delay: 1.7s; left: 44%; }
.scene-rose .petal.p3 { animation-delay: 2.8s; left: 56%; }
@keyframes petalFall {
  0%, 38%  { opacity: 0; transform: translateY(0) translateX(0) rotate(0); }
  45%      { opacity: 0.9; transform: translateY(6px) translateX(-4px) rotate(40deg); }
  85%      { opacity: 0.4; transform: translateY(60px) translateX(10px) rotate(220deg); }
  100%     { opacity: 0; transform: translateY(78px) translateX(14px) rotate(360deg); }
}
.scene-rose .hand {
  position: absolute; top: 38px; right: -30px;
  font-size: 22px; opacity: 0;
  animation: handReach 5s ease-in-out infinite;
}
@keyframes handReach {
  0%, 22%  { transform: translateX(0) rotate(-20deg); opacity: 0; }
  35%      { transform: translateX(-44px) rotate(-30deg); opacity: 0.9; }
  55%      { transform: translateX(-50px) rotate(-10deg); opacity: 0.9; }
  72%      { transform: translateX(-10px) rotate(-20deg); opacity: 0; }
  100%     { transform: translateX(0) rotate(-20deg); opacity: 0; }
}

/* ── Scene 2: Sandalwood crushing ─────────────────────── */
.scene-wood .mortar {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 36px;
  background: linear-gradient(180deg, #6B4423, #3D1F28);
  border-radius: 0 0 50px 50px / 0 0 30px 30px;
  box-shadow: inset 0 8px 12px rgba(0,0,0,0.3);
}
.scene-wood .log {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  font-size: 36px;
  animation: woodCrush 2.5s ease-in-out infinite;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 4px 8px rgba(184,132,42,0.3));
}
@keyframes woodCrush {
  0%, 100% { transform: translateX(-50%) translateY(0)  rotate(0deg); }
  25%      { transform: translateX(-50%) translateY(20px) rotate(-2deg); }
  50%      { transform: translateX(-50%) translateY(2px)  rotate(2deg); }
  75%      { transform: translateX(-50%) translateY(18px) rotate(-1deg); }
}
.scene-wood .dust {
  position: absolute; bottom: 50px; left: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-lt); opacity: 0;
  animation: dustPuff 2.5s ease-out infinite;
}
.scene-wood .dust.d1 { animation-delay: 0.0s; }
.scene-wood .dust.d2 { animation-delay: 0.4s; left: 38%; }
.scene-wood .dust.d3 { animation-delay: 0.8s; left: 62%; }
.scene-wood .dust.d4 { animation-delay: 1.2s; left: 42%; }
.scene-wood .dust.d5 { animation-delay: 1.6s; left: 58%; }
@keyframes dustPuff {
  0%  { opacity: 0;   transform: translateY(0)   scale(0.4); }
  25% { opacity: 0.9; transform: translateY(-8px) scale(1); }
  70% { opacity: 0.5; transform: translateY(-32px) scale(0.8); }
  100%{ opacity: 0;   transform: translateY(-48px) scale(0.3); }
}
.scene-wood .powder {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 0;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  animation: powderFill 5s ease-out infinite;
  opacity: 0.85;
}
@keyframes powderFill {
  0%, 5% { height: 0; }
  90%    { height: 14px; }
  100%   { height: 0; }
}

/* ── Scene 3: Blending into jar ───────────────────────── */
.scene-jar .ingredient {
  position: absolute; top: -22px; font-size: 22px;
  opacity: 0;
  animation: dropIn 4.2s ease-in infinite;
}
.scene-jar .ingredient.i1 { left: 36%; animation-delay: 0s; }
.scene-jar .ingredient.i2 { left: 50%; animation-delay: 0.6s; }
.scene-jar .ingredient.i3 { left: 64%; animation-delay: 1.2s; }
.scene-jar .ingredient.i4 { left: 44%; animation-delay: 1.8s; }
.scene-jar .ingredient.i5 { left: 56%; animation-delay: 2.4s; }
@keyframes dropIn {
  0%   { opacity: 0; transform: translateY(0)   rotate(0deg)   scale(1); }
  10%  { opacity: 1; }
  55%  { opacity: 1; transform: translateY(115px) rotate(200deg) scale(0.7); }
  60%  { opacity: 0; transform: translateY(120px) rotate(220deg) scale(0.5); }
  100% { opacity: 0; }
}
.scene-jar .jar {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 88px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(74,103,65,0.25));
  border: 2px solid rgba(74,103,65,0.55);
  border-radius: 6px 6px 22px 22px;
  overflow: hidden;
}
.scene-jar .jar::before {
  content: '';
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 8px;
  background: linear-gradient(180deg, var(--gold), #8B6020);
  border-radius: 4px 4px 0 0;
  animation: capSeal 4.2s ease-in infinite;
  transform-origin: 50% 100%;
}
@keyframes capSeal {
  0%, 85%   { transform: translateX(-50%) translateY(-22px) rotate(8deg); opacity: 0.6; }
  95%, 100% { transform: translateX(-50%) translateY(0)     rotate(0deg); opacity: 1; }
}
.scene-jar .jar-fill {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(192,66,90,0.6), rgba(184,132,42,0.6));
  animation: jarFill 4.2s ease-in infinite;
}
@keyframes jarFill {
  0%   { height: 0; }
  85%  { height: 70%; }
  100% { height: 70%; }
}
.scene-jar .label {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 8px; letter-spacing: 0.1em; color: var(--cream);
  font-family: var(--serif); font-weight: 600;
  z-index: 2; text-transform: uppercase; opacity: 0.85;
}

/* ── Scene 4: Skin transformation ─────────────────────── */
.scene-glow .face {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  filter: drop-shadow(0 6px 14px rgba(30,23,18,0.2));
}
.scene-glow .face.before {
  animation: faceBefore 5s ease-in-out infinite;
}
.scene-glow .face.after {
  animation: faceAfter 5s ease-in-out infinite;
  opacity: 0;
}
@keyframes faceBefore {
  0%, 38% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  45%     { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
  100%    { opacity: 0; }
}
@keyframes faceAfter {
  0%, 38% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  50%     { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  85%     { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
  92%     { opacity: 0; transform: translate(-50%, -50%) scale(1); }
  100%    { opacity: 0; }
}
.scene-glow .pimple {
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); opacity: 0;
  animation: pimpleShow 5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(192,66,90,0.4);
}
.scene-glow .pimple.pm1 { top: 60px; left: 56px; }
.scene-glow .pimple.pm2 { top: 86px; left: 110px; }
.scene-glow .pimple.pm3 { top: 100px; left: 70px; }
@keyframes pimpleShow {
  0%, 38% { opacity: 0.9; }
  45%, 100% { opacity: 0; }
}
.scene-glow .mask {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,103,65,0.0) 0%, rgba(74,103,65,0.55) 70%);
  opacity: 0;
  animation: maskOn 5s ease-in-out infinite;
}
@keyframes maskOn {
  0%, 38%  { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  42%      { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  48%      { opacity: 0; transform: translate(-50%, -50%) scale(1.05); }
  100%     { opacity: 0; }
}
.scene-glow .sparkle {
  position: absolute;
  font-size: 16px; opacity: 0; color: var(--gold-lt);
  animation: sparkle 5s ease-in-out infinite;
}
.scene-glow .sparkle.s1 { top: 28px; left: 36px;  animation-delay: 0.0s; }
.scene-glow .sparkle.s2 { top: 30px; right: 30px; animation-delay: 0.2s; }
.scene-glow .sparkle.s3 { bottom: 26px; left: 52px;  animation-delay: 0.4s; }
.scene-glow .sparkle.s4 { bottom: 28px; right: 44px; animation-delay: 0.1s; }
@keyframes sparkle {
  0%, 52% { opacity: 0; transform: scale(0.4); }
  60%     { opacity: 1; transform: scale(1.2) rotate(20deg); }
  80%     { opacity: 0.6; transform: scale(1) rotate(0deg); }
  92%, 100% { opacity: 0; transform: scale(0.4); }
}

/* ── Scene 5: Ubtan bowl mixing ──────────────────────── */
.scene-bowl   { background: radial-gradient(circle at 50% 60%, rgba(216,124,38,0.15), rgba(184,132,42,0.05) 100%); border: 1px solid rgba(184,132,42,0.25); }
.scene-bowl .bowl {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 52px;
  background: linear-gradient(180deg, #8B6020 0%, #3D1F28 100%);
  border-radius: 0 0 60px 60px / 0 0 50px 50px;
  box-shadow: inset 0 6px 10px rgba(0,0,0,0.35);
  overflow: hidden;
}
.scene-bowl .bowl::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  animation: bowlFill 4s ease-out infinite;
}
@keyframes bowlFill {
  0%, 8% { height: 0; }
  85%    { height: 52%; }
  100%   { height: 0; }
}
.scene-bowl .drop {
  position: absolute; top: 14px; font-size: 18px; opacity: 0;
  animation: bowlDrop 4s ease-in infinite;
}
.scene-bowl .drop.b1 { left: 32%; animation-delay: 0s; }
.scene-bowl .drop.b2 { left: 50%; animation-delay: 0.55s; }
.scene-bowl .drop.b3 { left: 68%; animation-delay: 1.1s;  }
.scene-bowl .drop.b4 { left: 42%; animation-delay: 1.65s; }
.scene-bowl .drop.b5 { left: 58%; animation-delay: 2.2s;  }
@keyframes bowlDrop {
  0%   { opacity: 0; transform: translateY(0)   rotate(0deg)   scale(1); }
  15%  { opacity: 1; }
  62%  { opacity: 1; transform: translateY(112px) rotate(360deg) scale(0.7); }
  68%  { opacity: 0; }
  100% { opacity: 0; }
}
.scene-bowl .stir {
  position: absolute; bottom: 46px; left: 50%;
  font-size: 22px; opacity: 0; transform-origin: 50% 90%;
  animation: stirMix 4s ease-in-out infinite;
}
@keyframes stirMix {
  0%, 72% { opacity: 0; transform: translateX(-50%) rotate(0deg); }
  78%     { opacity: 0.95; transform: translateX(-50%) rotate(-25deg); }
  85%     { transform: translateX(-50%) rotate(22deg); }
  92%     { transform: translateX(-50%) rotate(-15deg); }
  98%     { transform: translateX(-50%) rotate(0deg); }
  100%    { opacity: 0; }
}

/* ── Scene 6: Foamy lather ───────────────────────────── */
.scene-lather { background: radial-gradient(circle at 50% 60%, rgba(192,66,90,0.10), rgba(192,66,90,0.03)); border: 1px solid rgba(192,66,90,0.18); }
.scene-lather .face {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 54px;
  filter: drop-shadow(0 4px 8px rgba(192,66,90,0.2));
}
.scene-lather .bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(242,196,196,0.55));
  border: 1px solid rgba(255,255,255,0.4);
  opacity: 0;
  animation: bubbleRise 3.2s ease-out infinite;
}
.scene-lather .bubble.bb1 { width: 14px; height: 14px; left: 20px;  bottom: 30px; animation-delay: 0.0s; }
.scene-lather .bubble.bb2 { width: 20px; height: 20px; left: 46px;  bottom: 20px; animation-delay: 0.3s; }
.scene-lather .bubble.bb3 { width: 12px; height: 12px; right: 34px; bottom: 26px; animation-delay: 0.6s; }
.scene-lather .bubble.bb4 { width: 16px; height: 16px; right: 22px; bottom: 38px; animation-delay: 0.9s; }
.scene-lather .bubble.bb5 { width: 10px; height: 10px; left: 78px;  bottom: 28px; animation-delay: 1.2s; }
.scene-lather .bubble.bb6 { width: 18px; height: 18px; left: 30px;  bottom: 22px; animation-delay: 1.5s; }
.scene-lather .bubble.bb7 { width: 14px; height: 14px; right: 50px; bottom: 28px; animation-delay: 1.8s; }
.scene-lather .bubble.bb8 { width: 11px; height: 11px; left: 95px;  bottom: 34px; animation-delay: 2.1s; }
@keyframes bubbleRise {
  0%   { opacity: 0;    transform: translateY(0)    scale(0.3); }
  20%  { opacity: 0.95; transform: translateY(-12px) scale(1); }
  90%  { opacity: 0.25; transform: translateY(-95px) scale(0.7); }
  100% { opacity: 0;    transform: translateY(-110px) scale(0.5); }
}

/* ── Scene 7: Cooling splash ─────────────────────────── */
.scene-splash { background: radial-gradient(circle at 50% 50%, rgba(139,170,114,0.16), rgba(74,103,65,0.08)); border: 1px solid rgba(74,103,65,0.20); }
.scene-splash .face {
  position: absolute; top: 50%; left: 50%;
  font-size: 54px;
  filter: drop-shadow(0 4px 10px rgba(74,103,65,0.25));
  animation: faceFresh 1.2s ease-in-out infinite alternate;
}
@keyframes faceFresh {
  0%   { transform: translate(-50%, -50%) translateX(-3px); }
  100% { transform: translate(-50%, -50%) translateX(3px); }
}
.scene-splash .drop {
  position: absolute; left: 50%; top: 50%;
  width: 9px; height: 9px;
  background: radial-gradient(circle at 40% 30%, #d8eaf5, #6a9bc3);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0;
}
.scene-splash .drop.d1 { animation: splash1 1.6s ease-out infinite 0.00s; }
.scene-splash .drop.d2 { animation: splash2 1.6s ease-out infinite 0.10s; }
.scene-splash .drop.d3 { animation: splash3 1.6s ease-out infinite 0.20s; }
.scene-splash .drop.d4 { animation: splash4 1.6s ease-out infinite 0.05s; }
.scene-splash .drop.d5 { animation: splash5 1.6s ease-out infinite 0.15s; }
.scene-splash .drop.d6 { animation: splash6 1.6s ease-out infinite 0.00s; }
.scene-splash .drop.d7 { animation: splash7 1.6s ease-out infinite 0.25s; }
.scene-splash .drop.d8 { animation: splash8 1.6s ease-out infinite 0.10s; }
@keyframes splash1 { 0%,5%{opacity:0;transform:translate(-50%,-50%) scale(0);} 25%{opacity:1;transform:translate(-50%,-50%) scale(1.2);} 100%{opacity:0;transform:translate(-50%,-50%) translate(-58px,-52px) scale(0.5);} }
@keyframes splash2 { 0%,5%{opacity:0;transform:translate(-50%,-50%) scale(0);} 25%{opacity:1;transform:translate(-50%,-50%) scale(1.2);} 100%{opacity:0;transform:translate(-50%,-50%) translate( 58px,-52px) scale(0.5);} }
@keyframes splash3 { 0%,5%{opacity:0;transform:translate(-50%,-50%) scale(0);} 25%{opacity:1;transform:translate(-50%,-50%) scale(1.2);} 100%{opacity:0;transform:translate(-50%,-50%) translate(-70px,  0px) scale(0.5);} }
@keyframes splash4 { 0%,5%{opacity:0;transform:translate(-50%,-50%) scale(0);} 25%{opacity:1;transform:translate(-50%,-50%) scale(1.2);} 100%{opacity:0;transform:translate(-50%,-50%) translate( 70px,  0px) scale(0.5);} }
@keyframes splash5 { 0%,5%{opacity:0;transform:translate(-50%,-50%) scale(0);} 25%{opacity:1;transform:translate(-50%,-50%) scale(1.2);} 100%{opacity:0;transform:translate(-50%,-50%) translate(-48px, 52px) scale(0.5);} }
@keyframes splash6 { 0%,5%{opacity:0;transform:translate(-50%,-50%) scale(0);} 25%{opacity:1;transform:translate(-50%,-50%) scale(1.2);} 100%{opacity:0;transform:translate(-50%,-50%) translate( 48px, 52px) scale(0.5);} }
@keyframes splash7 { 0%,5%{opacity:0;transform:translate(-50%,-50%) scale(0);} 25%{opacity:1;transform:translate(-50%,-50%) scale(1.2);} 100%{opacity:0;transform:translate(-50%,-50%) translate(  0px,-68px) scale(0.5);} }
@keyframes splash8 { 0%,5%{opacity:0;transform:translate(-50%,-50%) scale(0);} 25%{opacity:1;transform:translate(-50%,-50%) scale(1.2);} 100%{opacity:0;transform:translate(-50%,-50%) translate(  0px, 68px) scale(0.5);} }
.scene-splash .mint {
  position: absolute; font-size: 16px; opacity: 0.7;
}
.scene-splash .mint.m1 { top: 14px;    left: 18px;  transform: rotate(-22deg); }
.scene-splash .mint.m2 { bottom: 14px; right: 16px; transform: rotate(155deg); }
.scene-splash .mint.m3 { top: 18px;    right: 22px; transform: rotate(35deg); }

/* ── Scene 8: Saffron in milk ────────────────────────── */
.scene-saffron { background: radial-gradient(circle at 50% 70%, rgba(255,237,208,0.45), rgba(216,124,38,0.10) 100%); border: 1px solid rgba(216,124,38,0.25); }
.scene-saffron .crocus {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  font-size: 32px;
  animation: crocusBloom 5s ease-in-out infinite;
  filter: drop-shadow(0 3px 8px rgba(155, 85, 165, 0.3));
}
@keyframes crocusBloom {
  0%, 25%  { transform: translateX(-50%) scale(1) rotate(0deg); }
  40%      { transform: translateX(-50%) scale(1.12) rotate(-4deg); }
  55%, 100%{ transform: translateX(-50%) scale(1) rotate(0deg); }
}
.scene-saffron .thread {
  position: absolute; top: 54px;
  width: 2px; height: 18px;
  background: linear-gradient(180deg, #c8421a, #d87c26);
  border-radius: 1px; opacity: 0;
  transform-origin: 50% 0%;
  animation: threadFall 5s ease-in infinite;
}
.scene-saffron .thread.t1 { left: 42%; animation-delay: 1.0s; }
.scene-saffron .thread.t2 { left: 50%; animation-delay: 1.4s; }
.scene-saffron .thread.t3 { left: 58%; animation-delay: 1.8s; }
@keyframes threadFall {
  0%, 22% { opacity: 0; transform: translateY(0)   rotate(0deg); }
  30%     { opacity: 1; transform: translateY(0)   rotate(0deg); }
  62%     { opacity: 1; transform: translateY(72px) rotate(15deg); }
  70%     { opacity: 0; }
  100%    { opacity: 0; }
}
.scene-saffron .milk {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 54px;
  background: radial-gradient(ellipse at 50% 30%, #ffffff, #f4ecdd);
  border-radius: 50%;
  border: 2px solid rgba(74,103,65,0.35);
  overflow: hidden;
  box-shadow: inset 0 6px 8px rgba(0,0,0,0.08);
}
.scene-saffron .milk::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 10%, rgba(216,124,38,0.45) 60%, rgba(184,132,42,0.85) 100%);
  opacity: 0;
  animation: milkGolden 5s ease-in infinite;
}
@keyframes milkGolden {
  0%, 30% { opacity: 0; }
  72%     { opacity: 0.92; }
  100%    { opacity: 0; }
}
.scene-saffron .swirl {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  font-size: 16px; opacity: 0;
  animation: swirl 5s ease-in infinite;
}
@keyframes swirl {
  0%, 45% { opacity: 0; transform: translateX(-50%) rotate(0deg); }
  60%     { opacity: 0.85; transform: translateX(-50%) rotate(180deg); }
  80%     { opacity: 0.5; transform: translateX(-50%) rotate(360deg); }
  100%    { opacity: 0; }
}

/* Pause animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scene * { animation: none !important; }
}

/* ── INGREDIENTS GRID ──────────────────────────────────── */
.ingredients {
  padding: 100px 48px;
  background: var(--cream);
}
.ingredients-header { text-align: center; margin-bottom: 60px; }
.ingredients-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.ingredient-card {
  background: #fff;
  border: 1px solid rgba(30,23,18,0.08);
  border-radius: 20px; padding: 32px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30,23,18,0.1);
}
.ingredient-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 20px 20px 0 0;
}
.card-rose::before { background: linear-gradient(90deg, var(--rose), var(--rose-lt)); }
.card-herb::before { background: linear-gradient(90deg, var(--herb), var(--herb-lt)); }
.card-gold::before { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.ing-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.ing-origin {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(30,23,18,0.35); margin-bottom: 8px;
}
.ing-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 12px;
}
.ing-name .hindi { font-size: 14px; font-weight: 400; font-style: italic; color: rgba(30,23,18,0.45); display: block; margin-top: 2px; }
.ing-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(30,23,18,0.6); margin-bottom: 16px; }
.ing-benefits { display: flex; flex-wrap: wrap; gap: 6px; }
.ing-benefit {
  font-size: 11px; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em;
}
.benefit-rose { background: var(--rose-pale); color: var(--rose); }
.benefit-herb { background: var(--herb-pale); color: var(--herb); }
.benefit-gold { background: rgba(232,201,122,0.25); color: var(--gold); }

/* ── BENEFITS ──────────────────────────────────────────── */
.benefits {
  padding: 100px 48px;
  background: var(--rose-pale);
  position: relative; overflow: hidden;
}
.benefits::after {
  content: '';
  position: absolute; right: -100px; bottom: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,66,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.benefits-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.benefits-header { text-align: center; margin-bottom: 56px; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.benefit-card {
  background: #fff; border-radius: 16px;
  padding: 28px 20px; text-align: center;
  border: 1px solid rgba(192,66,90,0.1);
  transition: transform 0.25s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 28px;
}
.b-rose { background: rgba(192,66,90,0.1); }
.b-herb { background: rgba(74,103,65,0.1); }
.b-gold { background: rgba(184,132,42,0.1); }
.b-sand { background: rgba(196,168,122,0.15); }
.benefit-title {
  font-family: var(--serif);
  font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 10px;
}
.benefit-desc { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(30,23,18,0.6); }

/* ── HOW TO USE (compact) ─────────────────────────────── */
.howto {
  padding: 100px 48px;
  background: var(--herb-pale);
}
.howto-inner { max-width: 1000px; margin: 0 auto; }
.howto-header { text-align: center; margin-bottom: 56px; }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.steps-row::before {
  content: '';
  position: absolute; top: 36px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--herb-lt) 0, var(--herb-lt) 8px, transparent 8px, transparent 16px);
}
.how-step { text-align: center; padding: 0 12px; }
.how-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--herb); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  margin: 0 auto 20px; position: relative; z-index: 2;
  border: 4px solid var(--herb-pale);
}
.how-title { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.how-desc { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(30,23,18,0.6); }

/* ── RESULTS STRIP ─────────────────────────────────────── */
.results-strip {
  background: var(--dark);
  padding: 50px 48px;
  display: flex; align-items: center; justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.result-item {
  text-align: center; padding: 20px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.result-item:last-child { border-right: none; }
.result-val {
  font-family: var(--serif);
  font-size: 48px; font-weight: 700; color: var(--cream);
  line-height: 1;
}
.result-val sup { font-size: 24px; vertical-align: top; margin-top: 10px; display: inline-block; }
.result-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,239,0.45); margin-top: 8px; }

/* ── PACK INFO / BUY ───────────────────────────────────── */
.pack-info {
  padding: 100px 48px;
  background: var(--cream);
}
.pack-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.pack-visual {
  display: flex; gap: 20px; align-items: flex-end; justify-content: center;
}
.pack-3d {
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 18px;
  position: relative;
}
.pack-3d.p1 {
  width: 140px; height: 200px;
  background: linear-gradient(160deg, #3D1F28 0%, #7A3048 100%);
  box-shadow: 8px 16px 40px rgba(61,31,40,0.35);
  border: 1px solid rgba(192,66,90,0.25);
}
.pack-3d.p2 {
  width: 140px; height: 200px;
  background: linear-gradient(160deg, #2A3D1F 0%, #4A7830 100%);
  box-shadow: 8px 16px 40px rgba(42,61,31,0.35);
  border: 1px solid rgba(74,103,65,0.25);
}
.pack-3d-label {
  font-family: var(--serif);
  color: rgba(255,255,255,0.85); text-align: center;
}
.pack-3d-label .b { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; margin-bottom: 8px; }
.pack-3d-label .n { font-size: 13px; font-weight: 600; line-height: 1.4; }
.pack-3d-label .s { font-size: 9px; font-style: italic; opacity: 0.5; margin-top: 4px; }
.pack-3d-circle {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.pack-of-2 {
  position: absolute; top: -14px; right: -14px;
  background: var(--gold); color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; letter-spacing: 0.04em; text-align: center;
  line-height: 1.2; border: 2px solid var(--cream);
}
.pack-details h2 {
  font-family: var(--serif);
  font-size: 36px; font-weight: 400; color: var(--dark);
  margin-bottom: 16px; line-height: 1.2;
}
.pack-details h2 em { color: var(--rose); font-style: italic; }
.pack-details p {
  font-size: 14px; font-weight: 300; line-height: 1.8;
  color: rgba(30,23,18,0.6); margin-bottom: 24px;
}
.pack-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pack-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 300; color: rgba(30,23,18,0.7);
}
.feat-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--herb-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px; color: var(--herb); font-weight: 700; margin-top: 1px;
}
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.price-main {
  font-family: var(--serif);
  font-size: 38px; font-weight: 700; color: var(--dark);
}
.price-per { font-size: 14px; color: rgba(30,23,18,0.45); }
.price-badge {
  background: rgba(74,103,65,0.12); color: var(--herb);
  font-size: 12px; padding: 4px 12px; border-radius: 20px; font-weight: 500;
}

/* ═════════════════════════════════════════════════════════
   INGREDIENTS PAGE
   ═════════════════════════════════════════════════════════ */
.page-hero {
  padding: 160px 48px 90px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-pale) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,66,90,0.08), transparent 70%);
  pointer-events: none;
}
.page-hero::before { width: 500px; height: 500px; right: -100px; top: -100px; }
.page-hero::after  { width: 400px; height: 400px; left: -100px; bottom: -100px; background: radial-gradient(circle, rgba(74,103,65,0.07), transparent 70%); }
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px); font-weight: 700;
  line-height: 1.05; margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.page-hero h1 em { color: var(--rose); font-style: italic; font-weight: 400; }
.page-hero-lead {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2vw, 24px); color: var(--sand-dk);
  margin-bottom: 24px;
}
.page-hero p {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: rgba(30,23,18,0.6); max-width: 560px; margin: 0 auto;
}

.ing-detail-section {
  padding: 100px 48px;
  background: var(--cream);
}
.ing-detail-list {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 100px;
}
.ing-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
  align-items: center;
}
.ing-detail:nth-child(even) .ing-detail-visual { order: 2; }
.ing-detail-visual {
  position: relative; aspect-ratio: 1; max-width: 440px;
  border-radius: 32px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ing-detail-visual.rose-v { background: radial-gradient(circle at 30% 30%, var(--rose-pale), var(--rose-lt) 100%); }
.ing-detail-visual.gold-v { background: radial-gradient(circle at 30% 30%, var(--jasmine), var(--gold-lt) 100%); }
.ing-detail-visual.herb-v { background: radial-gradient(circle at 30% 30%, var(--herb-pale), var(--herb-lt) 100%); }
.ing-detail-visual.saffron-v { background: radial-gradient(circle at 30% 30%, #FFEDD0, var(--saffron) 100%); }
.ing-detail-visual.sand-v { background: radial-gradient(circle at 30% 30%, var(--cream-2), var(--sand) 100%); }
.ing-detail-emoji {
  font-size: 180px;
  filter: drop-shadow(0 20px 40px rgba(30,23,18,0.15));
}
.ing-detail-tag {
  position: absolute; top: 24px; left: 24px;
  background: rgba(30,23,18,0.85); color: var(--cream);
  padding: 8px 16px; border-radius: 20px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.ing-detail-content h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px); font-weight: 700;
  line-height: 1.1; color: var(--dark); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ing-detail-content h2 .latin {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 18px; color: var(--sand-dk); margin-top: 8px;
  letter-spacing: 0;
}
.ing-detail-origin {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 500;
}
.ing-detail-lead {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--rose); line-height: 1.4;
  margin-bottom: 22px;
}
.ing-detail-body {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(30,23,18,0.7); margin-bottom: 26px;
}
.ing-detail-ayurveda {
  background: rgba(74,103,65,0.06);
  border-left: 3px solid var(--herb);
  padding: 16px 22px; border-radius: 0 8px 8px 0;
  margin-bottom: 26px;
}
.ing-detail-ayurveda .label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--herb); font-weight: 600; margin-bottom: 6px;
}
.ing-detail-ayurveda p {
  font-size: 13px; font-style: italic; font-family: var(--serif);
  color: rgba(30,23,18,0.7); line-height: 1.6;
}
.ing-detail-benefits {
  display: flex; flex-wrap: wrap; gap: 8px;
}

/* ── INGREDIENT EXPAND CARD (homepage strip) ───────────── */
.ing-mini {
  background: #fff;
  border: 1px solid rgba(30,23,18,0.06);
  border-radius: 18px; padding: 26px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.ing-mini:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(192,66,90,0.2);
}
.ing-mini-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.ing-mini-name {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--dark); margin-bottom: 4px;
}
.ing-mini-latin {
  font-family: var(--serif); font-style: italic; font-size: 12px;
  color: rgba(30,23,18,0.45); margin-bottom: 12px;
}
.ing-mini-line {
  font-size: 12px; font-weight: 300; color: rgba(30,23,18,0.6); line-height: 1.6;
}

/* ═════════════════════════════════════════════════════════
   RITUAL PAGE
   ═════════════════════════════════════════════════════════ */
.ritual-hero {
  padding: 160px 48px 100px;
  background: linear-gradient(180deg, var(--herb-pale) 0%, var(--cream) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.ritual-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.ritual-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px); font-weight: 700;
  line-height: 1.05; color: var(--dark); margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.ritual-hero h1 em { color: var(--herb); font-style: italic; font-weight: 400; }
.ritual-hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--sand-dk); margin-bottom: 22px;
}
.ritual-hero p {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: rgba(30,23,18,0.6); max-width: 560px; margin: 0 auto;
}

.mood-pick {
  padding: 100px 48px;
  background: var(--cream);
}
.mood-pick-inner { max-width: 1100px; margin: 0 auto; }
.mood-pick-header { text-align: center; margin-bottom: 60px; }
.mood-pick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.mood-pick-card {
  background: #fff; border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(30,23,18,0.06);
  transition: all 0.3s ease; position: relative;
  overflow: hidden;
}
.mood-pick-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
}
.mood-pick-card.morning::before { background: linear-gradient(90deg, var(--saffron), var(--gold-lt)); }
.mood-pick-card.midday::before  { background: linear-gradient(90deg, var(--rose), var(--rose-lt)); }
.mood-pick-card.evening::before { background: linear-gradient(90deg, var(--herb), var(--herb-lt)); }
.mood-pick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mood-pick-time {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(30,23,18,0.4); margin-bottom: 12px;
}
.mood-pick-card h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  color: var(--dark); margin-bottom: 14px;
  line-height: 1.2;
}
.mood-pick-card h3 em { color: var(--rose); font-style: italic; }
.mood-pick-card p {
  font-size: 14px; line-height: 1.75; font-weight: 300;
  color: rgba(30,23,18,0.6); margin-bottom: 20px;
}
.mood-pick-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.mood-pick-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(30,23,18,0.08); padding-top: 18px;
}
.mood-pick-list li {
  font-size: 13px; color: rgba(30,23,18,0.7);
  display: flex; align-items: center; gap: 10px;
}
.mood-pick-list li::before {
  content: '·'; color: var(--rose); font-size: 24px; line-height: 0;
}

/* ── DETAILED RITUAL STEPS ─────────────────────────────── */
.ritual-steps {
  padding: 100px 48px;
  background: var(--dark); color: var(--cream);
}
.ritual-steps-inner { max-width: 1000px; margin: 0 auto; }
.ritual-steps-header { text-align: center; margin-bottom: 70px; }
.ritual-step-detail {
  display: grid; grid-template-columns: 100px 1fr; gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ritual-step-detail:last-child { border-bottom: none; }
.ritual-step-num {
  font-family: var(--serif);
  font-size: 80px; font-weight: 700;
  color: var(--rose); line-height: 1;
  letter-spacing: -0.02em;
}
.ritual-step-num em { font-style: italic; color: var(--gold-lt); }
.ritual-step-detail h3 {
  font-family: var(--serif);
  font-size: 30px; font-weight: 400;
  color: var(--cream); margin-bottom: 14px;
}
.ritual-step-detail h3 em { font-style: italic; color: var(--rose-lt); }
.ritual-step-detail .lead {
  font-size: 15px; line-height: 1.85; font-weight: 300;
  color: rgba(250,246,239,0.7); margin-bottom: 18px;
  max-width: 640px;
}
.ritual-tip {
  background: rgba(192,66,90,0.08);
  border-left: 2px solid var(--rose-lt);
  padding: 14px 20px; border-radius: 0 6px 6px 0;
  font-size: 13px; font-style: italic; font-family: var(--serif);
  color: rgba(250,246,239,0.65); max-width: 620px;
}

/* ── PAIR WITH (cross-sell) ────────────────────────────── */
.pair-with {
  padding: 100px 48px; background: var(--cream-2);
}
.pair-with-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.pair-with-header { margin-bottom: 50px; }
.pair-with-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}

/* ═════════════════════════════════════════════════════════
   ABOUT PAGE
   ═════════════════════════════════════════════════════════ */
.about-hero {
  padding: 160px 48px 100px;
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--cream) 60%, var(--herb-pale) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 96px); font-weight: 700;
  line-height: 1; margin-bottom: 28px;
  letter-spacing: -0.025em;
}
.about-hero h1 em { font-style: italic; font-weight: 400; color: var(--rose); }
.about-hero-lead {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px); color: var(--sand-dk);
  max-width: 720px; margin: 0 auto 20px; line-height: 1.4;
}
.about-hero p {
  font-size: 16px; font-weight: 300; line-height: 1.9;
  color: rgba(30,23,18,0.65); max-width: 600px; margin: 0 auto;
}

.heritage {
  padding: 100px 48px; background: var(--dark); color: var(--cream);
  position: relative; overflow: hidden;
}
.heritage::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
  pointer-events: none;
}
.heritage-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.heritage-header { text-align: center; margin-bottom: 70px; }
.heritage-line {
  position: relative;
  display: flex; flex-direction: column; gap: 40px;
  padding-left: 40px;
}
.heritage-line::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, var(--rose), var(--gold) 50%, var(--herb-lt));
}
.heritage-item { position: relative; padding-left: 30px; }
.heritage-item::before {
  content: '';
  position: absolute; left: -36px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--dark); border: 2px solid var(--gold);
}
.heritage-era {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--gold-lt); margin-bottom: 4px;
}
.heritage-item h3 {
  font-family: var(--serif);
  font-size: 24px; font-weight: 400; color: var(--cream);
  margin-bottom: 10px;
}
.heritage-item p {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: rgba(250,246,239,0.6); max-width: 640px;
}

.values {
  padding: 100px 48px; background: var(--cream);
}
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 60px; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.value-card {
  background: #fff; border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(30,23,18,0.06);
  transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 26px;
}
.value-icon-wrap.rose { background: var(--rose-pale); }
.value-icon-wrap.herb { background: var(--herb-pale); }
.value-icon-wrap.gold { background: rgba(232,201,122,0.25); }
.value-icon-wrap.sand { background: var(--cream-2); }
.value-card h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600; color: var(--dark);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 13px; font-weight: 300; line-height: 1.75;
  color: rgba(30,23,18,0.6);
}

.founder {
  padding: 100px 48px;
  background: var(--rose-pale);
  position: relative; overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,66,90,0.1), transparent 70%);
  pointer-events: none;
}
.founder-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.founder-quote-mark {
  font-family: var(--serif); font-size: 80px; line-height: 0.5;
  color: var(--rose); opacity: 0.4; margin-bottom: 24px;
}
.founder blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px); font-weight: 400;
  color: var(--dark); line-height: 1.4; margin-bottom: 32px;
}
.founder-name {
  font-family: var(--serif); font-weight: 600;
  font-size: 16px; color: var(--dark); margin-bottom: 4px;
}
.founder-title {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(30,23,18,0.5);
}

/* ═════════════════════════════════════════════════════════
   FINAL CTA STRIP (shared)
   ═════════════════════════════════════════════════════════ */
.final-cta {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dk) 100%);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: ''; position: absolute;
  border-radius: 50%; pointer-events: none;
}
.final-cta::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  top: -100px; left: -100px;
}
.final-cta::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,132,42,0.15), transparent 70%);
  bottom: -150px; right: -150px;
}
.final-cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.15;
  margin-bottom: 22px;
}
.final-cta h2 em { font-style: italic; color: var(--jasmine); }
.final-cta p {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.85); margin-bottom: 36px;
}
.final-cta .btn-primary {
  background: var(--cream); color: var(--dark);
}
.final-cta .btn-primary:hover { background: #fff; }
.final-cta .btn-ghost {
  border-color: rgba(255,255,255,0.5); color: #fff;
}
.final-cta .btn-ghost:hover { border-color: #fff; color: var(--jasmine); }

/* ═════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  nav.main-nav { padding: 14px 24px; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream); padding: 20px 24px 30px;
    border-bottom: 1px solid rgba(184,132,42,0.15);
    transform: translateY(-150%); transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(30,23,18,0.06); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .brand-hero, .hero {
    grid-template-columns: 1fr; padding: 110px 24px 60px;
    text-align: center;
  }
  .brand-hero-left, .hero-left { max-width: 100%; }
  .brand-hero-actions, .hero-actions { justify-content: center; }
  .brand-hero-desc, .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-orbit { width: 320px; height: 320px; margin-top: 30px; }
  .hero-orbit-center { width: 180px; height: 180px; }
  .orbit-node { width: 50px; height: 50px; font-size: 22px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .mood-panel.active { grid-template-columns: 1fr; padding: 36px 28px; gap: 30px; text-align: center; }
  .mood-panel-icon { font-size: 80px; }

  /* Hero product mockup scales down */
  .product-showcase { width: 300px; height: 360px; }
  .pack-card.main { width: 180px; height: 270px; left: 50px; top: 30px; padding: 22px 16px; }
  .pack-card.back { width: 170px; height: 256px; left: 95px; top: 50px; padding: 22px 16px; }
  .pack-label .product-name { font-size: 14px; }
  .floating-badge.b1 { top: 0; left: -10px; }
  .floating-badge.b2 { bottom: 0; left: -10px; }

  /* Combo strip stacks vertically */
  .combo-strip .product-card {
    grid-template-columns: 1fr;
  }
  .combo-strip .product-card-visual { height: 200px; }
  .combo-strip .product-card-body { padding: 24px; }
  .combo-strip-cta { padding: 0 24px 24px; text-align: center; }
  .combo-strip-cta .btn-primary { width: 100%; }

  /* Brand hero eyebrow wraps nicely */
  .brand-hero-eyebrow { white-space: normal; line-height: 1.5; }
  .brand-hero-title { font-size: clamp(46px, 11vw, 70px); }
  .brand-hero-right { min-height: 380px; }

  /* Page hero h1 a touch smaller on mobile */
  .page-hero h1, .ritual-hero h1 { font-size: clamp(38px, 9vw, 60px); }
  .about-hero h1 { font-size: clamp(42px, 12vw, 70px); }

  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .steps-row::before { display: none; }
  .pack-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .pack-visual { justify-content: center; }
  .pack-features { text-align: left; }
  .price-row { justify-content: center; }

  .timeline::before { left: 24px; }
  .timeline-step {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    row-gap: 20px;
    padding-bottom: 24px;
  }
  .timeline-step:nth-child(odd) .step-content,
  .timeline-step:nth-child(even) .step-content {
    grid-column: 2; grid-row: 1; text-align: left;
    padding: 0 0 0 20px;
  }
  .timeline-step:nth-child(odd) .step-visual,
  .timeline-step:nth-child(even) .step-visual {
    display: block;
    grid-column: 2; grid-row: 2;
    padding: 0 0 0 20px;
    text-align: left;
  }
  .timeline-step:nth-child(odd) .step-body,
  .timeline-step:nth-child(odd) .step-chips { margin-left: 0; justify-content: flex-start; }
  .step-node { grid-column: 1; grid-row: 1; align-self: start; padding-top: 4px; }
  .scene { width: 150px; height: 150px; }
  .scene-glow .face { font-size: 56px; }
  .scene-glow .mask { width: 90px; height: 90px; }

  .ing-detail { grid-template-columns: 1fr; gap: 40px; }
  .ing-detail:nth-child(even) .ing-detail-visual { order: 0; }
  .ing-detail-visual { margin: 0 auto; }
  .ing-detail-emoji { font-size: 120px; }

  .mood-pick-grid, .pair-with-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage-line { padding-left: 12px; }

  .ritual-step-detail { grid-template-columns: 70px 1fr; gap: 24px; }
  .ritual-step-num { font-size: 56px; }

  .results-strip { padding: 36px 24px; }
  .result-item { padding: 16px 20px; }
  .result-val { font-size: 36px; }

  .story-stat-row { gap: 0; }
  .story-stat { padding: 0 26px; }
  .story-stat-val { font-size: 34px; }

  .foot-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; text-align: center; }

  section, .ingredients, .journey, .benefits, .howto, .pack-info,
  .products-section, .mood-section, .story-intro, .ing-preview,
  .ing-detail-section, .ritual-hero, .mood-pick, .ritual-steps,
  .pair-with, .about-hero, .heritage, .values, .founder, .final-cta,
  .page-hero {
    padding-left: 24px; padding-right: 24px;
  }
  footer.main-footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 560px) {
  .products-grid, .ing-preview-grid,
  .ingredients-grid, .benefits-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .brand-hero, .hero { padding-top: 96px; }
  .hero-orbit { width: 260px; height: 260px; }
  .hero-orbit-center { width: 150px; height: 150px; }
  .hero-orbit-center-label { font-size: 14px; }
  .orbit-node { width: 44px; height: 44px; font-size: 18px; }
  .foot-inner { grid-template-columns: 1fr; }
}
