:root {
  --red: #8b1a1a;
  --maroon: #5c0a0a;
  --gold: #c9922a;
  --ivory: #fff8f0;
  --brown: #2c1810;
  --container: 1240px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--brown);
  background: var(--ivory);
  background-image: radial-gradient(rgba(201, 146, 42, 0.05) 0.5px, transparent 0.5px);
  background-size: 10px 10px;
}

body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  z-index: 120;
  background: linear-gradient(90deg, #e6bc6a, var(--gold), #a7741f);
  box-shadow: 0 1px 8px rgba(201, 146, 42, 0.45);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.is-ready::before {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.gold-rule {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
}

.section {
  padding: 76px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  text-align: center;
  margin: 0 0 12px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 10px auto 0;
  line-height: 1.65;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 110;
  background: rgba(92, 10, 10, 0.95);
  border-bottom: 1px solid rgba(201, 146, 42, 0.45);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
  color: #f9e7d2;
}

.menu li {
  display: block;
}

.menu a {
  display: inline-block;
  padding-bottom: 6px;
  transition: color 0.25s ease;
}

.menu a:hover,
.menu a.active {
  color: #fff;
  border-bottom: 2px solid var(--gold);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(201, 146, 42, 0.55);
  background: transparent;
  color: #fff;
  padding: 7px 10px;
  border-radius: 8px;
}

.hero {
  min-height: calc(100dvh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ivory);
  background-color: #5c0a0a;
  background-image: url("../web/home-hero-maa.jpg?v=3");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(139, 26, 26, 0.86), rgba(92, 10, 10, 0.9));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at center, rgba(201, 146, 42, 0.24), transparent 55%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(900px, 92vw);
  padding: 0 12px;
}

.hero-inner > * {
  animation: heroRise 0.85s ease both;
}

.hero-inner .hero-logo {
  animation-delay: 0.05s;
}

.hero-inner h1 {
  animation-delay: 0.15s;
}

.hero-inner p {
  animation-delay: 0.28s;
}

.hero-inner .cta-row {
  animation-delay: 0.4s;
}

.hero-inner .scroll-indicator {
  animation-delay: 0.52s;
}

.hero-logo {
  display: block;
  width: clamp(118px, 16vw, 172px);
  height: auto;
  margin: 0 auto 22px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 20px rgba(201, 146, 42, 0.35));
}

.emblem {
  width: 112px;
  height: 112px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  color: var(--gold);
  box-shadow: 0 0 26px rgba(201, 146, 42, 0.55);
  background: rgba(92, 10, 10, 0.3);
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.85rem, 7vw, 4.2rem);
  line-height: 1.15;
  text-wrap: balance;
}

.hero p {
  margin: 16px auto 0;
  max-width: 760px;
  line-height: 1.7;
  font-size: clamp(0.98rem, 3.5vw, 1.06rem);
}

.cta-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--maroon);
}

.btn-outline {
  color: var(--ivory);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: #dfaf4a;
}

.btn-outline:hover {
  background: rgba(255, 248, 240, 0.15);
}

/* light-background secondary button (readable on cream panels/cards) */
.btn-ghost {
  color: var(--red);
  background: transparent;
  border: 1px solid var(--red);
}

.btn-ghost:hover {
  background: rgba(139, 26, 26, 0.08);
}

/* Amazon buy button */
.btn-amazon {
  background: #ff9900;
  color: #1a1000;
  border-color: #e88a00;
}

.btn-amazon:hover {
  background: #ffab2e;
}

/* discreet analytics link in the footer */
.ana-info-link {
  color: inherit;
  opacity: 0.45;
  font-size: 0.85em;
  text-decoration: none;
}

.ana-info-link:hover { opacity: 0.9; }

.product-content .btn { margin-top: 8px; }

.scroll-indicator {
  margin-top: 30px;
  color: var(--gold);
  font-size: 1.7rem;
  animation: floatDown 1.4s ease-in-out infinite;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
}

.scroll-indicator:hover {
  color: #ffe7b6;
  transform: translateY(4px);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  background: #fff6ea;
  border: 1px solid rgba(201, 146, 42, 0.34);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 146, 42, 0.7);
  box-shadow: 0 14px 28px rgba(92, 10, 10, 0.12);
}

.feature-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--red);
}

.feature-card p {
  margin: 10px 0 0;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.product-card {
  background: #fffdf9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 146, 42, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(92, 10, 10, 0.2);
  border-color: var(--gold);
}

.product-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #fffdf9 0%, #f3ebe0 72%, #ebe2d4 100%);
  border-bottom: 1px solid rgba(201, 146, 42, 0.22);
}

.product-card-media.image-carousel {
  aspect-ratio: 1 / 1;
}

.product-card-media .carousel-slide,
.sym-carousel .carousel-slide,
.jar-shot {
  object-fit: cover;
  object-position: center 32%;
  padding: 4px;
}

/* Product cards: ease the photo back inside the frame on every screen size,
   so desktop and mobile look consistent (mobile adds a little more below). */
.product-card-media .carousel-slide {
  padding: 13%;
}

.products-section .product-card-lite {
  opacity: 1;
  transform: none;
  content-visibility: auto;
  contain-intrinsic-size: 380px;
}

.section.split-heritage,
.section.stats-band,
.section.process-section,
.section.ingredients,
.section.testimonials-section,
.section.faq-section,
.section.cta-band {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.products-section .product-card-lite .product-content > * {
  opacity: 1;
  transform: none;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 32%;
  background: radial-gradient(circle at 50% 42%, #fffdf9 0%, #f3ebe0 72%, #ebe2d4 100%);
  padding: 4px;
}

.image-frame {
  border-radius: 10px;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.image-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 42%, #fffdf9 0%, #f3ebe0 72%, #ebe2d4 100%);
  contain: layout style paint;
}

.image-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  padding: 4px;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.85s ease-in-out, transform 0.85s ease-in-out;
  will-change: opacity, transform;
}

.image-carousel .carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.detail-layout .image-carousel {
  min-height: 320px;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 42%, #fffdf9 0%, #f3ebe0 72%, #ebe2d4 100%);
  border: 1px solid rgba(201, 146, 42, 0.35);
}

.detail-layout .image-carousel .carousel-slide,
.detail-layout .image-carousel .carousel-slide.jar-shot {
  object-fit: cover;
  object-position: center 32%;
  padding: 6px;
}

.quality-showcase {
  margin: 36px auto 0;
  max-width: 560px;
}

.quality-showcase .image-carousel {
  border: 1px solid rgba(201, 146, 42, 0.4);
  border-radius: 14px;
}

.split-heritage .image-carousel {
  background: radial-gradient(circle at 50% 42%, #5c1010 0%, #3e0808 72%, #2c1810 100%);
}

.split-heritage .image-carousel .carousel-slide {
  object-fit: cover;
  object-position: center 40%;
  padding: 0;
  transform: scale(1.03);
  transition: opacity 0.85s ease-in-out, transform 0.85s ease-in-out;
}

.split-heritage .image-carousel .carousel-slide.active {
  transform: scale(1);
}

.split-grid:hover .image-frame,
.split-grid:hover .image-carousel {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.product-card:hover .product-card-media {
  filter: saturate(1.04);
}

@media (min-width: 901px) {
  .detail-layout {
    align-items: stretch;
  }

  .detail-layout .image-carousel {
    min-height: 500px;
    height: 100%;
    aspect-ratio: auto;
  }

  .detail-layout .panel {
    align-self: center;
  }
}

.product-content {
  padding: 18px;
}

.product-content h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--red);
}

.split-heritage {
  background: var(--red);
  color: var(--ivory);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
}

.split-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.split-grid h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.split-grid p {
  line-height: 1.7;
}

.ingredients {
  background: var(--maroon);
  color: var(--ivory);
}

.ingredients h2 {
  color: var(--ivory);
}

.icon-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.icon-item {
  border: 1px solid rgba(201, 146, 42, 0.6);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: #f7d89f;
}

.icon-item strong {
  display: block;
}

.stats-band {
  background: linear-gradient(180deg, #fff8f0, #fff3e6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stat-card {
  background: #fffdf9;
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(92, 10, 10, 0.12);
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--red);
  line-height: 1.1;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--maroon);
}

.stat-card p {
  margin: 10px 0 0;
  line-height: 1.55;
  font-size: 0.95rem;
}

.process-section {
  background: #fff6ea;
}

.process-steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.step-card {
  background: #fffdf9;
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.step-num {
  font-family: "Cinzel", serif;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.step-card h3 {
  margin: 10px 0 8px;
  font-family: "Playfair Display", serif;
  color: var(--red);
}

.step-card p {
  margin: 0;
  line-height: 1.65;
}

.ingredients .section-cta {
  margin-top: 8px;
  color: var(--ivory);
  border-color: var(--gold);
}

.testimonials-section {
  background: linear-gradient(180deg, #fff8f0, #fff3e6);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.testimonial {
  background: #fff9f1;
  border: 1px solid rgba(201, 146, 42, 0.4);
  border-radius: 12px;
  padding: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card blockquote {
  margin: 12px 0 0;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-card footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 146, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card footer strong {
  color: var(--red);
  font-style: normal;
}

.testimonial-card footer span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(92, 10, 10, 0.1);
}

.faq-section {
  background: var(--maroon);
  color: var(--ivory);
}

.faq-section .section-title {
  color: var(--ivory);
}

.faq-section .section-subtitle {
  color: #f7d89f;
}

.faq-list {
  max-width: 820px;
  margin: 32px auto 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: rgba(255, 248, 240, 0.06);
  border: 1px solid rgba(201, 146, 42, 0.45);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item.open {
  background: rgba(255, 248, 240, 0.1);
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--ivory);
  font: inherit;
  font-weight: 700;
  padding: 16px 44px 16px 18px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
}

.faq-item.open .faq-answer {
  max-height: 280px;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 16px;
  line-height: 1.65;
  color: #f8e8d3;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}

.cta-band {
  background: linear-gradient(135deg, var(--red), var(--maroon));
  color: var(--ivory);
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cta-band p {
  margin: 14px auto 0;
  max-width: 620px;
  line-height: 1.65;
}

.cta-band .cta-row {
  margin-top: 26px;
}

.cta-band .btn-outline {
  border-color: var(--gold);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.product-tag {
  background: rgba(201, 146, 42, 0.2);
  border: 1px solid var(--gold);
  color: #ffe7b6;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.product-detail-extra {
  padding-top: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.highlight-card {
  background: #fffdf9;
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: transform 0.35s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-card strong {
  display: block;
  color: var(--red);
  font-family: "Playfair Display", serif;
  margin-bottom: 6px;
}

.detail-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.detail-block {
  background: #fffaf3;
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 12px;
  padding: 18px;
}

.detail-block h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Playfair Display", serif;
}

.detail-block ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.nutrition-panel {
  background: #fffaf3;
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 48px;
}

.nutrition-panel h3 {
  margin: 0 0 14px;
  color: var(--red);
  font-family: "Playfair Display", serif;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.nutrition-table th,
.nutrition-table td {
  border: 1px solid rgba(201, 146, 42, 0.3);
  padding: 10px 12px;
  text-align: left;
}

.nutrition-table th {
  background: rgba(139, 26, 26, 0.08);
  color: var(--red);
}

.nutrition-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.9;
}

.label-photo {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto 14px;
  border-radius: 10px;
  border: 1px solid rgba(201, 146, 42, 0.35);
  background: #fffdf9;
  object-fit: contain;
  object-position: center center;
}

.label-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.label-photo-row .label-photo {
  width: 100%;
  max-width: none;
  margin: 0;
}

@media (max-width: 640px) {
  .label-photo-row {
    grid-template-columns: 1fr;
  }
}

.product-faq-mini {
  margin-bottom: 48px;
}

.product-faq-mini h3 {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: var(--red);
  margin: 0 0 18px;
}

.product-faq-mini .faq-list {
  max-width: 100%;
}

.product-faq-mini .faq-item {
  background: #fffdf9;
}

.product-faq-mini .faq-question {
  color: var(--brown);
}

.product-faq-mini .faq-answer p {
  color: var(--brown);
}

.related-products h3 {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: var(--red);
  margin: 0 0 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  background: #fffdf9;
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(92, 10, 10, 0.12);
}

.related-card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  object-position: center 32%;
  background: radial-gradient(circle at 50% 42%, #fffdf9 0%, #f3ebe0 72%, #ebe2d4 100%);
  padding: 0;
}

.related-card div {
  padding: 12px 14px;
}

.related-card h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--red);
  font-size: 1rem;
}

.related-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
}

.lifestyle-gallery {
  margin-bottom: 48px;
}

.lifestyle-gallery h3 {
  margin: 0 0 6px;
  color: var(--red);
  font-family: "Playfair Display", serif;
}

.lifestyle-intro {
  margin: 0 0 18px;
  color: #6b5b4a;
  font-size: 0.98rem;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.lifestyle-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 146, 42, 0.35);
  background: #1c140f;
  box-shadow: 0 8px 20px rgba(92, 10, 10, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lifestyle-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(92, 10, 10, 0.18);
}

.lifestyle-item img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.lifestyle-item figcaption {
  padding: 10px 14px;
  font-size: 0.9rem;
  color: #f3e6d0;
  background: #1c140f;
}

@media (max-width: 640px) {
  .lifestyle-item img {
    height: 230px;
  }
}

.panel .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.panel .tag-list li {
  background: rgba(201, 146, 42, 0.15);
  border: 1px solid rgba(201, 146, 42, 0.45);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.85rem;
}

.fssai-badge {
  margin: 28px auto 0;
  width: fit-content;
  background: var(--red);
  color: var(--ivory);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
}

.page-hero {
  background: linear-gradient(rgba(139, 26, 26, 0.95), rgba(92, 10, 10, 0.95));
  color: var(--ivory);
  text-align: center;
  padding: 70px 0;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.panel {
  background: #fffaf3;
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 12px;
  padding: 18px;
}

.panel h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Playfair Display", serif;
}

.contact-form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: 700;
  color: var(--red);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(92, 10, 10, 0.25);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  background: #3e0808;
  color: #f8e8d3;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.footer h4 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.copyright {
  margin-top: 20px;
  border-top: 1px solid rgba(201, 146, 42, 0.35);
  padding-top: 14px;
  font-size: 0.92rem;
}

.home-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  background: var(--gold);
  color: var(--maroon);
  border: 1px solid rgba(92, 10, 10, 0.28);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(44, 24, 16, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(44, 24, 16, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---- Heritage section: slow "Ken Burns" drift on the showing photo ---- */
.heritage-carousel .carousel-slide.active {
  animation: heritageDrift 5.2s ease-out both;
}

@keyframes heritageDrift {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.2%, -1%, 0); }
}

/* alternate the drift direction so it doesn't feel repetitive */
.heritage-carousel .carousel-slide:nth-child(even).active {
  animation-name: heritageDriftAlt;
}

@keyframes heritageDriftAlt {
  0%   { transform: scale(1.08) translate3d(1.2%, 1%, 0); }
  100% { transform: scale(1) translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .heritage-carousel .carousel-slide.active {
    animation: none;
  }
}

/* ---- Home feature: pinned, scroll-scrubbed image -> text sequence ---- */
.home-feature {
  position: relative;
  height: 185vh;             /* scroll distance that drives the sequence */
}

.feature-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.feature-stage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}

.feature-visual {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  will-change: transform, opacity;
}

.feature-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(92, 10, 10, 0.28);
  display: block;
}

.feature-copy { will-change: opacity, transform; }

.feature-title {
  font-family: "Playfair Display", serif;
  color: var(--red);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  margin: 0 0 6px;
}

.feature-title span { color: var(--gold); }

.feature-typed {
  min-height: 5.6em;
  line-height: 1.75;
  font-size: 1.06rem;
  margin: 18px 0 0;
}

.feature-static {
  line-height: 1.75;
  font-size: 1.06rem;
  margin: 18px 0 0;
}

.feature-typed .caret {
  color: var(--gold);
  font-weight: 400;
  animation: caretBlink 0.8s steps(1) infinite;
}

@keyframes caretBlink { 50% { opacity: 0; } }

.feature-cta {
  margin-top: 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.feature-cta.show-btn { opacity: 1; transform: none; pointer-events: auto; }

.feature-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.feature-btns .feature-cta { margin-top: 0; }

@media (max-width: 768px) {
  .home-feature { height: 165vh; }
  .feature-stage { grid-template-columns: 1fr; gap: 20px; justify-items: center; text-align: center; }
  .feature-visual { max-width: 280px; }
  .feature-typed { min-height: 7.5em; }
  .feature-stage .gold-rule { margin-left: auto !important; }
}

/* Feature variant: image on the RIGHT, text on the left (mirror of the home one) */
.feature-right .feature-stage { grid-template-columns: 1.15fr 0.85fr; }
.feature-right .feature-visual { order: 2; }
.feature-right .feature-copy { order: 1; }

@media (max-width: 768px) {
  .feature-right .feature-stage { grid-template-columns: 1fr; }
}

/* ---- Product tiles: smaller, and show the FULL image (no cropping) ---- */
.detail-layout .image-carousel {
  max-width: 320px;
  min-height: 0;
}

.product-card-media {
  aspect-ratio: 1 / 1;
}

.product-card-media .carousel-slide,
.detail-layout .image-carousel .carousel-slide,
.detail-layout .image-carousel .carousel-slide.jar-shot {
  object-fit: contain;
  object-position: center center;
  padding: 6%;
}

/* Products page: show all 4 products in one row so they fit on one screen */
@media (min-width: 900px) {
  .products-section .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .products-section .product-content { padding: 12px 12px 16px; }
  .products-section .product-content h3 { font-size: 1rem; }
  .products-section .product-content p { font-size: 0.9rem; margin: 6px 0 10px; }
  .products-section .product-content .btn { padding: 8px 16px; font-size: 0.9rem; }
}

/* Full-width page-top banner (Story page) */
.page-banner-wrap {
  display: block;
  line-height: 0;
}

.page-banner {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Quality page load choreography ---- */
/* 1) the four cards pop into place, one after another */
.quality-cards .panel {
  transform: translateY(28px) scale(0.94);
  transition: opacity 0.6s ease, transform 0.62s cubic-bezier(0.22, 1.18, 0.36, 1);
}

.quality-cards .panel.show {
  transform: translateY(0) scale(1);
}

.quality-cards .panel:nth-child(1) { transition-delay: 60ms; }
.quality-cards .panel:nth-child(2) { transition-delay: 250ms; }
.quality-cards .panel:nth-child(3) { transition-delay: 440ms; }
.quality-cards .panel:nth-child(4) { transition-delay: 630ms; }

/* 2) the carousel arrives after the cards, and its FIRST slide is the quality photo */
.quality-showcase.carousel-after {
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: 620ms;
}

/* let the first slide pop OUT of the frame before settling back in */
.quality-showcase .image-carousel {
  overflow: visible;
  contain: none;
}

/* container no longer clips, so round the slides themselves */
.quality-showcase .image-carousel .carousel-slide {
  border-radius: 12px;
}

/* the quality photo is a real carousel slide — show it whole, not cropped.
   No background/radius here on purpose: only the photo itself should scale,
   not a frame-looking box around it. */
.quality-showcase .image-carousel .carousel-slide.quality-first {
  object-fit: contain;
  object-position: center center;
  padding: 8px;
  background: none;
  border-radius: 0;
}

/* pops up big on screen, then zooms out down into the carousel frame.
   Waits for the carousel to actually be visible, otherwise it plays unseen. */
.quality-showcase .image-carousel .carousel-slide.quality-first.active {
  z-index: 5;
}

.quality-showcase.show .image-carousel:not(.intro-done) .carousel-slide.quality-first.active {
  animation: qualityPopIn 1.9s cubic-bezier(0.22, 1, 0.36, 1) 900ms both;
}

/* on later carousel loops, pop straight away (no intro wait) */
.quality-showcase .image-carousel.intro-done .carousel-slide.quality-first.active {
  animation: qualityPopIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes qualityPopIn {
  0%   { opacity: 0; transform: scale(1.34); }
  16%  { opacity: 1; transform: scale(1.34); }
  42%  { opacity: 1; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  @keyframes qualityPopIn {
    0%   { opacity: 0; transform: scale(1.12); }
    16%  { opacity: 1; transform: scale(1.12); }
    42%  { opacity: 1; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
  }
}

/* 4) the six journey photos appear one by one, in order */
.quality-journey .lifestyle-item {
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.quality-journey.show .lifestyle-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quality-journey.show .lifestyle-item:nth-child(1) { transition-delay: 140ms; }
.quality-journey.show .lifestyle-item:nth-child(2) { transition-delay: 340ms; }
.quality-journey.show .lifestyle-item:nth-child(3) { transition-delay: 540ms; }
.quality-journey.show .lifestyle-item:nth-child(4) { transition-delay: 740ms; }
.quality-journey.show .lifestyle-item:nth-child(5) { transition-delay: 940ms; }
.quality-journey.show .lifestyle-item:nth-child(6) { transition-delay: 1140ms; }

@media (prefers-reduced-motion: reduce) {
  .quality-cards .panel,
  .quality-journey .lifestyle-item {
    transform: none;
    transition: opacity 0.3s ease;
    transition-delay: 0ms;
  }
  .quality-showcase .image-carousel .carousel-slide.quality-first.active {
    animation: none;
  }
  .quality-showcase.carousel-after {
    transition-delay: 0ms;
  }
}


.reveal-fine {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal-fine.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.62;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.65;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: url("../web/home-hero-maa-mobile.jpg?v=1");
  }
}

@media (max-width: 1024px) {
  .products-grid,
  .detail-layout,
  .split-grid,
  .highlights-grid,
  .detail-blocks,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .split-grid > div:first-child {
    align-items: center;
    text-align: center;
  }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .nav-wrap {
    height: var(--header-h);
  }

  .section {
    padding: 52px 0;
  }

  .container {
    width: min(var(--container), 94vw);
  }

  .hero {
    min-height: calc(100dvh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    padding: 20px 0 28px;
    background-image: url("../web/home-hero-maa-mobile.jpg?v=1");
    background-position: center center;
    background-size: cover;
  }

  .hero-inner {
    width: 100%;
    padding: 0 8px;
  }

  .hero-logo {
    width: clamp(96px, 24vw, 128px);
    margin-bottom: 16px;
  }

  .emblem {
    width: 88px;
    height: 88px;
    margin-bottom: 18px;
    font-size: 1.6rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem);
  }

  .hero p {
    margin-top: 12px;
    padding: 0 4px;
  }

  .cta-row {
    margin-top: 22px;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero .cta-row .btn {
    width: min(100%, 300px);
    text-align: center;
  }

  .scroll-indicator {
    margin-top: 20px;
    font-size: 1.4rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .product-card-media {
    aspect-ratio: 1 / 1;
  }

  .product-card-media .carousel-slide {
    padding: 7%;
  }

  .product-content {
    text-align: center;
  }

  .product-content .btn {
    margin-top: 4px;
  }

  .page-hero {
    padding: 48px 0;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    padding: 0 8px;
  }

  .icon-grid,
  .testimonial-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .home-fab {
    right: 12px;
    bottom: 12px;
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .menu {
    top: var(--header-h);
  }

  body.menu-open::after {
    top: var(--header-h);
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    position: relative;
    justify-content: flex-start;
    gap: 12px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .menu-toggle {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
    order: 2;
  }

  nav {
    order: 3;
    position: absolute;
    inset: 0 auto auto 0;
    width: 0;
    height: 0;
    overflow: visible;
    pointer-events: none;
  }

  .menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(139, 26, 26, 0.96), rgba(92, 10, 10, 0.96));
    backdrop-filter: blur(6px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px 0 12px;
    z-index: 111;
    pointer-events: none;
    transform: none;
    box-shadow: 0 14px 30px rgba(44, 24, 16, 0.28);
    border-bottom: 1px solid rgba(201, 146, 42, 0.45);
    animation: menuFadeIn 0.24s ease;
  }

  .menu.open {
    display: flex;
    pointer-events: auto;
  }

  .menu.open a {
    pointer-events: auto;
    cursor: pointer;
  }

  .menu li {
    width: 100%;
    margin: 0;
  }

  .menu a {
    display: block;
    text-align: left;
    font-size: 1.08rem;
    padding: 13px 18px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 248, 240, 0.18);
    border-radius: 0;
    transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
  }

  .menu a:hover,
  .menu a:focus-visible {
    background: rgba(255, 248, 240, 0.1);
    transform: translateX(6px);
    color: #ffe7b6;
    outline: none;
  }

  .menu li,
  .menu a {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::after {
    content: "";
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.24);
    z-index: 100;
    pointer-events: auto;
  }

  .nav-wrap {
    gap: 10px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .menu-toggle {
    background: rgba(255, 248, 240, 0.08);
    border-color: rgba(201, 146, 42, 0.7);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 248, 240, 0.14);
  }

  .feature-strip,
  .icon-grid,
  .footer-grid,
  .stats-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  @keyframes menuFadeIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
