/* Pasture palette */
:root {
  --field: #33482f;
  --field-deep: #263621;
  --yolk: #c68a2e;
  --yolk-bright: #d49a3c;
  --feed: #f5f1e4;
  --paper: #ffffff;
  --ink: #26281f;
  --muted: #5b5d4e;
  --hairline: #dcd6c1;
  --focus: #c68a2e;

  --font-display: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;

  --radius: 0.35rem;
  --header-height: 7rem;
  --hang-overlap: clamp(3.1rem, 4.2vw, 3.6rem);
  --content: 72rem;
  --content-wide: 82rem;
  --content-narrow: 42rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 40px rgba(38, 40, 31, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(198, 138, 46, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(51, 72, 47, 0.06), transparent 45%),
    var(--feed);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100%;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--field);
  color: var(--paper);
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.btn--primary {
  background: var(--field);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--field-deep);
}

.btn--secondary {
  background: var(--yolk);
  color: var(--paper);
}

.btn--secondary:hover {
  background: var(--yolk-bright);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(245, 241, 228, 0.55);
}

.btn--ghost:hover {
  background: rgba(245, 241, 228, 0.12);
  border-color: var(--paper);
}

.btn--on-field {
  background: var(--paper);
  color: var(--field);
}

.btn--on-field:hover {
  background: var(--feed);
}

.text-link {
  display: inline-flex;
  margin-top: var(--space-md);
  color: var(--field);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--yolk);
}

.text-link:hover {
  color: var(--field-deep);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--field);
  color: var(--paper);
}

.header-bar__inner,
.promo-bar__inner,
.section__inner,
.final-cta__inner,
.footer-main__inner {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}

.header-bar {
  position: relative;
  border-top: 1px solid rgba(245, 241, 228, 0.08);
}

.header-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  min-height: 4.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--paper);
  flex: 0 0 auto;
}

.logo__img {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: min(12.5rem, 42vw);
  object-fit: contain;
  object-position: left center;
}

.header-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  color: var(--yolk-bright);
}

.header-login--bar {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border: 1.5px solid var(--yolk);
  border-radius: var(--radius);
  background: var(--yolk);
  color: var(--paper);
  font-size: 0.875rem;
  white-space: nowrap;
}

.header-login--bar:hover {
  background: var(--yolk-bright);
  border-color: var(--yolk-bright);
  color: var(--paper);
}

.nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.45rem;
  color: var(--paper);
  border-radius: var(--radius);
}

.nav-close svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.2rem 0.45rem 0.55rem;
  color: var(--paper);
}

.nav-toggle__label {
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-toggle__label--close {
  display: none;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.site-header.is-nav-open .nav-toggle__icon,
.site-header.is-nav-open .nav-toggle__icon::before,
.site-header.is-nav-open .nav-toggle__icon::after {
  display: none;
}

.promo-bar {
  background: var(--field-deep);
}

.promo-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.45rem 0;
  font-size: 0.8125rem;
}

.promo-bar p {
  margin: 0;
  color: rgba(245, 241, 228, 0.9);
}

.promo-bar a {
  color: var(--yolk-bright);
  font-weight: 600;
  text-decoration: none;
}

.promo-bar a:hover {
  text-decoration: underline;
}

.primary-nav {
  display: none;
  flex: 1 1 100%;
  border-top: 1px solid rgba(245, 241, 228, 0.1);
}

.site-header.is-nav-open .primary-nav {
  display: block;
}

@media (max-width: 959px) {
  .site-header.is-nav-open .header-bar__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo close"
      "nav nav"
      "actions actions";
    align-items: center;
  }

  .site-header.is-nav-open .logo {
    grid-area: logo;
  }

  .site-header.is-nav-open .nav-close {
    grid-area: close;
    display: inline-flex;
  }

  .site-header.is-nav-open .primary-nav {
    grid-area: nav;
  }

  .site-header.is-nav-open .header-bar__actions {
    grid-area: actions;
    margin-left: 0;
    justify-self: end;
    padding: 0.35rem 0 1rem;
  }

  .site-header.is-nav-open .header-login--bar {
    display: none;
  }

  .site-header.is-nav-open .nav-toggle {
    gap: 0;
    padding: 0.45rem 0.95rem;
    border: 1.5px solid var(--yolk);
    border-radius: var(--radius);
    background: var(--yolk);
    color: var(--paper);
  }

  .site-header.is-nav-open .nav-toggle:hover {
    background: var(--yolk-bright);
    border-color: var(--yolk-bright);
  }

  .site-header.is-nav-open .nav-toggle__label--menu {
    display: none;
  }

  .site-header.is-nav-open .nav-toggle__label--close {
    display: inline;
  }
}

.nav-list {
  display: flex;
  flex-direction: column;
  padding: 0.35rem 0 1rem;
}

.nav-list > li > a,
.nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  color: rgba(245, 241, 228, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(245, 241, 228, 0.08);
}

.nav-list > li > a[aria-current="page"],
.nav-list > li > a:hover,
.nav-trigger:hover {
  color: var(--paper);
}

.nav-trigger__chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms var(--ease);
  opacity: 0.75;
}

.has-mega.is-open .nav-trigger__chevron {
  transform: rotate(225deg);
}

.mega-panel {
  padding: 0.35rem 0 1rem;
}

.mega-panel[hidden] {
  display: none;
}

.mega-panel__inner {
  display: grid;
  gap: 1.25rem;
  padding: 0.75rem 0 0.25rem;
}

.mega-col__title {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yolk-bright);
}

.mega-col ul {
  display: grid;
  gap: 0.35rem;
}

.mega-col a {
  color: rgba(245, 241, 228, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
}

.mega-col a:hover {
  color: var(--paper);
}

.mega-col__copy {
  margin: 0 0 0.75rem;
  color: rgba(245, 241, 228, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.mega-col__link {
  color: var(--yolk-bright);
  font-weight: 600;
  text-decoration: none;
}

.mega-col--feature {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

/* Hero */
.hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  justify-items: center;
  box-sizing: border-box;
  padding-bottom: var(--hang-overlap);
  color: var(--paper);
  overflow: clip;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) both;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(26, 36, 22, 0.3) 0%, rgba(26, 36, 22, 0.45) 40%, rgba(20, 28, 17, 0.9) 100%),
    radial-gradient(ellipse 70% 60% at 50% 70%, rgba(20, 28, 17, 0.55), transparent 70%);
}

.hero__content {
  --hero-scroll: 0;
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 54rem);
  margin: 0 auto;
  margin-top: clamp(-3.5rem, -7vh, -1.5rem);
  padding: clamp(2rem, 6vh, 7rem) 0 clamp(1.75rem, 4.5vh, 4.5rem);
  text-align: center;
  animation: rise-in 900ms var(--ease) both;
  filter:
    blur(calc(var(--hero-scroll) * 14px))
    opacity(calc(1 - var(--hero-scroll) * 0.55));
  will-change: filter;
}

.hero__content.is-blurred {
  pointer-events: none;
}

.hero .btn--primary {
  background: var(--feed);
  color: var(--field);
}

.hero .btn--primary:hover {
  background: var(--paper);
}

.hero__subhead {
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 241, 228, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1.5rem;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto 1.35rem;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(245, 241, 228, 0.86);
}

.hero-trust__icon {
  flex: 0 0 auto;
  display: inline-flex;
  color: var(--yolk-bright);
  line-height: 0;
}

.hero-trust__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

@media (max-width: 639px) {
  .hero {
    justify-items: start;
  }

  .hero__content {
    margin-inline: 1rem;
    text-align: left;
  }

  .hero__subhead {
    margin-inline: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0 0 1.15rem;
  }

  .hero-trust li {
    white-space: normal;
    text-align: left;
  }
}

/* Hanging feature cards */
.hanging-features {
  position: relative;
  z-index: 3;
  margin-top: calc(var(--hang-overlap) * -1);
  padding: 0 0 var(--space-xl);
}

.hanging-features__list {
  width: min(100% - 1.5rem, var(--content-wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.hang-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 1.45rem 1.15rem 1.25rem;
  background: var(--field);
  border: 1.5px solid color-mix(in srgb, var(--feed) 18%, var(--field));
  border-radius: 0.65rem;
  box-shadow: 0 18px 40px rgba(20, 28, 17, 0.45);
  text-align: center;
  text-decoration: none;
  color: var(--feed);
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.hang-card:hover {
  transform: translateY(-3px);
  background: var(--field-deep);
  border-color: color-mix(in srgb, var(--yolk) 35%, var(--field-deep));
  box-shadow: 0 22px 48px rgba(14, 20, 12, 0.55);
}

.hang-card__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  width: 100%;
}

.hang-card__icon {
  flex: 0 0 auto;
  display: inline-flex;
  color: var(--yolk);
  line-height: 0;
}

.hang-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.hang-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--paper);
}

.hang-card__copy {
  flex: 1;
  margin: 0 0 1rem;
  color: rgba(245, 241, 228, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hang-card__more {
  color: rgba(245, 241, 228, 0.88);
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1.5px solid var(--yolk);
}

.hang-card:hover .hang-card__more {
  color: var(--paper);
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.section__inner--narrow {
  width: min(100% - 2rem, var(--content-narrow));
}

.section__intro {
  margin-bottom: var(--space-lg);
}

.prose {
  color: var(--muted);
}

.prose p {
  margin-bottom: 1.15rem;
}

.what-we-do {
  position: relative;
  overflow: clip;
  background: var(--feed);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.what-we-do__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}

.what-we-do__copy {
  max-width: 34rem;
  padding-block: 0.25rem;
}

.what-we-do__copy h2 {
  margin-bottom: 0.85rem;
  color: var(--ink);
  max-width: 12ch;
}

.what-we-do__lead {
  margin: 0 0 var(--space-lg);
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.what-we-do__media {
  margin: 0;
  overflow: hidden;
  border-radius: 0.55rem;
  box-shadow: var(--shadow-soft);
}

.what-we-do__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 22%;
}

.what-we-do__claims {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.what-we-do__claims li {
  display: grid;
  grid-template-columns: 0.55rem minmax(0, 1fr);
  column-gap: 0.9rem;
  align-items: start;
  padding: 0.7rem 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.what-we-do__claims li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.55em;
  background: var(--yolk);
  border-radius: 50%;
}

@media (min-width: 840px) {
  .what-we-do {
    padding-right: 0;
  }

  .what-we-do__grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: max(1rem, calc((100vw - var(--content)) / 2));
    grid-template-columns: minmax(0, 30rem) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: stretch;
    min-height: clamp(32rem, 58vh, 40rem);
  }

  .what-we-do__copy {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(1rem, 3vh, 2.5rem);
    padding-right: 0.5rem;
  }

  .what-we-do__copy h2 {
    max-width: none;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
  }

  .what-we-do__media {
    position: relative;
    min-height: 100%;
    align-self: stretch;
    border-radius: 0.55rem 0 0 0.55rem;
    box-shadow: none;
  }

  .what-we-do__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 22%;
  }
}

/* Member benefits */
.members-get {
  background: var(--field-deep);
  color: var(--paper);
  padding-block: 0;
}

.members-get .section__intro--center {
  text-align: center;
  margin: 0;
  padding-block: clamp(3.25rem, 6.5vw, 5rem);
}

.members-get .section__intro--center h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.benefit-rows {
  display: grid;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.benefit-row__media {
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.benefit-row__media img,
.benefit-row__panel {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.benefit-row__media img {
  object-fit: cover;
}

.benefit-row__panel {
  height: auto;
}

.benefit-row__media--focus-top img {
  object-position: center 12%;
}

.benefit-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.35rem;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 40rem;
  text-align: left;
}

.benefit-row__copy h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.benefit-row__copy p {
  margin: 0;
  color: rgba(245, 241, 228, 0.82);
  font-size: clamp(1.08rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.benefit-row__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

@media (min-width: 840px) {
  .benefit-row {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(22rem, 44vw, 30rem);
  }

  .benefit-row__media {
    position: relative;
    border-radius: 0 0.55rem 0.55rem 0;
  }

  .benefit-row__media img,
  .benefit-row__panel {
    position: absolute;
    top: 1.75rem;
    left: 0;
    width: calc(100% - 1.75rem);
    height: calc(100% - 3.5rem);
    max-width: none;
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 0 0.45rem 0.45rem 0;
    box-shadow: var(--shadow-soft);
    transition:
      top 480ms var(--ease),
      width 480ms var(--ease),
      height 480ms var(--ease),
      border-radius 480ms var(--ease),
      box-shadow 480ms var(--ease);
  }

  .benefit-row:hover .benefit-row__media img,
  .benefit-row:hover .benefit-row__panel,
  .benefit-row:focus-within .benefit-row__media img,
  .benefit-row:focus-within .benefit-row__panel {
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0.55rem 0.55rem 0;
    box-shadow: none;
  }

  .benefit-row__copy {
    max-width: none;
    width: min(100%, 40rem);
    justify-self: center;
    align-items: flex-end;
    text-align: right;
  }

  .benefit-row__actions {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .benefit-row--flip .benefit-row__media {
    order: 2;
    border-radius: 0.55rem 0 0 0.55rem;
  }

  .benefit-row--flip .benefit-row__media img,
  .benefit-row--flip .benefit-row__panel {
    left: auto;
    right: 0;
    border-radius: 0.45rem 0 0 0.45rem;
  }

  .benefit-row--flip:hover .benefit-row__media img,
  .benefit-row--flip:hover .benefit-row__panel,
  .benefit-row--flip:focus-within .benefit-row__media img,
  .benefit-row--flip:focus-within .benefit-row__panel {
    border-radius: 0.55rem 0 0 0.55rem;
  }

  .benefit-row--flip .benefit-row__copy {
    align-items: flex-start;
    text-align: left;
  }

  .benefit-row--flip .benefit-row__actions {
    justify-content: flex-start;
  }
}

.stats-card {
  position: relative;
  overflow: hidden;
  background: var(--field);
  color: var(--paper);
}

.stats-card p {
  margin: 0;
}

.stats-card__sheet {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto minmax(5.75rem, 1fr) auto;
  padding: clamp(1.35rem, 4.5vw, 2.35rem) clamp(1.35rem, 4.8vw, 2.5rem);
  padding-bottom: clamp(2.15rem, 5vw, 2.85rem);
}

.stats-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.stats-card__price {
  font-size: clamp(2.6rem, 6.4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.stats-card__price span {
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-left: 0.08em;
  color: rgba(245, 241, 228, 0.55);
}

.stats-card__delta {
  margin-top: 0.2rem;
  color: var(--yolk);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stats-card__unit {
  margin-top: 0.4rem;
  color: rgba(245, 241, 228, 0.52);
  font-size: 0.95rem;
}

.stats-card__chart {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 1.05rem;
  column-gap: 0.4rem;
  min-height: 0;
  margin-top: 0.75rem;
}

.stats-card__yaxis {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}

.stats-card__yaxis span {
  position: absolute;
  right: 0;
  color: rgba(245, 241, 228, 0.38);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  line-height: 1;
  transform: translateY(-50%);
}

.stats-card__yaxis span:nth-child(1) { top: 14.86%; }
.stats-card__yaxis span:nth-child(2) { top: 39.51%; }
.stats-card__yaxis span:nth-child(3) { top: 64.17%; }
.stats-card__yaxis span:nth-child(4) { top: 88.82%; }

.stats-card__plot {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  min-width: 0;
  background: color-mix(in srgb, var(--field) 52%, var(--field-deep));
  border: 1px solid rgba(245, 241, 228, 0.05);
  border-radius: 0.15rem;
}

.stats-card__chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.stats-card__grid line {
  stroke: rgba(245, 241, 228, 0.16);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.stats-card__grid-v {
  stroke: rgba(245, 241, 228, 0.07);
}

.stats-card__now {
  fill: none;
  stroke: var(--yolk);
  stroke-width: 1;
  stroke-dasharray: 2.5 3.5;
  stroke-opacity: 0.4;
  vector-effect: non-scaling-stroke;
}

.stats-card__fill {
  fill: url(#stats-egg-fill);
  stroke: none;
}

.stats-card__line {
  fill: none;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 1.2;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.stats-card__line--egg {
  stroke: var(--yolk);
  stroke-width: 1.25;
}

.stats-card__line--feed {
  stroke: rgba(245, 241, 228, 0.5);
}

.stats-card__line--pullets {
  stroke: #8eaa86;
}

.stats-card__pip {
  position: absolute;
  top: 18.31%;
  right: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yolk);
  box-shadow: 0 0 0 1.5px color-mix(in srgb, var(--field) 52%, var(--field-deep));
  transform: translateY(-50%);
  pointer-events: none;
}

.stats-card__xaxis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-column: 2;
  grid-row: 2;
  align-items: end;
  margin: 0;
  padding: 0.2rem 0 0;
  list-style: none;
  color: rgba(245, 241, 228, 0.38);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
}

.stats-card__xaxis li:not(:first-child) {
  text-align: center;
}

.stats-card__xaxis li:last-child {
  text-align: right;
}

.stats-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0 0;
}

.stats-card__metrics dt {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 241, 228, 0.48);
  font-size: 0.8rem;
}

.stats-card__metrics dt::before {
  content: "";
  width: 0.7rem;
  height: 1.5px;
  background: currentColor;
}

.stats-card__metrics div:nth-child(1) dt::before {
  background: var(--yolk);
}

.stats-card__metrics div:nth-child(2) dt::before {
  background: rgba(245, 241, 228, 0.72);
}

.stats-card__metrics div:nth-child(3) dt::before {
  background: #8eaa86;
}

.stats-card__metrics dd {
  margin: 0.2rem 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.stats-card__note {
  position: absolute;
  right: 0.85rem;
  bottom: 0.65rem;
  margin: 0;
  color: rgba(245, 241, 228, 0.38);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.stats-card.is-await .stats-card__head,
.stats-card.is-await .stats-card__unit,
.stats-card.is-await .stats-card__metrics {
  opacity: 0;
  transform: translateY(0.7rem);
}

.stats-card.is-await .stats-card__note {
  opacity: 0;
}

.stats-card.is-await .stats-card__grid,
.stats-card.is-await .stats-card__fill,
.stats-card.is-await .stats-card__pip,
.stats-card.is-await .stats-card__now,
.stats-card.is-await .stats-card__yaxis,
.stats-card.is-await .stats-card__xaxis {
  opacity: 0;
}

.stats-card.is-in .stats-card__head,
.stats-card.is-in .stats-card__unit,
.stats-card.is-in .stats-card__metrics {
  opacity: 1;
  transform: none;
  transition:
    opacity 640ms var(--ease),
    transform 640ms var(--ease);
}

.stats-card.is-in .stats-card__note {
  opacity: 1;
  transition: opacity 640ms var(--ease);
}

.stats-card.is-in .stats-card__unit {
  transition-delay: 90ms;
}

.stats-card.is-in .stats-card__metrics {
  transition-delay: 420ms;
}

.stats-card.is-in .stats-card__note {
  transition-delay: 520ms;
}

.stats-card.is-in .stats-card__line {
  transition: stroke-dashoffset 1100ms var(--ease);
}

.stats-card.is-in .stats-card__line--feed {
  transition-delay: 120ms;
}

.stats-card.is-in .stats-card__line--egg {
  transition-delay: 240ms;
}

.stats-card.is-in .stats-card__grid,
.stats-card.is-in .stats-card__yaxis,
.stats-card.is-in .stats-card__xaxis {
  opacity: 1;
  transition: opacity 520ms var(--ease);
}

.stats-card.is-in .stats-card__fill {
  opacity: 1;
  transition: opacity 720ms var(--ease) 380ms;
}

.stats-card.is-in .stats-card__now {
  opacity: 1;
  transition: opacity 400ms var(--ease) 900ms;
}

.stats-card.is-in .stats-card__pip {
  opacity: 1;
  transition: opacity 280ms var(--ease) 1180ms;
}

/* News */
.news-ranger {
  padding-top: calc(var(--space-2xl) + 2.75rem);
  padding-bottom: calc(var(--space-2xl) + 1.5rem);
  overflow: visible;
}

.news-ranger__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
  overflow: visible;
}

.news-list {
  display: grid;
  border-top: 1px solid var(--hairline);
}

.news-list a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  transition: color 160ms var(--ease), padding-left 160ms var(--ease);
}

.news-list a:hover {
  color: var(--field);
  padding-left: 0.35rem;
}

.ranger-teaser {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.ranger-card {
  --ranger-cover-hang: 6.35rem;
  width: min(100%, 17.5rem);
  margin-top: calc(var(--ranger-cover-hang) + 0.15rem);
  padding: 0 1.15rem 1.35rem;
  background: var(--field);
  border-radius: 0.7rem;
  box-shadow: 0 18px 40px rgba(20, 28, 17, 0.28);
  color: var(--paper);
  text-align: center;
}

.ranger-card__cover {
  width: min(13.25rem, 72%);
  margin: calc(var(--ranger-cover-hang) * -1) auto 1.15rem;
}

.ranger-card__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 10;
  object-fit: cover;
  border-radius: 0.12rem;
  box-shadow: 0 16px 28px rgba(14, 20, 12, 0.42);
}

.ranger-card h3 {
  margin: 0 auto 0.55rem;
  max-width: 14.5rem;
  color: var(--paper);
  font-size: 1.05rem;
}

.ranger-card p {
  max-width: 14.5rem;
  margin: 0 auto 1.1rem;
  color: rgba(245, 241, 228, 0.82);
  font-size: 0.84rem;
  line-height: 1.5;
}

.ranger-card p.ranger-card__note {
  max-width: 14.5rem;
  margin: 0.65rem auto 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(245, 241, 228, 0.62);
}

.ranger-card .btn {
  min-height: 2.55rem;
  padding: 0.5rem 1.05rem;
  font-size: 0.85rem;
}

/* Final CTA */
.final-cta {
  background: var(--field);
  color: var(--paper);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.final-cta__inner {
  max-width: 52rem;
}

.final-cta h2 {
  margin-bottom: 0.75rem;
}

.final-cta p {
  margin-bottom: 1.75rem;
  color: rgba(245, 241, 228, 0.88);
}

.final-cta .btn {
  min-height: 3.35rem;
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: #1a2418;
  color: rgba(245, 241, 228, 0.82);
}

.sponsors {
  overflow: hidden;
  background: var(--paper);
  padding: 2.25rem 0 2rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.sponsors__label {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.sponsors__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}

.sponsors__track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: max-content;
  padding: 0.35rem 1.25rem;
  animation: marquee 110s linear infinite;
}

.sponsors__track:hover {
  animation-play-state: paused;
}

.sponsors__track img {
  display: block;
  box-sizing: border-box;
  width: 9.5rem;
  height: 9.5rem;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

/* These four sponsor logos ship with an opaque brand-colour background
   (not white like the rest), so they can't float on the strip the same
   way — give them a small matte instead of leaving a bare colour block. */
.sponsors__track img[src$="/25.jpg"],
.sponsors__track img[src$="/11.jpg"],
.sponsors__track img[src$="/42.jpg"],
.sponsors__track img[src$="/44.jpg"] {
  padding: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .sponsors__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: min(100% - 2rem, var(--content));
    margin-inline: auto;
    gap: 0.85rem 1rem;
    padding: 0.25rem 0;
  }

  .sponsors__viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .sponsors__track img[aria-hidden="true"] {
    display: none;
  }

  .sponsors__track img {
    width: 8rem;
    height: 8rem;
  }
}

.footer-main {
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-main__inner {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand__logo {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: min(12.5rem, 42vw);
  object-fit: contain;
  object-position: left center;
  margin: 0 0 0.85rem;
}

.footer-brand p {
  margin-bottom: 0.35rem;
}

.footer-contact {
  margin-top: 1rem !important;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--yolk-bright);
  text-decoration: none;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--paper);
}

.footer-copy {
  width: min(100% - 2rem, var(--content));
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 241, 228, 0.1);
  font-size: 0.85rem;
  color: rgba(245, 241, 228, 0.55);
}

/* Motion */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__media img {
    transform: none;
  }

  .hero__content {
    --hero-scroll: 0 !important;
    filter: none;
    will-change: auto;
  }

}

@media (min-width: 640px) {
  .hanging-features__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .hanging-features__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .hang-card {
    padding: 1.5rem 1.15rem 1.35rem;
  }

  .hang-card__title {
    font-size: 1.05rem;
  }

  .hang-card__copy {
    font-size: 0.9rem;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .logo__img {
    height: 3.25rem;
    max-width: 14rem;
  }

  .nav-toggle,
  .nav-close {
    display: none;
  }

  .header-bar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1.25rem;
    min-height: 4.5rem;
  }

  .logo {
    align-self: center;
    justify-self: start;
  }

  .primary-nav {
    display: flex;
    min-width: 0;
    border-top: 0;
    justify-self: center;
    align-self: stretch;
  }

  .header-bar__actions {
    margin-left: 0;
    align-self: center;
    justify-self: end;
  }

  .nav-list {
    flex: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.05rem;
    padding: 0;
  }

  .nav-list > li {
    position: static;
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
  }

  .has-mega {
    position: static;
  }

  .nav-list > li > a,
  .nav-trigger {
    width: auto;
    min-height: 2.75rem;
    padding: 0.55rem 0.55rem;
    border-bottom: 0;
    font-size: 0.875rem;
    gap: 0.35rem;
    align-self: stretch;
  }

  .nav-trigger__chevron {
    width: 0.35rem;
    height: 0.35rem;
    transform: rotate(45deg) translateY(-1px);
  }

  .has-mega.is-open .nav-trigger__chevron,
  .has-mega:hover .nav-trigger__chevron {
    transform: rotate(225deg) translateY(-1px);
  }

  .mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    padding: 0;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
    z-index: 20;
  }

  .mega-panel[hidden] {
    display: block;
  }

  .has-mega.is-open > .mega-panel,
  .has-mega:hover > .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .has-mega:hover > .nav-trigger,
  .has-mega.is-open > .nav-trigger {
    color: var(--paper);
  }

  .mega-panel__inner {
    width: min(100% - 2rem, var(--content-wide));
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
    padding: 1.5rem 0 1.75rem;
  }

  .mega-col__title {
    color: var(--field);
  }

  .mega-col a {
    color: var(--ink);
  }

  .mega-col a:hover {
    color: var(--field);
  }

  .mega-col__copy {
    color: var(--muted);
  }

  .mega-col__link {
    color: var(--field);
    border-bottom: 1.5px solid var(--yolk);
  }

  .mega-col--feature {
    background: var(--feed);
    border: 1px solid var(--hairline);
  }

  .news-ranger__grid {
    grid-template-columns: 1.4fr 0.85fr;
    align-items: stretch;
    gap: 3rem;
  }

  .ranger-card {
    margin-top: 0;
  }

  .footer-main__inner {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }

  .footer-nav ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .nav-list > li > a,
  .nav-trigger {
    padding-inline: 0.7rem;
    font-size: 0.925rem;
  }
}

@media (min-width: 840px) and (max-width: 959px) {
  .news-ranger__grid {
    grid-template-columns: 1.4fr 0.85fr;
    align-items: stretch;
    gap: 3rem;
  }

  .ranger-card {
    margin-top: 0;
  }

  .footer-main__inner {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }

  .footer-nav ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
