:root {
  --bg: #f5f0df;
  --bg-soft: rgba(255, 255, 255, 0.62);
  --panel: rgba(255, 252, 245, 0.84);
  --panel-strong: rgba(255, 248, 233, 0.95);
  --text: #24311a;
  --muted: #607154;
  --line: rgba(54, 82, 36, 0.14);
  --primary: #5f8b2f;
  --primary-deep: #355b19;
  --accent: #cf8b2b;
  --cream: #fff5df;
  --shadow: 0 24px 64px rgba(69, 87, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(128, 165, 70, 0.2), transparent 28%),
    radial-gradient(circle at right top, rgba(207, 139, 43, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f4e7 0%, #efe8d4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(64, 89, 41, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 89, 41, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 90%);
  pointer-events: none;
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 251, 243, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 4.75rem;
  height: 4.75rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.site-nav a,
.button,
.filter-chip,
.feature-kicker,
.eyebrow {
  font-family: "Manrope", sans-serif;
}

.brand-copy strong {
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--muted);
}

.menu-toggle {
  display: none;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), #e6b15b);
  color: #32230d;
}

.panel {
  position: relative;
  overflow: hidden;
  margin-top: 1.25rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 36%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
  min-height: 72vh;
}

.hero-copy,
.hero-highlight,
.about-grid,
.product-grid,
.benefit-grid,
.contact-grid,
.enquiry {
  position: relative;
  z-index: 1;
}

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

h1,
h2,
h3,
.footer-title {
  margin-top: 0;
  font-family: "Fraunces", serif;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.98;
}

h2 {
  max-width: 14ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

p {
  margin-top: 0;
}

.hero-text,
.about p,
.product-card p,
.benefit-card p,
.contact-card p,
.enquiry-copy p,
.footer-copy,
.location-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.button-primary {
  border: 0;
  background: linear-gradient(145deg, var(--primary), #8db048);
  color: #f8f4ea;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
}

.hero-highlight {
  display: grid;
  align-content: end;
}

.feature-panel,
.product-card,
.benefit-card,
.contact-card,
.location-panel {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-strong);
}

.feature-panel {
  background:
    radial-gradient(circle at top right, rgba(143, 179, 78, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 221, 0.96));
}

.feature-kicker,
.product-type,
.location-label {
  margin-bottom: 0.7rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.compact-list,
.product-list,
.enquiry-points {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.about-grid,
.product-grid,
.benefit-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.filter-chip {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active {
  border-color: transparent;
  background: linear-gradient(145deg, var(--primary), #8db048);
  color: #f8f4ea;
}

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

.product-card {
  display: grid;
  gap: 0.9rem;
}

.product-image-wrap {
  display: grid;
  place-items: center;
  min-height: 21rem;
  padding: 1rem;
  border: 1px solid rgba(53, 91, 25, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.product-image {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(40, 63, 27, 0.16));
}

.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pack-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pack-badge {
  background: rgba(95, 139, 47, 0.12);
  color: var(--primary-deep);
}

.product-tagline {
  color: var(--text);
  font-weight: 700;
}

.product-kamdhenu {
  background:
    linear-gradient(180deg, rgba(135, 181, 62, 0.14), rgba(255, 255, 255, 0.96)),
    var(--panel-strong);
}

.product-kranti {
  background:
    linear-gradient(180deg, rgba(34, 116, 61, 0.16), rgba(255, 255, 255, 0.96)),
    var(--panel-strong);
}

.product-power {
  background:
    linear-gradient(180deg, rgba(38, 117, 67, 0.16), rgba(255, 255, 255, 0.96)),
    var(--panel-strong);
}

.product-gold {
  background:
    linear-gradient(180deg, rgba(21, 66, 126, 0.16), rgba(255, 255, 255, 0.96)),
    var(--panel-strong);
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.enquiry {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}

.message-field,
.enquiry-form button,
.form-note,
.direct-actions {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(70, 96, 42, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #80906d;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.contact-card small {
  color: #7f906e;
  line-height: 1.6;
}

.contact-email {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-whatsapp {
  border: 0;
  background: linear-gradient(145deg, #1fba5b, #54d58a);
  color: #f7fff9;
}

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

.footer-title {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.product-card.is-hidden {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .hero,
  .enquiry,
  .about-grid,
  .product-grid,
  .benefit-grid,
  .contact-grid,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-panel,
  .footer div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 1rem, 100%);
  }

  .brand {
    align-items: center;
  }

  .brand-mark {
    width: 4rem;
    height: 4rem;
  }

  .topbar {
    top: 0.5rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .enquiry,
  .about-grid,
  .product-grid,
  .benefit-grid,
  .contact-grid,
  .footer,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .direct-actions {
    flex-direction: column;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4.4rem);
  }
}
