/* ========================================================
   CALIBRATED AGRONOMY — "Precision Cultivation" Design System
   ======================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  /* Brand */
  --green: #437244;
  --green-deep: #335633;
  --green-light: #5a8e5a;
  --gold: #d4a020;
  --gold-light: #e0b040;

  /* Neutrals */
  --ink: #0f1a12;
  --charcoal: #1a1a1a;
  --slate: #333333;
  --stone: #5a5f5b;
  --dust: #8a8e8b;
  --fog: #c4c7c5;
  --chalk: #e8ebe9;
  --cream: #f5f6f4;
  --white: #fafbfa;

  /* Earth accents */
  --earth: #3d5a3a;
  --earth-light: #4a7045;
  --soil: #6b5b47;
  --wheat: #c9a96e;

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 80px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 26, 18, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 26, 18, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 26, 18, 0.1);
  --shadow-xl: 0 16px 48px rgba(15, 26, 18, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

p {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 65ch;
}

.text-sm { font-size: 0.9rem; }
.text-lg { font-size: 1.2rem; line-height: 1.55; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

section {
  padding: var(--space-2xl) 0;
}

/* --- Topographic Pattern (SVG background) --- */
.topo-bg {
  position: relative;
}

.topo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cpath d='M200 0c0 110.5-89.5 200-200 200M200 0c0 110.5 89.5 200 200 200M0 200c110.5 0 200 89.5 200 200M400 200c-110.5 0-200 89.5-200 200' fill='none' stroke='%23437244' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='60' fill='none' stroke='%23437244' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%23437244' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23437244' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  pointer-events: none;
  z-index: 0;
}

.topo-bg > * {
  position: relative;
  z-index: 1;
}

/* --- Grain overlay --- */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  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");
  pointer-events: none;
  z-index: 9999;
}

/* ========================================================
   NAVIGATION
   ======================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(250, 251, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 26, 18, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  height: 44px;
  width: auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 4px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease-out);
}

.nav--scrolled .nav__logo-text {
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease-out);
  position: relative;
}

.nav--scrolled .nav__link {
  color: var(--slate);
}

.nav--scrolled .nav__link:hover {
  color: var(--green);
}

.nav--scrolled .nav__link--active {
  color: var(--green);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--white); }
.nav__link--active::after { width: 100%; background: var(--white); }

.nav--scrolled .nav__link::after {
  background: var(--green);
}

/* --- Mobile Nav Toggle --- */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease-out);
  border-radius: 1px;
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 114, 68, 0.3);
}

.btn--accent {
  background: var(--gold);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 160, 32, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn--outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(67, 114, 68, 0.15), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(61, 90, 58, 0.1), transparent);
  z-index: 0;
}

/* Topographic hero lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cpath d='M300 50c0 138-112 250-250 250M300 50c0 138 112 250 250 250M50 300c138 0 250 112 250 250M550 300c-138 0-250 112-250 250' fill='none' stroke='%23ffffff' stroke-width='0.8'/%3E%3Ccircle cx='300' cy='300' r='80' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3Ccircle cx='300' cy='300' r='160' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3Ccircle cx='300' cy='300' r='240' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 600px 600px;
  animation: topoDrift 60s linear infinite;
  z-index: 0;
}

@keyframes topoDrift {
  from { background-position: 0 0; }
  to { background-position: 600px 600px; }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--fog);
  max-width: 42ch;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Ccircle cx='300' cy='300' r='80' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3Ccircle cx='300' cy='300' r='160' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3Ccircle cx='300' cy='300' r='240' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 600px 600px;
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero__sub {
  color: var(--fog);
  font-size: 1.15rem;
  margin-top: var(--space-sm);
  position: relative;
  z-index: 1;
}

/* ========================================================
   PILLARS / VALUE PROPS
   ======================================================== */
.pillars {
  background: var(--white);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.pillar {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--chalk);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(40%) sepia(15%) saturate(1200%) hue-rotate(80deg) brightness(90%) contrast(90%);
}

.pillar h3 {
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.pillar p {
  margin: 0 auto;
  color: var(--stone);
  font-size: 0.98rem;
}

/* ========================================================
   ABOUT / MISSION SECTION
   ======================================================== */
.mission {
  background: var(--cream);
}

.mission__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.mission__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
}

.mission h2 {
  margin-bottom: var(--space-md);
}

.mission p {
  margin-bottom: var(--space-sm);
}

.mission__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.mission__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 26, 18, 0.06);
  border-radius: var(--radius-lg);
}

/* ========================================================
   HOW IT WORKS
   ======================================================== */
.how-it-works {
  background: var(--white);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.how-it-works__header p {
  margin: var(--space-sm) auto 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--chalk);
  transition: all 0.4s var(--ease-out);
}

.step:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--chalk);
  margin-bottom: var(--space-sm);
  line-height: 1;
  transition: color 0.4s var(--ease-out);
}

.step:hover::before {
  color: var(--green-light);
}

.step h3 {
  margin-bottom: var(--space-xs);
}

.step p {
  font-size: 0.95rem;
}

/* Connecting line between steps */
.steps__connector {
  display: none;
}

/* ========================================================
   PREDICTIVE AGRONOMY TEASER
   ======================================================== */
.predictive-teaser {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.predictive-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(67, 114, 68, 0.12), transparent);
}

.predictive-teaser .container {
  position: relative;
  z-index: 1;
}

.predictive-teaser__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.predictive-teaser__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.predictive-teaser h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.predictive-teaser p {
  color: var(--fog);
  margin-bottom: var(--space-md);
}

.predictive-teaser__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Animated data viz placeholder */
.data-rings {
  width: 300px;
  height: 300px;
  position: relative;
}

.data-rings__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(67, 114, 68, 0.25);
  animation: ringPulse 4s ease-in-out infinite;
}

.data-rings__ring:nth-child(1) {
  inset: 0;
  animation-delay: 0s;
}

.data-rings__ring:nth-child(2) {
  inset: 40px;
  animation-delay: 0.5s;
}

.data-rings__ring:nth-child(3) {
  inset: 80px;
  animation-delay: 1s;
}

.data-rings__ring:nth-child(4) {
  inset: 120px;
  background: rgba(67, 114, 68, 0.1);
  animation-delay: 1.5s;
}

.data-rings__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotOrbit 8s linear infinite;
}

.data-rings__dot:nth-child(5) {
  top: 50%;
  left: 0;
  animation-delay: 0s;
}

.data-rings__dot:nth-child(6) {
  top: 0;
  left: 50%;
  animation-delay: 2s;
}

.data-rings__dot:nth-child(7) {
  top: 50%;
  right: 0;
  animation-delay: 4s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes dotOrbit {
  from { transform: rotate(0deg) translateX(4px); }
  to { transform: rotate(360deg) translateX(4px); }
}

/* ========================================================
   NEWSLETTER
   ======================================================== */
.newsletter {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='160' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 400px 400px;
}

.newsletter .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto var(--space-lg);
}

.newsletter__form {
  display: flex;
  gap: var(--space-xs);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s var(--ease-out);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter__input:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
  background: var(--charcoal);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  color: var(--dust);
  font-size: 0.92rem;
  margin-top: var(--space-sm);
  max-width: 30ch;
}

.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: var(--space-md);
}

.footer__link {
  display: block;
  color: var(--dust);
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.25s var(--ease-out);
}

.footer__link:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--dust);
  font-size: 0.92rem;
  margin-bottom: var(--space-sm);
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--green-light);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--dust);
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bar p {
  color: var(--dust);
  font-size: 0.82rem;
}

/* ========================================================
   PRODUCT GRID
   ======================================================== */
.products-section {
  background: var(--white);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  justify-content: center;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--chalk);
  border-radius: 100px;
  background: var(--white);
  color: var(--stone);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-btn--active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

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

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--chalk);
  transition: all 0.4s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card__image {
  aspect-ratio: 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  overflow: hidden;
}

.product-card__image img {
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__body {
  padding: var(--space-md);
}

.product-card__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(67, 114, 68, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: var(--space-xs);
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--stone);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.3s var(--ease-out);
}

.product-card__link:hover {
  gap: 0.7rem;
}

/* ========================================================
   TEAM GRID
   ======================================================== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--chalk);
  transition: border-color 0.3s var(--ease-out);
}

.team-card:hover .team-card__photo {
  border-color: var(--green);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  margin-bottom: 0.15rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.team-card p:last-child {
  font-size: 0.88rem;
  color: var(--stone);
  max-width: 28ch;
  margin: 0 auto;
}

/* Co-owners get larger cards */
.team-card--featured .team-card__photo {
  width: 220px;
  height: 220px;
}

/* ========================================================
   TWO FORCES SECTION
   ======================================================== */
.two-forces {
  background: var(--cream);
}

.two-forces__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.two-forces__logos {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-md);
}

.two-forces__logos img {
  height: 60px;
  object-fit: contain;
}

.two-forces__logos span {
  font-size: 1.5rem;
  color: var(--dust);
  font-weight: 300;
}

/* ========================================================
   PHILOSOPHY / QUOTE
   ======================================================== */
.philosophy {
  background: var(--white);
}

.quote-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-block__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--green);
  line-height: 0.5;
  margin-bottom: var(--space-sm);
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.quote-block cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.92rem;
  color: var(--stone);
  font-weight: 500;
}

/* ========================================================
   CONTACT CARDS
   ======================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--chalk);
  transition: all 0.3s var(--ease-out);
}

.contact-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(67, 114, 68, 0.08);
  color: var(--green);
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h4 {
  margin-bottom: 0.3rem;
}

.contact-card p {
  margin: 0 auto;
  font-size: 0.92rem;
}

.contact-card a {
  color: var(--green);
  font-weight: 500;
  transition: color 0.25s;
}

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

/* ========================================================
   FORM
   ======================================================== */
.form {
  max-width: 600px;
}

.form__group {
  margin-bottom: var(--space-md);
}

.form__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--chalk);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(67, 114, 68, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

/* ========================================================
   DEALER MAP
   ======================================================== */
.dealer-section {
  background: var(--cream);
}

.dealer-map-placeholder {
  background: var(--white);
  border: 2px dashed var(--chalk);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}

.dealer-map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--dust);
  margin-bottom: var(--space-sm);
}

/* ========================================================
   PREDICTIVE AGRONOMY PAGE
   ======================================================== */
.pa-pitch {
  background: var(--white);
}

.pa-pitch__statements {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pa-pitch__line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--ink);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s var(--ease-out);
}

.pa-pitch__line.visible {
  opacity: 1;
  transform: translateY(0);
}

.pa-pitch__line span {
  color: var(--green);
}

.pa-benefits {
  background: var(--cream);
}

.pa-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.pa-benefit {
  padding: var(--space-xl) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--chalk);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.pa-benefit:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pa-benefit__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(67, 114, 68, 0.08);
  color: var(--green);
}

.pa-benefit__icon svg {
  width: 26px;
  height: 26px;
}

.pa-benefit h3 {
  margin-bottom: var(--space-xs);
}

.pa-benefit p {
  margin: 0 auto;
  font-size: 0.95rem;
}

.pa-cta {
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pa-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(67, 114, 68, 0.15), transparent);
}

.pa-cta .container {
  position: relative;
  z-index: 1;
}

.pa-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.pa-cta p {
  color: var(--fog);
  margin: 0 auto var(--space-lg);
}

/* ========================================================
   SCROLL ANIMATIONS
   ======================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ========================================================
   CONTACT LAYOUT
   ======================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: var(--space-sm);
}

.contact-info > p {
  margin-bottom: var(--space-lg);
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-xl) 0;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 251, 250, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 80vh;
    padding-top: var(--nav-height);
  }

  .hero h1 {
    max-width: none;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .mission__layout,
  .predictive-teaser__layout,
  .two-forces__layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .pa-benefits__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bar {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .data-rings {
    width: 220px;
    height: 220px;
  }

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

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }
}
