@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/fraunces-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/fraunces-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/fraunces-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: italic; font-weight: 500; font-display: swap; src: url("assets/fonts/fraunces-latin-500-italic.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: italic; font-weight: 600; font-display: swap; src: url("assets/fonts/fraunces-latin-600-italic.woff2") format("woff2"); }
@font-face { font-family: "Work Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/work-sans-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Work Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/work-sans-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Work Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/work-sans-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Work Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/work-sans-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Work Sans"; font-style: normal; font-weight: 800; font-display: swap; src: url("assets/fonts/work-sans-latin-800-normal.woff2") format("woff2"); }

:root {
  --cream: #EAEADC;
  --olive: #657F54;
  --sage: #B8C48C;
  --magenta: #B10D52;
  --paper: #FDFCF7;
  --display: "Fraunces", Georgia, serif;
  --body: "Work Sans", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--olive);
  font: 400 1rem/1.65 var(--body);
}
img { display: block; max-width: 100%; }
figure, h1, h2, h3, p { margin: 0; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 4px;
}
h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -.045em;
  line-height: 1.08;
}
h2 { font-size: clamp(2.8rem, 4.8vw, 5rem); }
h2 em { color: var(--magenta); font-weight: 500; }
p { max-width: 66ch; }
.page {
  width: 100%;
  min-height: 100vh;
  background: var(--cream);
  overflow: hidden;
}
.wrap { width: min(calc(100% - 64px), 1240px); margin-inline: auto; }
section, header { scroll-margin-top: 20px; }
.section { padding: clamp(90px, 9vw, 140px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--magenta);
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: currentColor;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  min-height: 48px;
  padding: .88rem 1.5rem;
  border-radius: 100px;
  font-size: .91rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px #B10D522B; }
.btn-magenta { background: var(--magenta); color: var(--paper); }
.btn-paper { background: var(--paper); color: var(--magenta); }
.btn-paper:hover { background: var(--cream); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  height: 100svh;
  min-height: 690px;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  color: var(--paper);
  background: var(--olive);
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: hero-image 1.3s ease-out both;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,
    #244A35E8 0%,
    #2F533DCC 30%,
    #365D438F 53%,
    #3D614252 72%,
    #365B3126 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: calc(100% - 90px);
}
.nav {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 48px), 800px);
  min-height: 70px;
  margin: 20px auto 0;
  border: 1px solid #FFFFFF55;
  border-radius: 999px;
  background: var(--magenta);
  color: var(--paper);
  box-shadow: 0 16px 35px #17332250;
}
.nav-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: .5rem;
  width: 100%;
  min-height: 68px;
  margin-inline: auto;
  padding-inline: 16px;
}
.brand {
  display: block;
  width: 135px;
  justify-self: center;
}
.brand img { width: 100%; height: auto; }
.nav-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: 100%;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 0;
  padding: .5rem .2rem;
  color: var(--sage);
  font-size: clamp(.96rem, 1.12vw, 1.06rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a + a::before { content: ""; position: absolute; left: 0; top: 27%; width: 1px; height: 46%; background: var(--paper); opacity: .55; }
.nav-links a span { display: inline-block; transition: color .25s ease, transform .25s ease; }
.nav-links a:hover span, .nav-links a:focus span, .nav-links a:active span { color: var(--paper); transform: translateY(-2px) scale(1.04); }
.nav-links a:focus-visible, .mobile-menu summary:focus-visible, .mobile-links a:focus-visible { outline-color: var(--paper); }
.mobile-menu { display: none; }
.hero-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  padding: 0 0 130px;
}
.hero-eyebrow { color: var(--paper); animation: fade-up .7s .05s both; }
.hero-eyebrow::before { background: var(--paper); }
.hero h1 {
  margin: .7rem 0 .55rem;
  font-size: clamp(3.8rem, 5.3vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -.06em;
  text-wrap: balance;
  animation: fade-up .85s .15s both;
}
.hero h1 em {
  font-weight: 500;
  color: var(--cream);
}
.hero-slogan {
  margin-bottom: .75rem;
  color: #B8C48C;
  font: italic 500 clamp(1.45rem, 2.3vw, 2.05rem)/1.25 var(--display);
  letter-spacing: -.02em;
  animation: fade-up .85s .24s both;
}
.hero-description {
  max-width: 555px;
  margin-bottom: 1rem;
  color: var(--paper);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.7;
  animation: fade-up .85s .28s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fade-up .85s .4s both;
}
.text-link { font-size: .88rem; font-weight: 700; text-underline-offset: 6px; }
.text-link span { padding-left: .3rem; }
.hero-location {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.25rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  animation: fade-up .85s .52s both;
}
.hero-location .line { width: 28px; height: 1px; background: currentColor; }
.quickbar {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  width: min(calc(100% - 48px), 800px);
  min-height: 98px;
  margin: 0 auto;
  padding: 18px 22px;
  border: 1px solid #FFFFFFA6;
  border-radius: 999px;
  background: #FDFCF799;
  color: #254A35;
  box-shadow: 0 14px 34px #17332245;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.quickbar-mark {
  display: grid;
  flex: none;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--paper);
  font-size: 1.65rem;
}
.quickbar strong {
  display: block;
  font: 600 1.3rem/1.2 var(--display);
  letter-spacing: -.03em;
}
.quickbar p { margin-top: .35rem; font-size: .84rem; }
.quickbar .btn { margin-left: auto; flex: none; }

/* A fruta */
.fruit { background: var(--cream); }
.fruit-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}
.fruit-visual { position: relative; min-height: 570px; }
.fruit-main {
  position: absolute;
  inset: 0 12% 35px 0;
  overflow: hidden;
  border-radius: 245px 245px 24px 24px;
  background: var(--sage);
  box-shadow: 0 22px 46px #657F5428;
}
.fruit-main img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.fruit-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 260px;
  overflow: hidden;
  border: 6px solid var(--cream);
  border-radius: 130px 130px 18px 18px;
  background: var(--paper);
  box-shadow: 0 15px 32px #657F5438;
  transform: rotate(4deg);
}
.fruit-detail img { width: 100%; height: 100%; object-fit: cover; }
.fruit-stamp {
  position: absolute;
  top: 36px;
  left: -32px;
  display: grid;
  width: 122px;
  height: 122px;
  place-content: center;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--magenta);
  color: var(--paper);
  font: 600 .86rem/1.2 var(--display);
  text-align: center;
  transform: rotate(-9deg);
}
.fruit-stamp span { margin-top: .35rem; font-family: var(--body); }
.fruit-copy .eyebrow { margin-bottom: 1.4rem; }
.fruit-copy h2 { max-width: 610px; margin-bottom: 1.5rem; }
.fruit-copy > p { max-width: 510px; font-size: 1.08rem; }
.fruit-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 440px;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--magenta);
}
.fruit-signature span { color: var(--magenta); font-size: 1.6rem; line-height: 1; }
.fruit-signature p { font-size: .86rem; font-weight: 600; }

/* Bem-estar */
.benefits {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #FFFFFF30;
  border-radius: 42px;
  background: #192F25D9;
  color: var(--paper);
  box-shadow: 0 24px 58px #1B35252B;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.benefits::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -38%;
  right: -4%;
  width: min(68%, 1000px);
  height: 100%;
  background: url("assets/cacto-plantacao.webp") center 68% / cover no-repeat;
  filter: blur(24px) saturate(.9) brightness(.72);
  opacity: .62;
  transform: scale(1.06);
  pointer-events: none;
}
.benefits > .wrap { position: relative; z-index: 1; }
.benefits-heading h2 em { color: var(--magenta); }
.benefits-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}
.benefits-heading .eyebrow { margin-bottom: 1.25rem; }
.benefits-heading h2 { max-width: 690px; }
.benefits-heading > p { max-width: 330px; padding-bottom: .4rem; font-size: 1rem; }
.benefits-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 18px;
}
.benefit-choice {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.benefit-rail { min-width: 0; }
.benefit-tabs { display: grid; grid-template-rows: repeat(4, 1fr); gap: 12px; min-height: 530px; }
.benefit-rail-controls { display: none; }
.benefit-tab {
  position: relative;
  display: flex;
  align-items: end;
  min-width: 0;
  overflow: hidden;
  padding: 14px 18px;
  border: 1px solid var(--magenta);
  border-radius: 18px;
  background: var(--olive);
  cursor: pointer;
  transition: translate .3s ease, box-shadow .3s ease;
}
.benefit-tab img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.benefit-tab::after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(180deg, transparent, #173322CF);
  pointer-events: none;
}
.benefit-tab::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--magenta);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.benefit-tab-caption { position: relative; z-index: 1; display: grid; gap: .1rem; color: var(--paper); text-shadow: 0 1px 4px #173322A8; }
.benefit-tab-caption small { font-size: .75rem; font-weight: 700; letter-spacing: .13em; }
.benefit-tab-caption strong { font: 700 1.22rem/1.15 var(--display); }
.benefit-stage { min-width: 0; overflow: hidden; border: 1px solid var(--magenta); border-radius: 22px; background: var(--paper); color: var(--olive); }
.benefit-panel { display: none; grid-template-columns: 52% 48%; min-height: 530px; }
.benefit-panel-photo { position: relative; min-height: 530px; overflow: hidden; background: var(--cream); }
.benefit-panel-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.benefit-panel--vitamina .benefit-panel-photo img { object-position: 85% center; }
.benefit-panel-copy { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: clamp(26px, 2.8vw, 42px); }
.benefit-count { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; color: var(--magenta); font-size: .8rem; font-weight: 700; letter-spacing: .13em; }
.benefit-count::after { content: ""; width: 42px; height: 1px; background: currentColor; }
.benefit-panel h3 { margin-bottom: 1rem; color: var(--magenta); font-size: clamp(1.8rem, 1.9vw, 2.45rem); line-height: 1.12; overflow-wrap: normal; hyphens: none; text-wrap: balance; }
.benefit-panel p { font-size: 1.05rem; line-height: 1.7; }
:where(#benefit-fibras):checked ~ .benefit-rail .benefit-tab--fibras,
:where(#benefit-antioxidantes):checked ~ .benefit-rail .benefit-tab--antioxidantes,
:where(#benefit-vitamina):checked ~ .benefit-rail .benefit-tab--vitamina,
:where(#benefit-leveza):checked ~ .benefit-rail .benefit-tab--leveza { translate: 5px 0; box-shadow: 0 10px 22px #B10D5224; }
:where(#benefit-fibras):checked ~ .benefit-rail .benefit-tab--fibras::before,
:where(#benefit-antioxidantes):checked ~ .benefit-rail .benefit-tab--antioxidantes::before,
:where(#benefit-vitamina):checked ~ .benefit-rail .benefit-tab--vitamina::before,
:where(#benefit-leveza):checked ~ .benefit-rail .benefit-tab--leveza::before { transform: scaleY(1); }
:where(#benefit-fibras):focus-visible ~ .benefit-rail .benefit-tab--fibras,
:where(#benefit-antioxidantes):focus-visible ~ .benefit-rail .benefit-tab--antioxidantes,
:where(#benefit-vitamina):focus-visible ~ .benefit-rail .benefit-tab--vitamina,
:where(#benefit-leveza):focus-visible ~ .benefit-rail .benefit-tab--leveza { outline: 3px solid var(--magenta); outline-offset: 3px; }
:where(#benefit-fibras):checked ~ .benefit-stage .benefit-panel--fibras,
:where(#benefit-antioxidantes):checked ~ .benefit-stage .benefit-panel--antioxidantes,
:where(#benefit-vitamina):checked ~ .benefit-stage .benefit-panel--vitamina,
:where(#benefit-leveza):checked ~ .benefit-stage .benefit-panel--leveza { display: grid; animation: benefit-reveal .45s ease both; }
@media (hover: hover) {
  .benefit-tab:hover img { transform: scale(1.05); }
  .benefits-showcase:has(.benefit-tab:hover) .benefit-stage .benefit-panel { display: none; }
  .benefits-showcase:has(.benefit-tab--fibras:hover) .benefit-stage .benefit-panel--fibras,
  .benefits-showcase:has(.benefit-tab--antioxidantes:hover) .benefit-stage .benefit-panel--antioxidantes,
  .benefits-showcase:has(.benefit-tab--vitamina:hover) .benefit-stage .benefit-panel--vitamina,
  .benefits-showcase:has(.benefit-tab--leveza:hover) .benefit-stage .benefit-panel--leveza { display: grid; animation: benefit-reveal .45s ease both; }
}
.disclaimer { max-width: 850px; margin-top: 1.8rem; font-size: .78rem; }
.benefit-sources { max-width: 850px; margin-top: .9rem; color: #FDFCF7D9; font-size: .88rem; line-height: 1.65; }
.benefit-sources summary { width: fit-content; cursor: pointer; color: var(--magenta); font-weight: 700; text-decoration: underline; text-underline-offset: .22em; }
.benefit-sources summary:focus-visible { outline: 2px solid var(--magenta); outline-offset: 4px; }
.benefit-sources p { margin: .9rem 0 .5rem; }
.benefit-sources ol { margin: 0; padding-left: 1.4rem; }
.benefit-sources li + li { margin-top: .35rem; }
.benefit-sources a { color: var(--magenta); text-underline-offset: .17em; }
.benefit-sources a:hover { text-decoration-thickness: 2px; }

/* Produção e galeria */
.production { background: var(--cream); }
.production-heading .eyebrow { margin-bottom: 1.3rem; }
.production-heading h2 { max-width: 800px; margin-bottom: 1.4rem; }
.production-heading > p { max-width: 790px; font-size: 1.06rem; }
.production-tip { margin-top: 1.4rem; color: var(--magenta); font-size: .88rem; font-weight: 600; }
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(14px, 1.8vw, 26px);
  margin-top: 2.8rem;
}
.steps::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 18px;
  left: 18px;
  height: 1px;
  background: var(--magenta);
  opacity: .38;
}
.step { position: relative; min-width: 0; }
.step::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 14px;
  right: -20px;
  left: 16px;
  height: 3px;
  border-radius: 3px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s ease;
  pointer-events: none;
}
.step:last-child::before { right: 0; }
@media (hover: hover) { .step:hover::before { transform: scaleX(1); } }
.step-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.step-trigger {
  display: block;
  padding: 0 8px 0 0;
  border-radius: 16px;
  cursor: pointer;
  transition: transform .3s ease;
}
.step-toggle:focus-visible + .step-trigger { outline: 3px solid var(--magenta); outline-offset: 4px; }
.step-toggle:checked + .step-trigger { transform: translateY(-4px); }
@media (hover: hover) { .step:hover .step-trigger { transform: translateY(-4px); } }
.step .dot {
  position: relative;
  z-index: 2;
  display: block;
  width: 31px;
  height: 31px;
  margin-bottom: 1.35rem;
  border: 8px solid var(--paper);
  border-radius: 50%;
  outline: 1px solid var(--magenta);
  background: var(--magenta);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-toggle:checked + .step-trigger .dot { transform: scale(1.18); box-shadow: 0 0 0 5px #B10D521C; }
@media (hover: hover) { .step:hover .dot { transform: scale(1.18); box-shadow: 0 0 0 5px #B10D521C; } }
.step-photo {
  display: block;
  width: 78px;
  max-width: 100%;
  height: 78px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--magenta);
  border-radius: 15px;
  background: var(--cream);
  transition: width .45s ease, height .45s ease, border-radius .45s ease, box-shadow .45s ease;
}
.step-photo img { width: 100%; height: 100%; object-fit: cover; }
.step:nth-child(4) .step-photo img { object-position: 70% center; }
.step-toggle:checked + .step-trigger .step-photo {
  width: 100%;
  height: 220px;
  border-radius: 17px;
  box-shadow: 0 15px 28px #657F5430;
}
@media (hover: hover) {
  .step:hover .step-photo {
    width: 100%;
    height: 220px;
    border-radius: 17px;
    box-shadow: 0 15px 28px #657F5430;
  }
}
.step-title { display: block; margin-bottom: .5rem; color: var(--magenta); font: 600 clamp(1.2rem, 1.8vw, 1.8rem)/1.16 var(--display); letter-spacing: -.035em; }
.step-time { display: block; color: var(--olive); font-size: .86rem; font-weight: 600; line-height: 1.5; }
.step-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .55s ease, opacity .3s ease, visibility 0s .55s;
}
.step-toggle:checked ~ .step-content {
  max-height: 800px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
@media (hover: hover) {
  .step:hover .step-content {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
}
.step-content-inner {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #B10D5238;
  border-radius: 15px;
  background: #F8F7F1;
  font-size: .9rem;
  line-height: 1.6;
}
.step-content p + p { margin-top: .8rem; }
.step-content ul { margin: .65rem 0 0; padding-left: 1.15rem; }
.step-content li + li { margin-top: .4rem; }
.production-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sage);
  font-size: .81rem;
  font-weight: 700;
}
/* Fornecimento para comércio */
.trade { background: var(--paper); }
.trade-heading { display: grid; grid-template-columns: 1.12fr .88fr; align-items: end; gap: clamp(2rem, 7vw, 7rem); }
.trade-heading .eyebrow { margin-bottom: 1.3rem; }
.trade-heading h2 { max-width: 680px; }
.trade-heading > p { max-width: 520px; padding-bottom: .35rem; font-size: 1.05rem; }
.trade-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
  margin-top: 3.2rem;
}
.trade-choice { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.trade-photo { position: relative; min-height: 550px; overflow: hidden; border: 2px solid var(--magenta); border-radius: 28px; background: var(--olive); }
.trade-photo img {
  position: absolute;
  top: 0;
  left: -2%;
  width: 104%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  filter: saturate(1.1) contrast(1.05);
  transition: transform .65s ease;
}
.trade-photo::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, transparent, #183522C9);
  pointer-events: none;
}
.trade-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: var(--paper);
  text-shadow: 0 2px 10px #132A2399;
}
.trade-photo-kicker { display: block; font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.trade-photo-notes { position: relative; display: block; height: 4.3rem; margin-top: .55rem; }
.trade-photo-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  font: 600 clamp(1.5rem, 2.2vw, 2.1rem)/1.12 var(--display);
  letter-spacing: -.035em;
  transition: opacity .3s ease, transform .3s ease;
}
.trade-features { display: grid; align-content: center; gap: 8px; min-width: 0; }
.trade-feature {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  align-items: start;
  gap: clamp(12px, 1.8vw, 22px);
  min-width: 0;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid transparent;
  border-bottom-color: #657F5440;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color .3s ease, border-color .3s ease;
}
.trade-feature::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 4px;
  background: var(--magenta);
  transform: scaleY(0);
  transition: transform .3s ease;
}
.trade-feature-number { padding-top: .35rem; color: var(--magenta); font-size: .8rem; font-weight: 800; letter-spacing: .13em; }
.trade-feature-copy { display: grid; gap: .55rem; }
.trade-feature-copy strong { color: var(--magenta); font: 600 clamp(1.42rem, 1.9vw, 1.95rem)/1.12 var(--display); letter-spacing: -.035em; }
.trade-feature-copy > span { font-size: .94rem; line-height: 1.55; }
.trade-feature-arrow { color: var(--magenta); font-size: 1.15rem; line-height: 1; opacity: .5; transition: transform .3s ease, opacity .3s ease; }
:where(#trade-selection):checked ~ .trade-features .trade-feature--selection,
:where(#trade-maturity):checked ~ .trade-features .trade-feature--maturity,
:where(#trade-care):checked ~ .trade-features .trade-feature--care,
.trade-feature:hover { border-color: #B10D5230; background: var(--cream); }
:where(#trade-selection):checked ~ .trade-features .trade-feature--selection::before,
:where(#trade-maturity):checked ~ .trade-features .trade-feature--maturity::before,
:where(#trade-care):checked ~ .trade-features .trade-feature--care::before,
.trade-feature:hover::before { transform: scaleY(1); }
:where(#trade-selection):checked ~ .trade-features .trade-feature--selection .trade-feature-arrow,
:where(#trade-maturity):checked ~ .trade-features .trade-feature--maturity .trade-feature-arrow,
:where(#trade-care):checked ~ .trade-features .trade-feature--care .trade-feature-arrow,
.trade-feature:hover .trade-feature-arrow { opacity: 1; transform: translate(2px, -2px); }
:where(#trade-selection):focus-visible ~ .trade-features .trade-feature--selection,
:where(#trade-maturity):focus-visible ~ .trade-features .trade-feature--maturity,
:where(#trade-care):focus-visible ~ .trade-features .trade-feature--care { outline: 3px solid var(--magenta); outline-offset: 3px; }
:where(#trade-selection):checked ~ .trade-photo .trade-photo-note--selection,
:where(#trade-maturity):checked ~ .trade-photo .trade-photo-note--maturity,
:where(#trade-care):checked ~ .trade-photo .trade-photo-note--care { opacity: 1; transform: translateY(0); }
:where(#trade-maturity):checked ~ .trade-photo img { transform: translateX(-1.1%); }
:where(#trade-care):checked ~ .trade-photo img { transform: translateX(1.1%); }
@media (hover: hover) {
  .trade-showcase:has(.trade-feature:hover) .trade-photo-note { opacity: 0; transform: translateY(10px); }
  .trade-showcase:has(.trade-feature--selection:hover) .trade-photo-note--selection,
  .trade-showcase:has(.trade-feature--maturity:hover) .trade-photo-note--maturity,
  .trade-showcase:has(.trade-feature--care:hover) .trade-photo-note--care { opacity: 1; transform: translateY(0); }
  .trade-showcase:has(.trade-feature--selection:hover) .trade-photo img { transform: translateX(.7%); }
  .trade-showcase:has(.trade-feature--maturity:hover) .trade-photo img { transform: translateX(-1.1%); }
  .trade-showcase:has(.trade-feature--care:hover) .trade-photo img { transform: translateX(1.1%); }
}
.trade-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 24px;
  background: var(--magenta);
  color: var(--paper);
}
.trade-contact strong { display: block; margin-bottom: .35rem; font: 600 clamp(1.5rem, 2vw, 2rem)/1.15 var(--display); }
.trade-contact p { max-width: 550px; font-size: .94rem; line-height: 1.5; }
.trade-contact .btn { flex: none; }

.gallery-shell { background: var(--paper); }
.gallery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0 105px;
  border: 1px solid #FFFFFF30;
  border-radius: 42px;
  background: #657F54E0;
  color: var(--paper);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.gallery::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -25%;
  right: -5%;
  width: 72%;
  height: 150%;
  background: url("assets/cacto-plantacao.webp") center 68% / cover no-repeat;
  filter: blur(26px) saturate(.85) brightness(.7);
  opacity: .6;
  transform: scale(1.04);
  pointer-events: none;
}
.gallery > .wrap, .gallery-window { position: relative; z-index: 1; }
.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}
.gallery-heading .eyebrow { margin-bottom: .7rem; color: var(--paper); }
.gallery-heading h2 { color: var(--paper); font-size: clamp(2.2rem, 3.2vw, 3.5rem); }
.gallery-heading p { max-width: 260px; font-size: .9rem; }
.gallery-window {
  overflow: hidden;
  margin-top: 2rem;
  padding-left: max(32px, calc((100vw - 1240px) / 2));
}
.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: gallery-flow 42s linear infinite;
}
.gallery-window:hover .gallery-track { animation-play-state: paused; }
.gallery-set { display: flex; flex: none; gap: 18px; }
.gallery-card {
  position: relative;
  flex: none;
  width: clamp(235px, 23vw, 315px);
  height: 365px;
  overflow: hidden;
  border: 2px solid var(--magenta);
  border-radius: 22px;
  background: var(--sage);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: max-content;
  max-width: calc(100% - 28px);
  padding: .55rem .85rem;
  border-radius: 100px;
  background: var(--magenta);
  color: var(--paper);
  font-size: .74rem;
  font-weight: 700;
}
.gallery-hint { margin-top: 1rem; font-size: .74rem; opacity: .85; }

/* Mudas */
.mudas { background: var(--paper); }
.mudas-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(60px, 8vw, 125px); }
.mudas-copy .eyebrow { margin-bottom: 1.3rem; }
.mudas-copy h2 { margin-bottom: 1.5rem; }
.mudas-copy p { max-width: 570px; margin-bottom: 2rem; font-size: 1.05rem; }
.mudas-photo {
  position: relative;
  height: 530px;
  overflow: hidden;
  border-radius: 220px 220px 20px 20px;
  background: var(--sage);
}
.mudas-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.mudas-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: var(--paper);
  color: var(--magenta);
  font: 600 1.3rem/1.15 var(--display);
}

/* Estilo de vida */
.lifestyle { background: var(--cream); }
.lifestyle-grid { display: grid; grid-template-columns: 1fr .87fr; align-items: center; gap: clamp(60px, 10vw, 140px); }
.lifestyle-copy .eyebrow { margin-bottom: 1.3rem; }
.lifestyle-copy h2 { max-width: 670px; }
.lifestyle-rule { width: 80px; height: 2px; margin: 2.2rem 0; background: var(--magenta); }
.lifestyle-copy p { max-width: 560px; font-size: 1.05rem; }
.lifestyle-words {
  display: block;
  max-width: 460px;
  margin-top: 2.5rem;
  color: var(--magenta);
  font: italic 500 clamp(1.4rem, 2.2vw, 2rem)/1.25 var(--display);
}
.lifestyle-photo {
  position: relative;
  height: 560px;
  padding: 0 25px 25px 0;
}
.lifestyle-photo::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  height: 82%;
  border: 1px solid var(--magenta);
  border-radius: 220px 220px 20px 20px;
}
.lifestyle-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 220px 220px 20px 20px;
}
.lifestyle-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 55px;
  max-width: 200px;
  padding: .9rem 1.15rem;
  border-radius: 15px 0 0 15px;
  background: var(--magenta);
  color: var(--paper);
  font: 500 1.08rem/1.18 var(--display);
}

/* Origem e contato */
.origin { background: var(--olive); color: var(--paper); }
.origin-grid { display: grid; grid-template-columns: 1fr .86fr; align-items: center; gap: clamp(60px, 9vw, 140px); }
.origin .eyebrow { color: var(--paper); margin-bottom: 1.3rem; }
.origin h2 { max-width: 650px; margin-bottom: 1.6rem; }
.origin h2 em { color: var(--cream); }
.origin-copy > p { max-width: 550px; font-size: 1.05rem; }
.origin-location {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sage);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.origin-location span { color: var(--sage); font-size: 1.3rem; }
.origin-photo {
  height: 490px;
  overflow: hidden;
  border: 1px solid var(--magenta);
  border-radius: 20px 220px 20px 20px;
}
.origin-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact {
  position: relative;
  padding: 12px 0 10px;
  background: var(--cream);
}
.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.contact::before, .contact::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8vw;
  height: 8vw;
  max-width: 110px;
  max-height: 110px;
  border: 1px solid var(--magenta);
  border-radius: 50%;
  opacity: .22;
  pointer-events: none;
}
.contact::before { left: -6vw; }
.contact::after { right: -6vw; }
.contact .eyebrow::before { display: none; }
.contact-copy .eyebrow { font-size: .8rem; }
.contact-brand { text-align: center; }
.contact-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-logo img { width: 118px; height: auto; }
.contact .tagline {
  margin: 1px auto 0;
  color: #8F0A42;
  font: italic 500 clamp(.95rem, 1.2vw, 1.15rem)/1.15 var(--display);
}
.contact-links { display: flex; align-items: center; margin-top: 8px; }
.instagram-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-self: end;
  gap: 8px;
  width: 228px;
  padding: 6px 8px;
  border: 1px solid var(--magenta);
  border-radius: 16px;
  background: var(--paper);
  text-align: left;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.instagram-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px #657F5426; }
.instagram-card img { width: 88px; height: 88px; flex: none; object-fit: contain; }
.instagram-card-copy { display: grid; gap: .1rem; }
.instagram-card-copy strong { color: var(--olive); font: 700 .85rem/1.2 var(--display); }
.instagram-card-copy > span { color: var(--magenta); font-size: .76rem; font-weight: 700; }
.footer { padding: 0 0 9px; background: var(--cream); font-size: .72rem; line-height: 1.4; }
.footer .wrap { display: flex; justify-content: space-between; gap: 1rem; padding-top: 7px; border-top: 1px solid var(--sage); }
.back-to-top {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--magenta);
  color: var(--paper);
  font: 700 1.6rem/1 var(--body);
  text-decoration: none;
  box-shadow: 0 10px 25px #5B0B2D55;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.back-to-top:hover { transform: translateY(-4px); background: #8F0A42; box-shadow: 0 15px 30px #5B0B2D66; }
.back-to-top:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; }

/* Movimentos discretos */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-image {
  from { opacity: .7; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes gallery-flow {
  to { transform: translateX(calc(-50% - 9px)); }
}
@keyframes benefit-reveal {
  from { opacity: 0; translate: 14px 0; }
  to { opacity: 1; translate: 0 0; }
}
@supports (animation-timeline: view()) {
  .reveal {
    animation: fade-up 1s both;
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}

@media (max-width: 1100px) {
  .nav-links a { font-size: .88rem; }
  .hero-content { max-width: 675px; }
  .fruit-grid, .mudas-grid, .lifestyle-grid, .origin-grid { gap: 55px; }
  .fruit-visual { min-height: 505px; }
}
@media (max-width: 1000px) {
  .benefits-showcase { grid-template-columns: 1fr; gap: 16px; }
  .benefit-tabs { grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr); grid-template-rows: none; min-height: 0; gap: 12px; overflow-x: auto; padding: 4px 4px 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .benefit-tabs::-webkit-scrollbar { display: none; }
  .benefit-tab { height: 112px; scroll-snap-align: start; }
  .benefit-panel, .benefit-panel-photo { min-height: 465px; }
  :where(#benefit-fibras):checked ~ .benefit-rail .benefit-tab--fibras,
  :where(#benefit-antioxidantes):checked ~ .benefit-rail .benefit-tab--antioxidantes,
  :where(#benefit-vitamina):checked ~ .benefit-rail .benefit-tab--vitamina,
  :where(#benefit-leveza):checked ~ .benefit-rail .benefit-tab--leveza { translate: 0 -3px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto 1fr; }
  .trade-showcase { grid-template-columns: 1fr; gap: 16px; }
  .trade-photo { min-height: 0; aspect-ratio: 1.55; }
  .brand { grid-column: 2; }
  .mobile-menu { position: relative; display: block; grid-column: 3; justify-self: end; }
  .mobile-menu summary {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 44px;
    padding: .55rem .85rem;
    border: 1px solid var(--magenta);
    border-radius: 999px;
    background: var(--magenta);
    color: var(--sage);
    cursor: pointer;
    font-size: .8rem;
    font-weight: 700;
    list-style: none;
    transition: color .25s ease;
  }
  .mobile-menu summary:hover, .mobile-menu summary:focus, .mobile-menu[open] summary { color: var(--paper); }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { font-size: 1.1rem; line-height: 1; }
  .mobile-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    min-width: 220px;
    padding: .7rem;
    border: 1px solid var(--magenta);
    border-radius: 20px;
    background: var(--magenta);
    box-shadow: 0 15px 35px #361B2B40;
  }
  .mobile-links a { display: grid; place-items: center; min-height: 42px; padding: .5rem .8rem; border-radius: 999px; color: var(--sage); font-size: .86rem; font-weight: 700; text-decoration: none; transition: color .25s ease, transform .25s ease; }
  .mobile-links a:hover, .mobile-links a:focus, .mobile-links a:active { color: var(--paper); transform: translateX(3px); }
  .hero { height: auto; min-height: 0; padding-bottom: 24px; }
  .hero-inner { height: auto; min-height: 0; }
  .hero-content { padding: 48px 0 36px; }
  .quickbar { position: relative; right: auto; bottom: auto; left: auto; margin: 0 auto; }
  .hero h1 { font-size: clamp(3.65rem, 8vw, 5.7rem); }
  .fruit-grid { grid-template-columns: .9fr 1fr; }
  .fruit-visual { min-height: 450px; }
  .fruit-main { inset: 0 10% 25px 0; }
  .fruit-detail { height: 200px; }
  .fruit-stamp { left: -20px; width: 105px; height: 105px; font-size: .75rem; }
}
@media (max-width: 700px) {
  .wrap { width: min(calc(100% - 36px), 1240px); }
  .section { padding: 82px 0; }
  .benefits { border-radius: 28px; }
  .benefits::before { top: -18%; right: -35%; width: 125%; height: 76%; opacity: .38; }
  .nav { width: calc(100% - 24px); min-height: 64px; margin-top: 12px; }
  .nav-inner { min-height: 62px; padding-inline: 12px; }
  .brand { width: 120px; }
  .hero { padding-bottom: 22px; border-radius: 0 0 36px 36px; }
  .hero-media img { object-position: 75% center; }
  .hero::before {
    background:
      linear-gradient(90deg, #163827AD 0%, #1939267A 56%, #16382738 100%),
      linear-gradient(180deg, #11302394 0%, #1130234D 34%, #1130231F 66%, #11302342 100%);
  }
  .hero-content { max-width: 100%; padding: 50px 0 34px; text-shadow: 0 2px 12px #102F22A6; }
  .hero-actions .btn { text-shadow: none; }
  .hero h1 { max-width: 620px; font-size: clamp(3.2rem, 10vw, 4.7rem); }
  .hero-description { max-width: 480px; font-size: 1rem; }
  .hero-location { margin-top: 1.5rem; font-size: .66rem; }
  .quickbar {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: .9rem;
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 18px;
    border-radius: 30px;
  }
  .quickbar-mark { width: 48px; height: 48px; font-size: 1.3rem; }
  .quickbar strong { font-size: 1.15rem; }
  .quickbar p { font-size: .78rem; }
  .quickbar .btn { grid-column: 1 / -1; width: 100%; margin: .4rem 0 0; }
  .fruit-grid, .mudas-grid, .lifestyle-grid, .origin-grid { grid-template-columns: 1fr; gap: 50px; }
  .fruit-visual { min-height: 500px; max-width: 540px; width: 100%; margin: auto; }
  .fruit-main { inset: 0 12% 35px 0; }
  .fruit-detail { height: 240px; }
  .fruit-stamp { left: -10px; }
  .benefits-heading, .gallery-heading { display: block; }
  .benefits-heading > p { max-width: 570px; margin-top: 1.3rem; }
  .benefit-rail { overflow: hidden; }
  .benefit-tabs { grid-auto-columns: calc(50% - 6px); overflow: visible; padding: 4px 0 8px; scroll-snap-type: none; transform: translateX(0); transition: transform .5s ease; }
  .benefit-tab { padding: 12px 10px; }
  .benefit-tab-caption strong { font-size: clamp(1rem, 3.8vw, 1.22rem); overflow-wrap: anywhere; }
  :where(#benefit-page-2):checked ~ .benefit-rail .benefit-tabs { transform: translateX(calc(-100% - 12px)); }
  .benefit-rail-controls { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding-top: 4px; }
  .benefit-page-status { margin-right: auto; color: var(--magenta); font-size: .8rem; font-weight: 700; }
  .benefit-page-status::before { content: "Fotos 1 e 2 de 4"; }
  :where(#benefit-page-2):checked ~ .benefit-rail .benefit-page-status::before { content: "Fotos 3 e 4 de 4"; }
  .benefit-rail-arrow { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--magenta); border-radius: 50%; background: var(--paper); color: var(--magenta); cursor: pointer; font-size: 1.25rem; line-height: 1; }
  :where(#benefit-page-1):checked ~ .benefit-rail .benefit-rail-prev,
  :where(#benefit-page-2):checked ~ .benefit-rail .benefit-rail-next { opacity: .4; pointer-events: none; }
  :where(#benefit-page-1):focus-visible ~ .benefit-rail .benefit-rail-prev,
  :where(#benefit-page-2):focus-visible ~ .benefit-rail .benefit-rail-next { outline: 3px solid var(--magenta); outline-offset: 3px; }
  .benefit-panel { grid-template-columns: 1fr; min-height: 0; }
  .benefit-panel-photo { height: 280px; min-height: 0; }
  .benefit-panel-copy { min-height: 220px; padding: 28px 32px 34px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 2rem; }
  .steps::before, .step::before { display: none; }
  .production-foot { flex-direction: column; gap: .3rem; }
  .gallery { padding: 72px 0 80px; border-radius: 28px; }
  .gallery::before { top: -12%; right: -40%; width: 130%; height: 112%; opacity: .42; }
  .gallery-heading p { margin-top: .8rem; }
  .gallery-card { width: 235px; height: 305px; }
  .gallery-window { padding-left: 18px; }
  .trade-heading { grid-template-columns: 1fr; gap: 1.2rem; }
  .trade-showcase { margin-top: 2rem; }
  .trade-photo { aspect-ratio: 1.3; border-radius: 22px; }
  .trade-photo figcaption { right: 22px; bottom: 20px; left: 22px; }
  .trade-features { gap: 4px; }
  .trade-feature { grid-template-columns: 30px minmax(0, 1fr) 18px; gap: 12px; padding: 18px 14px; }
  .trade-feature-copy > span { font-size: .88rem; }
  .trade-contact { flex-direction: column; align-items: stretch; gap: 1.2rem; }
  .trade-contact .btn { align-self: flex-start; }
  .mudas-photo, .origin-photo { max-width: 540px; width: 100%; height: 450px; margin: auto; }
  .lifestyle-photo { max-width: 540px; width: 100%; height: 490px; margin: auto; }
  .contact { padding: 24px 0 18px; }
  .contact-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 14px; row-gap: 12px; }
  .contact-brand { grid-column: 1 / -1; grid-row: 1; }
  .contact-copy { grid-column: 1; grid-row: 2; text-align: center; }
  .contact-copy .eyebrow { font-size: .75rem; }
  .contact-links { justify-content: center; margin-top: 8px; }
  .contact-links .btn { width: 100%; padding-inline: .65rem; }
  .instagram-card { grid-column: 2; grid-row: 2; justify-self: center; flex-direction: column; gap: 4px; width: min(100%, 160px); padding: 8px; text-align: center; }
  .footer .wrap { display: block; }
  .footer p + p { margin-top: .35rem; }
}
@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.4rem; }
  .steps::before {
    display: block;
    top: 15px;
    right: auto;
    bottom: 20px;
    left: 15px;
    width: 1px;
    height: auto;
  }
  .step { padding-left: 50px; }
  .step-trigger { padding-right: 0; }
  .step .dot { position: absolute; top: 0; left: 0; margin: 0; }
  .step-photo { width: 72px; height: 72px; }
  .step-toggle:checked + .step-trigger .step-photo { height: 240px; }
}
@media (max-width: 480px) {
  .back-to-top { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); width: 46px; height: 46px; font-size: 1.4rem; }
  .hero-content { padding-top: 42px; padding-bottom: 30px; }
  .hero h1 { font-size: clamp(2.95rem, 12vw, 3.7rem); }
  .hero-actions { gap: 1rem; }
  .hero-location { display: none; }
  .fruit-visual { min-height: 410px; }
  .fruit-main { inset: 0 12% 28px 0; }
  .fruit-detail { height: 185px; }
  .fruit-stamp { top: 25px; left: -7px; width: 90px; height: 90px; font-size: .67rem; }
  h2 { font-size: clamp(2.55rem, 11vw, 3.1rem); }
  .benefit-panel-photo { height: 225px; }
  .benefit-panel-copy { padding: 25px 26px 30px; }
  .benefit-panel h3 { font-size: clamp(1.7rem, 7vw, 2.05rem); }
  .mudas-photo, .origin-photo { height: 380px; }
  .lifestyle-photo { height: 420px; }
  .contact-logo img { width: 126px; }
  .trade-photo { aspect-ratio: 1.15; }
  .trade-photo-notes { height: 3.8rem; }
  .trade-contact .btn { width: 100%; }
}
@media (hover: none) {
  .gallery-track { animation: none; transform: none; }
  .gallery-window { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gallery-window::-webkit-scrollbar { display: none; }
  .gallery-set[aria-hidden="true"] { display: none; }
  .gallery-card { scroll-snap-align: start; }
  .gallery-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal, .hero-content > *, .hero-media img { animation: none !important; opacity: 1 !important; transform: none !important; }
  .gallery-track { animation: none !important; transform: none !important; }
  .gallery-window { overflow-x: auto; scroll-snap-type: x mandatory; }
  .gallery-set[aria-hidden="true"] { display: none; }
  .gallery-card { scroll-snap-align: start; }
}
