@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ============================================================
   Hundley Farms — Terra design system
   Warm, crafted, heritage-agricultural. Client brand only.
   ============================================================ */

:root {
  --green: #33502a;
  --green-deep: #233a1c;
  --green-bright: #6f9140;
  --earth: #6e4a2b;
  --gold: #cf9836;
  --gold-soft: #e3b864;
  --cream: #faf6ee;
  --cream-deep: #f1e9da;
  --paper: #fffdf8;
  --ink: #2b2620;
  --muted: #6f665a;
  --line: #e4dac6;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(43, 38, 32, 0.06);
  --shadow: 0 14px 40px rgba(43, 38, 32, 0.12);
  --shadow-lg: 0 30px 70px rgba(35, 58, 28, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-optical-sizing: auto;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}
p {
  margin: 0 0 1.1em;
}

/* ---------- layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}
.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.center {
  text-align: center;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 62ch;
}
.center .lead {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.is-light {
  color: var(--gold-soft);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.92rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    color 0.25s var(--ease);
}
.btn--primary {
  background: var(--green-deep);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
/* nav link color must not override button text (specificity guard) */
.nav-links a.btn--primary {
  color: #fff;
}
.nav-links a.btn::after {
  display: none;
}
.btn--primary:hover {
  background: #18280f;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--gold {
  background: var(--gold);
  color: #3a2a10;
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn--light:hover {
  background: #fff;
  color: var(--green);
  transform: translateY(-2px);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  height: 54px;
  width: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--green-deep);
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--earth);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}
.nav-cta {
  margin-left: 0.4rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--green-deep);
  border-radius: 2px;
  margin: 5px 0;
  transition: 0.3s var(--ease);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(35, 58, 28, 0.18) 0%,
      rgba(35, 58, 28, 0.05) 40%,
      rgba(20, 30, 15, 0.78) 100%
    ),
    linear-gradient(90deg, rgba(20, 30, 15, 0.55) 0%, rgba(20, 30, 15, 0) 60%);
}
.hero__inner {
  padding-block: clamp(3rem, 8vw, 6rem);
  max-width: 760px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.35em;
}
.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  max-width: 56ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

/* ---------- stat band ---------- */
.statband {
  background: var(--green-deep);
  color: #fff;
}
.statband .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 2.6rem;
}
.stat {
  text-align: center;
  padding: 0.4rem;
  min-width: 0;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3rem);
  color: var(--gold-soft);
  line-height: 1.05;
  word-break: break-word;
}
.stat__label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.5rem;
}

/* ---------- split / story ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media {
  order: 2;
}
.split__media {
  position: relative;
}
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split__media .badge {
  position: absolute;
  bottom: -22px;
  left: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  color: var(--green);
}
.split__media .badge strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}
.split__media .badge span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
}
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  color: var(--green-deep);
  font-style: italic;
  line-height: 1.35;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.6rem 0;
}
.quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.8rem;
}

/* ---------- products grid ---------- */
.crop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.crop {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.crop:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.crop__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.crop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.crop:hover .crop__img img {
  transform: scale(1.06);
}
.crop__body {
  padding: 1.2rem 1.3rem 1.5rem;
}
.crop__body h3 {
  color: var(--green-deep);
  margin-bottom: 0.35em;
}
.crop__body p {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
}
.crop__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  background: var(--cream-deep);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

/* ---------- feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.feature .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--cream-deep);
  color: var(--green);
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
}
.feature h3 {
  color: var(--green-deep);
  font-size: 1.25rem;
}
.feature p {
  font-size: 0.96rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- bands ---------- */
.band-green {
  background: var(--green);
  color: #fff;
}
.band-green .lead,
.band-green p {
  color: rgba(255, 255, 255, 0.86);
}
/* cards on a green band keep dark body text on their light surface
   (cards with an explicit inline color, e.g. the barn-owl card, are unaffected) */
.band-green .feature p,
.band-green .crop p,
.band-green .loc p {
  color: var(--muted);
}
.band-cream {
  background: var(--cream-deep);
}
.band-earth {
  background: linear-gradient(135deg, var(--earth), #5a3c22);
  color: #fff;
}
.band-earth .lead,
.band-earth p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-band {
  text-align: center;
}
.cta-band h2 {
  color: #fff;
}
.cta-band .btns {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* ---------- certifications ---------- */
.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
}
.cert {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.cert img {
  height: 64px;
  width: auto;
}
.cert b {
  display: block;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.cert span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- leadership ---------- */
.people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1.4rem;
}
.person {
  text-align: center;
}
.person__img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-sm);
  background: var(--cream-deep);
}
.person h3 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 0.1em;
}
.person span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
}

/* ---------- locations ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.loc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.loc .pin {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.loc h3 {
  color: var(--green-deep);
  font-size: 1.3rem;
  margin: 0.4rem 0 0.6rem;
}
.loc address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}
.loc a {
  color: var(--green);
  font-weight: 600;
}

/* ---------- page hero (interior) ---------- */
.page-hero {
  position: relative;
  color: #fff;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  isolation: isolate;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(35, 58, 28, 0.72),
    rgba(20, 30, 15, 0.82)
  );
}
.page-hero h1 {
  color: #fff;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}
.page-hero .eyebrow {
  color: var(--gold-soft);
}
.page-hero .eyebrow::before {
  background: var(--gold-soft);
}

/* ---------- forms ---------- */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}
.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.4rem;
}
.field {
  margin-bottom: 1.2rem;
}
.form input,
.form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition:
    border 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.form input:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(111, 145, 64, 0.15);
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* contact aside */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}
.contact-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list .k {
  font-weight: 600;
  color: var(--green-deep);
  min-width: 92px;
}
.contact-list a {
  color: var(--green);
  font-weight: 600;
}

/* ---------- prose ---------- */
.prose h2 {
  color: var(--green-deep);
  margin-top: 1.6em;
}
.prose ul {
  padding-left: 1.2rem;
}
.prose li {
  margin-bottom: 0.5rem;
}
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.6rem;
}
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background: var(--green-bright);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.8);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.site-footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin-bottom: 0.6rem;
}
.footer-grid a:hover {
  color: var(--gold-soft);
}
.site-footer address {
  font-style: normal;
  line-height: 1.8;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.lyfework-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.6);
}
.lyfework-credit strong {
  color: #fff;
  font-weight: 600;
}
.disclosure {
  background: var(--gold);
  color: #3a2a10;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .statband .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: center;
    background: var(--cream);
    padding: 1.2rem 1.4rem 2rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform 0.35s var(--ease);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 72px);
    overflow: auto;
  }
  .nav-links.open {
    transform: none;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .nav-links .nav-cta {
    margin: 1.2rem 0 0;
    text-align: center;
  }
  .nav-links a.btn {
    display: inline-flex;
    width: auto;
    padding: 0.85rem 2.4rem;
    border-bottom: 0;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .check-list,
  .two-col {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero__cta .btn,
  .cta-band .btns .btn {
    width: 100%;
  }
}

/* ============================================================
   v2 — modern premium polish
   ============================================================ */

/* sticky header: refine + shadow on scroll */
.site-header {
  transition:
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 6px 26px rgba(43, 38, 32, 0.1);
  background: rgba(250, 246, 238, 0.95);
}

/* hero: cinematic, slow zoom, deeper cinematic overlay */
.hero {
  min-height: clamp(600px, 90vh, 900px);
}
.hero__media {
  overflow: hidden;
}
.hero__media img {
  object-position: center 42%;
}
.hero::after {
  background:
    linear-gradient(
      180deg,
      rgba(20, 30, 15, 0.3) 0%,
      rgba(20, 30, 15, 0.1) 38%,
      rgba(15, 22, 11, 0.82) 100%
    ),
    linear-gradient(90deg, rgba(15, 22, 11, 0.6) 0%, rgba(15, 22, 11, 0) 62%);
}
.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.hero__inner {
  max-width: 820px;
}
.hero p {
  max-width: 52ch;
}
/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: bob 2.4s var(--ease) infinite;
}
.scroll-cue span {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  position: relative;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: wheel 2.4s var(--ease) infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
@keyframes wheel {
  0% {
    opacity: 0;
    top: 7px;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    top: 18px;
  }
  100% {
    opacity: 0;
  }
}

/* eyebrow refinement */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
}

/* cards: premium hover + accent reveal */
.crop,
.feature,
.loc {
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.crop::after {
  content: "";
  position: absolute;
}
.feature {
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.feature:hover::before {
  width: 100%;
}
.feature:hover,
.loc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.feature .ic svg {
  width: 26px;
  height: 26px;
}
.feature .ic {
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease);
}
.feature:hover .ic {
  transform: scale(1.08) rotate(-3deg);
  background: var(--gold);
  color: #fff;
}

/* split media: layered depth */
.split__media img {
  transition: transform 0.6s var(--ease);
}

/* section divider hairline accent */
.section + .section {
  position: relative;
}

/* stat band: refined */
.statband .grid {
  padding-block: 3rem;
}
.stat__num {
  transition: none;
}

/* buttons: arrow nudge */
.btn svg {
  transition: transform 0.25s var(--ease);
}
.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   AI ASSISTANT WIDGET (bottom-right placeholder)
   ============================================================ */
.ai-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(35, 58, 28, 0.34);
  transition: all 0.3s var(--ease);
}
.ai-fab svg {
  width: 26px;
  height: 26px;
  margin: auto;
}
.ai-fab:hover {
  background: var(--green-deep);
  transform: translateY(-3px) scale(1.04);
}
.ai-fab .ai-fab-label {
  display: none;
}
.ai-fab .ai-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(111, 145, 64, 0.5);
  animation: aipulse 2.6s infinite;
}
@keyframes aipulse {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 145, 64, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(111, 145, 64, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 145, 64, 0);
  }
}
.ai-badge {
  position: fixed;
  right: 18px;
  bottom: 74px;
  z-index: 81;
  background: var(--gold);
  color: #3a2a10;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.ai-panel {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 82;
  width: min(370px, calc(100vw - 32px));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(35, 58, 28, 0.28);
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
  transform-origin: bottom right;
}
.ai-panel.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.ai-head {
  background: var(--green-deep);
  color: #fff;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.ai-head .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-bright);
  display: grid;
  place-items: center;
  flex: none;
}
.ai-head .av svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.ai-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.1;
}
.ai-head .status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ai-head .status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fe06f;
  box-shadow: 0 0 0 3px rgba(111, 224, 111, 0.25);
}
.ai-head .x {
  margin-left: auto;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.ai-body {
  padding: 1.1rem;
  background: var(--cream);
  max-height: 340px;
  overflow-y: auto;
}
.ai-msg {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px 16px 16px 16px;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  max-width: 90%;
  box-shadow: var(--shadow-sm);
}
.ai-msg.me {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 16px 4px 16px 16px;
}
.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.ai-chip {
  background: var(--paper);
  border: 1px solid var(--green-bright);
  color: var(--green-deep);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.ai-chip:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.ai-foot {
  padding: 0.8rem 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.ai-input {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}
.ai-input input {
  flex: 1;
  border: 0;
  background: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
}
.ai-input input:focus {
  outline: 0;
}
.ai-input .send {
  background: var(--green);
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
}
.ai-input .send svg {
  width: 16px;
  height: 16px;
  color: #fff;
}
.ai-demo-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   mobile centering + optimization
   ============================================================ */
@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
    text-align: center;
  }
  .hero__inner {
    margin-inline: auto;
  }
  .hero .eyebrow {
    justify-content: center;
  }
  .hero__cta {
    justify-content: center;
  }
  .scroll-cue {
    display: none;
  }
  .split {
    text-align: center;
  }
  .split .eyebrow {
    justify-content: center;
  }
  .split__media .badge {
    left: 50%;
    transform: translateX(-50%);
  }
  .quote {
    border-left: 0;
    border-top: 3px solid var(--gold);
    padding-left: 0;
    padding-top: 1rem;
  }
  .section-head,
  .center {
    text-align: center;
  }
  .crop__body {
    text-align: center;
  }
  .crop__tag {
    margin-inline: auto;
  }
  .contact-list li {
    justify-content: center;
  }
  .ai-fab {
    right: 16px;
    bottom: 16px;
  }
  .ai-badge {
    right: 12px;
    bottom: 68px;
  }
}
@media (max-width: 760px) {
  .crop-grid,
  .feature-grid,
  .loc-grid {
    gap: 1rem;
  }
  .split {
    gap: 2rem;
  }
}

/* leadership monogram avatars (premium, no low-res faces) */
.person__img.mono {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--green-deep);
  background: linear-gradient(160deg, var(--cream-deep), #e7dcc4);
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.person__img.mono::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.person:hover .person__img.mono {
  background: var(--green);
  color: #fff;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}

/* mobile hero fit + centering fixes */
@media (max-width: 600px) {
  .hero {
    text-align: center;
  }
  .hero__inner {
    margin-inline: auto;
    text-align: center;
    width: 100%;
  }
  .hero .eyebrow {
    justify-content: center;
    letter-spacing: 0.16em;
    font-size: 0.66rem;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
    line-height: 1.1;
    overflow-wrap: break-word;
  }
  .hero p {
    font-size: 1.02rem;
    margin-inline: auto;
    max-width: 32ch;
    overflow-wrap: break-word;
  }
  .hero__cta {
    justify-content: center;
  }
  .hero__cta .btn {
    width: 100%;
    max-width: 320px;
  }
  .statband .grid {
    gap: 1.4rem 1rem;
  }
  .stat__num {
    font-size: 1.9rem;
  }
}
@media (max-width: 380px) {
  .hero .eyebrow {
    letter-spacing: 0.1em;
    font-size: 0.6rem;
  }
}

/* ============================================================
   v3 — comprehensive mobile centering (every page)
   ============================================================ */
@media (max-width: 760px) {
  /* center all text-bearing blocks */
  .page-hero,
  .page-hero .container,
  .hero__inner,
  .split,
  .prose,
  .feature,
  .loc,
  .card,
  .crop__body,
  .section-head,
  .contact-grid,
  .quote {
    text-align: center;
  }

  /* all eyebrows center with their accent rule */
  .eyebrow {
    justify-content: center;
  }

  /* auto-margin centered text columns */
  .hero p,
  .page-hero p,
  .lead,
  .prose p,
  .feature p,
  .loc address,
  .crop__body p,
  .person span,
  .quote {
    margin-inline: auto;
  }

  /* center inline/icon elements */
  .feature .ic,
  .crop__tag,
  .person__img,
  .loc .btn,
  .badge {
    margin-inline: auto;
  }

  /* quote: top accent instead of left bar, centered */
  .quote {
    border-left: 0;
    border-top: 3px solid var(--gold);
    padding-left: 0;
    padding-top: 1rem;
  }
  .quote cite {
    text-align: center;
  }

  /* check-list items centered as content-width units */
  .check-list {
    justify-items: center;
  }
  .check-list li {
    text-align: left;
  }

  /* location card button row + pin centered */
  .loc p {
    text-align: center;
  }

  /* contact: info + form labels centered */
  .contact-list li {
    justify-content: center;
  }
  .form label {
    text-align: center;
  }

  /* footer fully centered */
  .footer-grid,
  .site-footer address,
  .footer-brand {
    text-align: center;
  }
  .footer-grid ul {
    padding-left: 0;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  /* mobile hero: text stays centered; tractor sits just above it via image crop */
  .hero__media img {
    object-position: center top;
  }
}
