:root {
  color-scheme: light;
  --ink: #170c0e;
  --muted: #75595f;
  --paper: #fff5f1;
  --paper-soft: #f8e5df;
  --ruby: #b20f31;
  --ruby-dark: #5b0719;
  --charcoal: #120c0d;
  --line: rgba(65, 18, 26, 0.13);
  --shadow: 0 28px 90px rgba(86, 11, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(178, 15, 49, 0.12), transparent 32%),
    radial-gradient(circle at 92% 38%, rgba(91, 7, 25, 0.12), transparent 34%),
    var(--paper);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 58px);
  color: white;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--ink);
  background: rgba(255, 249, 245, 0.9);
  box-shadow: 0 18px 60px rgba(40, 10, 16, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  width: 146px;
  display: grid;
  place-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #790a22, #d51441);
  box-shadow: 0 18px 42px rgba(79, 4, 20, 0.24);
  overflow: hidden;
  transform: translateZ(0);
  animation: logo-breathe 4.6s ease-in-out infinite;
}

.brand::after {
  position: absolute;
  inset: -30% -58%;
  content: "";
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.54) 50%, transparent 68%);
  transform: translateX(-70%) rotate(8deg);
  animation: logo-shine 5.8s ease-in-out infinite;
}

.brand img {
  position: relative;
  z-index: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav,
body.menu-open .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 108px clamp(20px, 6vw, 86px) 42px;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 4, 6, 0.84), rgba(10, 4, 6, 0.44) 44%, rgba(10, 4, 6, 0.1)),
    linear-gradient(180deg, rgba(10, 4, 6, 0.38), rgba(10, 4, 6, 0.2) 52%, rgba(10, 4, 6, 0.6));
}

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

.eyebrow,
.section-label {
  margin: 0;
  color: var(--ruby);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffb9c4;
}

h1,
h2 {
  margin: 0;
  font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin-top: 16px;
  max-width: 760px;
  font-size: clamp(44px, 5.7vw, 82px);
  line-height: 1.05;
}

h1 em {
  color: #ffd4dc;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h2 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  width: min(620px, 100%);
  color: rgba(255, 244, 241, 0.82);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.62;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--ruby-dark), var(--ruby));
  box-shadow: 0 18px 44px rgba(121, 8, 31, 0.22);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.section-padding {
  padding: clamp(78px, 10vw, 140px) clamp(20px, 6vw, 86px);
}

.intro-band {
  background:
    linear-gradient(180deg, rgba(255, 245, 241, 0.94), rgba(255, 234, 228, 0.9)),
    radial-gradient(circle at 85% 20%, rgba(178, 15, 49, 0.14), transparent 30%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(34px, 6vw, 90px);
  margin-top: 22px;
  align-items: end;
}

.intro-grid p {
  margin: 0;
  font-size: 18px;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.value-card,
.mini-card,
.product-details,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.value-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.value-card span {
  margin-bottom: auto;
  color: var(--ruby);
  font-size: 13px;
  font-weight: 800;
}

.value-card p,
.mini-card p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(226, 25, 66, 0.22), transparent 34%),
    linear-gradient(135deg, #16070c, #3d0716 58%, #16070c);
  color: white;
}

.split p {
  color: rgba(255, 241, 237, 0.72);
}

.split .eyebrow {
  color: #ff98aa;
}

.split-copy h2 {
  margin-top: 12px;
}

.story-logo-panel {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 90, 126, 0.3), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(255, 196, 205, 0.16), transparent 22%),
    radial-gradient(circle at 86% 80%, rgba(255, 67, 108, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(78, 5, 21, 0.98), rgba(19, 6, 9, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.story-logo-panel::before {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.7;
}

.story-logo-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.story-logo {
  position: relative;
  z-index: 1;
  width: min(300px, 72%);
  padding: 18px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #790a22, #d51441);
  box-shadow:
    0 26px 70px rgba(213, 20, 65, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  animation: story-logo-float 4.8s ease-in-out infinite;
}

.story-berry {
  position: absolute;
  z-index: 1;
  width: 72px;
  height: auto;
  opacity: 0.86;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

.berry-one {
  top: 12%;
  left: 8%;
  width: 92px;
  transform: rotate(-18deg);
  animation: berry-float-one 7s ease-in-out infinite;
}

.berry-two {
  right: 4%;
  bottom: 8%;
  width: 180px;
  transform: rotate(16deg);
  animation: berry-float-two 8.4s ease-in-out infinite;
}

.berry-three {
  right: 18%;
  top: 12%;
  width: 54px;
  opacity: 0.62;
  transform: rotate(28deg);
  animation: berry-float-three 6.8s ease-in-out infinite;
}

.berry-four {
  left: -4%;
  bottom: 4%;
  width: 156px;
  opacity: 0.72;
  transform: rotate(-18deg);
  animation: berry-float-four 9.2s ease-in-out infinite;
}

.farm {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(178, 15, 49, 0.14), transparent 30%),
    linear-gradient(180deg, #f8e5df, #fff5f1);
}

.feature-image,
.product-image {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img,
.product-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-image:hover img,
.product-image:hover img {
  transform: scale(1.035);
}

.feature-list,
.sustainability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-list article,
.sustainability-list article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.products {
  background:
    radial-gradient(circle at 14% 18%, rgba(178, 15, 49, 0.1), transparent 32%),
    var(--paper);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.product-image img {
  aspect-ratio: 1.05;
}

.product-details {
  padding: clamp(28px, 5vw, 54px);
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

dl div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--ruby);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--muted);
}

.why {
  background:
    linear-gradient(180deg, #fff8f5, #f9e8e2);
}

.mini-card {
  min-height: 220px;
  padding: 26px;
}

.sustainability {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  background:
    radial-gradient(circle at 80% 18%, rgba(226, 25, 66, 0.2), transparent 32%),
    linear-gradient(135deg, #13080b, #4f0719 64%, #16080c);
  color: white;
}

.sustainability .eyebrow {
  color: #ff98aa;
}

.sustainability p {
  color: rgba(255, 241, 237, 0.72);
}

.sustainability-list article {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.cta {
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(55, 3, 17, 0.7), rgba(55, 3, 17, 0.78)),
    url("assets/strawberry-milk-splash-bg.jpg") center / cover;
}

.cta-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.cta .eyebrow {
  color: #ffb9c4;
}

.cta h2 {
  margin: 12px 0 28px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 80px);
  background:
    radial-gradient(circle at 12% 18%, rgba(178, 15, 49, 0.12), transparent 34%),
    linear-gradient(180deg, #fff5f1, #f8e2dc);
}

.contact-copy h2 {
  margin-top: 12px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 600;
}

.contact-lines a {
  color: var(--ruby);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(178, 15, 49, 0.42);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.contact-panel {
  padding: clamp(26px, 4vw, 44px);
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ruby);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 0;
  color: var(--ink);
  font: inherit;
  background: transparent;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--ruby);
}

.footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 48px 20px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: #0f0809;
}

.footer img {
  width: 138px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #790a22, #d51441);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  color: white;
  font-weight: 700;
}

.footer-meta {
  font-size: 13px;
}

.footer-meta a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.editorial-home {
  display: grid;
  gap: 10px;
  width: min(1240px, calc(100% - 28px));
  margin: 14px auto 34px;
  color: #211114;
}

.panel {
  overflow: hidden;
  border: 1px solid rgba(116, 32, 47, 0.1);
  border-radius: 4px;
  background: rgba(255, 249, 243, 0.94);
  box-shadow: 0 16px 44px rgba(89, 20, 34, 0.08);
}

.editorial-home h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.editorial-home h2 em {
  color: var(--ruby);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.editorial-home p {
  color: #5f4b4e;
}

.reason-strip {
  padding: 20px 28px 24px;
  text-align: center;
}

.strip-title {
  margin: 0 0 18px;
  color: var(--ruby);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.reason-grid article {
  min-height: 120px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 7px;
  padding: 0 18px;
  border-right: 1px solid rgba(116, 32, 47, 0.16);
}

.reason-grid article:last-child {
  border-right: 0;
}

.reason-grid svg {
  width: 34px;
  height: 34px;
  color: var(--ruby);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.reason-grid h3,
.farm-card-grid h3,
.journey h3,
.sustain-grid h3 {
  font-size: 14px;
  line-height: 1.15;
}

.reason-grid p,
.farm-card-grid p,
.journey p,
.sustain-grid p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
}

.story-feature {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.story-feature-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(28px, 5vw, 54px);
}

.story-feature .eyebrow,
.farm-board .eyebrow,
.strawberry-panel .eyebrow,
.sustainability-sheet .eyebrow,
.business-cta .eyebrow,
.contact .eyebrow {
  color: var(--ruby);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-feature h2 {
  max-width: 560px;
}

.story-feature .lead {
  color: #2d171b;
  font-weight: 800;
}

.story-feature strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ruby);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-feature > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.farm-board {
  padding: clamp(28px, 4vw, 48px);
}

.board-heading {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 24px;
}

.board-heading p:last-child {
  margin: 32px 0 0;
  font-size: 15px;
}

.farm-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.farm-card-grid article {
  position: relative;
  display: grid;
  gap: 10px;
}

.farm-card-grid img {
  width: 100%;
  aspect-ratio: 1.26;
  border-radius: 3px;
  object-fit: cover;
  background: #f4ddd6;
}

.farm-card-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: -28px;
  margin-left: 14px;
  color: white;
  border: 2px solid #fff6f0;
  border-radius: 50%;
  background: var(--ruby);
  font-size: 11px;
  font-weight: 900;
}

.journey {
  padding: 26px;
  color: white;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #6d071c, #950d27 58%, #6a071b);
}

.journey h2 {
  margin-bottom: 22px;
  color: white;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  text-align: center;
}

.journey-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 4px 8px;
}

.journey-grid span,
.sustain-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.journey-grid svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.journey-grid p,
.journey-grid h3 {
  color: rgba(255, 255, 255, 0.86);
}

.strawberry-panel {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
}

.strawberry-panel > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.strawberry-panel > div {
  padding: clamp(28px, 5vw, 54px);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.product-tags span {
  padding: 8px 11px;
  color: var(--ruby);
  border: 1px solid rgba(178, 15, 49, 0.18);
  border-radius: 999px;
  background: rgba(178, 15, 49, 0.05);
  font-size: 11px;
  font-weight: 900;
}

.sustainability-sheet {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  padding: clamp(28px, 4vw, 48px);
  background: #fbfaec;
}

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  text-align: center;
}

.sustain-grid article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 12px;
  border-left: 1px solid rgba(116, 32, 47, 0.13);
}

.sustain-grid span {
  color: #71833c;
}

.business-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.2fr;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.09), transparent 26%),
    linear-gradient(135deg, #650719, #980d28);
}

.business-cta h2,
.business-cta p,
.business-cta .eyebrow {
  color: white;
}

.business-cta h2 {
  font-size: clamp(30px, 3.8vw, 50px);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: center;
}

.business-grid span {
  min-height: 72px;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.business-grid svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  opacity: 0.9;
}

.editorial-home .contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 249, 243, 0.96);
}

.editorial-home .contact h2 {
  font-size: clamp(30px, 3.6vw, 50px);
}

@media (max-width: 1020px) {
  .reason-grid,
  .farm-card-grid,
  .sustain-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .story-feature,
  .strawberry-panel,
  .sustainability-sheet,
  .business-cta,
  .editorial-home .contact {
    grid-template-columns: 1fr;
  }

  .board-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .board-heading p:last-child {
    margin-top: 0;
  }

  .business-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .editorial-home {
    width: min(100% - 18px, 520px);
    margin-top: 9px;
  }

  .reason-grid,
  .farm-card-grid,
  .journey-grid,
  .sustain-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid article,
  .sustain-grid article {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(116, 32, 47, 0.13);
    padding: 18px 8px;
  }

  .reason-grid article:last-child,
  .sustain-grid article:last-child {
    border-bottom: 0;
  }

  .story-feature-copy,
  .farm-board,
  .strawberry-panel > div,
  .sustainability-sheet,
  .business-cta,
  .editorial-home .contact {
    padding: 24px;
  }

  .story-feature > img,
  .strawberry-panel > img {
    min-height: 250px;
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: fade-up 720ms ease both;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(1.2%, -0.8%, 0);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 42px rgba(79, 4, 20, 0.24);
  }

  50% {
    transform: translateY(-2px) scale(1.025);
    box-shadow: 0 22px 56px rgba(213, 20, 65, 0.34);
  }
}

@keyframes logo-shine {
  0%,
  58% {
    transform: translateX(-74%) rotate(8deg);
  }

  78%,
  100% {
    transform: translateX(74%) rotate(8deg);
  }
}

@keyframes story-logo-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes berry-float-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    transform: translate3d(10px, -16px, 0) rotate(-8deg);
  }
}

@keyframes berry-float-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(16deg);
  }

  50% {
    transform: translate3d(-12px, -18px, 0) rotate(6deg);
  }
}

@keyframes berry-float-three {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(28deg);
  }

  50% {
    transform: translate3d(-8px, 12px, 0) rotate(40deg);
  }
}

@keyframes berry-float-four {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    transform: translate3d(14px, -14px, 0) rotate(-10deg);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  body.menu-open .site-header {
    background: #fff5f1;
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px auto;
    z-index: 30;
    display: grid;
    gap: 0;
    padding: 18px;
    color: var(--ink);
    border-radius: 8px;
    border: 1px solid rgba(91, 7, 25, 0.18);
    background: #fff5f1;
    box-shadow: 0 28px 90px rgba(35, 4, 12, 0.28);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: none;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    background: #fff5f1;
  }

  .site-header.is-scrolled .site-nav,
  body.menu-open .site-nav {
    background: #fff5f1;
    backdrop-filter: none;
  }

  .site-nav a {
    padding: 17px 8px;
    border-radius: 0;
    border-bottom: 1px solid rgba(91, 7, 25, 0.14);
    color: #170c0e;
  }

  .site-nav a:hover {
    background: rgba(178, 15, 49, 0.08);
    transform: none;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .split,
  .farm,
  .product-showcase,
  .sustainability,
  .contact {
    grid-template-columns: 1fr;
  }

  .story-logo-panel {
    min-height: 320px;
  }

  .card-grid.three,
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-image img {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px;
  }

  .brand {
    width: 128px;
  }

  .hero {
    min-height: 92svh;
    padding: 112px 18px 46px;
  }

  h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .section-padding {
    padding: 72px 18px;
  }

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

  .card-grid.three,
  .card-grid.four,
  .feature-list,
  .sustainability-list {
    grid-template-columns: 1fr;
  }

  .value-card,
  .mini-card {
    min-height: auto;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .map iframe {
    height: 300px;
  }
}
