:root {
  --brand: #0d743c;
  --brand-deep: #073f25;
  --brand-soft: #dfeee5;
  --ink: #123b27;
  --leaf: #0d743c;
  --cream: #f3f6ef;
  --paper: #fffef9;
  --citrus: #e0a126;
  --line: rgba(13, 116, 60, 0.2);
  --muted: #52695c;
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.site-header.light-page {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 24px rgba(5, 52, 29, 0.1);
}
.brand-logo {
  display: block;
  width: auto;
  height: 46px;
}
.light-page .brand {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
nav > a:not(.nav-cta) {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
nav > a.active {
  border-color: var(--citrus);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 20px;
  border-left: 1px solid currentColor;
  line-height: 1;
}
.language-switcher a {
  padding: 7px 3px;
  opacity: 0.55;
}
.language-switcher a:hover,
.language-switcher a.active {
  opacity: 1;
  color: var(--citrus);
}
.nav-cta {
  padding: 11px 15px;
  border: 1px solid currentColor;
}
.nav-cta:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.nav-cta span {
  margin-left: 8px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font: 700 12px var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero {
  height: calc(100svh - 95px);
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--brand-deep);
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 70px clamp(24px, 8vw, 135px) 110px;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 48, 26, 0.5), rgba(4, 48, 26, 0.08));
  pointer-events: none;
}
.slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  color: #fff;
  text-shadow: 0 3px 24px rgba(3, 31, 17, 0.35);
}
.hero-title {
  font-size: clamp(48px, 6.1vw, 95px);
}
.hero-content .button {
  margin-top: 34px;
  text-shadow: none;
}
.slide-people {
  justify-items: end;
  text-align: right;
}
.slide-people::after {
  background: linear-gradient(90deg, rgba(4, 48, 26, 0.04), rgba(4, 48, 26, 0.5));
}
.slide-people .hero-content {
  max-width: 720px;
}
.slide-field {
  justify-items: start;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 11px;
}
.eyebrow.accent {
  color: var(--brand);
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0;
}
h1 {
  font-size: clamp(48px, 6.1vw, 95px);
}
h2 {
  font-size: clamp(38px, 4.5vw, 67px);
}
h3 {
  font-size: 29px;
}
.hero-content > p:not(.eyebrow) {
  max-width: 490px;
  margin: 26px 0 34px;
  font-size: 18px;
}
.button {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  min-width: 185px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.2s;
}
.button span,
.text-link span {
  font-size: 20px;
  line-height: 0;
}
.button-light {
  background: #fff;
  color: var(--brand-deep);
}
.button-light:hover {
  background: var(--citrus);
  color: var(--brand-deep);
}
.button-dark {
  background: var(--brand);
  color: #fff;
}
.button-dark:hover {
  background: var(--brand-deep);
}
.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--brand-deep);
}
.button-outline:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.slider-controls {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  right: clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.slider-controls button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 22px;
  cursor: pointer;
}
.slider-controls span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.slider-controls i {
  display: block;
  width: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.slider-controls em {
  font-style: normal;
  opacity: 0.6;
}
.section {
  padding: clamp(75px, 10vw, 150px) clamp(24px, 10vw, 170px);
}
.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(55px, 9vw, 145px);
  background: var(--cream);
}
.home-intro-copy .lead {
  margin-top: 34px;
  font: 400 18px/1.75 var(--body);
  color: var(--muted);
}
.home-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--brand-soft);
}
.home-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(13, 116, 60, 0.16);
  pointer-events: none;
}
.home-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.home-photo:hover img {
  transform: scale(1.025);
}
.home-photo-tall {
  aspect-ratio: 4 / 5;
  box-shadow: 28px 28px 0 var(--brand-soft);
}
.home-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding: 7px 10px;
  background: rgba(255, 254, 249, 0.9);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-journey {
  background: var(--paper);
}
.home-section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 25px 70px;
  align-items: end;
  max-width: 1050px;
  margin-bottom: clamp(70px, 9vw, 130px);
}
.home-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.home-section-heading > p:last-child {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
}
.home-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
}
.home-image-card-raised {
  transform: translateY(-35px);
}
.home-image-card .home-photo {
  aspect-ratio: 4 / 5;
  margin-bottom: 26px;
}
.home-image-card span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.home-image-card h3 {
  margin: 9px 0 10px;
}
.home-image-card p {
  margin: 0;
  color: var(--muted);
}
.home-products {
  background: var(--cream);
}
.home-products-heading {
  max-width: 850px;
  margin-bottom: clamp(52px, 7vw, 95px);
}
.home-products-heading h2 {
  max-width: 760px;
}
.home-product-list {
  display: grid;
  gap: clamp(36px, 5vw, 76px);
}
.home-product {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.75fr);
  min-height: 490px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(7, 63, 37, 0.07);
}
.home-product-reverse {
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.45fr);
}
.home-product-reverse .home-product-photo {
  grid-column: 2;
}
.home-product-reverse .home-product-copy {
  grid-column: 1;
  grid-row: 1;
}
.home-product-photo {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  margin: 0;
  background: var(--brand-soft);
}
.home-product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(13, 116, 60, 0.13);
  pointer-events: none;
}
.home-product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.home-product:hover .home-product-photo img {
  transform: scale(1.02);
}
.home-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 76px);
}
.home-product-number {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.home-product-number::after {
  content: "";
  width: 42px;
  border-top: 1px solid var(--citrus);
}
.home-product-copy h3 {
  margin: 22px 0 18px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
}
.home-product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.home-statement {
  position: relative;
  overflow: hidden;
  background: var(--brand-deep);
  color: #fff;
}
.home-statement::after {
  content: "B";
  position: absolute;
  right: -0.04em;
  bottom: -0.4em;
  color: rgba(255, 255, 255, 0.035);
  font: 700 clamp(280px, 42vw, 650px)/1 var(--display);
}
.home-statement > * {
  position: relative;
  z-index: 1;
}
.home-statement blockquote {
  max-width: 1050px;
  margin: 0 0 45px;
  font: 500 clamp(36px, 5vw, 72px)/1.15 var(--display);
  letter-spacing: -0.04em;
}
.text-link-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--cream);
}
.lead {
  font: 500 clamp(21px, 2.15vw, 30px) / 1.4 var(--display);
  margin: 3px 0 35px;
}
.text-link {
  border-bottom: 1px solid var(--brand);
  padding-bottom: 7px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.text-link span {
  padding-left: 12px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 10vw, 170px);
  background: var(--cream);
}
.values article {
  padding: 32px 26px 55px 0;
  border-top: 1px solid var(--line);
  margin-right: 28px;
}
.values span {
  font: 700 12px var(--body);
  color: var(--brand);
}
.values h3 {
  margin: 28px 0 10px;
}
.values p {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
}
.cta-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  background: var(--brand);
  color: #fff;
}
.cta-panel .accent {
  color: #dcefe3;
}
footer {
  padding: 55px clamp(24px, 5vw, 76px) 30px;
  background: var(--brand-deep);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
footer .brand {
  justify-self: start;
}
footer p {
  margin: 0;
  color: #c7d8cc;
}
footer .footer-nav {
  display: flex;
  gap: 22px;
  justify-content: end;
  font-size: 13px;
  font-weight: 700;
}
.footer-company {
  display: grid;
  gap: 2px;
  color: #c7d8cc;
  font-size: 13px;
  line-height: 1.55;
}
.footer-company p {
  margin: 0 0 3px;
  color: #fff;
  font-weight: 700;
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 22px;
  color: #a9c1b0;
  font-size: 11px;
}
footer small a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-page {
  padding: clamp(70px, 9vw, 125px) clamp(24px, 16vw, 260px);
  background: var(--cream);
}
.privacy-page header {
  max-width: 820px;
  margin-bottom: 55px;
}
.privacy-page article {
  max-width: 820px;
}
.privacy-page h1 {
  margin: 14px 0 22px;
  font: 600 clamp(46px, 7vw, 82px)/1 var(--display);
}
.privacy-page h2 {
  margin: 42px 0 12px;
  font: 600 clamp(27px, 3vw, 38px)/1.15 var(--display);
}
.privacy-page p,
.privacy-page li {
  color: var(--muted);
}
.privacy-page a {
  color: var(--brand);
  text-decoration: underline;
}
.page-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: clamp(85px, 11vw, 155px) clamp(24px, 10vw, 170px);
  background: var(--cream);
}
.page-hero > p {
  align-self: end;
  max-width: 410px;
  font-size: 19px;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
}
.story p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}
.image-card {
  min-height: 510px;
  background: var(--brand-deep) url("../img/hero-agrumi.svg") center/cover;
}
.manifesto {
  padding: clamp(75px, 10vw, 130px) max(24px, 20vw);
  background: var(--leaf);
  color: #fff;
  text-align: center;
}
.manifesto .eyebrow {
  color: #dcefe3;
}
.manifesto blockquote {
  margin: 0;
  font: 500 clamp(29px, 4vw, 57px) / 1.15 var(--display);
  letter-spacing: -0.04em;
}
.values-wide {
  background: var(--paper);
  padding-top: 80px;
  padding-bottom: 80px;
}
.company-hero {
  position: relative;
  overflow: hidden;
}
.company-hero::after {
  content: "BIO";
  position: absolute;
  right: -0.04em;
  bottom: -0.27em;
  color: rgba(13, 116, 60, 0.055);
  font: 700 clamp(150px, 24vw, 370px)/1 var(--display);
  pointer-events: none;
}
.company-hero > * {
  position: relative;
  z-index: 1;
}
.company-opening,
.company-story,
.fruit-quality {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(48px, 8vw, 125px);
  align-items: center;
}
.company-story {
  grid-template-columns: minmax(380px, 1fr) minmax(280px, 0.92fr);
}
.photo-placeholder {
  margin: 0;
  overflow: hidden;
  background: var(--brand-soft);
}
.photo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder-tall {
  aspect-ratio: 9 / 11;
}
.photo-placeholder-wide,
.photo-placeholder-fruit {
  aspect-ratio: 11 / 9;
}
.company-opening-copy > p:not(.eyebrow),
.company-story-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 22px 0 0;
}
.company-lead {
  font: 500 clamp(19px, 1.7vw, 25px)/1.5 var(--display);
}
.bio-facts {
  display: grid;
  margin-top: 42px;
  border-bottom: 1px solid var(--line);
}
.bio-facts article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.bio-facts span,
.goals-list > article > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}
.bio-facts p {
  margin: 0;
}
.bio-banner {
  padding: clamp(55px, 7vw, 95px) clamp(24px, 10vw, 170px);
  background: var(--brand-deep);
  color: #fff;
}
.bio-banner .eyebrow {
  color: #bcd7c5;
}
.bio-banner-content {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.bio-banner strong {
  font: 600 clamp(52px, 7vw, 105px)/0.95 var(--display);
  letter-spacing: -0.055em;
}
.bio-banner-content p {
  max-width: 600px;
  margin: 0;
  color: #dce9df;
  font-size: clamp(18px, 1.75vw, 25px);
}
.story-dates {
  display: flex;
  gap: clamp(30px, 5vw, 75px);
  padding-top: 38px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}
.story-dates > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-dates strong {
  color: var(--brand);
  font: 600 clamp(38px, 4vw, 58px)/1 var(--display);
}
.story-dates span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.values-manifesto blockquote {
  max-width: 1000px;
  margin-inline: auto;
}
.fruit-quality {
  background: var(--cream);
}
.fruit-quality blockquote {
  margin: 28px 0 38px;
  color: var(--muted);
  font: 500 clamp(19px, 1.7vw, 25px)/1.5 var(--display);
}
.certification-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.certification-note > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}
.certification-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.goals-section {
  padding: clamp(75px, 10vw, 145px) clamp(24px, 10vw, 170px);
}
.goals-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.goals-heading h2 {
  grid-column: 2;
}
.goals-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.goals-list article {
  padding: 35px clamp(22px, 3vw, 45px) 20px 0;
}
.goals-list article + article {
  padding-left: clamp(22px, 3vw, 45px);
  border-left: 1px solid var(--line);
}
.goals-list h3 {
  margin: 30px 0 16px;
}
.goals-list p {
  margin: 0;
  color: var(--muted);
}
.company-cta {
  background: var(--brand);
}
.company-cta .button-light {
  flex: 0 0 auto;
}
.contact-hero {
  padding: clamp(80px, 10vw, 135px) clamp(24px, 10vw, 170px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(224, 161, 38, 0.22), transparent 26%),
    linear-gradient(125deg, var(--brand-deep), var(--brand));
}
.contact-hero .eyebrow {
  color: #dcefe3;
}
.contact-hero h1 {
  max-width: 900px;
}
.contact-hero > p:last-child {
  max-width: 570px;
  margin: 28px 0 0;
  color: #e0eee5;
  font-size: 18px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(50px, 8vw, 125px);
  align-items: start;
  padding: clamp(75px, 9vw, 125px) clamp(24px, 10vw, 170px);
  background: var(--cream);
}
.contact-copy > p:not(.eyebrow) {
  font-size: 17px;
  max-width: 390px;
  margin: 24px 0 42px;
  color: var(--muted);
}
.contact-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}
.contact-list {
  display: grid;
  border-bottom: 1px solid var(--line);
}
.contact-detail {
  border-top: 1px solid var(--line);
  padding: 17px 0 18px;
  display: grid;
  gap: 3px;
}
.contact-detail span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
}
.contact-detail a {
  font: 600 18px var(--display);
  color: var(--brand);
}
.contact-detail strong,
.contact-detail address {
  font: 600 17px/1.45 var(--display);
}
.contact-detail address {
  font-style: normal;
}
.contact-detail small {
  color: var(--muted);
  font-size: 13px;
}
.form-card {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  background: var(--paper);
  border-top: 5px solid var(--brand);
  box-shadow: 0 24px 70px rgba(7, 63, 37, 0.1);
}
.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.form-heading .eyebrow {
  margin-bottom: 8px;
}
.form-heading h3 {
  font-size: clamp(27px, 2.3vw, 36px);
}
.form-heading > small {
  max-width: 180px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
form {
  display: grid;
  gap: 27px;
}
label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
label small {
  font-weight: 400;
  color: var(--muted);
}
input,
textarea,
select {
  appearance: none;
  width: 100%;
  border: 1px solid rgba(13, 116, 60, 0.22);
  border-radius: 3px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font: 16px var(--body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
select {
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, var(--brand) 50%), linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
input::placeholder,
textarea::placeholder {
  color: #8b9b91;
}
textarea {
  resize: vertical;
  min-height: 145px;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 116, 60, 0.1);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 12px;
  font-weight: 400;
}
.check input {
  appearance: auto;
  width: 17px;
  height: 17px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--brand);
  box-shadow: none;
  flex: 0 0 auto;
}
.check a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.turnstile-wrap {
  min-height: 65px;
}
.cf-turnstile {
  max-width: 100%;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-actions small {
  max-width: 220px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.trap {
  position: absolute;
  left: -10000px;
}
.form-notice {
  padding: 12px 15px;
  font-size: 14px;
  background: #d6eadc;
  color: #174f2d;
}
.form-notice.error {
  background: #f8dfd6;
  color: #8a361c;
}
.thank-you-page {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, calc(100svh - 96px), 900px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 125px) 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(224, 161, 38, 0.17), transparent 26%),
    radial-gradient(circle at 88% 76%, rgba(13, 116, 60, 0.13), transparent 30%),
    var(--cream);
}
.thank-you-page::before,
.thank-you-page::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(180px, 24vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(13, 116, 60, 0.13);
  border-radius: 55% 45% 63% 37% / 40% 58% 42% 60%;
  transform: rotate(24deg);
}
.thank-you-page::before {
  top: -12%;
  left: -8%;
}
.thank-you-page::after {
  right: -7%;
  bottom: -14%;
  transform: rotate(-32deg);
}
.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(38px, 6vw, 76px);
  text-align: center;
  background: rgba(255, 254, 249, 0.96);
  border-top: 5px solid var(--brand);
  box-shadow: 0 28px 90px rgba(7, 63, 37, 0.12);
}
.thank-you-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 34px;
  font-weight: 700;
}
.thank-you-card .eyebrow {
  color: var(--brand);
}
.thank-you-card h1 {
  max-width: 620px;
  margin: 0 auto 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}
.thank-you-card > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
}
.thank-you-note {
  max-width: 520px;
  margin: 32px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
}
.thank-you-actions {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.b2b-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  background: var(--brand-deep);
  color: #fff;
}
.b2b-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(75px, 9vw, 135px) clamp(24px, 8vw, 135px);
  background:
    radial-gradient(circle at 12% 12%, rgba(224, 161, 38, 0.17), transparent 27%),
    var(--brand-deep);
}
.b2b-hero-copy .eyebrow {
  color: #bdd6c5;
}
.b2b-hero-copy h1 {
  font-size: clamp(48px, 5.6vw, 86px);
}
.b2b-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 29px 0 35px;
  color: #dce9df;
  font-size: 18px;
}
.b2b-hero-copy .button {
  min-width: 270px;
}
.b2b-hero-photo {
  min-height: 100%;
}
.b2b-hero-photo img {
  min-height: 100%;
}
.b2b-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(390px, 1.15fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
  background: var(--cream);
}
.b2b-intro-copy .lead {
  margin-top: 2px;
}
.b2b-intro-copy > p:not(.lead) {
  margin: 22px 0 0;
  color: var(--muted);
}
.b2b-audience {
  background: var(--paper);
}
.b2b-section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 45px;
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 95px);
}
.b2b-section-heading .eyebrow {
  margin: 0 0 7px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.audience-grid article {
  padding: 30px clamp(20px, 2.4vw, 38px) 24px 0;
}
.audience-grid article + article {
  padding-left: clamp(20px, 2.4vw, 38px);
  border-left: 1px solid var(--line);
}
.audience-grid span,
.benefits-list span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.audience-grid h3 {
  margin: 26px 0 14px;
  font-size: clamp(25px, 2vw, 31px);
}
.audience-grid p {
  margin: 0;
  color: var(--muted);
}
.b2b-benefits {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(410px, 1.1fr);
  gap: clamp(50px, 8vw, 125px);
  align-items: center;
  background: var(--brand);
  color: #fff;
}
.b2b-benefits > div > .eyebrow {
  color: #cce3d3;
}
.b2b-benefits-photo {
  min-height: 650px;
  box-shadow: 26px 26px 0 rgba(7, 63, 37, 0.42);
}
.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}
.benefits-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.benefits-list span {
  color: #f1c66e;
  padding-top: 3px;
}
.benefits-list h3 {
  margin: 0 0 5px;
  font: 600 17px/1.3 var(--body);
  letter-spacing: 0;
}
.benefits-list p {
  margin: 0;
  color: #dbeadf;
  font-size: 13px;
}
.b2b-process {
  background: var(--brand-deep);
  color: #fff;
}
.b2b-process .b2b-section-heading .eyebrow {
  color: #bcd7c5;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}
.process-grid article {
  padding: 32px clamp(20px, 2.6vw, 42px) 20px 0;
}
.process-grid article + article {
  padding-left: clamp(20px, 2.6vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.process-grid strong {
  color: #f1c66e;
  font-size: 12px;
  letter-spacing: 0.13em;
}
.process-grid h3 {
  margin: 27px 0 14px;
  font-size: clamp(24px, 2vw, 30px);
}
.process-grid p {
  margin: 0;
  color: #c8d9ce;
}
.b2b-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(560px, 1.3fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
  padding: clamp(75px, 9vw, 130px) clamp(24px, 8vw, 145px);
  background: var(--cream);
}
.b2b-form-intro {
  position: sticky;
  top: 40px;
}
.b2b-form-intro > p:not(.eyebrow) {
  margin: 26px 0 35px;
  color: var(--muted);
  font-size: 17px;
}
.b2b-form-points {
  display: grid;
  border-bottom: 1px solid var(--line);
}
.b2b-form-points span {
  position: relative;
  padding: 13px 0 13px 26px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.b2b-form-points span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
}
.b2b-form-card {
  border-top-color: var(--citrus);
}
.b2b-thank-you-page {
  background:
    radial-gradient(circle at 15% 15%, rgba(224, 161, 38, 0.2), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(13, 116, 60, 0.15), transparent 32%),
    var(--cream);
}
@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px;
  }
  .brand {
    padding: 6px 9px;
  }
  .brand-logo {
    height: 38px;
  }
  .light-page .brand {
    padding: 0;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .menu-toggle i {
    width: 17px;
    height: 10px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--brand-deep);
    color: #fff;
    flex-direction: column;
  }
  nav.open {
    display: flex;
  }
  .light-page nav {
    background: var(--brand-deep);
    color: #fff;
  }
  nav > a:not(.nav-cta) {
    padding: 13px 0;
  }
  .language-switcher {
    margin-top: 12px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }
  .hero {
    height: calc(100svh - 74px);
    min-height: 540px;
  }
  .slide {
    padding: 70px 24px 100px;
    align-content: end;
  }
  .slide-people {
    justify-items: start;
    text-align: left;
  }
  .slide-people .slide-image {
    object-position: 42% center;
  }
  .slide-people::after {
    background: linear-gradient(0deg, rgba(4, 48, 26, 0.72), rgba(4, 48, 26, 0.02) 65%);
  }
  .slide-field {
    justify-items: start;
  }
  .slide-field .slide-image {
    object-position: 64% center;
  }
  .slide-field::after {
    background: linear-gradient(0deg, rgba(4, 48, 26, 0.72), rgba(4, 48, 26, 0.02) 65%);
  }
  .hero h1,
  .hero h2 {
    font-size: clamp(43px, 13vw, 64px);
  }
  .hero-content .button {
    margin-top: 25px;
  }
  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }
  .slider-controls {
    bottom: 28px;
    right: 24px;
  }
  .section {
    padding: 72px 24px;
  }
  .intro,
  .home-intro,
  .story,
  .contact-layout,
  .page-hero,
  .company-opening,
  .company-story,
  .fruit-quality,
  .bio-banner-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .home-intro {
    padding-bottom: 92px;
  }
  .home-photo-tall {
    aspect-ratio: 4 / 3;
    box-shadow: 14px 14px 0 var(--brand-soft);
  }
  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 55px;
  }
  .home-section-heading .eyebrow {
    grid-column: auto;
  }
  .home-image-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .home-image-card-raised {
    transform: none;
  }
  .home-image-card .home-photo {
    aspect-ratio: 4 / 3;
  }
  .home-products-heading {
    margin-bottom: 45px;
  }
  .home-product,
  .home-product-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-product-reverse .home-product-photo,
  .home-product-reverse .home-product-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .home-product-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .home-product-copy {
    padding: 34px 26px 40px;
  }
  .home-product-copy h3 {
    margin: 17px 0 13px;
  }
  .home-product-copy p {
    font-size: 16px;
  }
  .home-statement blockquote {
    margin-bottom: 35px;
  }
  .values {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .values article {
    margin: 0;
    padding: 28px 0;
  }
  .cta-panel {
    align-items: start;
    gap: 35px;
    flex-direction: column;
  }
  .page-hero {
    padding-top: 80px;
  }
  .page-hero > p {
    margin: 0;
  }
  .story .image-card {
    min-height: 340px;
    order: 2;
  }
  .manifesto {
    padding: 75px 24px;
  }
  .company-opening .photo-placeholder {
    order: 2;
  }
  .photo-placeholder-tall {
    aspect-ratio: 4 / 3;
  }
  .company-story-copy {
    order: 1;
  }
  .company-story .photo-placeholder {
    order: 2;
  }
  .bio-banner strong {
    font-size: 58px;
  }
  .story-dates {
    flex-direction: column;
    gap: 24px;
  }
  .goals-heading {
    display: block;
  }
  .goals-heading .eyebrow {
    margin-bottom: 18px;
  }
  .goals-list {
    grid-template-columns: 1fr;
  }
  .goals-list article,
  .goals-list article + article {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .goals-list h3 {
    margin-top: 18px;
  }
  .contact-hero {
    padding-top: 70px;
    padding-bottom: 75px;
  }
  .contact-layout {
    padding-top: 75px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 48px 24px 26px;
  }
  footer .footer-nav {
    justify-content: start;
    flex-wrap: wrap;
  }
  footer small {
    margin-top: 16px;
  }
  .form-card {
    padding: 25px 20px;
  }
  .form-heading,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-heading > small,
  .form-actions small {
    max-width: none;
  }
  .thank-you-page {
    min-height: auto;
    padding: 52px 20px;
  }
  .thank-you-card {
    padding: 38px 22px;
  }
  .thank-you-mark {
    width: 64px;
    height: 64px;
  }
  .thank-you-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .b2b-hero,
  .b2b-intro,
  .b2b-benefits,
  .b2b-form-section {
    grid-template-columns: 1fr;
  }
  .b2b-hero {
    min-height: 0;
  }
  .b2b-hero-copy {
    min-height: 580px;
    padding: 72px 24px;
  }
  .b2b-hero-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }
  .b2b-hero-copy .button {
    min-width: 0;
    width: 100%;
  }
  .b2b-hero-photo {
    min-height: 360px;
  }
  .b2b-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 48px;
  }
  .audience-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid article,
  .audience-grid article + article,
  .process-grid article,
  .process-grid article + article {
    padding: 27px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-grid article,
  .process-grid article + article {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .audience-grid h3,
  .process-grid h3 {
    margin-top: 17px;
  }
  .b2b-benefits-photo {
    min-height: 360px;
    box-shadow: 14px 14px 0 rgba(7, 63, 37, 0.42);
    order: 2;
  }
  .benefits-list {
    grid-template-columns: 1fr;
  }
  .b2b-form-section {
    padding: 72px 24px;
  }
  .b2b-form-intro {
    position: static;
  }
}
