:root {
  --green-dark: #0F3B25;
  --green-deep: #1A5A36;
  --green-mid: #2D7C4F;
  --red: #C8312A;
  --red-deep: #9F2620;
  --cream: #F8F4E8;
  --cream-warm: #F0E9D6;
  --ink: #1A1A1A;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
.font-display { font-family: 'Fraunces', Georgia, serif; }
.bg-green-dark { background: var(--green-dark); }
.bg-green-deep { background: var(--green-deep); }
.bg-cream { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-red { background: var(--red); }
.text-green-dark { color: var(--green-dark); }
.text-red { color: var(--red); }
.text-cream { color: var(--cream); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,59,37,0.55) 0%, rgba(15,59,37,0.75) 70%, rgba(15,59,37,0.95) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

/* Headings */
.h-display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.h-display-italic { font-style: italic; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(200,49,42,0.35);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,49,42,0.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, rgba(15,59,37,0.5) 0%, transparent 100%);
}
.site-header.scrolled {
  background: rgba(15,59,37,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.nav-link:hover { background: rgba(255,255,255,0.12); }

/* Stat card glassmorphism */
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label { color: rgba(255,255,255,0.85); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 12px; font-weight: 500; }

/* Section */
.section { padding: 100px 0; }
.container-x { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 16px; display: inline-block; }

/* Product cards */
.product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,59,37,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  color: #fff;
}
.product-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none; font-weight: 600;
  margin-top: 12px; opacity: 0.9;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px; align-self: flex-start;
  transition: gap 0.3s ease;
}
.product-card-link:hover { gap: 14px; opacity: 1; }

/* Values grid */
.value-item {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15,59,37,0.08);
  transition: all 0.3s ease;
}
.value-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,59,37,0.1); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--cream-warm); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--green-dark);
}

/* B2B block */
.b2b-section {
  background: var(--green-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.b2b-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(200,49,42,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(45,124,79,0.3) 0%, transparent 50%);
}
.b2b-big-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  line-height: 0.9;
  color: var(--red);
  letter-spacing: -0.05em;
}

/* Gallery - moved to inline styles in index.html */

/* CTA strip */
.cta-strip {
  background: var(--red);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: #0a2616;
  color: rgba(255,255,255,0.8);
  padding: 80px 0 30px;
}
.footer-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.25s; }
.footer-link:hover { color: #fff; }

/* Form */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.25s;
}
.form-input:focus { outline: none; border-color: var(--red); background: rgba(255,255,255,0.1); }
.form-input::placeholder { color: rgba(255,255,255,0.5); }

/* Mobile menu */
.mobile-menu-btn { display: none; }
.mobile-menu { display: none; }
@media (max-width: 1024px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: inline-flex !important; }
}
.mobile-menu.active { display: block; }
.mobile-menu {
  position: fixed; top: 0; right: 0; width: 100%; max-width: 360px; height: 100vh;
  background: var(--green-dark);
  padding: 80px 32px 32px;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { display: block; padding: 14px 0; color: #fff; text-decoration: none; font-size: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* Responsive hero text */
.hero-title { font-size: clamp(2.5rem, 7vw, 5.5rem); }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.25rem); }

/* Section heading */
.section-title { font-size: clamp(2rem, 4.5vw, 3.75rem); }

/* Decorative watermelon slice */
.watermelon-deco {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--red) 0%, var(--red) 65%, var(--green-dark) 68%, var(--green-deep) 100%);
  opacity: 0.05;
}