:root {
  --orange: #ad5c2d;
  --orange-dark: #8c4525;
  --orange-soft: #c77945;
  --cream: #f4eadb;
  --cream-light: #fbf6ec;
  --sand: #dfcbb1;
  --brown: #3d2a22;
  --charcoal: #282521;
  --green: #405946;
  --green-soft: #687860;
  --gold: #b88a4a;
  --white: #fffdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site {
  min-height: 100svh;
  overflow: hidden;
  background: var(--cream);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 35px;
  padding: 8px 20px;
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.80);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-soft);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 56px, 1320px);
  min-height: 91px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(61, 42, 34, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-logo-frame {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(61, 42, 34, 0.18);
  border-radius: 50%;
  background: var(--cream-light);
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.brand-wordmark {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-wordmark strong {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.brand-wordmark small {
  margin-top: 5px;
  color: var(--orange-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-cta {
  padding: 10px 15px;
  border: 1px solid rgba(61, 42, 34, 0.22);
  border-radius: 3px;
  color: var(--brown);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 31px);
  margin-left: auto;
  margin-right: 27px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #5e5149;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.055em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }

.mobile-menu { display: none; position: relative; }
.mobile-menu [hidden] { display: none !important; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  min-height: calc(100svh - 126px);
  padding: 78px max(28px, calc((100vw - 1320px) / 2)) 90px;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31%;
  height: 7px;
  background: var(--green);
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: -15%;
  width: min(66vw, 900px);
  opacity: 0.075;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--sand);
}

.hero-brand-name {
  margin: 0 0 13px;
  color: var(--cream-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 700;
  letter-spacing: 0.095em;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 102px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.coming-soon {
  width: fit-content;
  margin: 24px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 253, 248, 0.36);
  color: var(--cream-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 42px);
  font-style: italic;
}

.hero-description {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 15px;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 31px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  background: var(--cream-light);
  color: var(--brown);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quiet-note {
  color: rgba(255, 253, 248, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo-lockup {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 535px);
  margin-left: auto;
  flex-direction: column;
  align-items: center;
}

.logo-caption {
  margin-bottom: 18px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.30em;
  text-align: center;
}

.logo-disc {
  display: grid;
  width: min(100%, 455px);
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  border: 8px solid rgba(255, 253, 248, 0.18);
  border-radius: 50%;
  background: var(--cream-light);
  box-shadow: 0 18px 42px rgba(61, 42, 34, 0.18);
}

.logo-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.logo-foundation {
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(100%, 360px);
  margin-top: 19px;
  padding: 13px 17px;
  border-top: 1px solid rgba(255, 253, 248, 0.30);
  border-bottom: 1px solid rgba(255, 253, 248, 0.30);
}

.logo-foundation > span {
  color: var(--sand);
  font-size: 11px;
}

.logo-foundation p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.logo-foundation strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 600;
}

.logo-foundation small {
  margin-top: 3px;
  color: rgba(255, 253, 248, 0.64);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
  border-bottom: 1px solid rgba(61, 42, 34, 0.16);
}

.brand-pillars > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding: 26px 24px;
  border-right: 1px solid rgba(61, 42, 34, 0.14);
}

.brand-pillars > div:last-child { border-right: 0; }
.brand-pillars span { grid-row: 1 / span 2; padding-top: 3px; color: var(--orange); font-size: 8px; font-weight: 900; }
.brand-pillars strong { color: var(--brown); font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 600; }
.brand-pillars small { margin-top: 4px; color: #756960; font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }

.coming-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 9vw, 145px);
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
  padding: 125px 0;
}

.section-label {
  margin: 0 0 17px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-label.light { color: #e3ba92; }

.section-heading h2,
.farm-copy h2,
.a2-heading h2,
.values-heading h2,
.future-heading h2 {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.coming-content > p {
  max-width: 650px;
  margin: 0;
  color: #685c54;
  font-size: 15px;
  line-height: 1.9;
}

.development-status {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  margin-top: 31px;
  padding: 22px 0;
  border-top: 1px solid rgba(61, 42, 34, 0.17);
  border-bottom: 1px solid rgba(61, 42, 34, 0.17);
}

.development-status span {
  color: #796d65;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.development-status strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
}

.development-status small {
  color: #766b63;
  font-size: 10px;
  line-height: 1.5;
}

.farm-section {
  display: grid;
  grid-template-columns: minmax(370px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(65px, 9vw, 145px);
  padding: 120px max(28px, calc((100vw - 1320px) / 2));
  background: var(--cream-light);
}

.farm-visual {
  position: relative;
  display: grid;
  width: min(100%, 510px);
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(61, 42, 34, 0.13);
  background: var(--cream);
}

.farm-visual img {
  width: 115%;
  max-width: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.farm-stamp {
  position: absolute;
  display: flex;
  width: 205px;
  height: 205px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(140, 69, 37, 0.34);
  border-radius: 50%;
  color: var(--orange-dark);
  text-align: center;
}

.farm-stamp::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(140, 69, 37, 0.20);
  border-radius: 50%;
}

.farm-stamp strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.farm-stamp span {
  max-width: 125px;
  margin-top: 8px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.farm-copy > p:not(.section-label) {
  max-width: 670px;
  margin: 27px 0 0;
  color: #665a52;
  font-size: 15px;
  line-height: 1.9;
}

.farm-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 0;
  border-top: 1px solid rgba(61, 42, 34, 0.16);
  border-bottom: 1px solid rgba(61, 42, 34, 0.16);
}

.farm-details div {
  padding: 20px 18px 20px 0;
  border-right: 1px solid rgba(61, 42, 34, 0.14);
}

.farm-details div:not(:first-child) { padding-left: 18px; }
.farm-details div:last-child { border-right: 0; }

.farm-details dt {
  color: var(--orange-dark);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.farm-details dd {
  margin: 7px 0 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.3;
}

.a2-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(65px, 9vw, 145px);
  padding: 125px max(28px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.a2-watermark {
  position: absolute;
  top: 50%;
  right: -16%;
  width: min(61vw, 820px);
  opacity: 0.045;
  pointer-events: none;
  transform: translateY(-50%);
}

.a2-heading,
.a2-content { position: relative; z-index: 1; }

.a2-heading h2,
.future-heading h2 { color: var(--cream-light); }

.a2-content > p {
  margin: 0;
  color: rgba(255, 253, 248, 0.70);
  font-size: 14px;
  line-height: 1.9;
}

.a2-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  list-style: none;
}

.a2-content li {
  display: grid;
  grid-template-columns: 29px 1fr;
  padding: 22px 18px 22px 0;
  border-right: 1px solid rgba(255, 253, 248, 0.13);
  border-bottom: 1px solid rgba(255, 253, 248, 0.13);
}

.a2-content li:nth-child(even) { padding-left: 18px; border-right: 0; }
.a2-content li span { grid-row: 1 / span 2; padding-top: 3px; color: #dda570; font-size: 8px; font-weight: 900; }
.a2-content li strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 600; }
.a2-content li small { margin-top: 5px; color: rgba(255, 253, 248, 0.52); font-size: 9px; line-height: 1.5; }

.values-section {
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
  padding: 125px 0 135px;
}

.values-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.65fr);
  gap: 28px;
  align-items: end;
}

.values-heading .section-label { grid-column: 1 / -1; margin-bottom: -7px; }
.values-heading > p:last-child { margin: 0 0 7px; color: #70645c; font-size: 13px; line-height: 1.7; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid rgba(61, 42, 34, 0.16);
  background: rgba(61, 42, 34, 0.13);
}

.values-grid article {
  min-height: 270px;
  padding: 25px 22px;
  background: var(--cream);
}

.values-grid article:nth-child(2),
.values-grid article:nth-child(4) { background: var(--cream-light); }

.values-grid span {
  color: var(--orange-dark);
  font-size: 8px;
  font-weight: 900;
}

.values-grid h3 {
  margin: 78px 0 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 600;
}

.values-grid p {
  margin: 13px 0 0;
  color: #70645c;
  font-size: 11px;
  line-height: 1.72;
}

.future-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: clamp(70px, 10vw, 165px);
  padding: 125px max(28px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background: var(--orange-dark);
  color: var(--white);
}

.future-section > img {
  position: absolute;
  bottom: -22%;
  left: -14%;
  width: min(61vw, 800px);
  opacity: 0.07;
  pointer-events: none;
}

.future-heading,
.future-list,
.availability-note { position: relative; z-index: 1; }

.future-heading > p:not(.section-label) {
  max-width: 560px;
  margin: 25px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.future-cta {
  display: inline-flex;
  min-height: 47px;
  margin-top: 29px;
  padding: 0 20px;
  align-items: center;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 3px;
  color: var(--cream-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.future-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.20);
  list-style: none;
}

.future-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 69px;
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(255, 253, 248, 0.16);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.future-list li:nth-child(even) { padding-left: 18px; border-right: 0; }
.future-list span { color: #e2b287; font-family: Inter, sans-serif; font-size: 8px; font-weight: 900; }

.availability-note {
  grid-column: 2;
  margin: -76px 0 0;
  padding-top: 18px;
  color: rgba(255, 253, 248, 0.55);
  font-size: 9px;
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 29px max(28px, calc((100vw - 1320px) / 2));
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.62);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand > span {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--cream-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.footer-brand small {
  margin-top: 4px;
  color: #d5a77d;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
  text-align: center;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  justify-self: end;
  flex-direction: column;
  font-size: 9px;
}

.footer-meta small { margin-top: 4px; font-size: 7px; }

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 72px;
    padding-top: 72px;
  }

  .hero-copy { max-width: 760px; }
  .logo-lockup { margin: 0 auto; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; margin-left: auto; margin-right: 14px; }

  .mobile-menu button {
    display: flex;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(61, 42, 34, 0.20);
    border-radius: 3px;
    background: transparent;
    color: inherit;
    font: inherit;
  }

  .mobile-menu button span {
    width: 17px;
    height: 1px;
    background: var(--brown);
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 20;
    top: 49px;
    right: 0;
    display: grid;
    width: 210px;
    padding: 8px;
    border: 1px solid rgba(61, 42, 34, 0.16);
    background: var(--cream-light);
    box-shadow: 0 14px 30px rgba(61, 42, 34, 0.13);
  }

  .mobile-menu nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(61, 42, 34, 0.10);
    color: var(--brown);
    font-size: 11px;
    font-weight: 700;
  }

  .mobile-menu nav a:last-child { border-bottom: 0; }
  .coming-section { grid-template-columns: 1fr; gap: 45px; }
  .farm-section { grid-template-columns: 0.85fr 1.15fr; gap: 55px; }
  .a2-section { grid-template-columns: 1fr; gap: 50px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid article:nth-child(4),
  .values-grid article:nth-child(5) { min-height: 245px; }
  .future-section { grid-template-columns: 1fr; gap: 50px; }
  .availability-note { grid-column: 1; margin: 0; }
}

@media (max-width: 700px) {
  .header,
  .brand-pillars { width: min(100% - 32px, 1320px); }
  .header { min-height: 76px; }
  .brand-logo-frame { flex-basis: 44px; width: 44px; height: 44px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-wordmark strong { font-size: 14px; letter-spacing: 0.035em; }
  .brand-wordmark small { font-size: 7px; letter-spacing: 0.13em; }
  .header-cta { padding: 8px 9px; font-size: 7px; letter-spacing: 0.10em; }
  .header-cta { display: none; }
  .mobile-menu { margin-right: 0; }
  .hero { min-height: auto; padding: 58px 16px 70px; }
  .hero-watermark { top: 27%; left: -48%; width: 150vw; opacity: 0.06; }
  .eyebrow { font-size: 8px; letter-spacing: 0.15em; }
  .hero-brand-name { font-size: 18px; letter-spacing: 0.065em; }
  h1 { font-size: clamp(51px, 15vw, 76px); line-height: 0.95; }
  .hero-description { font-size: 14px; line-height: 1.75; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .logo-caption { font-size: 8px; letter-spacing: 0.22em; }
  .logo-disc { width: min(100%, 380px); border-width: 6px; }
  .brand-pillars { grid-template-columns: repeat(2, 1fr); }
  .brand-pillars > div:nth-child(2) { border-right: 0; }
  .brand-pillars > div:nth-child(-n+2) { border-bottom: 1px solid rgba(61, 42, 34, 0.14); }
  .coming-section,
  .values-section { width: min(100% - 32px, 1320px); }
  .coming-section { padding: 88px 0; }
  .section-heading h2,
  .farm-copy h2,
  .a2-heading h2,
  .values-heading h2,
  .future-heading h2 { font-size: clamp(40px, 12vw, 56px); }
  .development-status { grid-template-columns: 1fr; }
  .development-status strong { grid-row: auto; grid-column: 1; }
  .farm-section,
  .a2-section,
  .future-section { grid-template-columns: 1fr; padding: 88px 16px; }
  .farm-visual { width: min(100%, 440px); margin: 0 auto; }
  .farm-details { grid-template-columns: 1fr; }
  .farm-details div,
  .farm-details div:not(:first-child) { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(61, 42, 34, 0.12); }
  .farm-details div:last-child { border-bottom: 0; }
  .a2-content ul { grid-template-columns: 1fr; }
  .a2-content li,
  .a2-content li:nth-child(even) { padding: 20px 0; border-right: 0; }
  .values-section { padding: 88px 0 96px; }
  .values-heading { grid-template-columns: 1fr; gap: 16px; }
  .values-heading .section-label { margin-bottom: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article,
  .values-grid article:nth-child(4),
  .values-grid article:nth-child(5) { min-height: 225px; }
  .values-grid h3 { margin-top: 55px; }
  .future-list { grid-template-columns: 1fr; }
  .future-list li,
  .future-list li:nth-child(even) { padding: 0; border-right: 0; }
  .footer { grid-template-columns: 1fr auto; padding: 24px 16px; }
  .footer > p { display: none; }
}

@media (max-width: 390px) {
  .announcement { padding-inline: 12px; font-size: 7px; letter-spacing: 0.12em; }
  .brand { gap: 8px; }
  .brand-wordmark strong { font-size: 12px; }
  .header-cta { max-width: 84px; text-align: center; line-height: 1.25; }
  .hero { padding-inline: 14px; }
  h1 { font-size: 49px; }
  .brand-pillars { width: 100%; }
  .brand-pillars > div { grid-template-columns: 26px 1fr; padding: 20px 13px; }
  .brand-pillars strong { font-size: 16px; }
  .brand-pillars small { font-size: 7px; }
  .mobile-menu nav { right: -3px; }
  .farm-stamp { width: 170px; height: 170px; }
  .farm-stamp strong { font-size: 44px; }
  .footer { grid-template-columns: 1fr; }
  .footer-meta { justify-self: start; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
