/* NovaLand Plant-Specific Nutrition Design — static designer handoff */
:root {
  --ink: #123129;
  --green: #176b52;
  --emerald: #2a8b68;
  --mint: #ddece5;
  --paper: #f6f4ee;
  --paper-deep: #ecebe3;
  --gold: #be9b5e;
  --violet: #665bc6;
  --cyan: #3a93b5;
  --line: #d4ded8;
  --muted: #60736c;
  --white: #ffffff;
  --deep: #0b211b;
  --shadow-soft: 0 24px 70px rgba(18, 49, 41, 0.12);
  --shadow-card: 0 14px 38px rgba(18, 49, 41, 0.09);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --shell: 1240px;
  --font-display: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.9rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  max-width: 70ch;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.white-section {
  background: var(--white);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #b7ded0;
}

.lead {
  font-size: clamp(1.16rem, 1.8vw, 1.46rem);
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Shared header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(212, 222, 216, 0.78);
  background: rgba(246, 244, 238, 0.92);
  box-shadow: 0 8px 28px rgba(18, 49, 41, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  fill: var(--green);
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 0.82rem;
  letter-spacing: 0.075em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--green);
}

.desktop-nav .nav-pill {
  padding: 10px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--ink);
}

.mobile-menu nav {
  position: absolute;
  top: 56px;
  right: 0;
  width: min(82vw, 290px);
  display: grid;
  padding: 14px 20px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.mobile-menu nav a {
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

/* Shared buttons and images */
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(23, 107, 82, 0.22);
}

.button-primary:hover {
  background: #0f5943;
}

.button-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.button-outline:hover {
  background: var(--white);
}

.image-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-panel > picture {
  position: absolute;
  inset: 0;
}

.image-panel > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel > figcaption:not(.nutrition-image-map) {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(9, 53, 41, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
}

blockquote {
  margin: 38px 0 0;
  padding: 24px 0 24px 28px;
  color: var(--green);
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 650;
  line-height: 1.45;
}

/* Plant-specific nutrition page */
.nutrition-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(190, 155, 94, 0.18), transparent 27%),
    linear-gradient(135deg, #f8f6ef 0%, #edf3ee 68%, #e0ece4 100%);
}

.nutrition-hero::before,
.nutrition-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 107, 82, 0.19);
  border-radius: 50%;
  pointer-events: none;
}

.nutrition-hero::before {
  width: 410px;
  height: 410px;
  left: -260px;
  bottom: -210px;
}

.nutrition-hero::after {
  width: 640px;
  height: 640px;
  right: -420px;
  top: -340px;
}

.nutrition-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.nutrition-hero-copy {
  padding: 24px 0 86px;
}

.nutrition-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
}

.nutrition-hero-lead {
  color: #385049;
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
}

.nutrition-hero-note {
  margin-top: 26px;
  padding: 18px 20px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 107, 82, 0.15);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-weight: 720;
}

.nutrition-hero-image {
  min-height: 650px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.nutrition-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 45, 34, 0.78));
  pointer-events: none;
}

.nutrition-image-map {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  color: var(--white);
  background: rgba(8, 52, 40, 0.67);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  font-size: 0.73rem;
  font-weight: 780;
}

.nutrition-image-map i {
  color: var(--gold);
  font-style: normal;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(64px, 9vw, 126px);
}

.category-heading {
  position: sticky;
  top: 128px;
}

.category-heading h2 {
  margin-bottom: 28px;
}

.category-heading p:not(.eyebrow) {
  color: var(--muted);
}

.logic-comparison {
  display: grid;
  gap: 18px;
}

.logic-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.logic-card-conventional {
  color: #52645e;
  background: #f4f4ef;
}

.logic-card-novaland {
  color: var(--ink);
  background: linear-gradient(135deg, #e4f0e9, #f6f8f4);
  border-color: rgba(23, 107, 82, 0.23);
  box-shadow: var(--shadow-card);
}

.logic-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logic-card-novaland .logic-label {
  color: var(--green);
}

.logic-card h3 {
  max-width: 560px;
  margin: 14px 0 26px;
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
}

.logic-card ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: logic-step;
  list-style: none;
}

.logic-card li {
  min-height: 84px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  counter-increment: logic-step;
  font-size: 0.84rem;
  font-weight: 680;
  line-height: 1.35;
}

.logic-card li::before {
  content: counter(logic-step, decimal-leading-zero);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
}

.seed-section {
  background: var(--paper-deep);
}

.seed-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(62px, 9vw, 126px);
}

.seed-copy h2 {
  margin-bottom: 28px;
}

.seed-copy p:not(.eyebrow) {
  color: #435951;
}

.science-note {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding: 22px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 107, 82, 0.14);
  border-radius: 16px;
}

.science-note strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.94rem;
}

.science-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.seed-measures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.seed-measures article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(23, 107, 82, 0.13);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(18, 49, 41, 0.055);
}

.seed-measures article > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.seed-measures h3 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
}

.seed-measures p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.root-design-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.root-design-image {
  min-height: 680px;
}

.root-design-image img {
  object-position: center center;
}

.root-design-copy h2 {
  margin-bottom: 28px;
}

.root-design-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.root-signals {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.root-signals article {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 18px;
  padding: 17px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.root-signals span {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 800;
}

.root-signals p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.root-caution {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  font-size: 0.88rem;
}

.nutrition-path-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.nutrition-path-section::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -480px;
  bottom: -470px;
  border: 1px solid rgba(122, 211, 179, 0.18);
  border-radius: 50%;
}

.nutrition-path-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 58px;
}

.nutrition-path-heading h2 {
  margin-bottom: 0;
}

.nutrition-path-heading > p {
  margin-bottom: 8px;
  color: #b7cbc3;
}

.nutrition-path {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nutrition-path li {
  min-height: 264px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.nutrition-path-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #b9e2d3;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 850;
}

.nutrition-path h3 {
  margin: 34px 0 14px;
  font-size: 1.34rem;
}

.nutrition-path p {
  margin-bottom: 0;
  color: #aebfb9;
  font-size: 0.86rem;
}

.formula-section {
  background: #edf2ee;
}

.formula-heading {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 64px;
}

.formula-heading h2 {
  margin-bottom: 0;
}

.formula-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.formula-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 24px;
}

.formula-builder-image {
  min-height: 720px;
}

.formula-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.formula-inputs li {
  min-height: 226px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-content: start;
  gap: 12px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(23, 107, 82, 0.13);
  border-radius: 18px;
}

.formula-inputs li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 820;
}

.formula-inputs h3 {
  margin: 5px 0 12px;
  font-size: 1.27rem;
}

.formula-inputs p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.nano-platform-section {
  background: var(--white);
}

.nano-platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(64px, 9vw, 126px);
}

.nano-platform-copy h2 {
  margin-bottom: 28px;
}

.nano-platform-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.nano-platform-copy blockquote {
  color: var(--violet);
  border-left-color: var(--violet);
}

.nano-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nano-principles article {
  min-height: 230px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(102, 91, 198, 0.065), rgba(58, 147, 181, 0.06));
  border: 1px solid rgba(102, 91, 198, 0.16);
  border-radius: 20px;
}

.nano-principles span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.nano-principles h3 {
  margin: 30px 0 12px;
  font-size: 1.32rem;
}

.nano-principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.foliar-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.foliar-copy h2 {
  margin-bottom: 28px;
}

.foliar-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.foliar-factors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.foliar-factors li {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.foliar-factors strong {
  color: var(--green);
  font-family: var(--font-display);
}

.foliar-factors span {
  color: var(--muted);
  font-size: 0.82rem;
}

.foliar-image {
  min-height: 650px;
}

.measurement-section {
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(58, 147, 181, 0.18), transparent 30%),
    var(--deep);
}

.measurement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: clamp(64px, 9vw, 126px);
}

.measurement-copy h2 {
  margin-bottom: 28px;
}

.measurement-copy > p:not(.eyebrow) {
  color: #b5c9c1;
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.response-grid div {
  min-height: 94px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
}

.response-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #bee2d5;
  border: 1px solid rgba(190, 226, 213, 0.28);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 820;
}

.response-grid strong {
  font-family: var(--font-display);
  font-size: 0.94rem;
}

.nutrition-brief {
  background:
    linear-gradient(120deg, rgba(221, 236, 229, 0.72), transparent 48%),
    var(--white);
}

.nutrition-brief-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(62px, 9vw, 126px);
}

.nutrition-brief-grid h2 {
  max-width: 720px;
}

.nutrition-brief-copy > p {
  color: var(--muted);
}

.brief-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 30px;
}

.brief-fields span {
  padding: 9px 13px;
  color: var(--green);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 780;
}

.nutrition-brief-copy > small {
  display: block;
  margin-top: 24px;
  color: #7c8e87;
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  padding: 44px 0;
  color: #a9b9b3;
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  fill: #86c5ae;
}

.footer-brand .brand-copy small {
  color: #9fb2ab;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.76rem;
}

@media (max-width: 1080px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 104px 0;
  }

  .desktop-nav {
    gap: 20px;
  }

  .nutrition-path-heading,
  .formula-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nutrition-hero-image {
    min-height: 580px;
  }

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

  .nutrition-path li {
    min-height: 236px;
  }

  .formula-builder {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

  .formula-inputs li {
    padding: 22px;
  }

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

  .footer-grid p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-copy small,
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nutrition-hero-grid,
  .category-layout,
  .seed-layout,
  .root-design-grid,
  .nutrition-path-heading,
  .formula-heading,
  .formula-builder,
  .nano-platform-grid,
  .foliar-grid,
  .measurement-grid,
  .nutrition-brief-grid {
    grid-template-columns: 1fr;
  }

  .nutrition-hero {
    padding-top: 62px;
  }

  .nutrition-hero-grid {
    gap: 48px;
  }

  .nutrition-hero-copy {
    padding: 6px 0 0;
  }

  .nutrition-hero-image {
    min-height: 520px;
  }

  .category-heading {
    position: static;
  }

  .category-layout,
  .seed-layout,
  .root-design-grid,
  .formula-builder,
  .nano-platform-grid,
  .foliar-grid,
  .measurement-grid,
  .nutrition-brief-grid {
    gap: 52px;
  }

  .root-design-copy {
    order: 1;
  }

  .root-design-image {
    min-height: 540px;
    order: 2;
  }

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

  .nutrition-path li {
    min-height: 0;
  }

  .formula-inputs {
    order: 1;
  }

  .formula-builder-image {
    min-height: 500px;
    order: 2;
  }

  .foliar-image {
    min-height: 520px;
  }

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

  .footer-grid p:last-child {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15.5px;
  }

  .section {
    padding: 82px 0;
  }

  .nutrition-path-heading,
  .formula-heading {
    margin-bottom: 42px;
  }

  .action-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .nutrition-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .nutrition-hero-image {
    min-height: 390px;
  }

  .nutrition-image-map {
    right: 14px;
    bottom: 14px;
    left: 14px;
    flex-wrap: wrap;
    gap: 7px;
    padding: 12px;
    font-size: 0.64rem;
  }

  .logic-card {
    padding: 26px 22px;
  }

  .logic-card ol,
  .seed-measures,
  .nutrition-path,
  .formula-inputs,
  .nano-principles,
  .foliar-factors,
  .response-grid {
    grid-template-columns: 1fr;
  }

  .seed-measures article,
  .formula-inputs li,
  .nano-principles article {
    min-height: 0;
  }

  .root-design-image {
    min-height: 470px;
  }

  .root-signals article {
    grid-template-columns: 78px 1fr;
    padding: 16px;
  }

  .nutrition-path li {
    padding: 22px;
  }

  .formula-builder-image,
  .foliar-image {
    min-height: 390px;
  }

  .formula-inputs li {
    grid-template-columns: 36px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}
