:root {
  --ink: #17201a;
  --muted: #607066;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --mist: #eef4ef;
  --sky: #dcebed;
  --leaf: #285b35;
  --leaf-dark: #12371f;
  --leaf-soft: #dfeadb;
  --navy: #102c3a;
  --copper: #aa673d;
  --copper-dark: #7a4124;
  --line: rgba(23, 32, 26, 0.14);
  --shadow: 0 20px 55px rgba(20, 34, 24, 0.13);
  --radius: 8px;
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 3.7vw, 3.45rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--leaf-dark);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--leaf-dark);
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(1060px, calc(100% - 40px));
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  z-index: 30;
  color: #fff;
  background: var(--leaf-dark);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--leaf-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.top-strip {
  color: #fff;
  background: var(--navy);
  font-size: 0.86rem;
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.top-strip a:hover,
.top-strip a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: var(--header);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 194px;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.nav-parent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.nav-parent:hover,
.nav-parent:focus-visible {
  color: var(--leaf-dark);
  background: var(--leaf-soft);
  outline: none;
}

.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero-home,
.page-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(12, 28, 17, 0.68), rgba(12, 28, 17, 0.44) 46%, rgba(12, 28, 17, 0.08)),
    linear-gradient(0deg, rgba(12, 28, 17, 0.3), rgba(12, 28, 17, 0));
}

.home-page .hero-home {
  min-height: 680px;
  align-items: center;
}

.home-page .hero-scrim {
  background:
    linear-gradient(90deg, rgba(12, 28, 17, 0.52), rgba(12, 28, 17, 0.28) 48%, rgba(12, 28, 17, 0.02)),
    linear-gradient(0deg, rgba(12, 28, 17, 0.16), rgba(12, 28, 17, 0));
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  padding: 124px 0 86px;
}

.home-page .hero-proof {
  display: none;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  padding: 118px 0 66px;
}

.hero-copy h1,
.hero-copy p {
  color: #fff;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: #f2c9a9;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: var(--leaf);
  border-color: var(--leaf);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
}

.button-secondary {
  color: var(--leaf-dark);
  background: var(--leaf-soft);
  border-color: rgba(18, 55, 31, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #cdddc7;
}

.button-ghost {
  color: var(--leaf-dark);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--surface);
}

.button-light {
  color: var(--leaf-dark);
  background: #fff;
  border-color: #fff;
}

.hero-proof {
  display: grid;
  gap: 10px;
}

.proof-card {
  min-height: 86px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.proof-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.proof-card span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-height: 128px;
  padding: 22px;
  background: var(--surface);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 8px;
  color: var(--leaf-dark);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.content-band {
  padding: 92px 0;
  border-top: 1px solid rgba(23, 32, 26, 0.08);
}

.content-band.alt,
.product-band {
  background: var(--mist);
}

.text-band {
  background: var(--paper);
}

.text-band .narrow {
  width: min(var(--max), calc(100% - 40px));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 660px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card,
.article-card,
.process-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(20, 34, 24, 0.08);
}

.product-card a {
  display: grid;
  color: var(--leaf-dark);
  text-decoration: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px 18px 0;
  font-weight: 800;
}

.product-card p {
  padding: 0 18px 20px;
  margin-bottom: 0;
  font-size: 0.96rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 62px;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.feature-band {
  background: #f8faf5;
}

.feature-band.alt {
  background: #5a6953;
}

.feature-band .content-grid,
.feature-band .content-grid.reverse {
  width: min(1160px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.feature-band:not(.alt) .content-grid.reverse .rich-text {
  order: -1;
}

.feature-band .rich-text {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 32, 26, 0.08);
}

.feature-band.alt .rich-text {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-band .rich-text > .eyebrow {
  margin-bottom: 22px;
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-band .rich-text > h2 {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 600;
  line-height: 1.65;
}

.feature-band .rich-text > p:not(.eyebrow) {
  max-width: 640px;
}

.feature-band.alt .rich-text h2,
.feature-band.alt .rich-text h3,
.feature-band.alt .rich-text p {
  color: #fff;
}

.feature-band.alt .rich-text p {
  color: rgba(255, 255, 255, 0.86);
}

.feature-band.alt .rich-text .eyebrow {
  color: #f0c39d;
}

.rich-text {
  max-width: 860px;
}

.rich-text p {
  max-width: 780px;
}

.rich-text h2 {
  max-width: 860px;
  font-size: clamp(1.38rem, 1.55vw, 1.72rem);
  line-height: 1.28;
}

.text-band .rich-text {
  max-width: 1120px;
}

.text-band .rich-text h2 {
  max-width: 980px;
  font-size: clamp(1.38rem, 1.52vw, 1.68rem);
}

.text-band .rich-text p {
  max-width: 900px;
  font-size: 1rem;
}

.rich-text.center-copy {
  margin-inline: auto;
  text-align: center;
}

.rich-text.center-copy h2,
.rich-text.center-copy p {
  margin-inline: auto;
}

.image-frame {
  margin: 0;
}

.feature-band .image-frame {
  display: block;
  aspect-ratio: 1 / 1;
  align-self: center;
  overflow: hidden;
}

.image-frame img,
.image-mosaic img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  aspect-ratio: 1.04;
  max-height: 620px;
}

.feature-band .image-frame img {
  height: 100%;
  max-height: none;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  box-shadow: none;
}

.feature-band .image-mosaic {
  aspect-ratio: 1 / 1;
  padding: 0;
}

.feature-band .image-mosaic img {
  border-radius: 0;
  box-shadow: none;
}

.image-frame img[src*="cantplains"] {
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  background: #fff;
}

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

.image-mosaic img {
  aspect-ratio: 1;
}

.image-mosaic img:first-child:nth-last-child(odd) {
  grid-column: 1 / -1;
  aspect-ratio: 1.6;
}

.attribute-band {
  background: #d8e1da;
}

.attribute-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.attribute-intro h2 {
  max-width: none;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.attribute-list {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.attribute-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.attribute-icon {
  width: 98px;
  min-height: 98px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(23, 32, 26, 0.12);
  border-radius: 4px;
}

.attribute-icon img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
  box-shadow: none;
}

.attribute-item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.attribute-item p {
  max-width: none;
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.process-band {
  background: var(--sky);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.process-card div {
  padding: 22px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--copper);
  border-radius: var(--radius);
  font-weight: 800;
}

.cta-band {
  padding: 72px 0;
  color: #fff;
  background: var(--leaf-dark);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-grid p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-frame iframe,
.local-video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-band {
  background: #d8e1da;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: 44px;
  align-items: center;
}

.video-layout > div:first-child {
  max-width: 520px;
}

.video-card {
  margin: 0;
  overflow: hidden;
  background: #0b130d;
  border: 1px solid rgba(23, 32, 26, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.local-video {
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #0b130d;
}

.video-card figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.video-actions {
  margin-top: 26px;
}

.transcript-band {
  background: var(--paper);
}

.transcript-band .narrow {
  width: min(var(--max), calc(100% - 40px));
}

.transcript-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 34, 24, 0.09);
}

.transcript-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.transcript-panel p {
  max-width: none;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-intro {
  padding: 58px 0 54px;
  text-align: center;
  background: #d8e1da;
  border-top: 1px solid rgba(23, 32, 26, 0.08);
}

.contact-intro .narrow {
  max-width: 760px;
}

.contact-intro .eyebrow {
  margin-bottom: 10px;
  color: rgba(18, 55, 31, 0.74);
}

.contact-intro h1 {
  max-width: none;
  margin-bottom: 12px;
  color: var(--leaf-dark);
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.contact-intro p {
  max-width: 690px;
  margin: 0 auto 8px;
  color: rgba(23, 32, 26, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-band {
  color: #fff;
  background: #263722;
}

.contact-band:not(.contact-panel) {
  background:
    radial-gradient(circle at 18% 22%, rgba(85, 112, 78, 0.34), transparent 30%),
    linear-gradient(135deg, #112c18 0%, #1d3a24 48%, #263722 100%);
}

.contact-grid {
  width: min(1040px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(380px, 1.15fr);
  gap: 78px;
  align-items: start;
}

.contact-band:not(.contact-panel) .contact-grid {
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: minmax(280px, 0.85fr) minmax(380px, 1fr);
  gap: 76px;
  align-items: center;
}

.contact-band:not(.contact-panel) .rich-text h2,
.contact-band:not(.contact-panel) .rich-text p,
.contact-band:not(.contact-panel) .contact-list dt,
.contact-band:not(.contact-panel) .contact-list dd,
.contact-band:not(.contact-panel) .contact-list a {
  color: #fff;
}

.contact-band:not(.contact-panel) .rich-text h2 {
  max-width: 560px;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
}

.contact-band:not(.contact-panel) .rich-text p,
.contact-band:not(.contact-panel) .contact-list dd {
  color: rgba(255, 255, 255, 0.78);
}

.contact-band:not(.contact-panel) .contact-list div {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.contact-band:not(.contact-panel) .clean-form {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.contact-panel h2,
.contact-panel h3,
.contact-panel p,
.contact-panel a,
.contact-panel label,
.contact-panel dt,
.contact-panel dd {
  color: #fff;
}

.contact-panel {
  padding-block: 76px;
  border-top: 0;
}

.contact-panel .contact-info {
  display: grid;
  gap: 30px;
}

.contact-panel h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-panel h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 1.9vw, 2.05rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-panel p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-panel .farm-map {
  width: min(290px, 100%);
  margin-top: 12px;
  border-radius: 4px;
  box-shadow: none;
}

.contact-panel .clean-form {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-panel .clean-form label {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-panel .clean-form input,
.contact-panel .clean-form textarea {
  min-height: 42px;
  color: #152117;
  background: rgba(235, 241, 239, 0.78);
  border-color: rgba(255, 255, 255, 0.32);
  border-radius: 0;
}

.contact-panel .clean-form textarea {
  min-height: 102px;
}

.contact-panel .clean-form input:focus,
.contact-panel .clean-form textarea:focus {
  background: #fff;
  border-color: #fff;
  outline: 3px solid rgba(255, 255, 255, 0.22);
}

.contact-panel .clean-form .button {
  width: max-content;
  min-height: 38px;
  padding-inline: 28px;
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.contact-panel .clean-form .button:hover,
.contact-panel .clean-form .button:focus-visible {
  color: var(--leaf-dark);
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 0;
}

.contact-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 32, 26, 0.13);
}

.contact-list dt {
  color: var(--leaf-dark);
  font-weight: 800;
}

.contact-list dd {
  margin-left: 0;
  color: var(--muted);
}

.contact-list a {
  color: var(--leaf-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.clean-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.clean-form label {
  display: grid;
  gap: 7px;
  color: var(--leaf-dark);
  font-weight: 800;
}

.clean-form input,
.clean-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid rgba(23, 32, 26, 0.2);
  border-radius: var(--radius);
}

.clean-form textarea {
  min-height: 150px;
  resize: vertical;
}

.clean-form input:focus,
.clean-form textarea:focus {
  border-color: var(--leaf);
  outline: 3px solid rgba(40, 91, 53, 0.18);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-card {
  padding: 24px;
}

.article-card a {
  color: var(--leaf-dark);
  text-decoration: none;
}

.article-card a:hover,
.article-card a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer {
  padding: 56px 0;
  color: #fff;
  background: #16251b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
  align-items: start;
}

.footer-brand img:first-child {
  width: 194px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-badges {
  width: min(360px, 100%);
  margin-top: 12px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 9px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 1100px) {
  .site-nav a,
  .nav-parent {
    padding-inline: 9px;
    font-size: 0.86rem;
  }
}

@media (max-width: 960px) {
  :root {
    --header: 70px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header) + 34px);
    left: 0;
    right: 0;
    display: none;
    padding: 14px;
    background: var(--leaf-dark);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 42px rgba(20, 34, 24, 0.15);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav > ul {
    display: grid;
    gap: 4px;
  }

  .site-nav a,
  .nav-parent {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 10px;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .hero-grid,
  .page-hero-grid,
  .content-grid,
  .content-grid.reverse,
  .contact-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-band .content-grid,
  .feature-band .content-grid.reverse,
  .video-layout,
  .contact-band:not(.contact-panel) .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-band:not(.alt) .content-grid.reverse .rich-text {
    order: 0;
  }

  .feature-band .rich-text {
    min-height: auto;
  }

  .feature-band .image-frame,
  .feature-band .image-mosaic {
    min-height: 0;
  }

  .video-layout > div:first-child {
    max-width: none;
  }

  .hero-home,
  .page-hero {
    min-height: 600px;
  }

  .hero-grid,
  .page-hero-grid {
    padding: 96px 0 48px;
  }

  .trust-grid,
  .product-grid,
  .process-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-band {
    padding: 74px 0;
  }

  .contact-grid {
    gap: 46px;
  }

  .contact-band:not(.contact-panel) .contact-grid {
    gap: 42px;
  }

  .contact-panel {
    padding-block: 62px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow,
  .nav-shell {
    width: calc(100% - 28px);
  }

  .top-strip-inner {
    justify-content: center;
    text-align: center;
  }

  .top-strip a {
    display: none;
  }

  .brand img {
    width: 164px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-home,
  .page-hero {
    min-height: 570px;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 24px;
    padding: 82px 0 36px;
  }

  .trust-grid,
  .product-grid,
  .process-grid,
  .article-grid,
  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
  }

  .content-band {
    padding: 58px 0;
  }

  .feature-band .content-grid,
  .feature-band .content-grid.reverse {
    width: calc(100% - 28px);
  }

  .feature-band .rich-text {
    padding: 28px;
  }

  .attribute-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
  }

  .attribute-icon {
    width: 77px;
    min-height: 77px;
    padding: 7px;
  }

  .attribute-icon img {
    max-height: 67px;
  }

  .feature-band .image-frame,
  .feature-band .image-mosaic {
    min-height: 0;
  }

  .video-layout {
    gap: 28px;
  }

  .transcript-panel {
    padding: 24px;
  }

  .contact-intro {
    padding: 42px 0 38px;
  }

  .contact-panel .clean-form .button {
    width: 100%;
  }

  .clean-form {
    padding: 20px;
  }
}

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