/* =========================================================
   🌿 DESIGN SYSTEM
========================================================= */

:root {
  --bg-main: #f6efe7;
  --bg-soft: #f7f2ec;
  --bg-accent: #fff7ef;
  --bg-card: #fffaf5;

  --text-dark: #3b2a1f;
  --text-soft: #6b4f3a;
  --text-muted: #8a6a52;

  --accent: #8b5e3c;
  --accent-deep: #7c4f2f;

  --radius-lg: 18px;
  --radius-md: 14px;

  --shadow-soft: 0 12px 28px rgba(0,0,0,0.08);
  --shadow-premium: 0 18px 40px rgba(60,40,20,0.12);
}

/* =========================================================
   🌿 GLOBAL
========================================================= */

body {
  margin: 0;
  font-family: "Georgia", serif;
  background: var(--bg-main);
  color: var(--text-dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section:not(.ritual-hero){
  padding: 100px 6%;
}

h1, h2, h3 {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.3;
}

h2 {
  font-size: 32px;
}

p {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 16px;
}

/* =========================================================
   🌾 HERO
========================================================= */

.ritual-hero {
  position: relative;
  min-height: 88vh;
  padding: 100px 0;

  background:
    linear-gradient(
      90deg,
      rgba(246,239,231,0.70) 10%,
      rgba(246,239,231,0.55) 25%,
      rgba(246,239,231,0.40) 40%,
      rgba(246,239,231,0.25) 60%,
      rgba(246,239,231,0.10) 80%,
      rgba(246,239,231,0.05) 95%
    ),
    url("/images/ritual-hero.webp");

  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.ritual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/grain.png");
  opacity: 0.05;
  pointer-events: none;
}

.hero-overlay {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 520px;
  margin-left: 10%;
  color: #24150f;
}

.hero-content h1 {
  font-size: 54px;
  letter-spacing: 1px;
  line-height: 1.15;
  text-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 28px;
}

/* =========================================================
   PREMIUM BUTTONS
========================================================= */

.hero-btn,
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(145deg, #9a6b47, var(--accent-deep));
  box-shadow:
    0 6px 18px rgba(0,0,0,0.18),
    0 0 0 3px rgba(255,255,255,0.25);
}

.hero-btn:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.28),
    0 0 0 3px rgba(255,255,255,0.35);
}

/* =========================================================
   BRAND DEFINITION
========================================================= */

.brand-definition {
  padding: 80px 20px 60px;
  text-align: center;
  background: #f6f1ea;
}

.brand-definition p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

.brand-definition::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 30px auto 0;
}

/* =========================================================
   SECTION HEADING (GLOBAL)
========================================================= */

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading .section-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9a7a5c;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 38px;
  letter-spacing: 1.2px;
  color: #23140d;
}

.section-heading h2::after {
  content: "";
  width: 70px;
  height: 2px;
  background: var(--accent);
  display: block;
  margin: 16px auto 0;
  opacity: 0.6;
}

/* =========================================================
   🍪 RITUAL STARTERS
========================================================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding-bottom: 28px;
  border: 1px solid rgba(60,40,20,0.06);
  box-shadow: var(--shadow-premium);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(60,40,20,0.18);
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.ritual-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,250,245,0.92);
  backdrop-filter: blur(6px);
  color: #6a4a33;
  font-size: 11px;
  letter-spacing: 0.6px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.product-card h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #24150f;
}

.product-card p {
  font-size: 14.5px;
  padding: 0 20px;
}


/* =========================================================
   ☕ RITUAL MOMENTS
========================================================= */

.ritual-moments {
  background: var(--bg-accent);
}

.moments-subline {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: 0.4px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.moment-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.moment-card:hover {
  transform: translateY(-6px);
}

.moment-card img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   🪔 RITUAL STEPS
========================================================= */

.ritual-steps h2 {
  text-align: center;
}

.steps-intro {
  margin: 14px 0 44px;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.step {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.step span {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  margin-bottom: 12px;
  font-weight: bold;
}

/* =========================================================
   WHY MILLET
========================================================= */

.why-millets {
  background: var(--bg-soft);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 60px;
}

.why-point h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
}


.ritual-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease;
}

.ritual-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.ritual-link a:hover {
  color: var(--accent-deep);
}

.ritual-link a:hover::after {
  opacity: 1;
  height: 2px;
}

/* =========================================================
   FAQ
========================================================= */

.ritual-faq {
  background: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ritual-faq .container {
  max-width: 900px;
}

.ritual-faq h2 {
  font-size: 2rem;
  margin-bottom: 60px;
}

.faq-item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* =========================================================
   CTA
========================================================= */

.ritual-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(145deg, #f3e7db, #e6d5c3);
  border-top: 1px solid rgba(60,40,20,0.08);
}

.ritual-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.btn-whatsapp {
  background: linear-gradient(145deg, #3f5a3f, #2f4530);
  color: #f6efe7;
  font-weight: 600;
  margin-top: 20px;
  border: 1px solid rgba(60,40,20,0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(145deg, #4e6a4e, #3a533b);
}

.cta-trust {
  margin-top: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--text-soft);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #5a3f24;
  color: white;
  text-align: center;
  padding: 50px 14px;
  font-size: 0.92rem;
}

.site-footer a {
  color: #ffd7a8 !important;
  font-weight: 500;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  color: #ffffff;
}

.footer-logo,
.fssai-logo {
  width: 85px;
  display: block;
  margin: auto;
}

.footer-links {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-fssai {
  margin-top: 20px;
}

.fssai-number {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* =========================================================
   📱 MOBILE
========================================================= */

@media (max-width: 768px) {

  section {
    padding: 70px 6%;
  }

  .ritual-hero {
    min-height: 72vh;
    background-position: 65% center;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

   .product-card {
    cursor: pointer;
  }

  .product-card img {
    height: 260px;
  }

  .why-grid {
    gap: 38px;
  }

  .footer-links {
    flex-direction: column;
    gap: 6px;
  }

  .footer-links span {
    display: none;
  }
}

