/* ===============================
   COLOR SYSTEM
================================ */
:root {
  --primary: #6b4e2e;     /* earthy brown */
  --secondary: #f3efe9;   /* warm off-white */
  --accent: #c07a3a;      /* jaggery tone */
  --text: #2e2e2e;
  --muted: #666;
  --border: #e6e6e6;
}

/* ===============================
   RESET & BASE
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

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

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ===============================
   HERO – BRAND REFINEMENTS
================================ */

.brand-meaning {
  font-size: 0.95rem;
  font-style: normal;
  color: var(--muted);
  margin-bottom: 14px;
   opacity: 0.65;
}

.hero-description {
  max-width: 640px;
  margin: 0 auto 14px;
}

.hero-features {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 10px;
  line-height: 1.5;
}



.hero-note {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero {
  background: var(--secondary);
   text-align: center;
   padding: 46px 20px 48px;
}

.hero h1.brand-name {
  font-size: 2.6rem;              /* more presence on mobile */
  font-weight: 900;               /* bold but premium */
  letter-spacing: 0.14em;         /* brand-like spacing */
  /* color: var(--primary);*/          /* earthy brown */ 
  color: #5a4025;                  /* deeper brown */
   text-shadow: 0 1px 0 rgba(0,0,0,0.06);
  margin-bottom: 8px;
}


/* ===============================
   BUTTONS
================================ */
.cta-group {
  display: flex;
  gap: 12px;
   margin-top: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 36px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
   border-width: 1.5px;
}

/* ===============================
   TRUST STRIP
================================ */
.trust {
   margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: center;
  font-size: 0.9rem;
}

.trust div {
  background: #fafafa;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* ===============================
   SECTIONS
================================ */
.section {
  padding: 36px 0;
}

.section h2 {
  text-align: center;
  font-size: 1.55rem;
  margin-bottom: 24px;
  color: var(--primary);
}

/* ===============================
   PRODUCTS
================================ */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
}

.card img {
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text);
}

.card a {
  font-weight: 600;
  color: var(--primary);
}

.section-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 18px;
}


/* ===============================
   INGREDIENT TRANSPARENCY
================================ */
.ingredients {
  background: var(--secondary);
  border-radius: 18px;
  padding: 26px;
  font-size: 0.95rem;
}

.ingredients ul {
  list-style: none;
  margin-top: 14px;
}

.ingredients li {
  margin-bottom: 8px;
}

.note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===============================
   BENEFITS
================================ */
.benefits {
  padding-left: 20px;
  padding-right: 20px;
}

.benefits ul {
  list-style: none;
  margin-top: 18px;
}

.benefits li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
}

.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ===============================
   HOMEPAGE STORY – MATCH INGREDIENT CARD
   =============================== */

.homepage-story {
  background: var(--secondary);
  border-radius: 18px;
  padding: 26px;              /* same padding feel as ingredients */
}

/* Keep text readable like ingredients */
.homepage-story p {
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Heading spacing */
.homepage-story h2 {
  margin-bottom: 20px;
}

/* Punch line emphasis */
.homepage-story .story-punch {
  font-size: 1.2rem;
  margin-top: 1.6rem;
}

/* Founder line */
.homepage-story .story-founder {
  margin-top: 1rem;
  opacity: 0.75;
}

/* Read full story link */
.homepage-story a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
}

/* ===============================
   MOBILE TUNING
   =============================== */

@media (max-width: 768px) {
  .homepage-story {
    padding: 22px;
    border-radius: 14px;
  }

  .homepage-story p {
    line-height: 1.8;
  }
}

.homepage-story {
  text-align: center;
}


/* ===============================
   TESTIMONIALS
================================ */
.testimonials {
  text-align: center;
}

.testimonial-box {
  background: #fafafa;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
}

.testimonial-box span {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===============================
   FINAL CTA
================================ */
.final-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.final-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/* ===============================
   FOOTER – BRAND CLOSURE
================================ */

footer {
  text-align: center;
  padding: 28px 16px;
  color: var(--muted);
}

.footer-brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-slogan {
  font-size: 0.85rem;
  opacity: 0.75;
}


/* ===============================
   DESKTOP / TABLET
================================ */
@media (min-width: 768px) {


   .hero h1.brand-name {
    font-size: 3.4rem;            /* strong desktop presence */
    letter-spacing: 0.16em;
  }
   
  .trust {
    grid-template-columns: repeat(5, 1fr);
  }

  .products {
    grid-template-columns: repeat(3, 1fr);
  }

  .section h2 {
    font-size: 1.8rem;
  }
}


/* =================================================
   OUR STORY PAGE – SINGLE SOURCE OF TRUTH
   ================================================= */

.our-story-page {
  line-height: 1.75;
}

.our-story-page .story-content {
  max-width: 720px;
  margin: 0 auto;
}

.our-story-page .story-content p {
  margin-bottom: 1.3rem;
  text-align: left;
  color: #333;
}

.our-story-page .founder-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.our-story-page .founder-image img {
  max-width: 280px;
  border-radius: 12px;
}

.our-story-page .founder-message {
  max-width: 500px;
}

.our-story-page .founder-intro {
  font-size: 1.15rem;
  line-height: 1.6;
}

.our-story-page .story-break {
  font-size: 1.05rem;
  font-style: italic;
  text-align: center;
  margin: 2.2rem 0;
  opacity: 0.85;
}

.our-story-page .story-quote {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 2.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid #ddd;
  font-style: italic;
  color: #333;
}

.our-story-page .story-divider {
  margin: 3rem 0;
  border: none;
  height: 1px;
  background: #eee;
}

.our-story-page .story-ending {
  font-size: 1.35rem;
  line-height: 1.6;
  text-align: center;
  margin: 3rem 0 1rem;
}

@media (max-width: 768px) {
  .our-story-page .founder-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .our-story-page .founder-image img {
    max-width: 200px;
  }

  .our-story-page .story-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .our-story-page {
    font-size: 1.02rem;
  }

  .our-story-page .story-ending {
    font-size: 1.2rem;
  }
}

/* ===============================
   OUR STORY – MOBILE COMFORT SPACING
   =============================== */

@media (max-width: 768px) {

  .our-story-page .story-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .our-story-page .story-content p {
    line-height: 1.8;
  }
}

@media (max-width: 480px) {

  .our-story-page .story-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
     letter-spacing: 0.01em;
  }
}

/* ===============================
   OUR STORY – MOBILE HEADING ALIGN
   =============================== */

@media (max-width: 768px) {
  .story-hero h1 {
    text-align: center;
  }
}


/* ===============================
   OUR STORY HEADING – STYLE ALIGNMENT
   =============================== */

/* Base (mobile-first) */
.story-hero h1 {
  font-size: 2.6rem;               /* bigger than section h2 */
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;            /* mobile centered */
}

/* Desktop behavior */
@media (min-width: 768px) {
  .story-hero h1 {
    font-size: 2.6rem;           /* clear visual importance */
    text-align: left;            /* desktop left-aligned */
  }
}
