:root {
  --green: #304904;
  --green-dark: #203500;
  --green-soft: #5d7334;
  --cream: #fff8d9;
  --cream-soft: #f8f0c9;
  --white: #ffffff;
  --gold: #d8c47a;
  --shadow: 0 18px 40px rgba(12, 22, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--green);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 16px;
  left: 0;
  right: 0;
  width: min(1320px, calc(100% - 38px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 18px;
}
.logo img { width: 72px; }
.site-nav {
  justify-self: center;
  display: flex;
  gap: 2px;
  padding: 8px 14px;
  color: #193000;
  background: rgba(245, 240, 203, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.site-nav a { padding: 8px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.site-nav a:hover { background: rgba(48, 73, 4, 0.18); }
.learn-pill, .learn-bottom, .cream-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  padding: 9px 20px;
  color: var(--cream);
  background: #587225;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
}
.yieldex-pill {
  min-width: 116px;
  min-height: 38px;
  padding: 9px 22px;
  color: #203500;
  background: linear-gradient(180deg, #fff7da, #e6dca7);
  border: 1px solid rgba(255, 248, 217, 0.62);
  box-shadow: 0 10px 24px rgba(12, 22, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.yieldex-pill:hover {
  background: linear-gradient(180deg, #fffbe8, #eadf9c);
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #587225;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.home-hero { background-image: url("assets/hero-field.jpg"); }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 58, 0, 0.86), rgba(38, 58, 0, 0.42) 52%, rgba(38, 58, 0, 0.06));
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(690px, 92%);
  padding: 190px 0 0 clamp(28px, 5vw, 76px);
}
.hero-copy h1 { font-size: clamp(42px, 6vw, 74px); line-height: 0.95; }
.hero-copy p { width: min(590px, 100%); font-size: clamp(16px, 2vw, 22px); line-height: 1.35; }
.hero-product-display {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 5vw, 86px);
  bottom: 42px;
  width: min(680px, 50vw);
  height: min(650px, 48vw);
}
.hero-product {
  position: absolute;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(12, 22, 0, 0.42));
}
.hero-product-x5 {
  left: 0;
  bottom: 34px;
  z-index: 2;
  width: 64%;
}
.hero-product-boss {
  right: 0;
  bottom: 6px;
  z-index: 1;
  width: 42%;
}
.hero-product-strip {
  right: 2%;
  bottom: 2px;
  z-index: 3;
  width: 17%;
  transform: rotate(-2deg);
}
.wood-discs { position: absolute; right: 7%; bottom: -8px; width: 480px; height: 210px; }
.wood-discs span {
  position: absolute;
  bottom: 0;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #f8e5a7 0 48%, #d7bd73 49% 58%, #9d8141 59% 100%);
  box-shadow: var(--shadow);
}
.wood-discs span:first-child { left: 0; width: 330px; height: 150px; }
.wood-discs span:last-child { right: 0; width: 300px; height: 135px; }
.home-hero .wood-discs { display: none; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 46px auto 34px;
  padding: 0 28px;
}
.stats div { display: grid; grid-template-columns: 42px 1fr; align-items: center; }
.stats div::before { content: "+"; color: #c7d2a2; font-size: 36px; }
.stats strong { display: block; font-size: 20px; }
.stats span { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 20px; }

.growth-card {
  max-width: 1240px;
  margin: 0 auto 36px;
  padding: 20px 24px 44px;
  color: var(--green);
  background: var(--cream);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.growth-card h2, .why h2, .network h2, .legal h2, .contact h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
}
.growth-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 72px; }
.growth-grid article {
  min-height: 244px;
  padding: 0 18px 20px;
  text-align: center;
  background: #fbf5dc;
  border-radius: 20px;
  box-shadow: 0 8px 14px rgba(40, 50, 0, 0.24);
}
.growth-grid img {
  width: 100%;
  aspect-ratio: 1;
  margin: -42px 0 14px;
  object-fit: cover;
  border-radius: 14px;
}
.growth-grid h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 0.9;
}
.growth-grid p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.why {
  position: relative;
  min-height: 690px;
  padding: 36px 24px 54px;
  background: linear-gradient(rgba(48, 73, 4, 0.78), rgba(48, 73, 4, 0.82)), url("assets/category-chilli.jpg") center / cover;
}
.glass-panel, .glass-heading {
  width: min(740px, 92%);
  margin: 28px auto 0;
  padding: 28px;
  text-align: center;
  color: var(--cream);
  background: rgba(242, 239, 206, 0.25);
  border: 1px solid rgba(255, 248, 217, 0.24);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.glass-panel p,
.glass-heading p {
  line-height: 1.55;
}

.category-showcase {
  position: relative;
  width: min(1420px, calc(100% - 48px));
  min-height: 520px;
  margin: 0 auto;
  color: var(--cream);
  border-radius: 14px;
  overflow: hidden;
}
.category-image,
.category-overlay {
  position: absolute;
  inset: 0;
}
.category-image {
  background: url("assets/category-chilli.jpg") center / cover no-repeat;
  filter: saturate(0.82);
  transform: scale(1.04);
  transition: background-image 320ms ease, transform 320ms ease;
}
.category-showcase:hover .category-image { transform: scale(1.07); }
.category-overlay {
  background: linear-gradient(rgba(33, 52, 0, 0.54), rgba(33, 52, 0, 0.72));
}
.category-content {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 58px 28px 28px;
}
.category-content h2 {
  margin-left: 20px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1;
  text-transform: capitalize;
}
.category-line {
  position: absolute;
  left: 58px;
  top: 142px;
  bottom: 38px;
  width: 2px;
  background: rgba(255, 248, 217, 0.82);
}
.category-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}
.category-copy {
  align-self: center;
  width: min(790px, 70%);
  margin: 52px auto 0;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
  transition: opacity 180ms ease, transform 180ms ease;
}
.category-copy.changing {
  opacity: 0.55;
  transform: translateY(6px);
}
.category-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}
.category-copy p {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.6;
  font-weight: 600;
}
.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
  padding-left: 46px;
}
.category-tabs button {
  min-width: 0;
  padding: 8px 6px 0;
  border: 0;
  color: rgba(255, 248, 217, 0.68);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, font-size 180ms ease;
}
.category-tabs button:hover,
.category-tabs button.active {
  color: var(--cream);
  transform: translateY(-3px);
}

.precision {
  padding: 72px 28px 76px;
  background: linear-gradient(rgba(48, 73, 4, 0.78), rgba(48, 73, 4, 0.84)), url("assets/hero-field.jpg") center / cover;
}
.glass-heading h2 { margin-bottom: 4px; font-size: clamp(30px, 4vw, 42px); }
.product-carousel-wrap { margin-top: 64px; overflow: hidden; position: relative; }
.product-carousel-wrap::before, .product-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.product-carousel-wrap::before { left: 0; background: linear-gradient(90deg, rgba(48, 73, 4, 1), rgba(48, 73, 4, 0)); }
.product-carousel-wrap::after { right: 0; background: linear-gradient(270deg, rgba(48, 73, 4, 1), rgba(48, 73, 4, 0)); }
.product-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scroll 28s linear infinite;
  will-change: transform;
}
.product-track:hover { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.feature-product {
  width: 320px;
  color: var(--green);
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-product img { width: 100%; height: 360px; object-fit: cover; }
.feature-product h3 {
  margin: 0;
  padding: 24px 24px 28px;
  font-size: 26px;
  line-height: 1;
  text-align: center;
}
.feature-product h3,
.product-cards h2 {
  overflow-wrap: anywhere;
}

.network, .legal {
  width: min(960px, 92%);
  margin: 0 auto;
  text-align: center;
}
.network { padding: 34px 0 28px; }
.network h2 {
  margin-bottom: 4px;
  font-size: 26px;
}
.network h3 {
  margin: 18px 0 4px;
  font-size: 26px;
}
.network p {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.45;
}
.network .cream-button {
  flex-direction: column;
  margin: 36px auto 0;
  text-align: center;
  line-height: 1.1;
}
.legal { padding: 18px 0 58px; }
.legal h2 { margin-bottom: 18px; font-size: 20px; }
.legal p {
  width: min(820px, 100%);
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}
.cream-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 310px;
  min-height: 42px;
  margin-top: 18px;
  padding: 8px 24px;
  color: var(--green);
  background: var(--cream-soft);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.cream-button span { font-size: 14px; font-weight: 400; }
.cream-button.compact { min-width: 250px; min-height: 34px; margin-top: 28px; font-size: 16px; }

.licenses {
  width: min(1180px, 94%);
  margin: 0 auto;
  padding: 28px 30px 30px;
  color: var(--green);
  text-align: center;
  background: var(--cream);
  border-radius: 14px;
}
.licenses h2 { margin-bottom: 4px; font-size: 26px; }
.licenses p {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}
.license-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(42px, 9vw, 120px);
}
.license-logos img { width: 150px; height: 86px; object-fit: contain; }

.contact {
  width: min(960px, 92%);
  margin: 0 auto;
  padding: 58px 0;
  text-align: center;
}

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 38px;
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: left;
}
.contact label { color: var(--cream); font-size: 13px; font-weight: 700; }
.contact label.wide, .contact label.check, .contact button { grid-column: 1 / -1; }
.contact input {
  display: block;
  width: 100%;
  height: 66px;
  margin-top: 8px;
  border: 0;
  border-radius: 5px;
  background: var(--cream);
}
.contact .check input { display: inline-block; width: 18px; height: 18px; margin-right: 10px; }
.contact button {
  justify-self: center;
  width: 640px;
  max-width: 100%;
  height: 34px;
  border: 0;
  color: var(--cream);
  background: #607b1d;
  border-radius: 999px;
  font-weight: 700;
}
.learn-bottom { margin-top: 42px; }

.footer {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 0.8fr auto;
  gap: 38px;
  width: 100%;
  margin: 70px 0 0;
  padding: 28px clamp(28px, 5vw, 70px) 18px;
  color: var(--green);
  background: var(--cream);
  border-radius: 0;
}
.footer-brand {
  display: grid;
  justify-items: start;
  gap: 16px;
}
.footer img { width: 150px; }
.footer nav { display: grid; align-content: start; gap: 8px; }
.footer a, .footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 700;
}
.socials {
  align-self: end;
  display: flex;
  gap: 16px;
}
.socials span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #8a9664;
  border-radius: 50%;
  font-size: 10px;
}
.footer-policies {
  grid-column: 2 / 4;
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 22px;
}

.about-cover { padding: 68px 40px 0; }
.about-cover img {
  width: min(1200px, 100%);
  height: clamp(360px, 54vw, 560px);
  margin: 0 auto;
  object-fit: cover;
  border-radius: 0 0 14px 14px;
}
.story, .philosophy { width: min(1120px, 90%); margin: 72px auto; }
.story h1 {
  max-width: 930px;
  margin-bottom: 30px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.02;
}
.story p {
  max-width: 1060px;
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.5;
}

.belief-card {
  width: min(1200px, 94%);
  min-height: clamp(420px, 48vw, 620px);
  margin: 74px auto 84px;
  display: flex;
  align-items: end;
  padding: clamp(110px, 16vw, 210px) clamp(24px, 4vw, 42px) 40px;
  background: linear-gradient(90deg, rgba(48, 73, 4, 0.86), rgba(48, 73, 4, 0.48)), url("assets/about-mission-greenhouse.jpg") center / cover;
  border-radius: 24px;
}
.belief-card div { max-width: 760px; }
.belief-card h2 { font: 700 28px Arial, Helvetica, sans-serif; }
.belief-card p { font-size: clamp(20px, 2.1vw, 26px); line-height: 1.28; font-weight: 700; }

.philosophy h2 {
  margin-bottom: 16px;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.92;
}
.philosophy h3 { margin-bottom: 24px; font-size: clamp(34px, 5vw, 56px); }
.philosophy-grid {
  min-height: 500px;
  display: grid;
  align-items: center;
  padding: 34px clamp(18px, 3vw, 34px);
  background: linear-gradient(90deg, rgba(48, 73, 4, 0.92) 0 42%, rgba(48, 73, 4, 0.62) 66%, rgba(48, 73, 4, 0.08)), url("assets/about-philosophy-bottles.png") center right / cover;
  border-radius: 0 0 12px 12px;
}
.philosophy-grid div { max-width: 500px; }
.philosophy-grid ul { margin: 14px 0 22px; padding-left: 24px; }
.philosophy-grid p, .philosophy-grid li { font-size: clamp(20px, 2.1vw, 26px); line-height: 1.22; font-weight: 700; }

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 94%);
  margin: 56px auto 34px;
}
.about-values article {
  position: relative;
  min-height: 540px;
  color: var(--green);
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(12, 22, 0, 0.28);
}
.about-values img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}
.about-values div { padding: 18px 20px 34px; }
.about-values h2 {
  min-height: 62px;
  margin-bottom: 14px;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.08;
}
.about-values p {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}
.about-values a {
  position: absolute;
  left: 20px;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 14px;
  color: var(--cream);
  background: #5d7334;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.about-values a::after {
  content: "->";
  font-size: 14px;
}

.vision-panel {
  width: min(1220px, 94%);
  min-height: 590px;
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(90deg, rgba(48, 73, 4, 0.95), rgba(48, 73, 4, 0.72) 52%, rgba(48, 73, 4, 0.18)), url("assets/about-vision-lab.jpg") center / cover;
}
.vision-panel div { max-width: 650px; }
.vision-panel h2 {
  margin-bottom: 44px;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 0.94;
}
.vision-panel h3 {
  margin-bottom: 24px;
  font: 800 clamp(22px, 2.1vw, 31px) Arial, Helvetica, sans-serif;
}
.vision-panel p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.18;
}

.mission-team {
  width: min(1220px, 94%);
  margin: -72px auto 110px;
}
.mission-panel {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(90deg, rgba(48, 73, 4, 0.95), rgba(48, 73, 4, 0.68) 58%, rgba(48, 73, 4, 0.34)), url("assets/about-mission-greenhouse.jpg") center / cover;
}
.mission-panel div { max-width: 600px; }
.mission-panel h2 {
  margin-bottom: clamp(70px, 9vw, 120px);
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 0.94;
}
.mission-panel h3 {
  margin-bottom: 22px;
  font: 800 clamp(22px, 2.1vw, 31px) Arial, Helvetica, sans-serif;
}
.mission-panel p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.2;
}
.team-heading {
  margin: -58px 0 76px;
  text-align: center;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(930px, 88%);
  margin: 0 auto;
}
.team-grid article {
  min-height: 400px;
  color: var(--green);
  text-align: center;
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(12, 22, 0, 0.28);
}
.team-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.team-grid h3 {
  margin: 22px 12px 26px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.12;
  text-transform: uppercase;
}

.products-page { padding-top: 90px; }
.products-hero { width: min(1200px, 94%); margin: 0 auto 110px; text-align: center; }
.products-hero h1, .fertilizer-hero h1 { font-size: clamp(58px, 8vw, 88px); margin-bottom: 18px; }
.products-hero img { width: 100%; height: 760px; object-fit: cover; border-radius: 4px; }
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px 42px; width: min(980px, 92%); margin: 0 auto 130px; }
.product-cards article {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px 12px;
  text-align: center;
}
.product-cards img { width: 100%; height: 230px; object-fit: contain; margin-bottom: 28px; }
.product-cards h2 { min-height: 76px; margin-bottom: auto; font-size: 34px; line-height: 0.96; }
.product-cards a {
  margin-top: 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.fertilizer-hero { width: min(1200px, 94%); margin: 70px auto 110px; text-align: center; }
.fertilizer-hero div { min-height: 760px; display: grid; place-items: center; background: url("assets/product-dapper.png") center / contain no-repeat, url("assets/hero-field.jpg") center / cover; }
.fertilizer-hero img { width: min(470px, 70%); }
.product-cards.fertilizer { row-gap: 250px; margin-bottom: 0; }
.product-cards .single { grid-column: 2; }
.product-cards .empty { justify-content: end; padding-bottom: 12px; }

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    grid-template-columns: 80px 1fr 48px;
    padding: 10px 16px;
    background: rgba(48, 73, 4, 0.94);
  }
  .header-actions { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    border-radius: 0;
  }
  .site-nav.open { display: flex; }
  .hero-copy { padding-top: 120px; }
  .hero-product-display {
    right: 0;
    bottom: 24px;
    width: min(520px, 62vw);
    height: min(520px, 62vw);
    opacity: 0.9;
  }
  .wood-discs { width: 320px; right: 3%; }
  .stats, .product-row, .footer, .philosophy-grid { grid-template-columns: 1fr; }
  .growth-grid { grid-template-columns: repeat(2, 1fr); row-gap: 68px; }
  .category-showcase {
    width: min(720px, 92%);
    min-height: 560px;
  }
  .category-content { min-height: 560px; padding: 42px 20px 24px; }
  .category-line { left: 34px; top: 118px; bottom: 120px; }
  .category-copy { width: min(560px, 82%); margin-top: 74px; }
  .category-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
    padding-left: 24px;
  }
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 30px; }
  .footer-policies { grid-column: auto; justify-content: flex-start; flex-wrap: wrap; gap: 18px; }
  .socials { align-self: start; }
  .license-logos { flex-direction: column; gap: 22px; }
  .about-cover { padding: 0; }
  .story, .philosophy { width: min(680px, 90%); margin: 54px auto; }
  .belief-card {
    width: min(680px, 92%);
    margin: 58px auto;
    padding-top: 150px;
  }
  .philosophy-grid {
    min-height: 480px;
    background: linear-gradient(rgba(48, 73, 4, 0.86), rgba(48, 73, 4, 0.62)), url("assets/about-philosophy-bottles.png") center / cover;
  }
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(680px, 92%);
    gap: 34px 20px;
  }
  .about-values article { min-height: 500px; }
  .about-values img { height: 260px; }
  .vision-panel {
    width: min(680px, 92%);
    min-height: 520px;
    margin-bottom: 80px;
    background: linear-gradient(rgba(48, 73, 4, 0.9), rgba(48, 73, 4, 0.58)), url("assets/about-vision-lab.jpg") center / cover;
  }
  .mission-team {
    width: min(680px, 92%);
    margin-top: -34px;
    margin-bottom: 80px;
  }
  .mission-panel {
    min-height: 500px;
    background: linear-gradient(rgba(48, 73, 4, 0.9), rgba(48, 73, 4, 0.62)), url("assets/about-mission-greenhouse.jpg") center / cover;
  }
  .team-heading { margin: -34px 0 50px; }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(520px, 90%);
  }
  .team-grid article:last-child { grid-column: 1 / -1; width: min(250px, 100%); justify-self: center; }
}

@media (max-width: 620px) {
  .hero { min-height: 760px; }
  .hero-copy { padding-right: 24px; }
  .hero-product-display {
    right: -62px;
    bottom: 8px;
    width: 390px;
    height: 390px;
    opacity: 0.78;
  }
  .wood-discs { display: none; }
  .stats, .product-cards, .contact form, .growth-grid { grid-template-columns: 1fr; }
  .product-cards .single { grid-column: auto; }
  .product-cards.fertilizer { row-gap: 52px; }
  .about-cover img {
    height: 270px;
    border-radius: 0;
  }
  .story p { font-size: 16px; }
  .belief-card {
    min-height: 430px;
    padding: 120px 22px 28px;
    border-radius: 16px;
  }
  .belief-card h2 { font-size: 20px; }
  .belief-card p, .philosophy-grid p, .philosophy-grid li { font-size: 17px; }
  .philosophy h2 { font-size: 42px; }
  .philosophy h3 { font-size: 29px; }
  .philosophy-grid {
    min-height: 430px;
    padding: 24px 18px;
  }
  .about-values {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 38px;
  }
  .about-values article { min-height: auto; }
  .about-values img { height: 240px; }
  .about-values h2 { min-height: 0; }
  .vision-panel {
    min-height: 460px;
    padding: 36px 22px;
  }
  .vision-panel h2 { margin-bottom: 34px; font-size: 42px; }
  .vision-panel h3 { font-size: 20px; }
  .vision-panel p { font-size: 19px; line-height: 1.08; }
  .mission-team { margin-top: -42px; }
  .mission-panel {
    min-height: 430px;
    padding: 34px 22px;
  }
  .mission-panel h2 { margin-bottom: 64px; font-size: 42px; }
  .mission-panel h3 { font-size: 20px; }
  .mission-panel p { font-size: 19px; line-height: 1.08; }
  .team-heading { margin: -22px 0 36px; font-size: 42px; }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(300px, 86%);
  }
  .team-grid article,
  .team-grid article:last-child {
    width: 100%;
    min-height: 340px;
    grid-column: auto;
  }
  .team-grid img { height: 230px; }
  .team-grid h3 { font-size: 20px; }
  .category-showcase {
    width: min(100% - 28px, 420px);
    min-height: 620px;
  }
  .category-content {
    min-height: 620px;
    padding: 30px 16px 24px;
  }
  .category-content h2 { margin-left: 0; font-size: 32px; }
  .category-line { left: 22px; top: 96px; bottom: 176px; }
  .category-copy {
    width: min(320px, 84%);
    margin-top: 98px;
  }
  .category-copy p { font-size: 16px; line-height: 1.45; }
  .category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 8px;
    padding-left: 18px;
  }
  .category-tabs button { font-size: 25px; }
}
