*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-950: #0f2419;
  --green-900: #162e22;
  --green-800: #1f4a36;
  --green-700: #2a5c44;
  --green-600: #3a7558;
  --green-100: #e6f2eb;
  --green-50: #f7fbf8;
  --cream: #faf8f4;
  --gold: #b8922a;
  --gold-light: #d4b04a;
  --gold-muted: rgba(184, 146, 42, 0.15);
  --text: #152019;
  --text-muted: #5c6b63;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(15, 36, 25, 0.04);
  --shadow: 0 8px 32px rgba(15, 36, 25, 0.07);
  --shadow-lg: 0 20px 60px rgba(15, 36, 25, 0.1);
  --shadow-gold: 0 8px 32px rgba(184, 146, 42, 0.12);
  --radius: 14px;
  --radius-lg: 24px;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--green-900);
}

.container {
  width: min(1140px, 90vw);
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-card.reveal {
  transition-delay: calc(var(--i, 0) * 0.05s);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s, padding 0.4s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 36, 25, 0.06);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.header.scrolled .nav {
  padding: 0.65rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.nav-brand:hover {
  opacity: 0.85;
}

.nav-logo {
  width: 100%;
  height: 72px;
  object-fit: contain;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.header.scrolled .nav-logo {
  width: 62px;
  height: 62px;
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 0.55rem 1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--green-900);
  background: none;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--green-900) !important;
  color: var(--white) !important;
  margin-left: 0.75rem;
  padding: 0.6rem 1.35rem !important;
  border-radius: 999px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px rgba(15, 36, 25, 0.2);
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s !important;
}

.nav-cta:hover {
  background: var(--green-800) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(15, 36, 25, 0.25);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}

@media (max-width: 767px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.25rem;
    border-bottom: 1px solid rgba(15, 36, 25, 0.06);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* Hero Carousel */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  min-height: calc(100vh - 5rem);
}

.hero-track {
  position: relative;
  min-height: calc(100vh - 5rem);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s var(--ease-out);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-slide-bg--brand {
  background: #fcfaf6;
  overflow: hidden;
}

.hero-slide--photo {
  align-items: flex-start;
}

.hero-slide-bg--photo {
  overflow: hidden;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 36, 25, 0.55) 0%, transparent 22%);
}

.hero-photo-title {
  position: absolute;
  top: clamp(5.75rem, 14vh, 7.5rem);
  left: 0;
  right: 0;
  z-index: 3;
  width: min(92vw, 920px);
  margin: 0 auto;
  padding: 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  animation: heroTitleIn 0.8s var(--ease-out) both;
  pointer-events: none;
}

.hero-slide--photo.is-active .hero-photo-title {
  animation: heroTitleIn 0.8s var(--ease-out) both;
}

@media (max-width: 1024px) {
  .hero-photo-title {
    display: none;
  }

  .hero-photo-overlay {
    background: none;
  }
}

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-slide-bg--watermelon {
  background:
    radial-gradient(circle at 80% 30%, rgba(192, 57, 43, 0.08), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(58, 117, 88, 0.1), transparent 45%),
    linear-gradient(135deg, #faf8f4 0%, #f0f7f2 100%);
}

.hero-slide-bg--onion {
  background:
    radial-gradient(circle at 75% 25%, rgba(192, 57, 43, 0.12), transparent 45%),
    linear-gradient(135deg, #faf8f4 0%, #fdf5f0 100%);
}

.hero-slide-bg--melon {
  background:
    radial-gradient(circle at 70% 30%, rgba(184, 146, 42, 0.12), transparent 50%),
    linear-gradient(135deg, #faf8f4 0%, #f7f3e8 100%);
}

.hero-slide-bg--cucumber {
  background:
    radial-gradient(circle at 75% 35%, rgba(58, 117, 88, 0.14), transparent 50%),
    linear-gradient(135deg, #faf8f4 0%, #eef5f0 100%);
}

.hero-slide-bg--okra {
  background:
    radial-gradient(circle at 80% 30%, rgba(58, 117, 88, 0.12), transparent 50%),
    linear-gradient(135deg, #faf8f4 0%, #edf3ee 100%);
}

.hero-slide-bg--gourd {
  background:
    radial-gradient(circle at 25% 70%, rgba(58, 117, 88, 0.1), transparent 45%),
    linear-gradient(135deg, #faf8f4 0%, #f0f5f1 100%);
}

.hero-slide-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 10rem);
  padding: 2rem 0 6rem;
}

.hero-slide-inner--brand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: left;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-slide-inner--brand {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
  }
}

.hero-brand-copy {
  animation: heroSlideIn 0.8s var(--ease-out) both;
  max-width: 560px;
}

.hero-brand-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--green-950);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}

.hero-brand-lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.hero-brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(15, 36, 25, 0.08);
  border-bottom: 1px solid rgba(15, 36, 25, 0.08);
}

.hero-stat {
  text-align: center;
  padding: 0 0.25rem;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(15, 36, 25, 0.08);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.hero-stat span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-brand-copy .hero-actions {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.hero-brand-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-brand-tagline span {
  color: rgba(184, 146, 42, 0.5);
  padding: 0 0.35rem;
}

.hero-brand-showcase {
  position: relative;
  min-height: 340px;
  animation: heroSlideIn 0.8s var(--ease-out) 0.2s both;
}

@media (min-width: 900px) {
  .hero-brand-showcase {
    min-height: 480px;
  }
}

.hero-showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(58, 117, 88, 0.14), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-showcase-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 36, 25, 0.06);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
}

.hero-showcase-card--main {
  width: min(240px, 52vw);
  height: min(240px, 52vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-slide--brand.is-active .hero-showcase-card--main {
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-showcase-card--a {
  width: min(120px, 28vw);
  height: min(120px, 28vw);
  top: 4%;
  right: 8%;
  z-index: 2;
  transform: rotate(4deg);
}

.hero-showcase-card--b {
  width: min(110px, 26vw);
  height: min(110px, 26vw);
  bottom: 12%;
  right: 2%;
  z-index: 2;
  transform: rotate(-3deg);
}

.hero-showcase-card--c {
  width: min(115px, 27vw);
  height: min(115px, 27vw);
  top: 10%;
  left: 2%;
  z-index: 2;
  transform: rotate(-5deg);
}

.hero-showcase-card--d {
  width: min(105px, 25vw);
  height: min(105px, 25vw);
  bottom: 8%;
  left: 10%;
  z-index: 2;
  transform: rotate(3deg);
}

.hero-slide--brand.is-active .hero-showcase-card--a {
  animation: heroFloat 6s ease-in-out 0.5s infinite;
}

.hero-slide--brand.is-active .hero-showcase-card--b {
  animation: heroFloat 5.5s ease-in-out 1s infinite;
}

.hero-slide--brand.is-active .hero-showcase-card--c {
  animation: heroFloat 6.5s ease-in-out 0.3s infinite;
}

.hero-slide--brand.is-active .hero-showcase-card--d {
  animation: heroFloat 5.8s ease-in-out 0.8s infinite;
}

.hero-showcase-badge {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 146, 42, 0.25);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  box-shadow: var(--shadow-sm);
}

.hero-showcase-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
  white-space: nowrap;
}

.hero-showcase-badge--trust {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero-showcase-badge--quality {
  bottom: 0;
  right: 18%;
}

.hero-slide-inner:not(.hero-slide-inner--brand) {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hero-slide-inner:not(.hero-slide-inner--brand) {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-slide-copy {
  animation: heroSlideIn 0.8s var(--ease-out) 0.15s both;
}

.hero-slide.is-active .hero-slide-copy {
  animation: heroSlideIn 0.8s var(--ease-out) 0.15s both;
}

.hero-slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroSlideIn 0.8s var(--ease-out) 0.3s both;
}

.hero-slide-visual img {
  width: min(420px, 85vw);
  max-height: 55vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(15, 36, 25, 0.15));
  transition: transform 0.6s var(--ease-out);
}

.hero-slide.is-active .hero-slide-visual img {
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-slide-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--green-950);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-slide-specs {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-slide-specs li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-slide-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(1140px, 90vw);
  justify-content: center;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 36, 25, 0.12);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--green-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

.hero-arrow:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: scale(1.05);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 36, 25, 0.15);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}

.hero-dot.is-active {
  background: var(--green-800);
  width: 28px;
  border-radius: 999px;
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(15, 36, 25, 0.06);
  z-index: 5;
}

.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-700), var(--gold));
  transition: width 0.05s linear;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--gold-muted), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero-logo {
  width: min(200px, 42vw);
  margin: 0 auto;
  filter: drop-shadow(0 16px 40px rgba(15, 36, 25, 0.1));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.5rem;
}

.hero-tag-divider {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 600;
  color: var(--green-950);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(15, 36, 25, 0.15);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.3s;
}

.hero-scroll:hover {
  border-color: var(--gold);
}

.hero-scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, border-color 0.35s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(15, 36, 25, 0.25);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(15, 36, 25, 0.3);
}

.btn-outline {
  border: 1px solid rgba(15, 36, 25, 0.2);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--gold);
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--green-950);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    gap: 4rem;
  }
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-text p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  margin: 0.1rem 0.6rem 0 0;
  color: var(--green-800);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-950);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.about-quote cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 300;
}

/* Vision Section */
.vision-section {
  background: var(--green-950);
  color: var(--white);
  padding-top: 0;
}

.vision-banner {
  text-align: center;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(184, 146, 42, 0.12), transparent),
    rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vision-banner .section-label {
  color: var(--gold-light);
}

.vision-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.vision-banner p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.85;
}

.vision-grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.vision-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.vision-list {
  list-style: none;
}

.vision-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
}

.vision-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.values-grid span {
  background: rgba(184, 146, 42, 0.15);
  border: 1px solid rgba(184, 146, 42, 0.25);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  background: var(--cream);
  border: 1px solid rgba(15, 36, 25, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 146, 42, 0.2);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(184, 146, 42, 0.2);
  border-radius: 10px;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-950);
  margin-bottom: 0.4rem;
}

.highlight-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-leadership {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(15, 36, 25, 0.08);
}

.leadership-card {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid rgba(184, 146, 42, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 700px) {
  .leadership-card {
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    padding: 2.25rem 2.5rem;
  }
}

.leadership-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, rgba(15, 36, 25, 0.06), rgba(184, 146, 42, 0.08)),
    var(--white);
  border: 1px solid rgba(15, 36, 25, 0.08);
  box-shadow: var(--shadow);
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.leadership-info .section-label {
  display: block;
  margin-bottom: 0.65rem;
}

.leadership-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--green-950);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.leadership-title {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.leadership-bio {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 42ch;
}

/* Field Section */
.field-section {
  background: var(--cream);
  position: relative;
}

.field-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 146, 42, 0.25), transparent);
}

.field-gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .field-gallery {
    gap: 1.5rem;
  }
}

.field-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid rgba(15, 36, 25, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.field-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.field-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.field-photo:hover img {
  transform: scale(1.04);
}

/* Products */
.products {
  background: var(--green-50);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 146, 42, 0.3), transparent);
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.product-filter {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid rgba(15, 36, 25, 0.1);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.product-filter:hover {
  color: var(--green-800);
  border-color: rgba(45, 107, 79, 0.25);
}

.product-filter.is-active {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
  box-shadow: 0 4px 16px rgba(15, 36, 25, 0.18);
}

.product-count {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

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

.product-card {
  --i: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 36, 25, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.45s, opacity 0.35s;
}

.product-card--kitchen-garden .product-image-wrap {
  background: linear-gradient(160deg, #fffdf8 0%, #f8f4eb 100%);
}

.product-category--kitchen-garden {
  color: #9a7330;
}

.product-category--hybrid {
  color: var(--gold);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 146, 42, 0.15);
}

.product-image-wrap {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #fcfcfb 0%, #f3f6f4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
}

.product-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 36, 25, 0.02));
  pointer-events: none;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-card h3 {
  padding: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-950);
  border: none;
  background: transparent;
  margin-bottom: 0.65rem;
}

.product-info {
  padding: 1.25rem 1.35rem 1.5rem;
  border-top: 1px solid rgba(15, 36, 25, 0.05);
  background: var(--white);
}

.product-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.product-specs {
  list-style: none;
}

.product-specs li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.3rem;
}

.product-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-600);
}

/* Categories */
.categories {
  padding: 3.5rem 0;
  background: var(--green-950);
  position: relative;
  overflow: hidden;
}

.categories::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(184, 146, 42, 0.08), transparent);
  pointer-events: none;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  position: relative;
}

.category-list span {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.category-list span:hover {
  background: rgba(184, 146, 42, 0.12);
  border-color: rgba(184, 146, 42, 0.3);
  color: var(--white);
}

/* HSN Table */
.hsn {
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 36, 25, 0.06);
}

.hsn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hsn-table th,
.hsn-table td {
  padding: 1.15rem 1.5rem;
  text-align: left;
  vertical-align: top;
}

.hsn-table thead {
  background: var(--green-950);
  color: var(--white);
}

.hsn-table th {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hsn-table tbody tr {
  border-bottom: 1px solid rgba(15, 36, 25, 0.05);
  transition: background 0.25s;
}

.hsn-table tbody tr:hover {
  background: var(--gold-muted);
}

.hsn-table tbody tr:last-child {
  border-bottom: none;
}

.hsn-table tbody tr:nth-child(even) {
  background: var(--cream);
}

.hsn-table tbody tr:nth-child(even):hover {
  background: var(--gold-muted);
}

.hsn-table td:first-child {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-800);
  white-space: nowrap;
  width: 120px;
}

.hsn-table td:last-child {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

/* Exports */
.exports {
  background:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(184, 146, 42, 0.1), transparent),
    linear-gradient(145deg, var(--green-950) 0%, var(--green-800) 100%);
  color: var(--white);
}

.exports-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .exports-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.exports .section-label {
  color: var(--gold-light);
}

.exports h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.exports p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
}

.exports-badges {
  display: grid;
  gap: 1rem;
}

.export-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem 1.75rem;
  backdrop-filter: blur(8px);
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}

.export-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 146, 42, 0.3);
  transform: translateX(4px);
}

.export-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.export-badge span {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Contact */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 36, 25, 0.05);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 146, 42, 0.15);
}

.contact-card-wide {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .contact-card-wide {
    grid-column: span 2;
  }
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.contact-card p {
  font-size: 1rem;
  color: var(--green-950);
  font-weight: 400;
  line-height: 1.6;
}

.contact-card a {
  font-weight: 400;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-card--social {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--cream);
  border: 1px solid rgba(15, 36, 25, 0.1);
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--green-950);
  color: var(--white);
  border-color: var(--green-950);
  box-shadow: var(--shadow);
}

.social-links--footer .social-link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.social-links--footer .social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-950);
}

.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}

@media (max-width: 480px) {
  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }

  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
}

/* Footer */
.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.55);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(184, 146, 42, 0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0.75rem 1.15rem;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.footer-logo {
  width: 96px;
  height: auto;
  display: block;
}

.footer p {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .hero-scroll {
    display: none;
  }

  .hero-controls {
    bottom: 1.5rem;
  }

  .hero-slide-inner {
    padding-bottom: 5rem;
  }

  .hero-slide-visual img {
    max-height: 38vh;
  }

  .hero-brand-showcase {
    min-height: 300px;
    margin-top: 0.5rem;
  }

  .hero-brand-stats {
    gap: 0.5rem;
  }

  .hero-stat strong {
    font-size: 1.15rem;
  }

  .hero-stat span {
    font-size: 0.6rem;
  }

  .hero-brand-copy .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-showcase-badge--quality {
    right: 5%;
    bottom: 2%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
