@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --bg: #f6f3ea;
  --ink: #10240f;
  --primary: #2f9e44;
  --primary-dark: #1c6e2b;
  --accent: #ff8f3f;
  --hero-bg-1: #0e1f12;
  --hero-bg-2: #163d1d;
  --hero-bg-3: #2f9e44;
  --card-bg: #ffffff;
  --radius: 18px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--hero-bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}
.preloader.is-done {
  pointer-events: none;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  z-index: 60;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: transform 0.35s ease, background 0.35s ease, padding 0.35s ease;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .nav-brand {
  color: #fff;
}
.site-nav.is-scrolled {
  background: rgba(246, 243, 234, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.site-nav.is-scrolled .nav-brand {
  color: var(--ink);
}
.site-nav.is-hidden {
  transform: translateY(-110%);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease;
}
.nav-brand img {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  background: var(--primary);
  color: #fff;
}
.site-nav.is-scrolled .nav-cta {
  background: var(--ink);
}
@media (max-width: 560px) {
  .nav-cta {
    display: none;
  }
}
.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  cursor: pointer;
  position: relative;
  z-index: 70;
}
.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--hero-bg-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.nav-overlay a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  text-decoration: none;
  color: #fff;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}
.nav-overlay a:hover {
  color: var(--accent);
}
body.nav-locked {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  background: radial-gradient(circle at 15% 20%, var(--hero-bg-3) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, var(--accent) 0%, transparent 40%),
    linear-gradient(160deg, var(--hero-bg-1), var(--hero-bg-2));
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9, 20, 11, 0.88) 0%, rgba(9, 20, 11, 0.68) 32%, rgba(9, 20, 11, 0.18) 62%, rgba(9, 20, 11, 0.05) 100%),
    linear-gradient(0deg, rgba(9, 20, 11, 0.55), transparent 45%);
}
.hero-blob {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-blob.b1 {
  width: 420px;
  height: 420px;
  background: var(--primary);
  top: -120px;
  right: -100px;
}
.hero-blob.b2 {
  width: 320px;
  height: 320px;
  background: var(--accent);
  bottom: -80px;
  left: -80px;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 700;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.25em;
}
.hero-title .word span {
  display: inline-block;
}
.hero-subtitle {
  max-width: 520px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.5rem;
}
.hero-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-floating-badge {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 0.9rem 1.4rem;
}
.hero-floating-badge strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--accent);
}
.hero-floating-badge span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  max-width: 140px;
  line-height: 1.3;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary {
  background: var(--accent);
  color: #10240f;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  padding: 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.marquee-track span::after {
  content: "•";
  margin-left: 1.5rem;
  color: var(--accent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Sections */
section {
  padding: 7rem 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-tag {
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 0.75rem;
}

.reveal {
  opacity: 0;
}
.reveal.is-visible {
  opacity: 1;
}

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--primary), var(--hero-bg-2));
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text p {
  font-size: 1.05rem;
  color: #3a3a3a;
}

/* Mission / Vision cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.tilt-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.tilt-card h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.tilt-card p {
  color: #444;
  font-size: 0.98rem;
}

/* Featured product photo grid */
.featured-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.featured-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 45px -28px rgba(0, 0, 0, 0.35);
}
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-card:hover img {
  transform: scale(1.06);
}
.featured-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(14, 31, 18, 0.85));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Collage / quality section */
.collage-section {
  padding: 7rem 0;
}
.collage-panel {
  background: linear-gradient(160deg, #eef7ec, #f6f3ea);
  border-radius: 32px;
  padding: 4rem;
}
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.collage-media {
  position: relative;
  aspect-ratio: 1/1;
}
.collage-img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 25px 55px -25px rgba(0, 0, 0, 0.4);
}
.collage-img-back {
  width: 78%;
  height: 78%;
  top: 0;
  right: 0;
}
.collage-img-front {
  width: 58%;
  height: 58%;
  bottom: 0;
  left: 0;
  border: 6px solid var(--bg);
}
.collage-badge {
  position: absolute;
  top: 8%;
  left: -1rem;
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.collage-badge strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary-dark);
}
.collage-badge span {
  font-size: 0.75rem;
  color: #555;
  max-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.collage-text p {
  font-size: 1.05rem;
  color: #3a3a3a;
}

/* Immersive freshness photo band */
.freshness-band {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.freshness-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.freshness-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(10, 20, 12, 0.75) 60%, rgba(10, 20, 12, 0.85));
  color: #fff;
}
.freshness-overlay .section-tag {
  color: var(--accent);
}
.freshness-overlay h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-top: 0.75rem;
}

/* Split tiles + quote */
.split-section {
  padding: 7rem 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.split-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.split-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 20px 45px -28px rgba(0, 0, 0, 0.35);
}
.split-tile-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.split-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(14, 31, 18, 0.85));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.quote-card {
  background: linear-gradient(160deg, var(--hero-bg-1), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}
.quote-card p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}
.quote-source {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Product / service category blocks */
.category-block {
  margin-bottom: 3rem;
}
.category-block h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  color: #333;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pill:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Parallax banner */
.banner {
  position: relative;
  padding: 9rem 0;
  background: linear-gradient(160deg, var(--hero-bg-1), var(--primary-dark));
  color: #fff;
  overflow: hidden;
}
.banner [data-parallax-container] {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
}
.banner-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
  filter: blur(80px);
  top: 10%;
  right: 10%;
}
.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.banner-quote {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.contact-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}
.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-row a svg {
  width: 19px;
  height: 19px;
}
.social-row a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  background: var(--hero-bg-1);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 0;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .nav-brand {
  color: #fff;
}
.footer-brand p {
  margin-top: 1rem;
  max-width: 320px;
  font-size: 0.92rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col span {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-wordmark {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 18vw, 11rem);
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: 0.02em;
  user-select: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .about-grid,
  .card-grid,
  .contact-grid,
  .collage-grid,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    aspect-ratio: 16/10;
  }
  section {
    padding: 4.5rem 0;
  }
  .hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  .scroll-cue {
    display: none;
  }
  .featured-products {
    grid-template-columns: 1fr 1fr;
  }
  .collage-panel {
    padding: 2rem;
    border-radius: 24px;
  }
  .collage-media {
    aspect-ratio: 4/3;
    margin-bottom: 1rem;
  }
  .collage-badge {
    left: 0.5rem;
  }
  .quote-card {
    padding: 2rem;
  }
}

@media (max-width: 560px) {
  .featured-products {
    grid-template-columns: 1fr;
  }
  .split-tiles {
    grid-template-columns: 1fr;
  }
  .split-tile-wide {
    grid-column: span 1;
  }
}
