:root {
  --ink: #2b2218;
  --muted: #675943;
  --paper: #d8bb83;
  --paper-soft: #ead4a9;
  --paper-pale: #f5ead2;
  --green: #3f4b24;
  --green-soft: #66743f;
  --brown: #7c5130;
  --line: rgba(75, 57, 33, .32);
  --whitewash: rgba(255, 250, 238, .72);
  --shadow: 0 12px 32px rgba(50, 34, 18, .14);
  --radius: 10px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(245, 234, 210, .34), rgba(216, 187, 131, .18)),
    url("../img/kraft-light.jpeg");
  background-repeat: repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .18), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(85, 55, 22, .08), transparent 26%);
  z-index: -1;
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 132px;
  padding: 10px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background-color: rgba(180, 137, 82, .9);
  background-image:
    linear-gradient(rgba(255,255,255,.1), rgba(80,45,18,.08)),
    url("../img/kraft-dark.png");
  background-repeat: repeat;
  box-shadow: 0 2px 16px rgba(42, 30, 17, .12);
  transition: min-height .22s ease, padding .22s ease;
}

.site-header.is-compact {
  min-height: 82px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 142px;
  height: 142px;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.16));
  transition: width .22s ease, height .22s ease;
}

.site-header.is-compact .brand img {
  width: 78px;
  height: 78px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: #241a10;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 250, 238, .34);
}

.ok-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.site-nav .ok-language-switcher a {
  min-width: 34px;
  padding: 6px 8px;
  text-align: center;
  letter-spacing: .06em;
}

.ok-language-switcher a[aria-current="page"] {
  background: rgba(255, 255, 255, .16);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 6px;
  border-radius: 999px;
  color: #241a10;
  text-decoration: none;
  flex-shrink: 0;
}

.site-cart:hover,
.site-cart:focus-visible {
  background: rgba(255, 250, 238, .34);
}

.site-cart__icon {
  display: block;
}

.site-cart__count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: #3f2a14;
  color: #fff8eb;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(43, 34, 24, .35);
  border-radius: 8px;
  background: rgba(255, 250, 238, .58);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: var(--ink);
  border-radius: 999px;
  content: "";
}

.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }

.section-pad {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 460px);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(31px, 4vw, 48px);
}

h2 { font-size: clamp(28px, 3vw, 42px); }
h3 { font-size: 21px; }

h1::after,
h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 14px;
  background: var(--green);
}

p {
  margin: 13px 0 0;
  color: var(--muted);
}

.lead {
  max-width: 660px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff8e8;
}

.button.ghost {
  background: rgba(255, 250, 238, .62);
}

.button.wide { width: 100%; }

.market-card,
.note-panel,
.service-grid article,
.contact-panel,
.pdf-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--whitewash);
  box-shadow: var(--shadow);
}

.market-card {
  overflow: hidden;
}

.market-card img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.hero-card {
  transform: rotate(.4deg);
}

.caption {
  padding: 12px 14px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 0;
}

.market-strip article {
  padding: 16px;
  border-top: 2px solid var(--green);
  background: rgba(255, 250, 238, .48);
}

.market-strip span,
.market-strip strong {
  display: block;
}

.market-strip span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.market-strip strong {
  margin-top: 4px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 32px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
}

.farm-band {
  background:
    linear-gradient(rgba(255,250,238,.36), rgba(255,250,238,.36)),
    url("../img/kraft-dark.png");
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-panel {
  padding: 22px;
}

.leaf-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.leaf-list.compact {
  margin-top: 18px;
}

.leaf-list li {
  position: relative;
  padding-left: 26px;
}

.leaf-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  content: "•";
  font-size: 22px;
  line-height: 1;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-head.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.centered h2::after {
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-grid article {
  padding: 18px;
}

.service-grid p {
  font-size: 15px;
}

.eggs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 30px;
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(50, 34, 18, .12);
}

.gallery img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.egg-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  margin-top: 22px;
}

.egg-swatches span {
  display: grid;
  place-items: center;
  min-height: 68px;
  border: 1px solid rgba(43, 34, 24, .22);
  border-radius: 50% 48% 52% 45%;
  background: var(--egg);
  color: rgba(43, 34, 24, .72);
  font-size: 12px;
  font-weight: 800;
}

.pdf-preview {
  display: block;
  padding: 8px;
  transform: rotate(.5deg);
}

.pdf-preview img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 7px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.whatsapp {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: rgba(63, 75, 36, .09);
  color: var(--ink);
  text-decoration: none;
}

.whatsapp span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.whatsapp strong {
  font-size: 28px;
  line-height: 1.1;
}

.platform-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 620px;
  margin: 24px auto 0;
}

.platform-panel a {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(50, 34, 18, .08);
}

.platform-panel img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.platform-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.factsheet-note {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factsheet-note h2 {
  font-size: clamp(23px, 2.4vw, 32px);
}

.small {
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px max(18px, calc((100vw - var(--max)) / 2)) 82px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.mobile-bar {
  display: none;
}

.pdf-landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.pdf-card {
  width: min(560px, 100%);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--whitewash);
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .site-header {
    min-height: 104px;
  }

  .brand img {
    width: 104px;
    height: 104px;
  }

  .site-header.is-compact {
    min-height: 72px;
  }

  .site-header.is-compact .brand img {
    width: 68px;
    height: 68px;
  }

  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 88px;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
      linear-gradient(rgba(255,250,238,.72), rgba(255,250,238,.72)),
      url("../img/kraft-light.jpeg");
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .site-nav .ok-language-switcher {
    justify-self: start;
    margin: 6px 10px 10px;
  }

  .hero,
  .two-column,
  .two-column.reverse,
  .eggs,
  .contact,
  .factsheet-note {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    transform: none;
  }

  .service-grid,
  .market-strip {
    grid-template-columns: 1fr 1fr;
  }

  .pdf-preview {
    transform: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .section-pad {
    width: min(var(--max), calc(100% - 24px));
    padding: 38px 0;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions .button,
  .button.primary,
  .button.ghost {
    width: 100%;
  }

  .market-strip,
  .service-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img:first-child {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .egg-swatches {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
    overflow: auto;
    padding-bottom: 4px;
  }

  .platform-panel {
    grid-template-columns: 1fr;
  }

  .egg-swatches span {
    min-width: 56px;
    min-height: 58px;
  }

  .site-footer {
    flex-direction: column;
  }

  .mobile-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
      linear-gradient(rgba(255,250,238,.82), rgba(255,250,238,.82)),
      url("../img/kraft-light.jpeg");
    box-shadow: 0 10px 28px rgba(50, 34, 18, .22);
  }

  .mobile-bar a {
    padding: 10px 6px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-bar a:nth-child(2) {
    background: var(--green);
    color: #fff8e8;
  }
}


/* News cards + article readability */
.news-grid.service-grid .news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.news-card__media img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-card__body {
  padding: 1.1rem 1.25rem 1.35rem;
}
.news-card__body h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3;
}
.news-card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.news-card__body h3 a:hover {
  text-decoration: underline;
}
.ok-article__hero {
  margin: 0 0 1.5rem;
  max-width: 52rem;
}
.ok-article__hero img {
  width: 100%;
  height: auto;
  display: block;
}
.ok-article__content {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.ok-article__content h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
}
.ok-article__content blockquote {
  margin: 1.5rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid rgba(90, 70, 40, 0.35);
  font-style: italic;
}
.article-main {
  max-width: 52rem;
  margin-inline: auto;
}

/* V2 — the forest is the brand, not kraft paper. */
:root {
  --forest-950: #11170f;
  --forest-900: #172015;
  --forest-800: #263221;
  --forest-700: #3d4c30;
  --leaf: #738254;
  --moss: #a2aa78;
  --earth: #6b4b34;
  --cream: #f3eee2;
  --cream-deep: #e4dac5;
  --gold: #c9a24a;
  --max: 1180px;
}

body {
  background: var(--cream);
  background-image: none;
  color: #20251d;
  font-family: "Segoe UI", Arial, sans-serif;
}

body::before { display: none; }

.site-header {
  min-height: 82px;
  padding-block: 9px;
  border-color: rgba(243, 238, 226, .14);
  background: rgba(17, 23, 15, .88);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.home .site-header {
  position: fixed;
  width: 100%;
  background: linear-gradient(to bottom, rgba(9, 13, 8, .78), transparent);
  border: 0;
}

.home .site-header.is-compact {
  background: rgba(17, 23, 15, .94);
}

.brand {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 10px;
  background: rgba(248, 245, 237, .94);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .16);
}

.brand img,
.site-header.is-compact .brand img {
  width: min(250px, 34vw);
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .12));
}

.site-nav { gap: 7px; }
.site-nav a,
.site-cart { color: #f5f1e7; }
.site-nav a { font-size: 13px; letter-spacing: .04em; }
.site-nav__dna { border: 1px solid rgba(201, 162, 74, .62); }
.site-nav a:hover,
.site-nav a:focus-visible,
.site-cart:hover,
.site-cart:focus-visible { background: rgba(255, 255, 255, .1); }
.site-cart__count { background: var(--gold); color: var(--forest-950); }

.experience { overflow: hidden; }
.arrival {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
}
.arrival::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 84% 77%, rgba(255, 220, 143, .24), transparent 18%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .8s ease;
  pointer-events: none;
}
.arrival.is-revealed::after { opacity: 1; }

.arrival__image,
.arrival__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.arrival__image {
  object-fit: cover;
  z-index: -4;
}
.arrival__image--reveal {
  z-index: -3;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.arrival.is-revealed .arrival__image--reveal { opacity: 1; }
.arrival__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 12, 7, .8) 0%, rgba(8, 12, 7, .42) 42%, rgba(8, 12, 7, .08) 72%),
    linear-gradient(0deg, rgba(8, 12, 7, .78) 0%, transparent 50%);
}

.arrival__copy {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 180px 0 13vh;
}

.arrival__copy h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -.045em;
}
.arrival__copy h1::after { display: none; }
.arrival__copy p:not(.arrival__whisper) {
  max-width: 610px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.arrival__whisper {
  color: var(--moss);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.trail-link {
  display: inline-flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(255,255,255,.5);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.broody-hen {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 11vh;
  width: 270px;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.82);
  text-align: right;
  font: italic 1rem Georgia, serif;
  cursor: pointer;
}
.broody-hen::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: .7rem 1rem .1rem auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 162, 74, .6);
  animation: hen-pulse 2.2s infinite;
}
@keyframes hen-pulse { 70% { box-shadow: 0 0 0 18px rgba(201,162,74,0); } }
.chick-reveal {
  position: absolute;
  right: clamp(35px, 8vw, 115px);
  bottom: 6vh;
  display: flex;
  gap: 8px;
  align-items: end;
  opacity: 0;
  transform: translateY(18px);
  transition: .6s ease;
  pointer-events: none;
}
.chick-reveal.is-visible { opacity: 1; transform: translateY(0); }
.chick-reveal span { margin-left: 6px; color: #fff; font: italic .9rem Georgia, serif; }

.found { padding-block: clamp(5rem, 10vw, 9rem); }
.found__intro { max-width: 820px; }
.found h2,
.meet h2,
.knowledge h2,
.closing h2 { font-size: clamp(2.4rem, 5vw, 5.1rem); font-weight: 500; letter-spacing: -.04em; }
.found h2::after,
.meet h2::after,
.knowledge h2::after,
.closing h2::after { display: none; }
.found .lead { color: #4e5548; font-size: clamp(1.15rem, 2vw, 1.45rem); }
.eyebrow { color: var(--forest-700); letter-spacing: .16em; }

.doorways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4.5rem;
  background: rgba(38, 50, 33, .18);
}
.doorway {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background: #ebe4d5;
  text-decoration: none;
  transition: transform .25s, background .25s, color .25s;
}
.doorway:hover,
.doorway:focus-visible { z-index: 1; transform: translateY(-8px); background: var(--forest-800); color: #fff; }
.doorway__number { margin-bottom: auto; color: var(--leaf); font: 1.1rem Georgia, serif; }
.doorway small { margin-bottom: .5rem; color: var(--leaf); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.doorway strong { font: 500 clamp(1.7rem, 3vw, 2.5rem) Georgia, serif; }
.doorway > span:last-child { margin-top: 1rem; color: #697062; }
.doorway:hover > span:last-child,
.doorway:focus-visible > span:last-child { color: rgba(255,255,255,.72); }

.promise { background: var(--forest-900); color: #fff; }
.promise__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); padding-block: 8rem; }
.promise__quote { margin: 0; color: #f3eee2; font: 400 clamp(2rem, 4vw, 3.7rem)/1.18 Georgia, serif; }
.promise__values { display: grid; gap: 0; }
.promise__values article { display: grid; grid-template-columns: 150px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.promise__values b { color: var(--moss); }
.promise__values span { color: rgba(255,255,255,.7); }

.meet { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; padding-block: 9rem; }
.meet__image { position: relative; }
.meet__image img { width: 100%; min-height: 560px; object-fit: cover; }
.meet__image span { position: absolute; left: -1px; bottom: -1px; max-width: 260px; padding: 1.2rem; background: var(--cream); font: italic 1rem Georgia, serif; }
.meet__copy p { max-width: 560px; font-size: 1.13rem; }
.text-link { display: inline-block; margin-top: 1.4rem; color: var(--forest-700); font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }

.dna-glimpse { background: #e7e5df; border-block: 1px solid #d5d1c8; }
.dna-glimpse__inner { display: grid; grid-template-columns: 1fr minmax(260px, 390px); gap: 4rem; align-items: center; padding-block: 6rem; }
.dna-glimpse h2 { font-size: clamp(2.3rem, 4.5vw, 4.4rem); font-weight: 500; }
.dna-glimpse h2::after { background: var(--gold); }
.dna-glimpse img { width: 100%; mix-blend-mode: multiply; }
.button { border-radius: 999px; }
.button.primary { background: var(--forest-800); border-color: var(--forest-800); }
.button.ghost { background: transparent; }

.knowledge { padding-block: 8rem; }
.knowledge__head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.knowledge__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.knowledge-card { background: #e8e0d0; }
.knowledge-card a { display: block; height: 100%; color: inherit; text-decoration: none; }
.knowledge-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.78); }
.knowledge-card div { padding: 1.5rem; }
.knowledge-card small { color: var(--leaf); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.knowledge-card h3 { margin-top: .6rem; font-size: 1.65rem; }
.knowledge-card span { display: block; margin-top: 1.5rem; font-weight: 800; }

.closing { color: #fff; background: var(--forest-800); }
.closing__inner { padding-block: 7rem; }
.closing .eyebrow { color: var(--moss); }
.closing h2 { color: #fff; }
.closing__links { display: grid; grid-template-columns: 1fr 1fr; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.2); }
.closing__links a { padding: 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,.2); color: #fff; text-decoration: none; font-size: 1.1rem; }
.closing__links a:nth-child(odd) { margin-right: 2rem; }

.site-footer {
  padding-block: 3rem 6rem;
  align-items: end;
  color: #cbc8bd;
  background: var(--forest-950);
  border: 0;
}
.site-footer > div { max-width: 410px; }
.site-footer img { width: 240px; filter: brightness(0) invert(1); }
.site-footer p { color: #999d93; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

.ok-service-lead {
  max-width: 58rem;
  color: var(--forest-800);
  font: 500 clamp(1.25rem, 2.4vw, 1.8rem)/1.45 Georgia, serif;
}
.ok-service-facts {
  display: grid;
  grid-template-columns: minmax(10rem, .35fr) 1fr;
  max-width: 52rem;
  margin: 2rem 0;
  border-top: 1px solid rgba(38, 50, 33, .2);
}
.ok-service-facts dt,
.ok-service-facts dd {
  margin: 0;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(38, 50, 33, .2);
}
.ok-service-facts dt { color: var(--forest-700); font-weight: 800; }
.ok-withdrawal { max-width: 52rem; }
.ok-withdrawal__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 253, 246, .75);
  border: 1px solid rgba(38, 50, 33, .2);
}
.ok-withdrawal__form label { display: block; margin-bottom: .4rem; font-weight: 800; }
.ok-withdrawal__form input,
.ok-withdrawal__form textarea {
  width: 100%;
  padding: .8rem;
  border: 1px solid rgba(38, 50, 33, .35);
  border-radius: .35rem;
  background: #fff;
  color: var(--forest-950);
  font: inherit;
}
.ok-withdrawal__optional,
.ok-withdrawal__form .button { grid-column: 1 / -1; }
.ok-withdrawal__form .button { justify-self: start; }
.ok-withdrawal .button.alt,
.ok-withdrawal__confirm .button.alt {
  padding: .8rem 1.2rem;
  border: 1px solid var(--forest-800);
  background: var(--forest-800);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.ok-withdrawal .button.alt:hover,
.ok-withdrawal .button.alt:focus-visible,
.ok-withdrawal__confirm .button.alt:hover,
.ok-withdrawal__confirm .button.alt:focus-visible {
  background: var(--forest-950);
  border-color: var(--forest-950);
}
.ok-withdrawal__trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.ok-withdrawal__help { color: #5f6659; }
.ok-withdrawal__confirm {
  margin: 2rem 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 253, 246, .75);
  border: 2px solid var(--forest-700);
}
.ok-withdrawal__confirm dl {
  display: grid;
  grid-template-columns: minmax(9rem, .35fr) 1fr;
  gap: .5rem 1rem;
  margin: 1.5rem 0;
}
.ok-withdrawal__confirm dt { font-weight: 800; }
.ok-withdrawal__confirm dd { margin: 0; }
.ok-withdrawal__confirm form { display: flex; flex-wrap: wrap; gap: .75rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .broody-hen::after { animation: none; }
  .chick-reveal { transition: none; }
  .arrival__image--reveal { transition: none; }
  .arrival::after { transition: none; }
}

@media (max-width: 920px) {
  .site-header { min-height: 72px; }
  .brand { padding: 5px 8px; border-radius: 8px; }
  .brand img,
  .site-header.is-compact .brand img {
    width: min(190px, 52vw);
    height: 46px;
  }
  .nav-toggle { display: block; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { background: #fff; }
  .site-nav { top: 72px; background: rgba(17,23,15,.97); border-color: rgba(255,255,255,.12); }
  .doorways,
  .knowledge__grid { grid-template-columns: 1fr; }
  .doorway { min-height: 270px; }
  .promise__grid,
  .meet,
  .dna-glimpse__inner { grid-template-columns: 1fr; }
  .meet__image img { min-height: 420px; }
  .dna-glimpse img { max-width: 340px; }
  .broody-hen { bottom: 4vh; }
  .chick-reveal { bottom: 2vh; }
}

@media (max-width: 560px) {
  .arrival__image { object-position: 68% center; }
  .arrival__copy { padding-bottom: 20vh; }
  .arrival__copy h1 { font-size: 3.35rem; }
  .arrival__veil { background: linear-gradient(0deg, rgba(8,12,7,.9), rgba(8,12,7,.15) 78%); }
  .broody-hen { right: 10px; width: 210px; font-size: .86rem; }
  .promise__values article { grid-template-columns: 1fr; gap: .5rem; }
  .knowledge__head { display: block; }
  .closing__links { grid-template-columns: 1fr; }
  .closing__links a:nth-child(odd) { margin-right: 0; }
  .site-footer { display: grid; }
  .site-footer nav { margin-top: 1.5rem; }
  .mobile-bar { background: rgba(243,238,226,.96); border-color: rgba(17,23,15,.2); }
  .mobile-bar a:nth-child(2) { background: var(--forest-800); }
  .ok-service-facts,
  .ok-withdrawal__form { grid-template-columns: 1fr; }
  .ok-service-facts dt { padding-bottom: .1rem; border-bottom: 0; }
  .ok-service-facts dd { padding-top: .25rem; }
}
