:root {
  color-scheme: light;
  --ink: #122019;
  --ink-soft: #425248;
  --muted: #657269;
  --green: #197746;
  --green-dark: #0d3f29;
  --green-deep: #092f22;
  --mint: #e9f4ea;
  --teal: #116d73;
  --teal-soft: #e5f2f2;
  --amber: #b97820;
  --amber-soft: #faf1df;
  --blue-soft: #edf2fa;
  --surface: #ffffff;
  --surface-soft: #f4f7f4;
  --warm: #f7f3eb;
  --line: #d8e1da;
  --line-dark: rgba(255, 255, 255, 0.2);
  --shadow: 0 22px 55px rgba(16, 42, 29, 0.14);
  --shadow-soft: 0 12px 30px rgba(16, 42, 29, 0.08);
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  line-height: 1.55;
}

main,
section,
article,
figure,
.topbar > * {
  min-width: 0;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

p,
li,
a {
  overflow-wrap: break-word;
}

h1 {
  max-width: 690px;
  font-size: 4.65rem;
  line-height: 0.98;
}

h2 {
  font-size: 3.25rem;
  line-height: 1.06;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - var(--content)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  text-decoration: none;
}

.brand__icon {
  display: block;
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 720;
}

.nav a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 820;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button--primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(25, 119, 70, 0.2);
}

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

.button--secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--green-dark);
}

.button--secondary:hover {
  border-color: var(--green);
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.84rem;
}

.button--large {
  min-height: 56px;
  padding: 0 28px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #9ed9b3;
}

.hero {
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(560px, 1.18fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 72px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px max(24px, calc((100vw - var(--content)) / 2)) 54px;
  background: #ffffff;
}

.hero__copy {
  min-width: 0;
}

.hero__text {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 720;
  list-style: none;
}

.hero__proofs li {
  position: relative;
  padding-left: 20px;
}

.hero__proofs li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero__visual {
  min-width: 0;
  width: 100%;
  max-width: 768px;
  margin: 0;
  overflow: hidden;
  background: var(--mint);
  border: 1px solid #d5e6d5;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  height: auto;
}

.benefits {
  padding: 94px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading,
.benefit-grid {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2 {
  max-width: 830px;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center h2,
.section-heading--center > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.section-heading--center > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 70px;
  align-items: end;
}

.section-heading--split > p {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.benefit-card {
  min-height: 248px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.benefit-card:nth-child(2) {
  border-top: 4px solid var(--teal);
}

.benefit-card:nth-child(3) {
  border-top: 4px solid var(--amber);
}

.benefit-card:first-child {
  border-top: 4px solid var(--green);
}

.benefit-card__number {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.benefit-card p {
  margin: 15px 0 0;
  color: var(--ink-soft);
}

.management {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 80px;
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
  padding: 104px 24px;
}

.management__content h2 {
  max-width: 610px;
}

.section-copy {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 17px;
  height: 17px;
  background: var(--mint);
  border: 1px solid #bddbc5;
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 5px;
  width: 7px;
  height: 3px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.management__screen {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: var(--blue-soft);
  border: 1px solid #dce4ef;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.management__screen img {
  width: 100%;
  height: auto;
}

.management__screen figcaption {
  padding: 13px 18px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.78rem;
}

.management__visual {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.management__signals {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.management__signals article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.management__signals span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.management__signals p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.field-band {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: stretch;
  padding: 96px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--green-deep);
  color: #ffffff;
}

.field-band__photo {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.field-band__photo::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(4, 28, 19, 0.78));
  content: "";
}

.field-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.field-band__photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: #e7f1eb;
  font-size: 0.8rem;
  font-weight: 720;
}

.field-band__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 14px 0;
}

.field-band__intro h2 {
  max-width: 560px;
}

.field-band__intro > p:last-child {
  max-width: 550px;
  margin: 22px 0 0;
  color: #c6d8ce;
  font-size: 1.05rem;
}

.field-band__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.field-band__features article {
  min-height: 248px;
  padding: 28px 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.field-band__features article:first-child {
  border-left: 1px solid var(--line-dark);
}

.field-band__features span {
  display: block;
  margin-bottom: 26px;
  color: #8fd5ab;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-band__features p {
  margin: 15px 0 0;
  color: #bfd3c7;
  font-size: 0.92rem;
}

.product {
  max-width: var(--content);
  margin: 0 auto;
  padding: 104px 24px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.product-shot {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-shot--seed {
  background: var(--teal-soft);
}

.product-shot--plant {
  background: var(--mint);
}

.product-shot--data {
  background: var(--blue-soft);
}

.product-shot__copy {
  min-height: 228px;
  padding: 28px;
}

.product-shot__copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-shot__copy p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.product-shot img {
  display: block;
  width: calc(100% - 32px);
  height: auto;
  margin: auto 16px 0;
  border: 1px solid rgba(18, 32, 25, 0.1);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 12px 32px rgba(22, 42, 31, 0.1);
}

.species-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: start;
  margin-top: 72px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.species-note p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.traceability {
  padding: 100px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--warm);
  border-top: 1px solid #e6dfd2;
}

.traceability__heading,
.trace-flow,
.compliance-callout {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.traceability__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 72px;
  align-items: end;
}

.traceability__heading h2 {
  max-width: 780px;
}

.traceability__heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.trace-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 58px;
  padding: 0;
  list-style: none;
  border-top: 2px solid #c8bda8;
}

.trace-flow li {
  position: relative;
  min-height: 220px;
  padding: 30px 28px 24px 0;
}

.trace-flow li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
}

.trace-flow span {
  display: block;
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 880;
}

.trace-flow strong {
  display: block;
  font-size: 1.18rem;
}

.trace-flow p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.compliance-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: center;
  margin-top: 38px;
  padding: 42px;
  background: var(--teal);
  color: #ffffff;
  border-radius: 8px;
}

.compliance-callout h2 {
  font-size: 2.4rem;
}

.compliance-callout p {
  margin-bottom: 0;
  color: #e4f1f1;
}

.compliance-callout small {
  display: block;
  margin-top: 18px;
  color: #bcd7d9;
  font-size: 0.76rem;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: stretch;
  padding: 96px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--green-deep);
  color: #ffffff;
}

.contact__media {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  align-self: center;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(3, 25, 17, 0.3);
}

.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.contact__media figcaption {
  position: absolute;
  right: 20px;
  bottom: 24px;
  left: 20px;
  padding: 10px 12px;
  background: rgba(5, 32, 22, 0.72);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 720;
  text-align: center;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

.contact__content {
  display: grid;
  gap: 34px;
  align-content: center;
  min-width: 0;
}

.contact h2 {
  max-width: 610px;
}

.contact__intro > p:last-child {
  max-width: 690px;
  margin: 20px 0 0;
  color: #d7e5dc;
  font-size: 1.04rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(3, 25, 17, 0.3);
}

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

.form-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 780;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd7cf;
  border-radius: 7px;
  outline: 0;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 0.93rem;
  font-weight: 520;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 46px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(25, 119, 70, 0.12);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #b5473c;
}

.form-field--trap {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-form__status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--ink);
  color: #ffffff;
}

.brand--footer {
  color: #ffffff;
}

.footer > p {
  margin: 0;
  color: #bfcec5;
  text-align: center;
}

.footer__meta {
  display: grid;
  gap: 4px;
  color: #9fb1a6;
  font-size: 0.78rem;
  text-align: right;
}

.footer__meta a {
  color: #dce9e0;
  text-decoration: none;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero {
    grid-template-columns: minmax(360px, 0.88fr) minmax(440px, 1.12fr);
    gap: 38px;
  }

  .management {
    gap: 48px;
  }

  .field-band {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .field-band__photo {
    width: 100%;
    max-width: 480px;
    min-height: 480px;
    justify-self: center;
  }

  .product-shot__copy {
    min-height: 250px;
  }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: auto 1fr;
  }

  .nav {
    display: none;
  }

  .topbar__cta {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .hero__visual {
    width: 100%;
  }

  .benefit-grid,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .management {
    grid-template-columns: 1fr;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .management__content {
    max-width: 680px;
  }

  .management__screen {
    max-width: 720px;
  }

  .management__visual {
    max-width: 820px;
  }

  .field-band__features {
    grid-template-columns: 1fr;
  }

  .field-band__features article,
  .field-band__features article:first-child {
    min-height: auto;
    border-right: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .product-shot {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(320px, 1.28fr);
    align-items: end;
  }

  .product-shot__copy {
    min-height: auto;
  }

  .product-shot img {
    height: auto;
  }

  .section-heading--split,
  .species-note,
  .traceability__heading,
  .compliance-callout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading--split > p {
    max-width: 700px;
  }

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

  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact__content {
    gap: 30px;
  }

  .contact__intro {
    max-width: 680px;
  }

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

  .footer > p,
  .footer__meta {
    text-align: left;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.75rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.2rem;
  }

  .topbar {
    min-height: 64px;
    gap: 10px;
    padding: 10px 16px;
  }

  .brand {
    gap: 8px;
    font-size: 0.94rem;
  }

  .brand__icon {
    width: 36px;
    height: 36px;
  }

  .topbar__cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .hero {
    gap: 42px;
    padding: 54px 20px 48px;
  }

  .hero__text {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proofs {
    display: grid;
    gap: 10px;
  }

  .hero__visual {
    width: 100%;
  }

  .benefits,
  .field-band,
  .traceability,
  .contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .benefits,
  .traceability {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .benefit-grid {
    margin-top: 36px;
  }

  .benefit-card {
    padding: 24px;
  }

  .benefit-card__number {
    margin-bottom: 20px;
  }

  .management,
  .product {
    padding: 76px 20px;
  }

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

  .management__signals {
    grid-template-rows: auto;
  }

  .management__signals article {
    min-height: 190px;
  }

  .field-band {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .field-band__photo {
    min-height: 440px;
  }

  .field-band__content {
    padding: 0;
  }

  .field-band__features article {
    padding: 24px 20px;
  }

  .product-gallery {
    margin-top: 38px;
  }

  .product-shot {
    display: flex;
  }

  .product-shot__copy {
    padding: 24px;
  }

  .product-shot img {
    width: calc(100% - 24px);
    height: auto;
    margin-right: 12px;
    margin-left: 12px;
  }

  .species-note {
    margin-top: 52px;
    padding: 34px 0;
  }

  .trace-flow {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .trace-flow li {
    min-height: auto;
    padding: 24px 0;
    border-top: 1px solid #c8bda8;
  }

  .trace-flow li::before {
    top: -6px;
  }

  .trace-flow span {
    margin-bottom: 16px;
  }

  .compliance-callout {
    padding: 28px 24px;
  }

  .compliance-callout h2 {
    font-size: 2rem;
  }

  .contact {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .contact__media img {
    object-position: 58% center;
  }

  .contact__media figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .contact__content .button {
    width: 100%;
  }

  .contact-form {
    padding: 24px 20px;
  }

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

  .contact-form__footer {
    display: grid;
    gap: 10px;
  }

  .contact-form__status {
    text-align: center;
  }

  .footer {
    padding: 30px 20px;
  }
}

@media (max-width: 380px) {
  .topbar__cta {
    max-width: 140px;
    padding: 0 10px;
    line-height: 1.15;
  }

  h1 {
    font-size: 2.45rem;
  }
}

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

  .button {
    transition: none;
  }
}
