:root {
  --ink: #152019;
  --muted: #5b675f;
  --paper: #fbfaf4;
  --cream: #f3ecd9;
  --cream-strong: #e8dcc3;
  --green: #215c3c;
  --green-dark: #0f3525;
  --leaf: #769e52;
  --tomato: #c7392e;
  --pepper: #a92825;
  --gold: #d5a13d;
  --line: rgba(21, 32, 25, 0.13);
  --soft-shadow: 0 18px 42px rgba(34, 29, 18, 0.12);
  --deep-shadow: 0 28px 70px rgba(15, 53, 37, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.header-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 18px;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--tomato);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--tomato);
}

.hero {
  min-height: clamp(600px, 72vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(42px, 6vw, 78px) clamp(20px, 6vw, 84px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 31, 21, 0.9) 0%, rgba(11, 31, 21, 0.68) 46%, rgba(11, 31, 21, 0.16) 100%),
    url("assets/yemi-farms-hero-habanero.jpg") center / cover;
}

.hero-content {
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.85rem, 6.6vw, 5.85rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--tomato);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #a72f26;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.contact-band .button.secondary {
  color: var(--green-dark);
  border-color: #fff;
  background: #fff;
}

.hero-facts {
  margin: 28px 0 0;
  gap: 20px;
  padding: 0;
}

.hero-facts div {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 28px;
}

.hero-facts div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: #fff;
  font-weight: 850;
}

.promise-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 25px clamp(20px, 6vw, 84px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.promise-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.promise-band strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1rem;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading h2,
.story-copy h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.story-copy p,
.contact-band p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.lead-product-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
}

.lead-product-media img {
  display: block;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.lead-product-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-product-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-pill.warm {
  color: #6f241f;
  background: #ffe2d9;
}

.status-pill.green {
  color: var(--green-dark);
  background: #e3efd8;
}

.status-pill.neutral {
  color: #5f4615;
  background: #f6e7bf;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-details dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.product-button {
  min-width: 210px;
}

.secondary-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 5vw, 54px);
}

.secondary-product {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.secondary-product img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.secondary-product h3 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.secondary-product p {
  margin: 0 0 8px;
  color: var(--muted);
}

.text-action {
  min-height: 40px;
  padding: 0;
  color: var(--tomato);
  border: 0;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.text-action:hover,
.text-action:focus-visible {
  color: var(--green-dark);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--tomato);
  font-size: 0.9rem;
  font-weight: 850;
}

.inline-cta:hover,
.inline-cta:focus-visible {
  background: #a72f26;
}

.availability-section {
  background: #fff;
}

.availability-layout,
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.availability-panel {
  padding-top: 4px;
}

.timeline-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.timeline-heading h3,
.confirmation-split h3,
.handoff-panel h3 {
  margin: 0;
  font-size: 1.3rem;
}

.timeline-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.availability-panel > p,
.handoff-panel p {
  color: var(--muted);
}

.readiness-rail {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.readiness-rail li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 28px;
}

.readiness-rail li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 6px;
  left: 16px;
  width: 2px;
  background: var(--line);
}

.readiness-rail span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 850;
}

.readiness-rail .current span {
  background: var(--tomato);
}

.readiness-rail .next span {
  color: var(--green-dark);
  background: #e3efd8;
}

.readiness-rail strong {
  display: block;
  grid-column: 2;
  font-size: 1.12rem;
}

.readiness-rail p {
  grid-column: 2;
  max-width: 640px;
  margin: 7px 0 0;
  color: var(--muted);
}

.confirmation-split {
  padding-top: 4px;
}

.confirmation-split h3 {
  margin-bottom: 16px;
}

.confirmation-split > div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.confirmation-split h4 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.confirmation-split ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.confirmation-split li + li {
  margin-top: 7px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  background: var(--cream);
}

.story-media {
  min-height: 540px;
  border-radius: 8px;
  background: url("assets/farm-proof-habanero.jpg") center / cover;
  box-shadow: var(--soft-shadow);
}

.proof-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.proof-list div {
  padding: 17px 0;
  border-top: 1px solid rgba(21, 32, 25, 0.18);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 4px;
  color: var(--muted);
}

.trust-section {
  background: #fff;
}

.proof-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.proof-steps article {
  padding-top: 24px;
}

.proof-steps span {
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 850;
}

.proof-steps h3 {
  margin: 24px 0 8px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.proof-steps p {
  margin: 0;
  color: var(--muted);
}

.inquiry-section {
  background: var(--paper);
}

.inquiry-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

fieldset {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

fieldset:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

legend {
  margin: 0 0 2px;
  padding: 0;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 850;
}

.quiet-fields {
  opacity: 0.95;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 32, 25, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(213, 161, 61, 0.28);
  border-color: var(--gold);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.submit-button {
  width: min(260px, 100%);
}

.handoff-panel {
  position: sticky;
  top: 92px;
  padding-top: 4px;
}

.handoff-panel ol {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.handoff-panel li + li {
  margin-top: 10px;
}

.form-result {
  margin-top: 20px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.form-result strong {
  display: block;
  color: var(--green-dark);
}

.form-result.is-hidden {
  display: none;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(52px, 7vw, 82px) clamp(20px, 6vw, 84px);
  color: #fff;
  background: var(--green-dark);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .lead-product,
  .availability-layout,
  .inquiry-layout,
  .story-section {
    grid-template-columns: 1fr;
  }

  .lead-product-media img {
    min-height: 360px;
  }

  .handoff-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .promise-band,
  .secondary-products,
  .proof-steps {
    grid-template-columns: 1fr;
  }

  .secondary-product {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

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

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 620px;
    padding-top: 34px;
    padding-bottom: 36px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-facts {
    display: grid;
    gap: 8px;
  }

  .hero-facts div {
    display: grid;
    gap: 1px;
  }

  .hero-facts div + div {
    padding-left: 0;
    border-left: 0;
  }

  .promise-band {
    gap: 16px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .lead-product-media img {
    min-height: 280px;
  }

  .product-details,
  .field-row {
    grid-template-columns: 1fr;
  }

  .secondary-product {
    grid-template-columns: 1fr;
  }

  .secondary-product img {
    aspect-ratio: 16 / 9;
  }

  .timeline-heading {
    display: grid;
    gap: 8px;
  }

  .story-media {
    min-height: 330px;
  }

  .submit-button {
    width: 100%;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
