:root {
  --ink: #24231f;
  --muted: #6d695f;
  --paper: #fbfaf6;
  --paper-warm: #f2eee4;
  --paper-green: #edf1e8;
  --white: #ffffff;
  --brown: #7a452c;
  --brown-deep: #5e3320;
  --orange: #c85c35;
  --green: #47654d;
  --line: #d9d4c8;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  border-radius: 0;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 300;
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  background: var(--brown);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(122, 69, 44, .16);
  background: rgba(251, 250, 246, .94);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 28px rgba(54, 43, 31, .08);
}
.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font-size: .95rem;
  letter-spacing: .08em;
}
.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .86rem;
  font-weight: 750;
}
.nav a {
  text-decoration: none;
  transition: color .2s ease;
}
.nav a:hover,
.nav a:focus-visible { color: var(--brown); }
.nav .nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--brown);
  color: var(--brown);
}
.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  background: var(--brown);
  color: white;
}
.menu-toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .2s ease;
}

.hero {
  padding-top: 78px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(122, 69, 44, .07) 50%, transparent calc(50% + 1px)),
    var(--paper);
}
.hero-grid {
  min-height: 735px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 88px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 23px;
  color: var(--brown);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 0;
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .96;
}
h1 {
  max-width: 680px;
  font-size: clamp(4.7rem, 8.2vw, 8.1rem);
}
h1 span {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .68em;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-lead {
  max-width: 580px;
  margin: 34px 0 32px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 21px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary {
  background: var(--orange);
  color: white;
  box-shadow: 8px 8px 0 rgba(200, 92, 53, .14);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: #b94f2b;
  box-shadow: 4px 4px 0 rgba(200, 92, 53, .2);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
}
.text-link:hover,
.text-link:focus-visible { color: var(--brown); }
.purchase-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: .8rem;
}
.purchase-note span {
  width: 7px;
  height: 7px;
  background: var(--green);
}
.hero-photo {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 600px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .55);
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero-photo figcaption,
.grain-photo figcaption {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  padding: 10px 14px;
  background: rgba(251, 250, 246, .94);
  color: var(--brown-deep);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.facts-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.facts-grid div {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}
.facts-grid div:last-child { border-right: 1px solid var(--line); }
.facts-grid span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.facts-grid strong {
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .6fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 68px;
}
.section-heading h2,
.sowing h2,
.ranczofarm h2,
.purchase h2,
.faq h2 {
  max-width: 830px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}
.section-summary {
  margin: 0 0 4px;
  color: var(--muted);
}
.product-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  border: 1px solid var(--line);
  background: var(--white);
}
.grain-photo {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
}
.grain-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-list { display: grid; grid-template-rows: repeat(4, 1fr); }
.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  align-items: center;
  padding: 31px 42px;
  border-bottom: 1px solid var(--line);
}
.feature-list article:last-child { border-bottom: 0; }
.feature-list article > span {
  align-self: start;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.feature-list h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  letter-spacing: -.035em;
  line-height: 1.25;
}
.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.sowing {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-green);
}
.sowing-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 90px;
  align-items: start;
}
.sowing h2 { margin-bottom: 30px; }
.sowing-intro > p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
}
.sowing-table {
  border-top: 1px solid #bfc8ba;
  background: rgba(255, 255, 255, .48);
}
.sowing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 128px;
  padding: 24px 28px;
  border: solid #bfc8ba;
  border-width: 0 1px 1px;
}
.sowing-row > span {
  font-size: 1.08rem;
  font-weight: 750;
}
.sowing-row small {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.sowing-row strong {
  color: var(--green);
  font-size: 1.85rem;
  letter-spacing: -.05em;
  text-align: right;
}
.sowing-row strong small { text-align: right; }
.sowing-head {
  min-height: 48px;
  padding-block: 10px;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sowing-head span { font-size: .66rem; }
.sowing-head span:last-child { text-align: right; }
.sowing-row.emphasis {
  border-color: #a9b7a3;
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(71, 101, 77, .09);
}

.ranczofarm { background: var(--paper); }
.ranch-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 95px;
  align-items: start;
}
.ranczofarm h2 {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.ranch-copy { padding-top: 44px; }
.ranch-lead {
  max-width: 750px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.52;
}
.ranch-copy > p:not(.ranch-lead) {
  max-width: 720px;
  color: var(--muted);
}
.profile-links {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.profile-links a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.profile-links a > span {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.profile-links a > strong { font-size: .98rem; }
.profile-links a > b {
  color: var(--brown);
  font-size: 1.2rem;
  transition: transform .2s ease;
}
.profile-links a:hover > b { transform: translate(3px, -3px); }

.purchase {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 92px;
  align-items: center;
}
.purchase h2 { margin-bottom: 28px; }
.purchase-copy > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.offer-card {
  padding: 34px;
  border: 1px solid var(--brown);
  background: var(--white);
  box-shadow: 14px 14px 0 rgba(122, 69, 44, .1);
}
.offer-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.offer-card h3 {
  margin: 26px 0;
  color: var(--brown);
  font-size: 3.6rem;
  letter-spacing: -.065em;
  line-height: 1;
}
.offer-card dl { margin: 0 0 27px; }
.offer-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.offer-card dt { color: var(--muted); }
.offer-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}
.button-wide { width: 100%; }
.offer-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

.faq { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}
.faq h2 { font-size: clamp(3rem, 5vw, 5rem); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.04rem;
  font-weight: 800;
}
summary::-webkit-details-marker { display: none; }
summary span {
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform .2s ease;
}
details[open] summary span { transform: rotate(45deg); }
details p {
  max-width: 720px;
  padding: 0 45px 23px 0;
  color: var(--muted);
}

.sources {
  border-top: 1px solid var(--line);
  background: var(--paper-green);
}
.sources-inner { padding-top: 30px; padding-bottom: 30px; }
.sources p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}
.sources a { color: var(--green); }

.site-footer {
  padding: 62px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 58px;
  align-items: center;
  padding-bottom: 47px;
  border-bottom: 1px solid var(--line);
}
.footer-main p {
  margin: 0;
  color: var(--muted);
}
.footer-link {
  color: var(--brown);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: var(--muted);
  font-size: .74rem;
}

:focus-visible {
  outline: 3px solid rgba(200, 92, 53, .48);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  :root { --shell: min(100% - 36px, 920px); }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 38px; }
  h1 { font-size: clamp(4.1rem, 9.4vw, 6.7rem); }
  .hero-photo { min-height: 560px; }
  .section-heading,
  .sowing-grid,
  .ranch-grid,
  .faq-grid { gap: 55px; }
  .purchase-grid { grid-template-columns: 1fr 410px; gap: 50px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 640px); }
  .section-pad { padding: 78px 0; }
  .header-inner { height: 68px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(54, 43, 31, .08);
  }
  .nav.open { display: grid; }
  .nav a {
    padding: 13px 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
  .hero { padding-top: 68px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 54px;
  }
  h1 { font-size: clamp(4rem, 18vw, 6.3rem); }
  .hero-lead { font-size: 1.04rem; }
  .hero-photo {
    width: min(100%, 500px);
    min-height: 620px;
    margin-inline: auto;
  }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid div { min-height: 90px; padding: 18px; }
  .facts-grid div:nth-child(3),
  .facts-grid div:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading,
  .product-layout,
  .sowing-grid,
  .ranch-grid,
  .purchase-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2,
  .sowing h2,
  .ranczofarm h2,
  .purchase h2 {
    font-size: clamp(3.15rem, 13vw, 5rem);
  }
  .product-layout { gap: 0; }
  .grain-photo {
    min-height: 590px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-list article { padding: 28px 26px; }
  .ranch-copy { padding-top: 0; }
  .purchase-grid { gap: 48px; }
  .offer-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 470px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-photo { min-height: 520px; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid div {
    min-height: 74px;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }
  .facts-grid div:first-child { border-top: 0; }
  .grain-photo { min-height: 500px; }
  .feature-list article {
    grid-template-columns: 38px 1fr;
    gap: 15px;
    padding: 25px 20px;
  }
  .sowing-row {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: 118px;
  }
  .sowing-row strong,
  .sowing-row strong small,
  .sowing-head span:last-child { text-align: left; }
  .sowing-head { display: none; }
  .profile-links a {
    grid-template-columns: 78px 1fr auto;
    gap: 12px;
  }
  .profile-links a > strong { font-size: .85rem; }
  .offer-card { padding: 26px 20px; }
  .offer-card h3 { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
