:root {
  --cream: #fdf5eb;
  --cream-deep: #fbf3e7;
  --inner: #f4f1ec;
  --card: #ebe4dc;
  --field: #08150c;
  --field-hover: #1a2e1f;
  --olive: #7a8c3e;
  --olive-dark: #69752e;
  --orange: #d06e25;
  --orange-dark: #9d541f;
  --gold: #f3bd28;
  --heat-shield-yellow: #ffd12d;
  --heat-shield-yellow-deep: #f3b52b;
  --nutri-green: #5f7f2f;
  --nutri-green-deep: #324719;
  --nutri-lime: #b8c95a;
  --dcomp-copper: #c35f2a;
  --dcomp-copper-deep: #74341f;
  --dcomp-amber: #eea14a;
  --dcomp-straw: #e6c68f;
  --stone: #44403c;
  --text: #292524;
  --shadow: 0 20px 70px rgba(8, 21, 12, 0.14);
  --heading: "Cooper BT W01 Medium", "Cooper BT W01 Light", Georgia, serif;
  --heading-light: "Cooper BT W01 Light", Georgia, serif;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

.hero {
  position: relative;
  min-height: calc(100svh - 28px);
  overflow: hidden;
}

.interior-top {
  position: relative;
  overflow: hidden;
  min-height: clamp(34rem, 72svh, 47rem);
  background: var(--cream);
}

.heat-interior-top {
  background: #f8f0df;
}

.nutri-interior-top {
  background: #f3f1de;
}

.dcomp-interior-top {
  background: #f5eadb;
}

.cornfield,
.cornfield-base,
.cornfield-foreground,
.cornfield-tint,
.cornfield-fade {
  position: absolute;
  inset: 0;
}

.cornfield {
  transform: scale(1.08);
  transform-origin: center;
  overflow: hidden;
}

.cornfield-base,
.cornfield-foreground {
  background-image: url("assets/cornfield-hero.png");
  background-position: center;
  background-size: cover;
  will-change: transform, background-position;
}

.cornfield-base {
  animation: fieldDrift 46s ease-in-out infinite alternate;
}

.cornfield-foreground {
  animation: leafSway 34s ease-in-out infinite alternate;
  opacity: 0.3;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to top, black 0%, black 38%, transparent 70%);
  mask-image: linear-gradient(to top, black 0%, black 38%, transparent 70%);
}

.cornfield-tint {
  background: linear-gradient(
    180deg,
    rgba(253, 245, 235, 0.12) 0%,
    rgba(253, 245, 235, 0.02) 42%,
    rgba(8, 21, 12, 0.26) 100%
  );
}

.cornfield-fade {
  top: auto;
  height: 13rem;
  background: linear-gradient(
    180deg,
    rgba(253, 245, 235, 0) 0%,
    rgba(253, 245, 235, 0.42) 58%,
    var(--cream) 100%
  );
}

.heat-interior-top .cornfield {
  transform: scale(1.03);
}

.heat-interior-top .cornfield-base,
.heat-interior-top .cornfield-foreground {
  background-image: url("assets/product-heat-shield-photo.png");
  background-position: center 42%;
}

.heat-interior-top .cornfield-foreground {
  opacity: 0.14;
}

.heat-interior-top .cornfield-tint {
  background:
    linear-gradient(
      90deg,
      rgba(253, 245, 235, 0.94) 0%,
      rgba(253, 245, 235, 0.78) 36%,
      rgba(243, 189, 40, 0.14) 58%,
      rgba(8, 21, 12, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(253, 245, 235, 0.36) 0%,
      rgba(253, 245, 235, 0.06) 48%,
      rgba(8, 21, 12, 0.22) 100%
    );
}

.heat-interior-top .cornfield-fade {
  height: 12rem;
  background: linear-gradient(
    180deg,
    rgba(253, 245, 235, 0) 0%,
    rgba(253, 245, 235, 0.28) 54%,
    var(--cream) 100%
  );
}

.nutri-interior-top .cornfield {
  transform: scale(1.04);
}

.nutri-interior-top .cornfield-base,
.nutri-interior-top .cornfield-foreground {
  background-image: url("assets/product-nutri-cycle-photo.png");
  background-position: center 46%;
}

.nutri-interior-top .cornfield-foreground {
  opacity: 0.15;
}

.nutri-interior-top .cornfield-tint {
  background:
    linear-gradient(
      90deg,
      rgba(253, 245, 235, 0.94) 0%,
      rgba(253, 245, 235, 0.78) 36%,
      rgba(184, 201, 90, 0.2) 60%,
      rgba(8, 21, 12, 0.3) 100%
    ),
    linear-gradient(
      180deg,
      rgba(253, 245, 235, 0.28) 0%,
      rgba(253, 245, 235, 0.08) 48%,
      rgba(8, 21, 12, 0.22) 100%
    );
}

.nutri-interior-top .cornfield-fade {
  height: 12rem;
  background: linear-gradient(
    180deg,
    rgba(253, 245, 235, 0) 0%,
    rgba(253, 245, 235, 0.36) 54%,
    var(--cream) 100%
  );
}

.dcomp-interior-top .cornfield {
  transform: scale(1.04);
}

.dcomp-interior-top .cornfield-base,
.dcomp-interior-top .cornfield-foreground {
  background-image: url("assets/product-d-comp-dry-photo.png");
  background-position: center 52%;
}

.dcomp-interior-top .cornfield-foreground {
  opacity: 0.13;
}

.dcomp-interior-top .cornfield-tint {
  background:
    linear-gradient(
      90deg,
      rgba(253, 245, 235, 0.97) 0%,
      rgba(253, 245, 235, 0.84) 40%,
      rgba(195, 95, 42, 0.2) 66%,
      rgba(8, 21, 12, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(253, 245, 235, 0.24) 0%,
      rgba(253, 245, 235, 0.06) 48%,
      rgba(8, 21, 12, 0.22) 100%
    );
}

.dcomp-interior-top .cornfield-fade {
  height: 12rem;
  background: linear-gradient(
    180deg,
    rgba(253, 245, 235, 0) 0%,
    rgba(253, 245, 235, 0.34) 54%,
    var(--cream) 100%
  );
}

.contact-interior-top {
  background: #f7efe2;
}

.contact-interior-top .cornfield {
  transform: scale(1.04);
}

.contact-interior-top .cornfield-base,
.contact-interior-top .cornfield-foreground {
  background-image: url("assets/field-results-farmer-logo-centered-seams-spaced.png");
  background-position: center 34%;
}

.contact-interior-top .cornfield-foreground {
  opacity: 0.12;
}

.contact-interior-top .cornfield-tint {
  background:
    linear-gradient(
      90deg,
      rgba(253, 245, 235, 0.96) 0%,
      rgba(253, 245, 235, 0.8) 42%,
      rgba(122, 140, 62, 0.18) 68%,
      rgba(8, 21, 12, 0.24) 100%
    ),
    linear-gradient(
      180deg,
      rgba(253, 245, 235, 0.3) 0%,
      rgba(253, 245, 235, 0.06) 48%,
      rgba(8, 21, 12, 0.2) 100%
    );
}

.contact-interior-top .cornfield-fade {
  height: 12rem;
  background: linear-gradient(
    180deg,
    rgba(253, 245, 235, 0) 0%,
    rgba(253, 245, 235, 0.34) 54%,
    var(--cream) 100%
  );
}

.nav {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
}

.brand img {
  width: auto;
  height: 2.5rem;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0.75rem 1.25rem;
  color: var(--stone);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--field);
}

.nav-item {
  position: relative;
}

.nav-products-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-products-trigger svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  transition: transform 0.2s ease;
}

.nav-item-products:hover .nav-products-trigger svg,
.nav-item-products:focus-within .nav-products-trigger svg {
  transform: rotate(180deg);
}

.nav-item-products::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.9rem;
  content: "";
}

.product-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  z-index: 50;
  display: grid;
  min-width: 14rem;
  transform: translateX(-50%) translateY(0.5rem);
  gap: 0.15rem;
  border: 1px solid rgba(8, 21, 12, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.55rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-item-products:hover .product-dropdown,
.nav-item-products:focus-within .product-dropdown {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.product-dropdown a {
  display: block;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  color: var(--stone);
  white-space: nowrap;
}

.product-dropdown a:hover,
.product-dropdown a:focus {
  background: var(--inner);
  color: var(--field);
}

.product-dropdown a.product-link-nutri-cycle:hover,
.product-dropdown a.product-link-nutri-cycle:focus {
  background: linear-gradient(135deg, #dce69c, var(--nutri-lime));
  color: var(--field);
}

.product-dropdown a.product-link-d-comp:hover,
.product-dropdown a.product-link-d-comp:focus,
.product-dropdown a.product-link-d-comp[aria-current="page"] {
  background: linear-gradient(135deg, #f4c683, var(--dcomp-amber));
  color: var(--field);
}

.product-dropdown a.product-link-heat-shield:hover,
.product-dropdown a.product-link-heat-shield:focus {
  background: linear-gradient(135deg, var(--heat-shield-yellow), var(--heat-shield-yellow-deep));
  color: var(--field);
}

.nav-cta {
  display: none;
  border-radius: 8px;
  background: var(--field);
  color: white;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--field-hover);
}

.menu-button {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--field);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.nav.nav-open .nav-links {
  position: absolute;
  top: 76px;
  left: 1.25rem;
  right: 1.25rem;
  display: grid;
  gap: 0.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

.nav.nav-open .nav-links a {
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.nav.nav-open .nav-item-products::after {
  display: none;
}

.nav.nav-open .nav-products-trigger {
  width: 100%;
  justify-content: space-between;
}

.nav.nav-open .product-dropdown {
  position: static;
  min-width: 0;
  transform: none;
  gap: 0.2rem;
  border: 0;
  background: rgba(244, 241, 236, 0.72);
  padding: 0.3rem;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
}

.nav.nav-open .product-dropdown a {
  padding: 0.75rem 1rem;
  font-size: 0.86rem;
}

.hero-content {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: calc(100svh - 132px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
}

.interior-heading {
  position: relative;
  z-index: 20;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.25rem 8rem;
}

.breadcrumb {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.7rem 1rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.interior-heading h1 {
  max-width: 56rem;
  margin: 1.3rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.interior-heading p {
  max-width: 48rem;
  margin: 1.35rem 0 0;
  color: #1b2218;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 750;
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(253, 245, 235, 0.92);
}

.hero h1 {
  margin: 0;
  max-width: 64rem;
  color: var(--field);
  font-family: var(--heading-light);
  font-size: clamp(2.65rem, 9vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions,
.heat-actions {
  display: flex;
  width: 100%;
  max-width: 28rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.button-light {
  background: rgba(255, 255, 255, 0.84);
  color: var(--field);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}

.button-light:hover {
  background: white;
}

.button-dark {
  background: var(--field);
  color: white;
}

.button-dark:hover {
  background: var(--field-hover);
}

.benefit-strip {
  display: grid;
  width: 100%;
  max-width: 87rem;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.benefit-card {
  display: grid;
  min-height: 132px;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  border: 1px solid #fff1db;
  border-radius: 8px;
  background: #fff7e8;
  padding: 1rem;
  text-align: left;
  box-shadow: 0 26px 46px rgba(13, 22, 14, 0.28);
}

.benefit-icon {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dedfb8;
  color: var(--olive-dark);
}

.benefit-icon svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.benefit-card-orange .benefit-icon {
  background: #ffd0a0;
  color: var(--orange-dark);
}

.benefit-card h2 {
  margin: 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: 1.15rem;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0.5rem 0 0;
  color: var(--stone);
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-section,
.products-section {
  background: var(--cream);
  padding: 3.5rem 1.25rem;
}

.about-section {
  display: grid;
  gap: 2.5rem;
  max-width: 92rem;
  margin: 0 auto;
}

.section-logo {
  width: auto;
  height: 2.5rem;
  object-fit: contain;
}

.about-copy h2,
.section-heading h2,
.heat-copy h2,
.nutri-copy h2 {
  margin: 3rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(3.1rem, 10vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.about-copy blockquote {
  margin: 2rem 0 0;
  max-width: 48rem;
  color: var(--stone);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.6;
}

.about-points {
  display: grid;
  gap: 1rem;
  margin: 2.25rem 0 0;
  color: var(--stone);
  font-size: 1.08rem;
}

.about-copy .button {
  width: fit-content;
  margin-top: 2rem;
  padding-inline: 2rem;
}

.about-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}

.products-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.products-section > * {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.product-page {
  position: relative;
  z-index: 20;
  margin-top: -1.15rem;
  background: var(--cream);
  padding: 0 1.25rem 4rem;
}

.product-page > * {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.product-page .heat-shield-section {
  margin-top: 0;
}

.contact-page {
  position: relative;
  z-index: 20;
  margin-top: -1.15rem;
  background: var(--cream);
  padding: 0 1.25rem 4rem;
}

.contact-page > * {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.section-heading h2 {
  margin: 0;
  max-width: 56rem;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.98;
}

.section-heading .button {
  width: fit-content;
  padding: 1rem 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.product-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream-deep);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  background: var(--inner);
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem;
}

.product-copy h3 {
  margin: 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: 2rem;
  line-height: 1.02;
}

.product-copy h3::after {
  display: block;
  width: 6rem;
  height: 0.125rem;
  margin: 1.6rem 0 0;
  border-radius: 99px;
  background: var(--olive);
  content: "";
}

.product-card-featured .product-copy h3::after {
  background: var(--orange);
}

.product-card-dcomp .product-copy h3::after {
  background: var(--dcomp-copper);
}

.product-copy p {
  margin: 1.5rem 0 0;
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.6;
}

.product-copy a {
  margin-top: auto;
  padding-top: 1.6rem;
  color: var(--orange);
  font-weight: 800;
  transition: color 0.2s ease;
}

.product-copy a.product-title-link {
  margin-top: 0;
  padding-top: 0;
  color: inherit;
  font-weight: inherit;
}

.product-copy a:hover {
  color: var(--orange-dark);
}

.product-copy a.product-title-link:hover {
  color: var(--nutri-green-deep);
}

.product-copy a.product-title-link-dcomp:hover {
  color: var(--dcomp-copper-deep);
}


.heat-shield-section {
  margin-top: 4rem;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(235, 228, 220, 0.96)),
    var(--card);
  box-shadow: var(--shadow);
}

.nutri-cycle-section {
  margin-top: 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.97), rgba(229, 230, 198, 0.95)),
    var(--card);
  box-shadow: var(--shadow);
}

.heat-hero {
  display: grid;
  gap: 2rem;
  padding: 1.25rem;
}

.nutri-hero {
  display: grid;
  gap: 2rem;
  padding: 1.25rem;
}

.heat-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem 0;
}

.nutri-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem 0;
}

.heat-logo {
  width: min(32rem, 100%);
  height: auto;
  display: block;
}

.heat-logo-packaging {
  width: min(16rem, 72vw);
}

.eyebrow {
  margin: 1.5rem 0 0;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heat-copy h2,
.nutri-copy h2 {
  margin-top: 0.9rem;
  max-width: 54rem;
  font-size: clamp(2.3rem, 5.6vw, 4.9rem);
}

.lead {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: var(--stone);
  font-size: 1.1rem;
  line-height: 1.75;
}

.heat-actions {
  align-items: stretch;
}

.heat-main-image,
.heat-lab-image,
.heat-compare-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--field);
}

.nutri-main-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--field);
}

.heat-main-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #111;
}

.nutri-main-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1d2718;
}

figcaption {
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.45;
}

.heat-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(8, 21, 12, 0.14);
  border-top: 1px solid rgba(8, 21, 12, 0.12);
  border-bottom: 1px solid rgba(8, 21, 12, 0.12);
}

.nutri-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(8, 21, 12, 0.14);
  border-top: 1px solid rgba(8, 21, 12, 0.12);
  border-bottom: 1px solid rgba(8, 21, 12, 0.12);
}

.heat-facts div {
  min-height: 8rem;
  background: rgba(255, 247, 232, 0.8);
  padding: 1.25rem;
}

.nutri-facts div {
  min-height: 8rem;
  background: rgba(255, 247, 232, 0.82);
  padding: 1.25rem;
}

.heat-facts strong {
  display: block;
  color: var(--field);
  font-family: var(--heading);
  font-size: 1.9rem;
  line-height: 1;
}

.nutri-facts strong {
  display: block;
  color: var(--field);
  font-family: var(--heading);
  font-size: 1.9rem;
  line-height: 1;
}

.heat-facts span {
  display: block;
  margin-top: 0.55rem;
  color: var(--stone);
  font-size: 0.96rem;
  line-height: 1.45;
}

.nutri-facts span {
  display: block;
  margin-top: 0.55rem;
  color: var(--stone);
  font-size: 0.96rem;
  line-height: 1.45;
}

.nutri-underground {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
}

.nutri-section-heading {
  max-width: 58rem;
}

.nutri-section-heading h2 {
  margin: 0.7rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.nutri-section-heading p:last-child {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: var(--stone);
  font-size: 1.02rem;
  line-height: 1.65;
}

.nutri-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.nutri-feature-card {
  display: grid;
  gap: 1rem;
  min-height: 14rem;
  align-content: start;
  border: 1px solid rgba(8, 21, 12, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.9), rgba(235, 232, 198, 0.86)),
    var(--inner);
  padding: 1.15rem;
}

.nutri-feature-card span {
  width: fit-content;
  border-radius: 999px;
  background: var(--nutri-green-deep);
  color: #fff7e8;
  padding: 0.42rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.nutri-feature-card h3 {
  margin: 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.02;
}

.nutri-feature-card p {
  margin: 0;
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.55;
}

.nutri-detail-grid {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.nutri-panel-stack,
.nutri-proof-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.nutri-panel,
.nutri-yield-card {
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.78);
  padding: 1.25rem;
}

.nutri-panel h3,
.nutri-yield-card h3 {
  margin: 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.08;
}

.nutri-panel p,
.nutri-panel li,
.nutri-yield-card p {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.62;
}

.nutri-panel p,
.nutri-yield-card p {
  margin: 1rem 0 0;
}

.nutri-panel ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.nutri-panel li {
  position: relative;
  padding-left: 1.35rem;
}

.nutri-panel li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--nutri-green);
  content: "";
}

.nutri-panel-dark {
  background: var(--field);
}

.nutri-panel-dark h3 {
  color: #fff7e8;
}

.nutri-panel-dark p {
  color: rgba(255, 247, 232, 0.82);
}

.nutri-yield-card {
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.9), rgba(220, 230, 156, 0.82)),
    var(--inner);
}

.yield-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 1.1rem;
  border: 1px solid rgba(8, 21, 12, 0.12);
  border-radius: 8px;
  background: rgba(8, 21, 12, 0.12);
}

.yield-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: rgba(8, 21, 12, 0.08);
}

.yield-table span {
  display: block;
  background: rgba(255, 247, 232, 0.92);
  padding: 0.85rem 0.95rem;
  color: var(--stone);
  font-size: 0.94rem;
  line-height: 1.35;
}

.yield-table [role="columnheader"] {
  background: var(--nutri-green-deep);
  color: #fff7e8;
  font-weight: 900;
}

.yield-table-highlight span {
  background: var(--field);
  color: white;
  font-weight: 900;
}

.yield-note {
  font-size: 0.88rem;
}

.nutri-field-proof {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(8, 21, 12, 0.1);
}

.nutri-field-proof-heading {
  max-width: 58rem;
}

.nutri-field-proof-heading h2 {
  margin: 0.7rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.nutri-field-proof-heading p:last-child {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: var(--stone);
  font-size: 1.02rem;
  line-height: 1.65;
}

.nutri-proof-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 60rem;
}

.nutri-proof-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--field);
}

.nutri-proof-image-frame {
  position: relative;
  overflow: hidden;
}

.nutri-proof-photo img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  background: #f6f3eb;
}

.proof-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  max-width: min(11rem, 44%);
  border: 1px solid rgba(255, 247, 232, 0.72);
  border-radius: 999px;
  padding: 0.46rem 0.68rem;
  color: #fff7e8;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(8, 21, 12, 0.32);
}

.proof-tag::after {
  position: absolute;
  bottom: -1.15rem;
  left: 50%;
  width: 2px;
  height: 1.15rem;
  transform: translateX(-50%);
  background: currentColor;
  content: "";
}

.proof-tag-treated {
  background: rgba(50, 71, 25, 0.92);
}

.proof-tag-untreated {
  background: rgba(8, 21, 12, 0.82);
}

.proof-tag-left {
  left: 0.65rem;
  bottom: 1.05rem;
}

.proof-tag-right {
  right: 0.65rem;
  bottom: 1.05rem;
}

.proof-tag-center {
  left: 50%;
  bottom: 1.05rem;
  transform: translateX(-50%);
}

.nutri-proof-map-plants .proof-tag {
  top: 0.85rem;
  bottom: auto;
  max-width: min(9rem, 32%);
  font-size: 0.66rem;
}

.nutri-proof-photo:nth-child(1) img {
  object-position: center 44%;
}

.nutri-proof-photo:nth-child(2) img {
  object-position: center 50%;
}

.nutri-proof-photo-tall img {
  height: 18rem;
  object-position: center 32%;
}

.nutri-proof-note {
  max-width: 52rem;
  margin: 0;
  color: var(--stone);
  font-size: 0.92rem;
  line-height: 1.55;
}

.nutri-faq {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(8, 21, 12, 0.1);
}

.nutri-faq-heading {
  max-width: 56rem;
}

.nutri-faq-heading h2 {
  margin: 0.7rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.stress-season {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
}

.stress-season-heading {
  max-width: 58rem;
}

.stress-season-heading h2 {
  margin: 0.7rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.stress-season-heading p:last-child {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: var(--stone);
  font-size: 1.02rem;
  line-height: 1.65;
}

.stress-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.stress-flip-card {
  min-height: 14rem;
  border-radius: 8px;
  outline: none;
  perspective: 1200px;
}

.stress-flip-card:focus-visible {
  outline: 3px solid var(--heat-shield-yellow);
  outline-offset: 4px;
}

.stress-card-inner {
  position: relative;
  min-height: 14rem;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.stress-flip-card:hover .stress-card-inner,
.stress-flip-card:focus .stress-card-inner {
  transform: rotateY(180deg);
}

.stress-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid rgba(8, 21, 12, 0.1);
  border-radius: 8px;
  padding: 1.1rem;
  backface-visibility: hidden;
}

.stress-card-front {
  align-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 209, 45, 0.32), transparent 42%),
    rgba(255, 247, 232, 0.84);
  text-align: center;
}

.stress-card-back {
  transform: rotateY(180deg);
  background: var(--field);
  color: #fff7e8;
}

.stress-card-icon {
  display: grid;
  width: 5.1rem;
  height: 5.1rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--heat-shield-yellow), var(--heat-shield-yellow-deep));
  box-shadow: 0 16px 34px rgba(8, 21, 12, 0.16);
  color: var(--field);
}

.stress-card-icon svg {
  width: 3.15rem;
  height: 3.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.stress-card-front h3,
.stress-card-back h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.02;
}

.stress-card-front h3 {
  color: var(--field);
}

.stress-card-back h3 {
  color: var(--heat-shield-yellow);
}

.stress-card-back p {
  margin: 0;
  color: rgba(255, 247, 232, 0.86);
  font-size: 0.98rem;
  line-height: 1.5;
}

.heat-detail-grid {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.heat-panel-stack,
.heat-media-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.heat-panel {
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.76);
  padding: 1.25rem;
}

.heat-panel h3 {
  margin: 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.08;
}

.heat-panel p,
.heat-panel li {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.62;
}

.heat-panel p {
  margin: 1rem 0 0;
}

.heat-panel ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.heat-panel li {
  position: relative;
  padding-left: 1.35rem;
}

.heat-panel li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--olive);
  content: "";
}

.heat-lab-image img {
  width: 100%;
  height: 21rem;
  object-fit: cover;
}

.heat-compare {
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #102015;
  cursor: ew-resize;
  --compare-position: 50%;
}

.heat-compare-image {
  position: absolute;
  inset: 0;
}

.heat-compare-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.heat-compare-treated {
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.heat-compare-label {
  position: absolute;
  top: 0.8rem;
  z-index: 3;
  border-radius: 999px;
  background: rgba(8, 21, 12, 0.78);
  padding: 0.42rem 0.62rem;
  color: #fff7e8;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.heat-compare-label-treated {
  left: 0.8rem;
}

.heat-compare-label-untreated {
  right: 0.8rem;
}

.heat-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 4;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 247, 232, 0.96);
  box-shadow: 0 0 0 1px rgba(8, 21, 12, 0.18);
  pointer-events: none;
}

.heat-compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.65rem;
  height: 2.65rem;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 247, 232, 0.96);
  border-radius: 999px;
  background: rgba(8, 21, 12, 0.86);
  box-shadow: 0 10px 22px rgba(8, 21, 12, 0.28);
}

.heat-compare-divider span::before,
.heat-compare-divider span::after {
  position: absolute;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid #fff7e8;
  border-left: 2px solid #fff7e8;
  content: "";
}

.heat-compare-divider span::before {
  left: 0.78rem;
  transform: translateY(-50%) rotate(-45deg);
}

.heat-compare-divider span::after {
  right: 0.78rem;
  transform: translateY(-50%) rotate(135deg);
}

.heat-compare-slider {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.heat-faq {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(8, 21, 12, 0.1);
}

.heat-faq-heading {
  max-width: 56rem;
}

.heat-faq-heading h2 {
  margin: 0.7rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid rgba(8, 21, 12, 0.11);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.78);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 1rem 3.25rem 1rem 1rem;
  color: var(--field);
  font-weight: 900;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 1.85rem;
  height: 1.85rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--heat-shield-yellow), var(--heat-shield-yellow-deep));
  content: "";
}

.nutri-faq .faq-item summary::after {
  background: linear-gradient(135deg, #dce69c, var(--nutri-lime));
}

.faq-item summary::before {
  position: absolute;
  right: calc(1rem + 0.925rem);
  top: 50%;
  z-index: 1;
  width: 0.82rem;
  height: 0.82rem;
  transform: translate(50%, -50%);
  background:
    linear-gradient(var(--field), var(--field)) center / 100% 0.18rem no-repeat,
    linear-gradient(var(--field), var(--field)) center / 0.18rem 100% no-repeat;
  content: "";
  pointer-events: none;
}

.faq-item[open] summary::before {
  background: linear-gradient(var(--field), var(--field)) center / 100% 0.18rem no-repeat;
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1.1rem;
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.62;
}

.contact-band {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
  border-radius: 8px;
  background: var(--field);
  padding: 1.25rem;
  color: white;
}

.contact-band h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  line-height: 1.05;
}

.contact-band p,
.contact-band a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-style: normal;
  line-height: 1.55;
}

.contact-band p {
  max-width: 42rem;
  margin: 0.55rem 0 0;
}

.contact-list {
  display: grid;
  gap: 0.55rem;
}

.contact-band a:hover {
  color: white;
}

.contact-band .contact-form-link {
  width: fit-content;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.75rem 0.95rem;
  color: white;
  font-weight: 850;
}

.contact-band .contact-form-link:hover {
  background: rgba(255, 255, 255, 0.22);
}

.contact-intake {
  display: grid;
  gap: 2rem;
  scroll-margin-top: 1rem;
  padding: 1.25rem 0 3rem;
}

.contact-intake-copy {
  padding-top: 1rem;
}

.contact-intake-copy h2 {
  max-width: 52rem;
  margin: 0.85rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.contact-quick-links a {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.8rem 1rem;
  color: var(--field);
  font-weight: 850;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}

.contact-form {
  display: grid;
  gap: 1.3rem;
  border: 1px solid rgba(8, 21, 12, 0.08);
  border-radius: 8px;
  background: #fff7e8;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  color: var(--field);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(8, 21, 12, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field select {
  cursor: pointer;
}

.form-field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(68, 64, 60, 0.52);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--olive);
  background: white;
  box-shadow: 0 0 0 3px rgba(122, 140, 62, 0.18);
}

.form-submit {
  width: 100%;
}

.product-inquiry {
  position: relative;
  gap: 2rem;
  margin-top: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(8, 21, 12, 0.09);
  border-top: 0.45rem solid var(--olive);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 201, 90, 0.2), transparent 34%),
    var(--inner);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  scroll-margin-top: 1rem;
}

.product-inquiry-heat {
  border-top-color: var(--heat-shield-yellow-deep);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 209, 45, 0.24), transparent 34%),
    var(--inner);
}

.product-inquiry-dcomp {
  border-top-color: var(--dcomp-copper);
  background:
    radial-gradient(circle at 8% 0%, rgba(238, 161, 74, 0.24), transparent 34%),
    var(--inner);
}

.product-inquiry .contact-intake-copy {
  padding-top: 0.35rem;
}

.product-contact-form {
  align-content: start;
}

.form-note {
  margin: -0.25rem 0 0;
  color: var(--stone);
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-band-standalone {
  margin-top: 0;
}

@keyframes fieldDrift {
  0% {
    transform: scale(1.075) translate3d(-0.35%, 0.12%, 0);
  }
  100% {
    transform: scale(1.095) translate3d(0.35%, -0.18%, 0);
  }
}

@keyframes leafSway {
  0% {
    transform: scale(1.095) translate3d(-0.3%, 0.18%, 0) skew(-0.08deg);
    background-position: 49.7% 55.3%;
  }
  100% {
    transform: scale(1.11) translate3d(0.3%, -0.06%, 0) skew(0.08deg);
    background-position: 50.3% 54.8%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 640px) {
  .brand img,
  .section-logo {
    height: 3rem;
  }

  .nav,
  .hero-content,
  .interior-heading,
  .product-page,
  .contact-page,
  .about-section,
  .products-section {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .hero-actions,
  .heat-actions {
    width: auto;
    max-width: none;
    flex-direction: row;
  }

  .benefit-strip {
    margin-top: 2.25rem;
  }

  .benefit-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .benefit-icon {
    width: 92px;
    height: 92px;
  }

  .benefit-icon svg {
    width: 3.35rem;
    height: 3.35rem;
  }

  .product-grid,
  .heat-facts,
  .nutri-facts,
  .nutri-feature-grid,
  .stress-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card img {
    height: 16rem;
  }

  .heat-hero,
  .nutri-hero,
  .nutri-underground,
  .nutri-detail-grid,
  .nutri-field-proof,
  .nutri-faq,
  .stress-season,
  .heat-detail-grid,
  .heat-faq {
    padding: 1.5rem;
  }

  .heat-facts div {
    padding: 1.5rem;
  }

  .nutri-facts div {
    padding: 1.5rem;
  }

  .yield-table [role="row"] {
    grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.48fr);
  }

  .nutri-proof-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nutri-proof-photo-tall {
    grid-column: 1 / -1;
  }

  .nutri-proof-photo img {
    height: 12rem;
  }

  .nutri-proof-photo-tall img {
    height: 20rem;
  }

  .contact-band {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

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

  .form-field-wide {
    grid-column: 1 / -1;
  }

  .form-submit {
    width: fit-content;
    padding-inline: 2rem;
  }
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .menu-button {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav,
  .hero-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .interior-heading {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .product-page {
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
  }

  .contact-page {
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
  }

  .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .about-section {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.92fr);
    align-items: center;
    gap: 4rem;
    padding: 5rem;
  }

  .products-section {
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
  }

  .section-heading {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .heat-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .nutri-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .heat-copy,
  .nutri-copy {
    padding: 0.75rem 0;
  }

  .heat-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nutri-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nutri-underground {
    gap: 1.5rem;
    padding: 2rem;
  }

  .nutri-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stress-season {
    gap: 1.5rem;
    padding: 2rem;
  }

  .stress-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .stress-flip-card,
  .stress-card-inner,
  .stress-card-face {
    min-height: 15rem;
  }

  .heat-detail-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(26rem, 1.06fr);
    align-items: start;
    padding: 2rem;
  }

  .nutri-detail-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(25rem, 1.02fr);
    align-items: start;
    padding: 2rem;
  }

  .nutri-field-proof {
    gap: 1.5rem;
    padding: 2rem;
  }

  .nutri-proof-gallery {
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.72fr);
    align-items: stretch;
    max-width: 62rem;
  }

  .nutri-proof-photo:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .nutri-proof-photo:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .nutri-proof-photo-tall {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .nutri-proof-photo img {
    height: 12.5rem;
    min-height: 0;
  }

  .nutri-proof-photo-tall img {
    height: calc(25rem + 1rem);
    min-height: 0;
  }

  .heat-faq {
    grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1.26fr);
    align-items: start;
    gap: 2rem;
    padding: 2rem;
  }

  .nutri-faq {
    grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1.26fr);
    align-items: start;
    gap: 2rem;
    padding: 2rem;
  }

  .heat-lab-image img {
    height: 19rem;
    min-height: 0;
  }

  .contact-band {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: start;
    padding: 2rem;
  }

  .contact-intake {
    grid-template-columns: minmax(0, 0.86fr) minmax(28rem, 1.14fr);
    align-items: start;
    gap: 3rem;
    padding-bottom: 4rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 6rem;
  }
}

/* D-Comp Dry: copper identifies residue and soil-energy messaging across the product page. */
.dcomp-page-body {
  background: #fbf2e6;
}

.dcomp-interior-heading .breadcrumb {
  color: var(--dcomp-copper-deep);
}

.dcomp-product-kicker {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem !important;
  border-left: 0.3rem solid var(--dcomp-copper);
  padding: 0.2rem 0 0.2rem 0.75rem;
  color: var(--dcomp-copper-deep) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.11em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.dcomp-nav-cta,
.dcomp-button {
  background: var(--dcomp-copper-deep);
  color: #fff9ef;
}

.dcomp-nav-cta:hover,
.dcomp-button:hover {
  background: var(--dcomp-copper);
  color: white;
}

.dcomp-section {
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.98), rgba(235, 214, 184, 0.9)),
    var(--card);
  box-shadow: var(--shadow);
}

.dcomp-hero {
  display: grid;
  gap: 2rem;
  padding: 1.25rem;
}

.dcomp-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem 0;
}

.dcomp-copy .eyebrow,
.dcomp-section .eyebrow {
  color: var(--dcomp-copper-deep);
}

.dcomp-copy h2,
.dcomp-section-heading h2,
.dcomp-observation-heading h2 {
  margin: 0.8rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.35rem, 5.6vw, 4.9rem);
  line-height: 0.98;
}

.dcomp-callout-line {
  margin: 1.4rem 0 0;
  border-left: 0.28rem solid var(--dcomp-copper);
  padding: 0.2rem 0 0.2rem 1rem;
  color: var(--dcomp-copper-deep);
  font-family: var(--heading);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  line-height: 1.2;
}

.dcomp-product-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #1a160f;
}

.dcomp-product-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: #d2b89a;
}

.dcomp-photo-label {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  border-radius: 999px;
  background: rgba(116, 52, 31, 0.92);
  padding: 0.5rem 0.75rem;
  color: #fff9ef;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(8, 21, 12, 0.24);
}

.dcomp-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border-top: 1px solid rgba(8, 21, 12, 0.12);
  border-bottom: 1px solid rgba(8, 21, 12, 0.12);
  background: rgba(8, 21, 12, 0.14);
}

.dcomp-facts div {
  min-height: 9rem;
  background: rgba(255, 248, 236, 0.9);
  padding: 1.25rem;
}

.dcomp-facts strong {
  display: block;
  color: var(--dcomp-copper-deep);
  font-family: var(--heading);
  font-size: 1.75rem;
  line-height: 1.05;
}

.dcomp-facts span {
  display: block;
  margin-top: 0.65rem;
  color: var(--stone);
  font-size: 0.96rem;
  line-height: 1.5;
}

.dcomp-problem,
.dcomp-fit,
.dcomp-faq {
  display: grid;
  gap: 1.35rem;
  padding: 1.25rem;
}

.dcomp-problem,
.dcomp-faq {
  border-top: 1px solid rgba(8, 21, 12, 0.1);
}

.dcomp-section-heading {
  max-width: 59rem;
}

.dcomp-problem-intro {
  display: grid;
  gap: 1.25rem;
}

.dcomp-problem-photo {
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--field);
}

.dcomp-problem-photo img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: center;
}

.dcomp-section-heading h2,
.dcomp-observation-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
}

.dcomp-section-heading > p:last-child,
.dcomp-observation-heading > div > p:last-child {
  max-width: 47rem;
  margin: 1rem 0 0;
  color: var(--stone);
  font-size: 1.02rem;
  line-height: 1.65;
}

.dcomp-problem-grid,
.dcomp-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.dcomp-benefit-card {
  display: grid;
  min-height: 15rem;
  align-content: start;
  gap: 1rem;
  border: 1px solid rgba(116, 52, 31, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(239, 216, 184, 0.88)),
    var(--inner);
  padding: 1.2rem;
}

.dcomp-benefit-card > span {
  width: fit-content;
  border-radius: 999px;
  background: var(--dcomp-copper-deep);
  padding: 0.42rem 0.62rem;
  color: #fff9ef;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.dcomp-benefit-card h3,
.dcomp-fit-grid h3,
.dcomp-process-track h3 {
  margin: 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  line-height: 1.06;
}

.dcomp-benefit-card p,
.dcomp-fit-grid article > p:last-child,
.dcomp-process-track p {
  margin: 0;
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.58;
}

.dcomp-process {
  display: grid;
  gap: 1.6rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(238, 161, 74, 0.22), transparent 38%),
    var(--field);
  padding: 1.5rem 1.25rem;
}

.dcomp-section-heading-light h2 {
  color: #fff9ef;
}

.dcomp-section-heading-light > p:last-child {
  color: rgba(255, 249, 239, 0.78);
}

.dcomp-section-heading-light .eyebrow {
  color: var(--dcomp-amber);
}

.dcomp-process-track {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dcomp-process-track li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid rgba(255, 249, 239, 0.12);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.06);
  padding: 1rem;
}

.dcomp-process-track li > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dcomp-amber), var(--dcomp-copper));
  color: var(--field);
  font-weight: 950;
}

.dcomp-process-track h3 {
  color: #fff9ef;
  font-size: 1.35rem;
}

.dcomp-process-track p {
  margin-top: 0.55rem;
  color: rgba(255, 249, 239, 0.74);
  font-size: 0.95rem;
}

.dcomp-fit-grid article {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.8);
  padding: 1.2rem;
}

.dcomp-fit-grid article::after {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  background: rgba(195, 95, 42, 0.13);
  content: "";
}

.dcomp-fit-icon {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 1;
  display: grid;
  width: 3.65rem;
  height: 3.65rem;
  place-items: center;
  color: var(--dcomp-copper-deep);
  pointer-events: none;
}

.dcomp-fit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.dcomp-fit-label {
  width: fit-content;
  margin: 0 0 1.25rem;
  border-radius: 999px;
  background: #efd8b8;
  padding: 0.45rem 0.65rem;
  color: var(--dcomp-copper-deep);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.dcomp-fit-grid h3 {
  max-width: 17rem;
}

.dcomp-fit-grid article > p:last-child {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}

.dcomp-yield-proof {
  display: grid;
  gap: 1.25rem;
  border-top: 1px solid rgba(8, 21, 12, 0.1);
  background: #eef0f5;
  padding: 1.25rem;
}

.dcomp-yield-heading {
  display: grid;
  gap: 1rem;
}

.dcomp-yield-heading h2 {
  max-width: 58rem;
  margin: 0.8rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.dcomp-yield-heading > div > p:last-child {
  max-width: 49rem;
  margin: 1rem 0 0;
  color: var(--stone);
  font-size: 1.02rem;
  line-height: 1.65;
}

.dcomp-yield-callout {
  display: grid;
  width: fit-content;
  min-width: 11rem;
  border-radius: 8px;
  background: var(--dcomp-copper-deep);
  padding: 1rem;
  color: #fff9ef;
}

.dcomp-yield-callout strong {
  font-family: var(--heading);
  font-size: 2.5rem;
  line-height: 0.95;
}

.dcomp-yield-callout span {
  max-width: 10rem;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.dcomp-yield-gains {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.dcomp-yield-gains article {
  border: 1px solid rgba(8, 21, 12, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem;
}

.dcomp-yield-gains article > span {
  display: block;
  color: var(--dcomp-copper-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dcomp-yield-gains strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--field);
  font-family: var(--heading);
  font-size: 2.35rem;
  line-height: 1;
}

.dcomp-yield-gains p {
  margin: 0.55rem 0 0;
  color: var(--stone);
  font-size: 0.88rem;
  line-height: 1.4;
}

.dcomp-yield-chart {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 21, 12, 0.1);
  border-radius: 8px;
  background: white;
}

.dcomp-yield-chart img {
  width: 100%;
  height: auto;
  background: #eef0f5;
}

.dcomp-yield-chart figcaption {
  border-top: 1px solid rgba(8, 21, 12, 0.08);
  background: white;
  color: var(--stone);
}

.dcomp-observation {
  display: grid;
  gap: 1.25rem;
  border-top: 1px solid rgba(8, 21, 12, 0.1);
  background: #f0dfc8;
  padding: 1.25rem;
}

.dcomp-observation-heading {
  display: grid;
  gap: 1rem;
}

.dcomp-delta {
  display: grid;
  width: fit-content;
  min-width: 10rem;
  border-radius: 8px;
  background: var(--dcomp-copper-deep);
  padding: 1rem;
  color: #fff9ef;
}

.dcomp-delta strong {
  font-family: var(--heading);
  font-size: 2.5rem;
  line-height: 0.95;
}

.dcomp-delta span {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dcomp-observation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dcomp-observation-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--field);
}

.dcomp-observation-image {
  position: relative;
  overflow: hidden;
}

.dcomp-observation-image img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  object-position: center 70%;
}

.dcomp-reading,
.dcomp-treatment-tag {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(8, 21, 12, 0.3);
}

.dcomp-reading {
  top: 0.8rem;
  right: 0.8rem;
  background: #fff9ef;
  padding: 0.55rem 0.75rem;
  color: var(--field);
  font-family: var(--heading);
  font-size: 1.45rem;
  line-height: 1;
}

.dcomp-treatment-tag {
  left: 0.8rem;
  bottom: 0.8rem;
  background: var(--dcomp-copper-deep);
  padding: 0.48rem 0.7rem;
  color: #fff9ef;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dcomp-treatment-tag-untreated {
  background: rgba(8, 21, 12, 0.86);
}

.dcomp-observation-note {
  display: grid;
  gap: 1rem;
  align-items: end;
  min-width: 0;
  border: 1px solid rgba(116, 52, 31, 0.14);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.72);
  padding: 1.1rem;
}

.dcomp-observation-explainer {
  min-width: 0;
  max-width: 62rem;
}

.dcomp-observation-explainer h3 {
  margin: 0.55rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.dcomp-observation-explainer > p:not(.eyebrow) {
  margin: 0;
  color: var(--stone);
  font-size: 0.98rem;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.dcomp-observation-explainer h3 + p {
  margin-top: 0.75rem !important;
}

.dcomp-observation-explainer .dcomp-observation-disclaimer {
  margin-top: 0.9rem;
  border-top: 1px solid rgba(116, 52, 31, 0.14);
  padding-top: 0.8rem;
  font-size: 0.82rem;
}

.dcomp-observation-note .button {
  width: fit-content;
}

.dcomp-faq .faq-item summary::after {
  background: linear-gradient(135deg, #f4c683, var(--dcomp-amber));
}

.dcomp-contact-band {
  border-top: 0.45rem solid var(--dcomp-copper);
  background:
    radial-gradient(circle at 90% 0%, rgba(238, 161, 74, 0.18), transparent 34%),
    var(--field);
}

@media (min-width: 640px) {
  .product-inquiry {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .product-inquiry {
    padding: 2rem;
  }
}

@media (min-width: 640px) {
  .dcomp-hero,
  .dcomp-problem,
  .dcomp-fit,
  .dcomp-faq,
  .dcomp-observation,
  .dcomp-yield-proof {
    padding: 1.5rem;
  }

  .dcomp-process {
    padding: 2rem 1.5rem;
  }

  .dcomp-facts,
  .dcomp-problem-grid,
  .dcomp-fit-grid,
  .dcomp-observation-grid,
  .dcomp-yield-gains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dcomp-facts div {
    padding: 1.5rem;
  }

  .dcomp-fit-grid article:last-child {
    grid-column: 1 / -1;
  }

  .dcomp-observation-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .dcomp-yield-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .dcomp-hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(24rem, 0.96fr);
    align-items: center;
    padding: 2rem;
  }

  .dcomp-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dcomp-problem,
  .dcomp-fit,
  .dcomp-faq,
  .dcomp-observation,
  .dcomp-yield-proof {
    gap: 1.6rem;
    padding: 2rem;
  }

  .dcomp-problem-grid,
  .dcomp-fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dcomp-problem-intro {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.85fr);
    align-items: stretch;
    gap: 1.6rem;
  }

  .dcomp-problem-photo {
    grid-template-rows: minmax(20rem, 1fr) auto;
  }

  .dcomp-problem-photo img {
    height: 100%;
  }

  .dcomp-fit-grid article:last-child {
    grid-column: auto;
  }

  .dcomp-yield-gains {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dcomp-process {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

  .dcomp-observation-image img {
    height: 31rem;
  }

  .dcomp-observation-note {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .dcomp-faq {
    grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1.26fr);
    align-items: start;
  }
}

/* Nutri-Cycle Bloom product page */

:root {
  --bloom-plum: #6c254a;
  --bloom-plum-deep: #351326;
  --bloom-rose: #bd627f;
  --bloom-blush: #efd5dc;
  --bloom-sun: #f2c75c;
  --bloom-leaf: #5b762e;
}

.bloom-interior-top {
  min-height: clamp(43rem, 86svh, 58rem);
  background: #f7ede9;
}

.bloom-interior-top .cornfield {
  transform: scale(1.035);
}

.bloom-interior-top .cornfield-base,
.bloom-interior-top .cornfield-foreground {
  background-image: url("assets/nutri-cycle-bloom-soybean-pods-hero.jpg");
  background-position: 58% center;
}

.bloom-interior-top .cornfield-foreground {
  opacity: 0.08;
}

.bloom-interior-top .cornfield-tint {
  background:
    linear-gradient(
      90deg,
      rgba(253, 245, 235, 0.98) 0%,
      rgba(253, 245, 235, 0.92) 33%,
      rgba(253, 245, 235, 0.58) 52%,
      rgba(53, 19, 38, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(253, 245, 235, 0.08) 0%,
      rgba(91, 118, 46, 0.05) 58%,
      rgba(8, 21, 12, 0.28) 100%
    );
}

.bloom-interior-top .cornfield-fade {
  height: 13rem;
  background: linear-gradient(
    180deg,
    rgba(253, 245, 235, 0) 0%,
    rgba(253, 245, 235, 0.44) 52%,
    var(--cream) 100%
  );
}

.product-link-bloom {
  color: var(--bloom-plum) !important;
}

.bloom-interior-heading {
  padding-top: clamp(4rem, 9vh, 7rem);
  padding-bottom: 9rem;
}

.bloom-interior-heading .breadcrumb {
  color: var(--bloom-plum);
}

.bloom-interior-heading .bloom-hero-kicker {
  margin: 1.65rem 0 0;
  color: var(--bloom-plum);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bloom-interior-heading h1 {
  max-width: 51rem;
  margin-top: 0.75rem;
  font-size: clamp(3.5rem, 8.7vw, 7.2rem);
}

.bloom-interior-heading > p:last-of-type {
  max-width: 38rem;
  margin-top: 1.15rem;
}

.bloom-heading-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
  width: 100%;
  max-width: 31rem;
  margin-top: 1.8rem;
}

.bloom-heading-actions .button {
  background: var(--bloom-plum-deep);
}

.bloom-heading-actions .button:hover {
  background: var(--bloom-plum);
}

.bloom-phone-cta {
  display: grid;
  gap: 0.15rem;
  border: 1px solid rgba(53, 19, 38, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.65rem 1rem;
  color: var(--bloom-plum-deep);
  box-shadow: 0 8px 28px rgba(53, 19, 38, 0.08);
  backdrop-filter: blur(12px);
}

.bloom-phone-cta span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bloom-phone-cta strong {
  font-family: var(--heading);
  font-size: 1.35rem;
  line-height: 1;
}

.bloom-page {
  padding-bottom: 5rem;
}

.bloom-page .eyebrow {
  color: var(--bloom-plum);
}

.bloom-overview {
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  background: #fff9ef;
  box-shadow: var(--shadow);
}

.bloom-main-image {
  position: relative;
  min-height: 27rem;
  margin: 0;
  overflow: hidden;
}

.bloom-main-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 21, 12, 0.72));
  content: "";
}

.bloom-main-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.bloom-main-image figcaption {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  left: 1.1rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.45;
}

.bloom-overview-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1.25rem 1.5rem;
}

.bloom-overview-copy h2,
.bloom-section-heading h2,
.bloom-how-lead h2,
.bloom-application h2,
.bloom-science h2,
.bloom-faq-heading h2 {
  margin: 0.7rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(2.3rem, 5.5vw, 4.6rem);
  line-height: 0.98;
}

.bloom-overview-copy .lead,
.bloom-section-heading > p:last-child,
.bloom-how-heading > p:last-child,
.bloom-application > div:first-child > p:last-of-type,
.bloom-science > div:last-child,
.bloom-plain-language {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.65;
}

.bloom-overview-copy .lead {
  margin: 1.1rem 0 0;
}

.bloom-plain-language {
  margin: 1.25rem 0 0;
  border-left: 4px solid var(--bloom-sun);
  background: var(--bloom-blush);
  padding: 0.9rem 1rem;
}

.bloom-plain-language strong {
  color: var(--bloom-plum-deep);
}

.bloom-overview-copy .button {
  margin-top: 1.35rem;
  background: var(--bloom-plum-deep);
}

.bloom-overview-copy .button:hover,
.product-inquiry-bloom .button:hover {
  background: var(--bloom-plum);
}

.bloom-facts {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(53, 19, 38, 0.1);
  border-radius: 8px;
  background: var(--bloom-plum-deep);
}

.bloom-facts article {
  padding: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bloom-facts article:last-child {
  border-bottom: 0;
}

.bloom-facts span,
.bloom-crop-grid article > span,
.bloom-result-line span {
  display: block;
  color: var(--bloom-sun);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bloom-facts strong {
  display: block;
  margin-top: 0.45rem;
  color: white;
  font-family: var(--heading);
  font-size: 1.55rem;
  line-height: 1.05;
}

.bloom-facts p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.45;
}

.bloom-finish,
.bloom-fit,
.bloom-faq {
  display: grid;
  gap: 1.6rem;
  border-top: 1px solid rgba(8, 21, 12, 0.1);
  padding: 3.5rem 0;
}

.bloom-section-heading {
  max-width: 67rem;
}

.bloom-section-heading > p:last-child {
  max-width: 50rem;
  margin: 1rem 0 0;
}

.bloom-benefit-grid,
.bloom-crop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.bloom-benefit-grid article {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 8px;
  background: #fff9ef;
  padding: 1.25rem;
  box-shadow: 0 12px 36px rgba(8, 21, 12, 0.08);
}

.bloom-benefit-grid article:nth-child(2) {
  background: var(--bloom-blush);
}

.bloom-benefit-grid article:nth-child(3) {
  background: #e8efd7;
}

.bloom-benefit-grid article::after {
  position: absolute;
  right: -2.2rem;
  bottom: -2.2rem;
  width: 9rem;
  height: 9rem;
  border: 1.4rem solid rgba(108, 37, 74, 0.07);
  border-radius: 999px;
  content: "";
}

.bloom-benefit-number {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 999px;
  background: var(--bloom-plum-deep);
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
}

.bloom-benefit-grid h3,
.bloom-crop-grid h3,
.bloom-steps h3 {
  margin: 2.2rem 0 0;
  color: var(--field);
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.04;
}

.bloom-benefit-grid p,
.bloom-crop-grid p,
.bloom-steps p,
.bloom-application-checklist p {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  color: var(--stone);
  font-size: 0.97rem;
  line-height: 1.58;
}

.bloom-how {
  display: grid;
  gap: 2rem;
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(189, 98, 127, 0.25), transparent 35%),
    var(--bloom-plum-deep);
  padding: 1.35rem;
  color: white;
}

.bloom-how-lead,
.bloom-how-heading {
  align-self: start;
}

.bloom-how-lead h2 {
  color: white;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.94;
}

.bloom-how-lead .eyebrow {
  color: var(--bloom-sun);
}

.bloom-how-subtitle {
  max-width: 11ch;
  margin: 0;
  color: white;
  font-family: var(--heading);
  font-size: clamp(2.45rem, 4vw, 3.8rem);
  line-height: 1;
}

.bloom-how-heading > p:last-child {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.bloom-steps {
  display: grid;
  align-self: start;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bloom-steps li {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem 1.1rem 1.15rem;
}

.bloom-step-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bloom-step-heading > span {
  display: grid;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 999px;
  background: var(--bloom-sun);
  color: var(--bloom-plum-deep);
  font-weight: 950;
}

.bloom-steps h3 {
  margin: 0;
  color: white;
  font-size: 1.3rem;
}

.bloom-steps p {
  margin: 0.7rem 0 0;
  padding-left: 3.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.bloom-result-line {
  border-left: 5px solid var(--bloom-sun);
  background: rgba(255, 255, 255, 0.09);
  padding: 1rem 1.15rem;
}

.bloom-result-line strong {
  display: block;
  margin-top: 0.45rem;
  color: white;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.bloom-fit {
  padding-top: 4rem;
}

.bloom-crop-grid article {
  position: relative;
  min-height: 15rem;
  overflow: hidden;
  border: 1px solid rgba(8, 21, 12, 0.09);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.8);
  padding: 1.2rem;
}

.bloom-crop-grid article:nth-child(even) {
  background: #f4e7eb;
}

.bloom-crop-grid .bloom-crop-card-photo {
  padding-top: 11.2rem;
}

.bloom-crop-photo {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 10rem;
  object-fit: cover;
  object-position: center 48%;
}

.bloom-crop-grid article::after {
  position: absolute;
  right: -1.4rem;
  bottom: -1.4rem;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  background: rgba(242, 199, 92, 0.26);
  content: "";
}

.bloom-crop-grid article > span {
  width: fit-content;
  border-radius: 999px;
  background: var(--bloom-plum-deep);
  padding: 0.45rem 0.65rem;
  color: white;
}

.bloom-crop-grid h3 {
  max-width: 23rem;
  margin-top: 1.8rem;
}

.bloom-application {
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bloom-blush);
  padding: 1.35rem;
}

.bloom-application h2 {
  max-width: 42rem;
}

.bloom-application > div:first-child > p:last-of-type {
  max-width: 45rem;
  margin: 1rem 0 0;
}

.bloom-application-phone {
  display: inline-flex;
  margin-top: 1.35rem;
  border-bottom: 2px solid var(--bloom-plum);
  padding-bottom: 0.2rem;
  color: var(--bloom-plum-deep);
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.bloom-application-checklist {
  display: grid;
  gap: 0.7rem;
}

.bloom-application-checklist article {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  padding: 1rem;
}

.bloom-application-checklist strong {
  color: var(--bloom-plum-deep);
  font-family: var(--heading);
  font-size: 1.25rem;
}

.bloom-application-checklist p {
  margin-top: 0.45rem;
  font-size: 0.9rem;
}

.bloom-science {
  display: grid;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(8, 21, 12, 0.1);
  padding: 4rem 0;
}

.bloom-science h2 {
  max-width: 43rem;
}

.bloom-science > div:last-child {
  align-self: end;
  border-left: 4px solid var(--bloom-sun);
  padding-left: 1.15rem;
}

.bloom-science > div:last-child p {
  margin: 0;
}

.bloom-science > div:last-child p + p {
  margin-top: 1rem;
}

.bloom-faq {
  padding-top: 0;
  border-top: 0;
}

.bloom-faq-heading {
  max-width: 55rem;
}

.bloom-faq .faq-item {
  background: rgba(255, 249, 239, 0.84);
}

.bloom-faq .faq-item summary::after {
  background: linear-gradient(135deg, var(--bloom-blush), var(--bloom-rose));
}

.product-inquiry-bloom {
  border-top-color: var(--bloom-plum);
  background:
    radial-gradient(circle at 8% 0%, rgba(189, 98, 127, 0.2), transparent 34%),
    var(--inner);
}

.product-inquiry-bloom .contact-intake-copy h2 {
  max-width: 48rem;
}

.product-inquiry-bloom .contact-form {
  background: #fff9ef;
}

.product-inquiry-bloom .button {
  background: var(--bloom-plum-deep);
}

.bloom-contact-band {
  border-top: 0.45rem solid var(--bloom-sun);
  background:
    radial-gradient(circle at 92% 0%, rgba(189, 98, 127, 0.22), transparent 34%),
    var(--bloom-plum-deep);
}

@media (min-width: 640px) {
  .bloom-heading-actions {
    flex-direction: row;
    align-items: stretch;
    max-width: 43rem;
  }

  .bloom-heading-actions .button {
    flex: 1 1 auto;
  }

  .bloom-phone-cta {
    min-width: 12rem;
  }

  .bloom-overview-copy,
  .bloom-how,
  .bloom-application {
    padding: 1.5rem;
  }

  .bloom-facts,
  .bloom-benefit-grid,
  .bloom-crop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bloom-facts article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .bloom-facts article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .bloom-overview {
    grid-template-columns: minmax(24rem, 0.92fr) minmax(0, 1.08fr);
    min-height: 41rem;
  }

  .bloom-main-image {
    min-height: 41rem;
  }

  .bloom-overview-copy {
    padding: 2rem 2.4rem 2rem 1rem;
  }

  .bloom-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bloom-facts article,
  .bloom-facts article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    padding: 1.4rem;
  }

  .bloom-facts article:last-child {
    border-right: 0;
  }

  .bloom-finish,
  .bloom-fit,
  .bloom-faq {
    gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .bloom-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bloom-how {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }

  .bloom-how-lead {
    grid-column: 1 / -1;
  }

  .bloom-how-heading {
    grid-column: 1;
  }

  .bloom-steps {
    grid-column: 2;
  }

  .bloom-result-line {
    grid-column: 1 / -1;
  }

  .bloom-crop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bloom-application {
    grid-template-columns: minmax(0, 0.86fr) minmax(24rem, 1.14fr);
    gap: 2.5rem;
    padding: 2.25rem;
  }

  .bloom-science {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
    padding: 5rem 0;
  }

  .bloom-faq {
    grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1.26fr);
    align-items: start;
    padding-top: 5rem;
  }
}

@media (max-width: 767px) {
  .bloom-interior-top .cornfield-base,
  .bloom-interior-top .cornfield-foreground {
    background-position: 66% center;
  }

  .bloom-interior-top .cornfield-tint {
    background:
      linear-gradient(
        90deg,
        rgba(253, 245, 235, 0.97) 0%,
        rgba(253, 245, 235, 0.88) 68%,
        rgba(53, 19, 38, 0.16) 100%
      ),
      linear-gradient(180deg, rgba(253, 245, 235, 0.1), rgba(8, 21, 12, 0.26));
  }
}
