@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Italic-VariableFont_wdth,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: italic;
  font-display: swap;
}

/* Hoorman Soil Health Services — 2026 concept
   Single stylesheet. Edit tokens in :root. */

:root {
  --paper:      #fbfdfa;      /* near-white, green cast */
  --paper-2:    #eef3ea;      /* soft sage band */
  --paper-3:    #e0e9da;      /* deeper sage band */
  --ink:        #1b2318;
  --ink-2:      #454f41;
  --green:      #2f5c39;
  --green-deep: #14241a;
  --ochre:      #a86a24;      /* rules, borders, non-text only */
  --ochre-text: #7d4b12;      /* AA-safe on paper, paper-2 and paper-3 */
  --line:       #aabf9f;      /* visible rules on near-white */
  --white:      #ffffff;

  --sans: "Archivo", "Helvetica Neue", Helvetica, sans-serif;
  --serif: "Archivo", "Helvetica Neue", Helvetica, sans-serif;

  --wrap: 1200px;
  --measure: 68ch;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --gap: clamp(1.5rem, 3vw, 2.5rem);
  --section: clamp(3.5rem, 8vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.62;
  text-wrap: pretty;
  overflow-wrap: break-word;
  font-synthesis-weight: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-stretch: 92%;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.125rem; }
p, ul, ol { margin: 0 0 1.15em; }

a { color: var(--green); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--ochre); text-decoration-thickness: 2px; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: min(100% - (2 * var(--pad)), var(--wrap)); margin-inline: auto; }
.measure { max-width: var(--measure); }
.section { padding-block: var(--section); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--green-deep); color: var(--white);
  padding: .75rem 1.25rem; font-family: var(--sans); text-decoration: none;
}
.skip-link:focus { top: 1rem; color: var(--white); }

.eyebrow {
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ochre-text);
  margin: 0 0 1rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid #9db392;
  box-shadow: 0 1px 0 rgba(27,35,24,.06), 0 8px 18px -14px rgba(27,35,24,.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 84px;
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: var(--ink); }
.brand img { width: 52px; height: auto; }
.brand-name { font-family: var(--sans); font-weight: 700; font-size: 1.0625rem; line-height: 1.15; letter-spacing: -.01em; max-width: 13ch; }

.nav-toggle {
  display: none;
  align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .9375rem; font-weight: 600;
  background: none; border: 1px solid var(--line); border-radius: 3px;
  color: var(--ink); padding: .7rem 1rem; min-height: 46px; cursor: pointer;
}
.nav-toggle .bars { display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }

.nav > ul { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav a, .nav .submenu-toggle {
  display: block; font-family: var(--sans); font-size: .875rem; font-weight: 600;
  letter-spacing: .045em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); padding: .8rem .85rem; background: none; border: 0; cursor: pointer;
}
.nav a:hover, .nav .submenu-toggle:hover { color: var(--green); }
.nav [aria-current="page"] { color: var(--green); box-shadow: inset 0 -3px 0 var(--ochre); }
.nav .has-sub { position: relative; }
.submenu-toggle { display: inline-flex; align-items: center; gap: .4rem; }
.submenu {
  position: absolute; top: 100%; right: 0; min-width: 310px;
  background: var(--white); border: 0;
  box-shadow: 0 18px 40px rgba(27, 35, 24, .18);
  list-style: none; margin: 0; padding: .4rem; display: none;
}
.has-sub.open .submenu { display: block; }
.submenu a {
  text-transform: none; letter-spacing: 0; font-weight: 500; font-size: .95rem; padding: .6rem .8rem;
}
.submenu a:hover { background: var(--paper-2); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem var(--pad) 1.5rem; max-height: 78vh; overflow-y: auto;
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a, .nav .submenu-toggle { padding: .95rem .25rem; width: 100%; text-align: left; min-height: 48px; }
  .nav .has-sub { position: static; }
  .submenu { position: static; border: 0; box-shadow: none; background: none; padding: 0 0 .5rem 1rem; }
}

@media (max-width: 480px) {
  .header-inner { min-height: 68px; gap: .75rem; }
  .brand img { width: 42px; }
  .brand-name { font-size: .9375rem; }
  .nav-toggle { padding: .6rem .8rem; }
  .hero img.hero-logo { width: 128px; }
  .tile { min-height: 280px; }
  .report-card { padding: 1.25rem; }
}

/* ---------- Hero (retained design) ---------- */

.hero {
  position: relative;
  background: var(--green-deep) center/cover no-repeat;
  color: var(--white);
  isolation: isolate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9,16,10,.82) 0%, rgba(9,16,10,.66) 55%, rgba(9,16,10,.88) 100%);
}
.hero-inner {
  display: grid; gap: var(--gap); align-items: center;
  grid-template-columns: 1.35fr .8fr;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero img.hero-logo { width: clamp(150px, 18vw, 230px); }
.hero h1 { color: var(--white); margin-top: 1.75rem; }
.hero p.lede { font-size: clamp(1.125rem, 1.8vw, 1.375rem); color: #e2e6dd; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.report-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.28);
  border-left: 5px solid var(--ochre);
  padding: 1.75rem;
}
.report-card .eyebrow { color: #e9b877; }
.report-card h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); color: var(--white); }
.report-card p { color: #d5dbd2; margin-bottom: 1.25rem; font-size: 1rem; }
.report-card a { color: var(--white); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .9375rem;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  padding: .85rem 1.4rem; min-height: 48px; border: 2px solid var(--green);
  background: var(--green); color: var(--white); border-radius: 2px;
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: var(--white); color: var(--green-deep); border-color: var(--white); }
.btn-quiet { background: transparent; color: var(--green); }
.btn-quiet:hover { background: var(--green); color: var(--white); }

/* ---------- Side-rule callout (primary content device) ---------- */

.callout {
  border-left: 4px solid var(--ochre);
  padding: .35rem 0 .35rem 1.6rem;
  margin: 0 0 var(--gap);
  overflow-wrap: anywhere;
}
.callout > :last-child { margin-bottom: 0; }
.callout h3 { margin-bottom: .35rem; }
.callout--green { border-left-color: var(--green); }
.callout--quiet { border-left-color: var(--line); }
.callout .meta {
  font-family: var(--sans); font-size: .8125rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: .4rem;
}

.rule-list { list-style: none; margin: 0; padding: 0; }
.rule-list > li {
  border-left: 4px solid var(--line);
  padding: 1.1rem 0 1.1rem 1.6rem;
  margin-bottom: 1.1rem;
}
.rule-list > li:hover { border-left-color: var(--ochre); }
.rule-list h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.rule-list p { margin-bottom: 0; font-size: 1rem; color: var(--ink-2); }
.rule-list .meta {
  font-family: var(--sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ochre-text); display: block; margin-bottom: .35rem;
}
.rule-list a { text-decoration: none; }
.rule-list a:hover { text-decoration: underline; }

/* ---------- Layout helpers ---------- */

.split { display: grid; gap: var(--gap); grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); align-items: start; }
.split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trio { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
@media (max-width: 860px) { .split, .split--even { grid-template-columns: 1fr; } }

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 62ch; }
.band { background: var(--paper-2); }
.band-sage { background: var(--paper-3); }
.band-sage .figure figcaption { border-top-color: #9db392; }
.band-sage .data-table th, .band-sage .data-table td { border-bottom-color: #9db392; }
.band-dark { background: var(--green-deep); color: var(--paper); }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark p { color: #cfd6cb; }
.band-dark a { color: #e9b877; }
.band-dark a:hover { color: var(--white); }
.band-dark .callout { border-left-color: #e9b877; }

/* Photographic band — breaks up the paper runs */
.band-photo {
  position: relative; isolation: isolate;
  background: var(--green-deep) center/cover no-repeat; background-attachment: scroll;
  color: var(--paper);
}
.band-photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(11,20,13,.92) 0%, rgba(11,20,13,.78) 55%, rgba(11,20,13,.55) 100%);
}
.band-photo h2, .band-photo h3 { color: var(--white); }
.band-photo p { color: #d3dacf; }
.band-photo .eyebrow { color: #e9b877; }
.band-photo a:not(.btn) { color: #e9b877; }
.band-photo a:not(.btn):hover { color: var(--white); }
.band-photo .btn { color: var(--white); }
.band-photo .btn-ghost:hover { color: var(--green-deep); }
.band-photo .callout { border-left-color: #e9b877; }
.band-photo .meta, .band-photo .callout .meta { color: #e9b877; }

/* Photo tiles — image-backed grid cells with a side rule */
.tile-grid { display: grid; gap: 2px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.tile {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--green-deep) center/cover no-repeat;
  color: var(--white);
  border-left: 4px solid var(--ochre);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 340px;
}
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,20,13,.45) 0%, rgba(11,20,13,.86) 62%, rgba(11,20,13,.95) 100%);
  transition: background .25s ease;
}
.tile:hover::after { background: linear-gradient(180deg, rgba(11,20,13,.3) 0%, rgba(11,20,13,.8) 55%, rgba(11,20,13,.94) 100%); }
.tile h3 { color: var(--white); font-size: 1.2rem; }
.tile p { color: #cbd3c7; font-size: .975rem; }
.tile .meta { color: #e9b877; font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem; }
.tile a { color: var(--white); font-family: var(--sans); font-weight: 600; font-size: .9375rem; }
.tile a:hover { color: #e9b877; }
.tile > :last-child { margin-bottom: 0; }

.figure { margin: 0; }
.figure img { width: 100%; }
.figure figcaption {
  font-family: var(--sans); font-size: .8125rem; color: var(--ink-2);
  padding-top: .6rem; border-top: 1px solid var(--line); margin-top: .6rem;
}
.figure h3 { margin-bottom: .4rem; }

.video-frame { position: relative; aspect-ratio: 16 / 9; background: var(--green-deep); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Video thumbnail that opens YouTube in a new tab */
.video-link {
  display: block; position: relative; text-decoration: none;
  border-left: 4px solid var(--ochre); background: var(--green-deep);
}
.video-link img { width: 100%; display: block; }
.video-link__label {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: .9375rem;
  color: var(--white); background: var(--green-deep); padding: .85rem 1.1rem;
}
.video-link__label::before {
  content: ""; flex: none; width: 0; height: 0;
  border-left: 11px solid var(--white); border-top: 7px solid transparent; border-bottom: 7px solid transparent;
}
.video-link:hover .video-link__label { background: var(--green); }
.video-link .ext-icon { color: var(--white); }

/* ---------- Page header (interior) ---------- */

.page-head {
  position: relative; isolation: isolate;
  background: var(--green-deep) center/cover no-repeat; color: var(--white);
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.page-head::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(11,20,13,.94) 0%, rgba(11,20,13,.82) 60%, rgba(11,20,13,.6) 100%);
}
.page-head h1 { color: var(--white); margin-bottom: .35rem; }
.page-head p { color: #cfd6cb; max-width: 60ch; margin-bottom: 0; }
.breadcrumb { font-family: var(--sans); font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .5rem; color: #7d8a79; }
.breadcrumb a { color: #cfd6cb; }
.breadcrumb a:hover { color: var(--white); }

article.prose h2 { margin-top: 2.5rem; }
article.prose h3 { margin-top: 2rem; }
article.prose ul { padding-left: 1.25rem; }
article.prose li { margin-bottom: .4rem; }

/* ---------- External-link marker ---------- */

.ext-icon { display: inline-block; margin-left: .3em; font-size: .8em; line-height: 1; }

/* ---------- Forms ---------- */

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-family: var(--sans); font-weight: 600; font-size: .9375rem; margin-bottom: .35rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; padding: .75rem .85rem; min-height: 48px;
  border: 1px solid #97a58f; border-radius: 2px; background: var(--white); color: var(--ink);
}
.field .hint { font-size: .875rem; color: var(--ink-2); margin: .3rem 0 0; }

/* ---------- Footer ---------- */

.site-footer { background: var(--green-deep); color: #cfd6cb; padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.site-footer h2 { font-size: .8125rem; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; color: #e9b877; margin-bottom: 1rem; }
.site-footer a { color: #eceee9; text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: #e9b877; text-decoration: underline; }
.footer-grid { display: grid; gap: var(--gap); grid-template-columns: 1.2fr 1fr 1.2fr; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer .colophon {
  margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid rgba(255,255,255,.16);
  padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-family: var(--sans); font-size: .8125rem;
}
/* Price / data tables */
.data-table { width: 100%; border-collapse: collapse; margin: 0 0 1.5rem; font-size: 1rem; }
.data-table caption {
  text-align: left; font-family: var(--sans); font-size: .8125rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ochre-text); padding-bottom: .75rem;
}
.data-table th, .data-table td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table thead th { font-family: var(--sans); font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase; border-bottom: 2px solid var(--ink); }
.data-table td.price { font-family: var(--sans); font-weight: 600; white-space: nowrap; }
.data-table tbody tr:hover { background: var(--paper-2); }
@media (max-width: 620px) {
  .data-table thead { display: none; }
  .data-table td { padding: .55rem .5rem .55rem 0; }
  .data-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--sans); font-size: .7rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
    margin-bottom: .1rem;
  }
  .data-table td.price { color: var(--green); font-size: 1.05rem; }
}

/* Follow pill — badge-style social button */
.follow-pill {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--ink); color: var(--white) !important;
  border-radius: 999px; padding: .5rem 1.1rem .5rem .55rem;
  min-height: 48px; text-decoration: none !important;
  font-family: var(--sans);
}
.follow-pill:hover { background: var(--green); }
.follow-pill__glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  font-weight: 700; font-size: 1.15rem; line-height: 1;
}
.follow-pill__text { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; line-height: 1.25; }
.follow-pill__text strong { display: block; font-size: .9375rem; letter-spacing: .02em; text-transform: none; }

@media print {
  .site-header, .site-footer, .skip-link, .hero-actions { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
}
