/* ===================== TOKENS ===================== */
:root {
  --green-900: #16281d;
  --green-800: #1e3528;
  --green-700: #274634;
  --green-600: #35604a;
  --green-500: #4a7c5d;
  --cream: #f6f1e7;
  --cream-2: #efe7d6;
  --beige: #e3d8c2;
  --gold: #c9a24b;
  --gold-soft: #d9bd78;
  --ink: #24291f;
  --muted: #6d7466;
  --white: #ffffff;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', system-ui, sans-serif;

  --radius: 16px;
  --shadow: 0 10px 40px rgba(22, 40, 29, 0.10);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ===================== BUTTONS ===================== */
.btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--green-900); }
.btn--gold:hover { background: var(--gold-soft); box-shadow: 0 8px 24px rgba(201,162,75,0.35); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(246,241,231,0.5); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(246,241,231,0.08); }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; background: var(--green-700); color: var(--cream); }
.btn--sm:hover { background: var(--green-600); }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 53, 40, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,75,0.2);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand__leaf { font-size: 1.4rem; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.brand__name em { color: var(--gold-soft); font-style: normal; }

.nav__links { display: flex; gap: 1.8rem; }
.nav__links a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.2rem 0;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.25s ease;
}
.nav__links a:hover { color: var(--gold-soft); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 0.8rem; }
.cart {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cart__count {
  background: var(--gold);
  color: var(--green-900);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.05rem 0.45rem;
  font-family: var(--sans);
}
.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,75,0.12), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(74,124,93,0.35), transparent 45%),
    linear-gradient(160deg, var(--green-800), var(--green-900));
  color: var(--cream);
  text-align: center;
  padding: 7rem 1.5rem 8rem;
  position: relative;
  overflow: hidden;
}
.hero__inner { max-width: 780px; margin: 0 auto; }
.hero__sanskrit {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 1.4rem;
  color: var(--cream);
}
.hero__sub {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.4rem;
  color: rgba(246,241,231,0.88);
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================== TRUST ===================== */
.trust {
  max-width: var(--maxw);
  margin: -4rem auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 5;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--beige);
}
.trust__icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.trust__card h3 { font-size: 1.5rem; color: var(--green-700); margin-bottom: 0.3rem; }
.trust__card p { color: var(--muted); font-size: 0.95rem; }

/* ===================== SECTIONS ===================== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem; }
.section--cream { max-width: none; background: var(--cream-2); }
.section--cream .section__head, .section--cream .ingredients { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.section__head { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.section__head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--green-800); }
.section__lead { color: var(--muted); margin-top: 0.6rem; font-size: 1.05rem; }

/* ===================== PRODUCTS ===================== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.product {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--beige);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product__thumb {
  font-size: 2.4rem;
  background: var(--cream);
  border-radius: 12px;
  padding: 1.4rem;
  text-align: center;
  margin-bottom: 1.1rem;
}
.product h3 { font-size: 1.5rem; color: var(--green-700); margin-bottom: 0.4rem; }
.product p { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 1.1rem; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.price { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--green-800); }
.price small { font-family: var(--sans); font-size: 0.72rem; color: var(--muted); font-weight: 400; }

/* ===================== RITUAL ===================== */
.ritual {
  background: linear-gradient(160deg, var(--green-700), var(--green-800));
  color: var(--cream);
  padding: 6rem 1.5rem;
}
.ritual .section__head h2 { color: var(--cream); }
.ritual .eyebrow { color: var(--gold-soft); }
.ritual .section__lead { color: rgba(246,241,231,0.8); }
.ritual__steps {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ritual__step { text-align: center; padding: 1rem; }
.ritual__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.8rem;
  border-radius: 50%;
  margin-bottom: 1.1rem;
}
.ritual__step h3 { font-size: 1.7rem; margin-bottom: 0.5rem; color: var(--cream); }
.ritual__step p { color: rgba(246,241,231,0.82); font-size: 0.98rem; }

/* ===================== INGREDIENTS ===================== */
.ingredients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.4rem;
}
.ingredient {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  text-align: center;
  border: 1px solid var(--beige);
  transition: transform 0.2s ease;
}
.ingredient:hover { transform: translateY(-5px); }
.ingredient__icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.ingredient h3 { font-size: 1.35rem; color: var(--green-700); margin-bottom: 0.2rem; }
.ingredient p { color: var(--gold); font-size: 0.85rem; font-style: italic; font-family: var(--serif); font-size: 1.05rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow);
}
.testimonial__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.8rem; }
.testimonial__quote { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); line-height: 1.5; margin-bottom: 1.2rem; }
.testimonial footer { display: flex; flex-direction: column; }
.testimonial footer strong { color: var(--green-700); font-weight: 600; font-size: 1rem; }
.testimonial footer span { color: var(--muted); font-size: 0.85rem; }

/* ===================== NEWSLETTER ===================== */
.newsletter {
  background:
    radial-gradient(circle at 80% 20%, rgba(201,162,75,0.15), transparent 50%),
    linear-gradient(160deg, var(--green-800), var(--green-900));
  color: var(--cream);
  text-align: center;
  padding: 5.5rem 1.5rem;
}
.newsletter__inner { max-width: 620px; margin: 0 auto; }
.newsletter h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--cream); margin-bottom: 0.6rem; }
.newsletter p { color: rgba(246,241,231,0.85); margin-bottom: 2rem; }
.newsletter__form { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
.newsletter__form input {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(246,241,231,0.3);
  background: rgba(246,241,231,0.08);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.newsletter__form input::placeholder { color: rgba(246,241,231,0.55); }
.newsletter__form input:focus { outline: none; border-color: var(--gold); }

/* ===================== FOOTER ===================== */
.footer { background: var(--green-900); color: var(--cream); padding: 4rem 1.5rem 2rem; }
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.brand--footer .brand__name { font-size: 1.2rem; }
.footer__tag { color: var(--gold-soft); font-family: var(--serif); font-size: 1.05rem; margin: 0.9rem 0 0.3rem; }
.footer__desc { color: rgba(246,241,231,0.7); font-size: 0.9rem; }
.footer__col h4 { color: var(--gold-soft); font-size: 1.2rem; margin-bottom: 1rem; }
.footer__col a { display: block; color: rgba(246,241,231,0.8); font-size: 0.9rem; margin-bottom: 0.55rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__badges { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__badges span {
  font-size: 0.82rem;
  color: rgba(246,241,231,0.85);
  background: rgba(201,162,75,0.12);
  border: 1px solid rgba(201,162,75,0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  text-align: center;
}
.footer__bottom {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246,241,231,0.15);
  text-align: center;
}
.footer__bottom p { color: rgba(246,241,231,0.6); font-size: 0.85rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-800);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.5rem 1.2rem;
    display: none;
    border-bottom: 1px solid rgba(201,162,75,0.2);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 0.7rem 0; border-bottom: 1px solid rgba(246,241,231,0.08); }
  .nav__toggle { display: block; }
  .trust__grid { grid-template-columns: 1fr; }
  .ritual__steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 5rem 1.5rem 6rem; }
}
