/* ============================================
   JAMII PISHORI RICE — STYLESHEET
   Premium East African Agricultural Brand
   ============================================ */

/* === CSS VARIABLES === */
:root {
  --green: #1F5E3B;
  --green-dark: #164a2e;
  --green-light: #2d7a50;
  --gold: #D4A017;
  --gold-light: #e8b520;
  --gold-dark: #b8891a;
  --cream: #F8F4E8;
  --cream-dark: #ede8d6;
  --red: #9E2A2B;
  --red-light: #b83233;
  --charcoal: #1E1E1E;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #666;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);

  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 300;
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,94,59,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* === ANIMATIONS === */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(31, 94, 59, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,160,23,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(158,42,43,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #0d3320 0%, #1F5E3B 40%, #164a2e 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 720px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  display: block;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.8;
}
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: inline; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}
.hero-badge {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.badge-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  animation: rotateBadge 20s linear infinite;
}
.badge-ring span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212,160,23,0.8);
  line-height: 1.6;
}
@keyframes rotateBadge {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 78%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  position: relative;
}
.img-fields { background: linear-gradient(180deg, #87CEAB 0%, #4a9e6a 30%, #2d7a4e 60%, #1a5c35 100%); }
.img-grain { background: linear-gradient(135deg, #c8a96e, #a07840, #d4b87a); }
.img-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.field-art {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  height: 80%;
  padding: 0 16px 16px;
}
.field-row {
  flex: 1;
  height: var(--h);
  background: rgba(255,255,255,0.15);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.field-row::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
}
.grain-art { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.grain-pile {
  width: 80%;
  height: 50%;
  background: rgba(255,255,255,0.2);
  border-radius: 50% 50% 40% 40%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.grain-pile::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.about-stat-card {
  position: absolute;
  left: -20px;
  bottom: 60px;
  background: var(--green);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-stat-card .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-stat-card .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-top: 4px;
}

.about-content {}
.about-text {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.pillar p { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 120px 0;
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-featured {
  background: var(--green);
}
.product-featured .product-info h3,
.product-featured .product-info p,
.product-featured .product-price {
  color: var(--white);
}
.product-featured .product-tags span {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}
.badge-green { background: var(--gold); color: var(--charcoal); }
.badge-red { background: var(--red); color: var(--white); }
.badge-dark { background: var(--charcoal); color: var(--white); }

.product-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 20px;
}
.product-featured .product-visual { background: rgba(255,255,255,0.08); }

/* Rice Bag SVG-Art */
.rice-bag {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  transition: var(--transition);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}
.product-card:hover .rice-bag { transform: scale(1.08) rotate(-2deg); }
.bag-top {
  width: 80px;
  height: 16px;
  border-radius: 6px 6px 0 0;
  position: relative;
}
.bag-body {
  width: 110px;
  min-height: 140px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.bag-label {
  text-align: center;
  color: var(--white);
}
.bag-logo { font-size: 1.8rem; margin-bottom: 4px; }
.bag-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; }
.bag-weight { font-size: 1.4rem; font-weight: 700; font-family: var(--font-body); margin-top: 4px; }

.bag-gold .bag-top { background: var(--gold-dark); }
.bag-gold .bag-body { background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%); }
.bag-gold .bag-label { color: var(--charcoal); }

.bag-green .bag-top { background: var(--green-dark); }
.bag-green .bag-body { background: linear-gradient(160deg, var(--green-light) 0%, var(--green-dark) 100%); }

.bag-red .bag-top { background: #7a1e1f; }
.bag-red .bag-body { background: linear-gradient(160deg, var(--red-light) 0%, #7a1e1f 100%); }

.bag-dark .bag-top { background: #111; }
.bag-dark .bag-body { background: linear-gradient(160deg, #333 0%, #111 100%); }

.product-info { padding: 20px 24px 24px; }
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.product-info h3 span { color: var(--gold-dark); font-style: italic; margin-left: 4px; }
.product-featured .product-info h3 span { color: var(--gold-light); }
.product-info p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 12px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.product-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--cream);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: 120px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.benefits-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.5) 0px,
    rgba(255,255,255,0.5) 1px,
    transparent 1px,
    transparent 40px
  );
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon-wrap {
  margin-bottom: 20px;
}
.benefit-icon {
  font-size: 2.4rem;
  display: inline-block;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(-5deg);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.benefit-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.8; }
.benefit-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 24px;
  width: 40%;
  opacity: 0.4;
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  background: var(--gold);
  padding: 60px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.stat { text-align: center; }
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--green-dark);
  display: inline-block;
}
.stat p {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(31,94,59,0.7);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(31,94,59,0.2);
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--cream);
}
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}
.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 56px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--gold);
  line-height: 0.7;
  position: absolute;
  top: 28px;
  left: 40px;
  opacity: 0.3;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--charcoal); }
.testimonial-author span { font-size: 0.82rem; color: var(--gray-400); }
.stars { margin-left: auto; color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.carousel-btn:hover { background: var(--green); color: var(--white); }
.carousel-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: var(--transition-fast);
}
.dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 120px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-art {
  position: absolute;
  inset: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-img:hover .gallery-art { transform: scale(1.08); }

/* Gallery art backgrounds */
.art-field { background: linear-gradient(160deg, #4CAF76 0%, #2d8050 30%, #1a5c35 60%, #0d3320 100%); }
.art-field::before {
  content: '🌾🌾🌾🌾🌾';
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  letter-spacing: 8px;
}
.art-hands { background: linear-gradient(160deg, #d4a96e, #8b6914, #5c4510); }
.art-bowl { background: linear-gradient(160deg, #f5e6c8, #e8c882, #c4973c); }
.art-bowl::after {
  content: '🍚';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}
.art-mill { background: linear-gradient(160deg, #8B7355, #5c4a2a, #3d3020); }
.art-pack { background: linear-gradient(160deg, #2d6b47, #1F5E3B, #0d3320); }
.art-pack::after {
  content: '🌾';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-img:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================
   WHOLESALE
   ============================================ */
.wholesale {
  padding: 120px 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.wholesale-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(212,160,23,0.12) 0%, transparent 70%),
    linear-gradient(135deg, #7a1e1f 0%, var(--red) 50%, #b83233 100%);
}
.wholesale-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.wholesale-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.2);
}
.wholesale-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.wholesale-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.wholesale-text { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; }
.wholesale-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  margin-bottom: 48px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.wf-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wf-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.wholesale-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-text { color: var(--gray-600); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 2px; }
.contact-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.social-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 12px; }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  box-shadow: var(--shadow);
  transition: var(--transition-fast);
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition-fast);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31,94,59,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  background: #e8f5ee;
  color: var(--green);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: flex; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--charcoal); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo .logo-text { font-size: 1.3rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 28px; }
.footer-newsletter > p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  padding: 10px 18px;
  color: var(--white);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-btn {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 20px;
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
}
.newsletter-btn:hover { background: var(--gold-light); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--gold); color: var(--charcoal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(4px);
  transition: var(--transition-fast);
  pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--charcoal);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { height: 380px; }
  .about-stat-card { left: 0; bottom: -20px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-badge { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    padding: 80px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 12px 24px; }
  .hamburger { display: flex; position: relative; z-index: 1000; }

  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero-content { padding: 100px 24px 80px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-large { grid-column: span 2; height: 200px; }
  .gallery-item { height: 160px; }
  .wholesale-features { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 24px; }
  .stat-divider { display: none; }
  .testimonial-card { padding: 36px 28px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .about-img-wrap { height: 300px; }
  .about-img-main { width: 90%; height: 260px; }
  .about-img-accent { width: 55%; height: 160px; right: 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .wholesale-features { grid-template-columns: 1fr; }
  .wholesale-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; }
}
