:root {
  --maroon: #7a1d3b;
  --maroon-dark: #4f1027;
  --saffron: #d89512;
  --turmeric: #f2b927;
  --cream: #fff8e8;
  --cream-deep: #f5e2b7;
  --earth: #5c351d;
  --leaf: #486b32;
  --ink: #241812;
  --muted: #786154;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(87, 38, 19, 0.16);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(242, 185, 39, 0.22), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(122, 29, 59, 0.1), transparent 28rem),
    var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.1em;
  line-height: 1;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--maroon);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section-pad {
  padding: 7rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(255, 248, 232, 0.88);
  box-shadow: 0 12px 36px rgba(80, 38, 14, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 2rem, 1220px);
  margin: 0 auto;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  border: 1px solid rgba(216, 149, 18, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 44px rgba(83, 44, 13, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(122, 29, 59, 0.14);
}

.brand strong {
  display: block;
  color: var(--maroon);
  line-height: 1.1;
  overflow-wrap: break-word;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--earth);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon), #9e294d);
  box-shadow: 0 14px 34px rgba(122, 29, 59, 0.25);
}

.button-ghost {
  color: var(--maroon);
  background: var(--white);
  border: 1px solid rgba(122, 29, 59, 0.14);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(122, 29, 59, 0.22);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--maroon);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero-grid,
.quality-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.about-grid {
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--maroon-dark);
  line-height: 0.98;
  overflow-wrap: break-word;
}

h1 {
  max-width: 660px;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6.5vw, 5.25rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
}

h3 {
  color: var(--maroon-dark);
  line-height: 1.16;
  overflow-wrap: break-word;
}

.hero-copy,
.quality-copy,
.about-copy,
.contact-copy,
.product-card,
.strip-card,
.step-card,
.contact-form,
.contact-card {
  min-width: 0;
}

.hero-text {
  max-width: 560px;
  color: var(--earth);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.45rem 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-row span {
  padding: 0.55rem 0.85rem;
  color: var(--earth);
  border: 1px solid rgba(216, 149, 18, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.trust-row span:hover {
  transform: translateY(-3px) rotate(-1deg);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(87, 38, 19, 0.12);
}

.hero-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 430px);
  justify-self: end;
  padding: 0;
  border: 1px solid rgba(216, 149, 18, 0.25);
  border-radius: 38px;
  overflow: hidden;
  background: rgba(245, 226, 183, 0.4);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.25s ease;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  z-index: 2;
  border: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.28) 45%, transparent 68%);
  transform: translateX(-130%);
  animation: hero-shine 4.5s ease-in-out 0.5s infinite;
  pointer-events: none;
}

.hero-card:hover {
  box-shadow: 0 30px 80px rgba(122, 29, 59, 0.2);
}

.hero-logo-wrap {
  position: relative;
  width: min(100%, 320px);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(122, 29, 59, 0.16);
  transform: translateZ(28px);
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.48) 45%, transparent 68%);
  transform: translateX(-130%);
  animation: hero-shine 3.8s ease-in-out 0.35s infinite;
  pointer-events: none;
}

.masala-ring {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.masala-ring span {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  transform: translateZ(18px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.masala-ring span:hover {
  transform: translateZ(18px) translateY(-4px);
  background: var(--white);
}

.spice-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.5;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 0.35rem rgba(216, 149, 18, 0.08);
  opacity: 0.76;
}

.particle-one {
  left: 9%;
  top: 28%;
  background: #b83a22;
}

.particle-two {
  left: 50%;
  top: 16%;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--turmeric);
}

.particle-three {
  right: 11%;
  top: 31%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--maroon);
}

.particle-four {
  right: 34%;
  bottom: 18%;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--leaf);
}

@keyframes hero-shine {
  0%,
  28% {
    transform: translateX(-120%);
  }

  58%,
  100% {
    transform: translateX(120%);
  }
}

.orb-one {
  width: 12rem;
  height: 12rem;
  left: -4rem;
  top: 12rem;
  background: radial-gradient(circle, var(--turmeric), transparent 65%);
}

.orb-two {
  width: 9rem;
  height: 9rem;
  right: 2rem;
  bottom: 2rem;
  background: radial-gradient(circle, rgba(122, 29, 59, 0.5), transparent 68%);
}

.intro-strip {
  padding: 1.5rem 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.strip-card,
.product-card,
.step-card,
.contact-form,
.contact-card {
  border: 1px solid rgba(216, 149, 18, 0.24);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(87, 38, 19, 0.09);
  backdrop-filter: blur(18px);
}

.strip-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.strip-icon,
.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0.8rem;
  color: var(--maroon);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(242, 185, 39, 0.28), rgba(122, 29, 59, 0.1));
}

.strip-icon .icon,
.contact-icon .icon,
.contact-icon .brand-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.strip-card strong,
.strip-card span {
  display: block;
}

.strip-card strong {
  color: var(--maroon);
  font-size: 1.05rem;
}

.strip-card span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.strip-card .strip-icon {
  display: inline-grid;
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--maroon);
  font-size: 1rem;
}

.answer-strip {
  padding: 3.5rem 0;
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(216, 149, 18, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(87, 38, 19, 0.08);
  backdrop-filter: blur(18px);
}

.answer-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.answer-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.answer-list div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 248, 232, 0.72);
}

.answer-list dt {
  color: var(--maroon);
  font-weight: 900;
}

.answer-list dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.8rem;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading p:not(.eyebrow),
.quality-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  position: relative;
  min-height: 260px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -2.8rem;
  bottom: -2.8rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(216, 149, 18, 0.12);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(122, 29, 59, 0.26);
  box-shadow: 0 28px 70px rgba(87, 38, 19, 0.16);
}

.product-icon {
  display: inline-grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: var(--white);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.22), 0 12px 26px rgba(87, 38, 19, 0.16);
}

.product-icon .icon {
  width: 1.65rem;
  height: 1.65rem;
}

.turmeric {
  background: radial-gradient(circle, #ffda55 0 32%, #e2a00f 33% 100%);
}

.chilli {
  background: radial-gradient(circle, #d73b24 0 32%, #7a1d3b 33% 100%);
}

.coriander {
  background: radial-gradient(circle, #c8a24a 0 32%, #8b6b2d 33% 100%);
}

.seeds {
  background: radial-gradient(circle, #7d4d26 0 32%, #4f2a16 33% 100%);
}

.premium {
  background: radial-gradient(circle, #6d4d2c 0 32%, #251914 33% 100%);
}

.blend {
  background: conic-gradient(from 45deg, #f2b927, #7a1d3b, #486b32, #d89512, #f2b927);
}

.product-card h3,
.step-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.product-card p,
.step-card p {
  color: var(--muted);
}

.quality {
  background:
    linear-gradient(135deg, rgba(122, 29, 59, 0.92), rgba(79, 16, 39, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(242, 185, 39, 0.28), transparent 22rem);
  color: var(--white);
}

.quality h2,
.quality h3,
.quality .eyebrow {
  color: var(--white);
}

.quality-copy p,
.quality .step-card p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--turmeric);
  font-weight: 900;
}

.quality-steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  color: var(--turmeric);
  font-weight: 900;
}

.step-icon .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.pattern-panel {
  min-height: 420px;
  display: grid;
  place-content: center;
  gap: 0.9rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(216, 149, 18, 0.25), rgba(122, 29, 59, 0.18)),
    repeating-linear-gradient(45deg, rgba(122, 29, 59, 0.08) 0 2px, transparent 2px 18px),
    rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  text-align: center;
}

.pattern-panel span {
  color: rgba(122, 29, 59, 0.85);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-stats div {
  padding: 1.2rem;
  border: 1px solid rgba(216, 149, 18, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--maroon);
  font-size: 2rem;
}

.about-stats span {
  color: var(--muted);
}

.faq {
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 185, 39, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(245, 226, 183, 0.42));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.12fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(216, 149, 18, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(87, 38, 19, 0.08);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  color: var(--maroon-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 50%;
  background: var(--maroon);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--saffron);
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
}

.contact {
  position: relative;
}

.contact-grid {
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.ht-name {
  display: inline !important;
  color: var(--turmeric);
  font-weight: 700;
  margin: 0;
}

.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
}

.contact-icon {
  margin-bottom: 0.45rem;
}

.whatsapp-icon {
  color: #198754;
  background: rgba(25, 135, 84, 0.1);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card .contact-icon {
  display: inline-grid;
  color: var(--maroon);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-card .whatsapp-icon {
  color: #198754;
}

.contact-card strong {
  color: var(--maroon-dark);
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(1.4rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-row label {
  color: var(--earth);
  font-weight: 900;
  font-size: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(122, 29, 59, 0.16);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(216, 149, 18, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: var(--leaf);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--maroon);
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, #198754, #24b365);
  box-shadow: 0 18px 45px rgba(25, 135, 84, 0.3);
  font-weight: 900;
  font-size: 1.45rem;
}

.site-footer {
  padding: 3rem 0 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--maroon-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-brand {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-grid strong,
.footer-grid a,
.footer-grid span {
  display: block;
}

.footer-grid strong {
  margin-bottom: 0.75rem;
  color: var(--turmeric);
}

.footer-grid a,
.footer-grid span {
  margin-bottom: 0.4rem;
  overflow-wrap: anywhere;
}

.footer-certs {
  width: min(100% - 2rem, var(--container));
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.certs-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.9rem;
}

.certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
}

.fssai-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 900;
  color: #00a859;
  line-height: 1;
}

.cert-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
}

.cert-sub {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  margin-top: 0.1rem;
}

.cert-badge-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.footer-bottom {
  width: min(100% - 2rem, var(--container));
  margin: 1.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

/* ── Hero product image ── */
.hero-product-img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 440px;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

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

/* ── Showcase strip ── */
.showcase-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.showcase-strip img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(
    to bottom,
    rgba(36, 24, 18, 0.55) 0%,
    rgba(36, 24, 18, 0.35) 40%,
    rgba(36, 24, 18, 0.65) 100%
  );
}

.showcase-overlay h3 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
  max-width: 760px;
}

.showcase-overlay p {
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  max-width: 520px;
}

.showcase-overlay .button {
  background: var(--saffron);
  color: var(--maroon-dark);
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

/* ── Quality section product image ── */
.quality-product-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(87, 38, 19, 0.22);
  display: block;
  margin-top: 2rem;
  max-height: 280px;
  object-fit: cover;
  object-position: center 55%;
}

/* ── About image panel (replaces pattern-panel) ── */
.about-img-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 560px;
}

.about-img-panel img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-panel:hover img {
  transform: scale(1.04);
}

/* ── Carousel (multi-view) ── */
.carousel-wrap {
  position: relative;
  padding: 0 60px;
  user-select: none;
}

.carousel {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(87, 38, 19, 0.15);
}

.carousel-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-slide:hover img {
  transform: scale(1.04);
}

.carousel-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 1.2rem; /* exclude dots area */
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(122, 29, 59, 0.15);
  background: rgba(255, 255, 255, 0.96);
  color: var(--maroon-dark);
  font-size: 1rem;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(87, 38, 19, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-btn:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(87, 38, 19, 0.28);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(122, 29, 59, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.25s ease;
}

.carousel-dot.is-active {
  background: var(--maroon);
  width: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

@media (max-width: 980px) {
  .section-pad {
    padding: 5rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 5.8rem 1rem auto;
    display: grid;
    padding: 1rem;
    border: 1px solid rgba(216, 149, 18, 0.25);
    border-radius: 24px;
    background: rgba(255, 248, 232, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid,
  .quality-grid,
  .about-grid,
  .answer-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-card {
    justify-self: center;
    width: min(100%, 380px);
  }

  .strip-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-wrap {
    padding: 0 52px;
  }

  .carousel-slide img {
    height: 300px;
  }

  .hero-product-img {
    min-height: 320px;
  }

  .showcase-strip img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell,
  .footer-bottom,
  .footer-certs {
    width: min(100% - 2rem, var(--container));
  }

  .certs-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .brand img {
    width: 3rem;
    height: 3rem;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    padding-top: 2.4rem;
    padding-bottom: 2.6rem;
  }

  .hero-card {
    width: min(100%, 320px);
    padding: 1rem;
  }

  .hero-logo-wrap {
    width: min(100%, 235px);
  }

  .masala-ring span {
    padding: 0.42rem 0.62rem;
    font-size: 0.78rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .strip-grid,
  .product-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    padding: 1.2rem;
  }

  .pattern-panel {
    min-height: 300px;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
  }
}

@media (max-width: 420px) {
  .nav-shell {
    gap: 0.5rem;
    padding: 0.55rem 0.6rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand img {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .nav-toggle {
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 auto;
  }

  .contact-form,
  .contact-card,
  .strip-card,
  .step-card {
    padding: 1rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .carousel-wrap {
    padding: 0;
  }

  .carousel-controls {
    position: static;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    pointer-events: all;
  }

  .carousel-btn {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .carousel-btn:hover {
    transform: scale(1.08);
  }

  .carousel-slide img {
    height: 240px;
  }

  .showcase-strip img {
    height: 300px;
  }

  .quality-product-img {
    max-height: 220px;
  }
}
