:root {
  --ink: #191712;
  --muted: #6d675e;
  --paper: #fffdf8;
  --cream: #fff4df;
  --white: #ffffff;
  --green: #126747;
  --green-dark: #083b2a;
  --pistachio: #d8e8b0;
  --cacao: #6f4632;
  --cacao-soft: #f0dfd0;
  --gold: #c7a052;
  --copper: #9c6846;
  --berry: #7f4a54;
  --button-border: #d9c8b4;
  --line: #eee2cf;
  --shadow: 0 22px 60px rgba(65, 43, 20, .1);
  --radius: 8px;
  --container: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(55, 37, 23, .08);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(255, 250, 241, .97);
  box-shadow: 0 8px 30px rgba(55, 37, 23, .1);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(calc(100% - 32px), 1240px);
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
  max-width: 194px;
}

.site-header.is-scrolled .brand,
.site-header.menu-visible .brand {
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: auto;
  height: 82px;
  max-width: min(190px, 31vw);
  max-height: 82px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu a,
.nav-dropdown-toggle {
  text-decoration: none;
  color: var(--ink);
  padding: 10px 11px;
  border-radius: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: .01em;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  display: grid;
  gap: 4px;
  padding: 8px;
  background: rgba(255, 253, 248, .98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-submenu a {
  display: block;
  white-space: nowrap;
  padding: 10px 12px;
}

.site-header.is-scrolled .nav-menu a,
.site-header.menu-visible .nav-menu a,
.site-header.is-scrolled .nav-dropdown-toggle,
.site-header.menu-visible .nav-dropdown-toggle {
  color: var(--ink);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: rgba(245, 236, 217, .68);
  outline: none;
}

.site-header.is-scrolled .nav-menu a:hover,
.site-header.is-scrolled .nav-menu a:focus-visible,
.site-header.menu-visible .nav-menu a:hover,
.site-header.menu-visible .nav-menu a:focus-visible,
.site-header.is-scrolled .nav-dropdown-toggle:hover,
.site-header.is-scrolled .nav-dropdown-toggle:focus-visible,
.site-header.menu-visible .nav-dropdown-toggle:hover,
.site-header.menu-visible .nav-dropdown-toggle:focus-visible {
  background: rgba(245, 236, 217, .68);
}

.language-tabs {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.site-header.is-scrolled .language-tabs,
.site-header.menu-visible .language-tabs {
  border-color: var(--line);
  background: #fff7e8;
}

.language-tab {
  min-width: 37px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.site-header.is-scrolled .language-tab,
.site-header.menu-visible .language-tab {
  color: var(--ink);
}

.language-tab.is-active {
  background: var(--green-dark);
  color: var(--white);
}

.site-header.is-scrolled .language-tab.is-active,
.site-header.menu-visible .language-tab.is-active {
  background: var(--green);
  color: var(--white);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, border-color .18s ease, color .18s ease;
}

.site-header.is-scrolled .social-link,
.site-header.menu-visible .social-link {
  background: #fff7e8;
  border-color: var(--line);
  color: var(--ink);
}

.social-link:hover,
.social-link:focus-visible {
  background: #f5ecd9;
  border-color: var(--button-border);
  color: var(--green-dark);
  transform: translateY(-1px);
  outline: none;
}

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

.social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 10px;
}

.site-header.is-scrolled .nav-toggle,
.site-header.menu-visible .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.site-header.is-scrolled .nav-toggle span:not(.sr-only),
.site-header.menu-visible .nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transform: scale(1.02);
  filter: brightness(1.12) saturate(1.06);
  animation: heroFade 18s infinite;
}

.hero-slide-1 {
  background-image: url("../img/hero-home-nuts-premium.png");
  background-image: image-set(
    url("../img/hero-home-nuts-premium.webp") type("image/webp"),
    url("../img/hero-home-nuts-premium.png") type("image/png")
  );
}

.hero-slide-2 {
  background-image: url("../img/ai-cacao-polvo.webp");
  animation-delay: 6s;
}

.hero-slide-3 {
  background-image: url("../img/almonds-premium-clean.webp");
  animation-delay: 12s;
}

@keyframes heroFade {
  0%,
  31% {
    opacity: 1;
  }

  37%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 253, 248, .96), rgba(255, 253, 248, .78) 44%, rgba(255, 253, 248, .08) 78%);
}

.hero-content {
  width: min(calc(100% - 40px), var(--container));
  margin: 92px auto 34px;
  padding: 54px 0 28px;
  text-shadow: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero .eyebrow {
  color: var(--green);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  width: min(960px, 100%);
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy-slider {
  position: relative;
  width: min(820px, 100%);
  min-height: 4.8em;
  margin: 24px 0 0;
}

.hero-copy {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: var(--muted);
  opacity: 0;
  animation: heroCopyFade 18s infinite;
}

.hero-copy-2 {
  animation-delay: 6s;
}

.hero-copy-3 {
  animation-delay: 12s;
}

@keyframes heroCopyFade {
  0%,
  27% {
    opacity: 1;
  }

  31%,
  100% {
    opacity: 0;
  }
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(65, 43, 20, .08);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(65, 43, 20, .12);
  outline: none;
}

.button.primary {
  background: var(--green-dark);
  color: var(--white);
}

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

.button.secondary {
  background: rgba(255, 255, 255, .86);
  border-color: var(--button-border);
  color: var(--cacao);
}

.button.whatsapp {
  background: var(--green);
  color: var(--white);
}

.button.whatsapp:hover,
.button.whatsapp:focus-visible {
  background: var(--green-dark);
}

.button.ghost {
  border-color: rgba(255, 255, 255, .52);
  color: var(--white);
}

.hero .button.ghost {
  border-color: var(--button-border);
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
}

.button.ghost.light {
  border-color: var(--button-border);
  color: var(--ink);
  background: var(--white);
}

.button.ghost.dark {
  border-color: var(--button-border);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.division-overview {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.overview-card {
  position: relative;
  min-height: 200px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.overview-card:last-child {
  border-right: 0;
}

.overview-card.is-primary {
  background: #f7fbec;
}

.overview-card.compact {
  background: #fff8e9;
}

.overview-card h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.overview-card p:not(.section-kicker) {
  max-width: 520px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.section.products-intro-section {
  padding: 64px 0 0;
  background: var(--paper);
}

.products-intro-panel {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.products-intro-heading {
  margin-bottom: 28px;
}

.products-intro-heading h2 {
  color: var(--green-dark);
}

.products-feature-grid {
  margin-top: 0;
}

.products-intro-panel .feature-grid article {
  background: #fffdf8;
}

.section {
  padding: 86px 0;
}

.section-heading {
  display: block;
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading p:last-child,
.about-grid p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.section-heading h2 + p {
  margin-top: 18px;
}

.section-heading.products-intro-heading h2 + p {
  margin-top: 30px;
}

.nuts-section .section-heading h2 + p,
.cocoa-section .section-heading h2 + p {
  margin-top: 28px;
}

.nuts-section .section-heading,
.cocoa-section .section-heading {
  margin-bottom: 38px;
}

.trading-section .section-heading h2 + p {
  margin-top: 28px;
}

.contact-copy h2 + p:empty {
  margin: 0;
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 64px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-panel h2 {
  color: var(--green-dark);
  font-size: clamp(2.3rem, 4.15vw, 4.35rem);
}

.brand-panel p:not(.section-kicker) {
  max-width: 600px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.brand-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 270px;
}

.brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.nuts-section {
  background: var(--paper);
  padding-top: 72px;
}

.nuts-section .section-heading {
  max-width: 720px;
}

.nuts-section .section-heading h2 {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
}

.nuts-section .section-heading h2 + p {
  max-width: 660px;
  color: #5f665b;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.72;
}

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

.nuts-section .product-grid {
  gap: 18px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(74, 44, 23, .07);
}

.nuts-section .product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  border-color: rgba(218, 201, 170, .5);
  box-shadow: 0 14px 34px rgba(74, 44, 23, .055);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.nuts-section .product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 154, 80, .42);
  box-shadow: 0 20px 42px rgba(74, 44, 23, .09);
}

.product-card.featured {
  border-color: #d4c47a;
}

.nuts-section .product-card.featured {
  border-color: rgba(196, 154, 80, .56);
}

.product-card--wide {
  grid-column: span 2;
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fffaf4;
}

.product-card.featured .product-media,
.product-card--wide .product-media {
  aspect-ratio: 16 / 10;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 253, 248, .08), rgba(255, 250, 241, .18));
  pointer-events: none;
}

.product-card img {
  width: 100%;
  height: clamp(190px, 19vw, 270px);
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover > img {
  transform: scale(1.025);
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, opacity .35s ease;
}

.nuts-section .product-hover-image {
  opacity: 0;
  object-fit: contain;
  transform: scale(1.04) translateY(-10px);
}

.nuts-section .product-card:hover .product-static-image {
  opacity: 0;
  transform: scale(1.035) translateY(8px);
}

.nuts-section .product-card:hover .product-hover-image {
  opacity: 1;
  animation: productFallDrift 2.8s ease-in-out infinite alternate;
}

.product-card--almonds .product-static-image {
  object-position: 58% 76%;
}

.product-card--pistachios .product-static-image {
  object-position: 44% 69%;
}

.product-card--cashews .product-static-image {
  object-position: 86% 22%;
}

.product-card--hazelnuts .product-static-image {
  object-position: 72% 16%;
}

.product-card--dates .product-static-image {
  object-position: 95% 46%;
}

.product-card--dried .product-static-image {
  object-position: 50% 70%;
}

.product-card--label .product-static-image {
  object-position: center;
}

@media (min-width: 641px) {
  .nuts-section .product-card--wide {
    grid-column: auto;
  }

  .nuts-section .product-card--wide .product-media {
    aspect-ratio: 1 / 1;
  }
}

.product-card--private-label .product-static-image {
  object-position: center;
}

.nuts-section .product-card--private-label .product-hover-image {
  object-fit: cover;
  transform: scale(1.012);
}

.nuts-section .product-card--private-label:hover .product-static-image {
  opacity: .12;
  transform: scale(1.02);
}

.nuts-section .product-card--private-label:hover .product-hover-image {
  animation: none;
  transform: scale(1.025);
}

.product-card > div:not(.product-media) {
  padding: 18px;
}

.product-card__content {
  padding: 22px 20px 21px;
}

.product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card-tag {
  margin: 0 0 8px;
  color: var(--berry);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nuts-section .card-tag {
  margin-bottom: 10px;
  color: rgba(127, 74, 84, .88);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
}

.nuts-section .product-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.35vw, 1.38rem);
  font-weight: 600;
  line-height: 1.15;
}

.product-card p:not(.card-tag),
.feature-grid p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.nuts-section .product-card h3 + p {
  margin-top: 12px;
}

.nuts-section .product-card p:not(.card-tag) {
  color: #62695f;
  font-size: .95rem;
  line-height: 1.58;
}

@keyframes productFallDrift {
  from {
    transform: scale(1.035) translateY(-12px);
  }

  to {
    transform: scale(1.035) translateY(12px);
  }
}

@media (hover: none) {
  .nuts-section .product-card:hover {
    transform: none;
  }

  .nuts-section .product-card:hover .product-static-image {
    opacity: 1;
    transform: none;
  }

  .nuts-section .product-card:hover .product-hover-image {
    opacity: 0;
    animation: none;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.feature-grid article,
.process-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

@media (min-width: 1081px) {
  .brand-panel {
    grid-template-columns: minmax(0, 1.16fr) minmax(260px, .38fr);
  }

  .brand-panel h2 {
    font-size: clamp(2.3rem, 3.55vw, 4rem);
    white-space: nowrap;
  }
}

.cocoa-section {
  background: var(--paper);
  color: var(--ink);
  padding-top: 72px;
}

.cocoa-section .section-kicker {
  color: var(--copper);
}

.cocoa-section .section-heading {
  max-width: 720px;
}

.cocoa-section .section-heading h2 {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
}

.cocoa-section .section-heading h2 + p {
  max-width: 680px;
  color: #5f665b;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.72;
}

.cocoa-panel {
  margin-bottom: 54px;
}

.cocoa-panel .brand-visual img,
.product-card--cocoa-beans img,
.product-card--cocoa-butter img,
.product-card--cocoa-powder img,
.product-card--cocoa-derivatives img {
  object-position: center;
}

.cocoa-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cocoa-section .product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  border-color: rgba(218, 201, 170, .5);
  box-shadow: 0 14px 34px rgba(74, 44, 23, .055);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.cocoa-section .product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 154, 80, .42);
  box-shadow: 0 20px 42px rgba(74, 44, 23, .09);
}

.cocoa-section .product-hover-image {
  opacity: 0;
  object-fit: contain;
  transform: scale(1.04) translateY(-10px);
}

.cocoa-section .product-card:hover .product-static-image {
  opacity: 0;
  transform: scale(1.035) translateY(8px);
}

.cocoa-section .product-card:hover .product-hover-image {
  opacity: 1;
  animation: productFallDrift 2.8s ease-in-out infinite alternate;
}

.cocoa-section .card-tag {
  margin-bottom: 10px;
  color: rgba(127, 74, 84, .88);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
}

.cocoa-section .product-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.35vw, 1.38rem);
  font-weight: 600;
  line-height: 1.15;
}

.cocoa-section .product-card--cocoa-derivatives h3 {
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  line-height: 1.12;
}

.cocoa-section .product-card h3 + p {
  margin-top: 12px;
}

.cocoa-section .product-card p:not(.card-tag) {
  color: #62695f;
  font-size: .95rem;
  line-height: 1.58;
}

@media (hover: none) {
  .cocoa-section .product-card:hover {
    transform: none;
  }

  .cocoa-section .product-card:hover .product-static-image {
    opacity: 1;
    transform: none;
  }

  .cocoa-section .product-card:hover .product-hover-image {
    opacity: 0;
    animation: none;
  }
}

.trading-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trading-section .section-heading {
  margin-bottom: 24px;
}

.trading-section .process-grid article {
  background: #fffdf8;
  box-shadow: none;
}

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

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--cacao);
  font-weight: 900;
}

.about-section {
  padding: 54px 0 42px;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf1 58%, #ffffff 100%);
  border-top: 1px solid rgba(218, 201, 170, .42);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 3.8vw, 48px);
  align-items: start;
}

.about-intro {
  align-self: start;
  padding-top: clamp(6px, 1.1vw, 14px);
}

.about-section .section-kicker {
  margin-bottom: 14px;
  color: var(--copper);
}

.about-grid h2 {
  max-width: 620px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 2.8vw, 3.12rem);
  font-weight: 600;
  line-height: 1.13;
}

.about-grid h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, rgba(127, 74, 35, .86), rgba(196, 154, 80, .58));
}

.about-copy {
  max-width: 600px;
  margin-top: 0;
}

.about-copy p {
  color: #4f584f;
  font-size: clamp(1.02rem, 1.18vw, 1.12rem);
  line-height: 1.78;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 36px;
}

.about-stats div {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  border: 1px solid rgba(218, 201, 170, .42);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(8, 59, 42, .038);
}

.about-stats div::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, rgba(196, 154, 80, .95), rgba(196, 154, 80, .38));
  opacity: .84;
}

.about-stats strong,
.about-stats span,
.about-stats small {
  display: block;
}

.about-stats strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.about-stats span {
  margin-top: 0;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.22;
}

.about-stats small {
  margin-top: 14px;
  color: #667062;
  font-size: .92rem;
  line-height: 1.58;
}

.about-client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  align-items: stretch;
}

.about-client-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: clamp(190px, 15vw, 220px) 1fr;
  min-height: 272px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(218, 201, 170, .48);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(65, 43, 20, .052);
}

.about-client-media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  background: #e8e4db;
}

.about-client-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .7s ease, transform 1.1s ease;
}

.about-client-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-client-card--obradores .about-client-image--primary {
  object-position: 50% 12%;
}

.about-client-card--fabricantes .about-client-image--primary {
  object-position: 50% 14%;
}

.about-client-card--laboratorios .about-client-image--primary {
  object-position: 50% 5%;
}

.about-client-card--distribuidores .about-client-image--primary {
  object-position: 50% 30%;
}

.about-client-card--fabricantes .about-client-image--secondary {
  object-position: 50% 56%;
}

.about-client-content {
  padding: 18px 19px 20px;
}

.about-client-card span,
.about-client-card small {
  display: block;
}

.about-client-card span {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 850;
  line-height: 1.2;
}

.about-client-card small {
  margin-top: 11px;
  color: #667062;
  font-size: .86rem;
  line-height: 1.58;
}

.contact-section {
  padding: 42px 0 50px;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(400px, .88fr);
  gap: clamp(28px, 3.7vw, 48px);
  align-items: start;
}

.contact-copy {
  max-width: 430px;
}

.contact-copy .section-kicker {
  display: none;
}

.contact-copy h2 {
  margin: 0;
  padding-top: 6px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 2.55vw, 2.48rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-copy h2 + p:empty {
  display: none;
  margin: 0;
}

.contact-actions {
  margin-top: 24px;
}

.contact-details {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  font-style: normal;
}

.contact-detail {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--ink);
  text-decoration: none;
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(199, 160, 82, .28);
  border-radius: 50%;
}

.contact-icon svg {
  width: 10.5px;
  height: 10.5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-body p {
  margin: 0;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.45;
}

.contact-copy .contact-detail-label {
  display: block;
  margin: 0 0 2px;
  color: var(--copper);
  font-size: .58rem;
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-detail-body a,
.contact-detail-link .contact-detail-body span:last-child {
  color: var(--green-dark);
  font-weight: 650;
  font-size: .9rem;
  line-height: 1.34;
  text-decoration: none;
}

.contact-detail-body a {
  border-bottom: 1px solid rgba(8, 59, 42, .32);
}

.contact-detail-link {
  width: fit-content;
  margin-top: 0;
  padding: 5px 7px;
  border: 1px solid rgba(238, 226, 207, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.contact-detail.contact-detail-link.map-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--ink);
  font-weight: inherit;
  text-decoration: none;
}

.contact-detail-link:hover,
.contact-detail-link:focus-visible {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(199, 160, 82, .44);
  transform: translateY(-1px);
  text-decoration: none;
  outline: none;
}

.contact-detail.contact-detail-link.map-link:hover,
.contact-detail.contact-detail-link.map-link:focus-visible {
  text-decoration: none;
}

.contact-copy .contact-note:empty {
  display: none;
  margin: 0;
}

.contact-form {
  width: min(100%, 510px);
  justify-self: end;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(238, 226, 207, .9);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 20px 48px rgba(65, 43, 20, .09);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
}

label {
  font-weight: 800;
  font-size: .9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d6c7b4;
  border-radius: 7px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.contact-form .form-row label {
  color: #3b352f;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.25;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  min-height: 38px;
  border-color: rgba(214, 199, 180, .82);
  border-radius: 7px;
  padding: 8px 10px;
  background: #fffefb;
  font-size: .9rem;
  line-height: 1.36;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

textarea {
  resize: vertical;
}

.contact-form textarea {
  height: 88px;
  min-height: 84px;
  max-height: 150px;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(35, 112, 71, .2);
  border-color: var(--green);
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(8, 59, 42, .68);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(18, 103, 71, .12);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b42318;
  background: #fff8f6;
}

.form-privacy {
  margin: 0 0 8px;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: start;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 500;
  line-height: 1.42;
}

.privacy-check input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--green);
}

.privacy-check a {
  color: var(--green);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.privacy-check input:focus-visible {
  outline: 3px solid rgba(35, 112, 71, .22);
  outline-offset: 3px;
}

.privacy-check input[aria-invalid="true"] {
  outline: 3px solid rgba(180, 35, 24, .18);
  outline-offset: 3px;
}

.form-help {
  margin: 4px 0 0 22px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.45;
}

.form-status {
  min-height: 0;
  margin: 0 0 8px;
  color: var(--copper);
  font-size: .85rem;
  font-weight: 650;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #b42318;
}

.contact-form .button.primary.full {
  min-height: 40px;
  padding: 10px 18px;
  font-size: .9rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(8, 59, 42, .12);
}

.contact-form .button.primary.full:disabled {
  cursor: wait;
  opacity: .68;
}

.contact-form .button.primary.full:hover,
.contact-form .button.primary.full:focus-visible {
  background: #0d4b36;
  box-shadow: 0 15px 30px rgba(8, 59, 42, .14);
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
}

.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .32);
  transform: translateY(-1px);
  outline: none;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.copyright {
  text-align: right;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(40px, 7vw, 82px) 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(255, 244, 223, .52)),
    var(--paper);
}

.legal-layout {
  display: grid;
  max-width: 920px;
  gap: 30px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(238, 226, 207, .86);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(65, 43, 20, .075);
}

.legal-layout > .text-link {
  width: fit-content;
  margin-top: 0;
  color: var(--green-dark);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.2;
  border-bottom: 1px solid rgba(8, 59, 42, .32);
}

.legal-layout > .text-link:hover,
.legal-layout > .text-link:focus-visible {
  color: var(--green);
  border-color: currentColor;
}

.legal-header {
  max-width: 760px;
  padding-bottom: 4px;
}

.legal-header h1 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.6vw, 4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.legal-header p,
.legal-section p,
.legal-section li {
  color: #5e5a52;
}

.legal-header .section-kicker {
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 9px;
  color: var(--copper);
  background: rgba(255, 244, 223, .72);
  border: 1px solid rgba(199, 160, 82, .2);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 720;
  letter-spacing: .08em;
}

.legal-header h1 + p {
  margin: 18px 0 0;
  color: #81786d;
  font-size: .92rem;
  line-height: 1.55;
}

.legal-header h1 + p + p {
  max-width: 700px;
  margin: 12px 0 0;
  padding: 14px 16px;
  color: #6b6258;
  background: rgba(255, 244, 223, .42);
  border: 1px solid rgba(238, 226, 207, .76);
  border-radius: 8px;
  font-size: .9rem;
  line-height: 1.55;
}

.legal-tabs {
  width: fit-content;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(238, 226, 207, .92);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(65, 43, 20, .055);
}

.legal-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 720;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.legal-tabs a:hover,
.legal-tabs a:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  outline: none;
  transform: translateY(-1px);
}

.legal-section {
  scroll-margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(238, 226, 207, .86);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(65, 43, 20, .045);
}

.legal-section + .legal-section {
  margin-top: 4px;
}

.legal-section h2 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 500;
  line-height: 1.12;
}

.legal-section h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 760;
  line-height: 1.35;
}

.legal-section p,
.legal-section li {
  font-size: .98rem;
  line-height: 1.72;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.legal-section a {
  color: var(--green-dark);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(8, 59, 42, .32);
}

.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--green);
  border-color: currentColor;
  outline: none;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 22px 0;
  }

  .legal-layout {
    width: min(calc(100vw - 24px), 920px);
    gap: 22px;
    padding: 22px 18px;
  }

  .legal-layout > .text-link {
    font-size: .84rem;
  }

  .legal-header h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .legal-header h1 + p {
    margin-top: 14px;
    font-size: .86rem;
  }

  .legal-header h1 + p + p {
    padding: 12px;
    font-size: .84rem;
  }

  .legal-tabs {
    width: 100%;
    justify-content: space-between;
  }

  .legal-tabs a {
    flex: 1 1 0;
    min-width: 0;
    min-height: 32px;
    font-size: .76rem;
  }

  .legal-section {
    padding: 20px 16px;
  }

  .legal-section h2 {
    font-size: 1.48rem;
  }

  .legal-section h3 {
    margin-top: 22px;
    font-size: .9rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: .92rem;
    line-height: 1.65;
  }
}

.site-storage-notice {
  position: fixed;
  z-index: 200;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  width: min(calc(100% - 40px), 1080px);
  max-height: calc(100dvh - 40px);
  margin: 0 auto;
  padding: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-storage-notice[hidden] {
  display: none;
}

.site-storage-notice__copy h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.site-storage-notice__copy p {
  margin: 0;
  color: var(--muted);
}

.site-storage-notice__copy a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.site-storage-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  .nav-menu a,
  .nav-dropdown-toggle {
    padding-inline: 8px;
    font-size: .84rem;
  }

  .overview-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

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

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 80px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    color: var(--ink);
    font-size: .95rem;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    color: var(--ink);
    font-size: .95rem;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px;
    background: #fff8e9;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-submenu {
    display: grid;
  }

  .section-heading,
  .brand-panel,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 54px 0 42px;
  }

  .about-grid {
    gap: 24px;
  }

  .about-grid h2 {
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.12;
  }

  .about-copy {
    max-width: 660px;
  }

  .about-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, .76fr) minmax(330px, .86fr);
    gap: clamp(22px, 3vw, 32px);
    align-items: start;
  }

  .contact-copy {
    max-width: 390px;
  }

  .contact-form {
    width: min(100%, 510px);
    justify-self: end;
  }

  .product-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .copyright {
    text-align: left;
  }

  .site-storage-notice {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .site-storage-notice__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(calc(100vw - 28px), var(--container));
  }

  .nav {
    width: min(calc(100vw - 20px), 1220px);
    height: 68px;
    gap: 8px;
  }

  .nav-actions {
    flex: 0 1 auto;
    min-width: 0;
    gap: 6px;
  }

  .brand-logo {
    height: 58px;
    max-width: min(124px, 31vw);
    max-height: 58px;
  }

  .nav-menu {
    inset: 68px 10px auto;
  }

  .language-tabs {
    flex: 0 0 auto;
    padding: 3px;
  }

  .language-tab {
    min-width: 32px;
    min-height: 30px;
    font-size: .78rem;
  }

  .nav-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.8vw, 3.45rem);
    line-height: 1;
  }

  .hero {
    min-height: 90vh;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(255, 253, 248, .72));
  }

  .hero-content {
    margin-top: 76px;
  }

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

  .overview-grid,
  .product-grid,
  .feature-grid,
  .process-grid,
  .about-stats,
  .about-client-grid {
    grid-template-columns: 1fr;
  }

  .about-client-grid {
    gap: 12px;
    margin-top: 24px;
  }

  .about-client-card {
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 0;
  }

  .about-client-media {
    width: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .about-client-content {
    padding: 16px 16px 17px;
  }

  .product-card--wide {
    grid-column: auto;
  }

  .overview-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .overview-card:last-child {
    border-bottom: 0;
  }

  .brand-panel,
  .products-intro-panel,
  .overview-card,
  .contact-form {
    padding: 20px;
  }

  .section,
  .contact-section {
    padding-bottom: 64px;
  }

  .section {
    padding-top: 64px;
  }

  .contact-section {
    padding-top: 52px;
  }

  .contact-copy h2 {
    font-size: clamp(2.1rem, 11vw, 2.85rem);
    line-height: 1.08;
  }

  .contact-details {
    gap: 14px;
    margin-top: 26px;
  }

  .contact-detail {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-detail.contact-detail-link.map-link {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
  }

  .contact-section .contact-form {
    padding: 17px;
  }

  .contact-form textarea {
    height: 86px;
    min-height: 80px;
  }

  .contact-detail-link {
    width: 100%;
  }

  .footer-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .copyright {
    width: 100%;
    padding-right: 0;
  }

  .site-storage-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100dvh - 24px);
    padding: 16px;
  }

  .site-storage-notice__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-slide {
    animation: none !important;
  }

  .hero-copy {
    animation: none !important;
    opacity: 0;
  }

  .product-card:hover img {
    transform: none;
  }

  .hero-slide-1 {
    opacity: 1;
  }

  .hero-copy-1 {
    opacity: 1;
  }
}

/* Sarra 2026 update */
.nav-menu {
  gap: 8px;
}

.language-dropdown {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
}

.language-current,
.language-tab {
  width: 58px;
  height: 34px;
  min-width: 58px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(238, 226, 207, .86);
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  font: inherit;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(32, 24, 16, .045);
}

.language-current {
  width: 64px;
  min-width: 64px;
  padding-inline: 8px 7px;
}

.language-current::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 5px;
  padding: 6px;
  background: rgba(255, 253, 248, .98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}

.language-dropdown.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-tab.is-active {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.flag {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(8, 59, 42, .14);
  isolation: isolate;
}

.flag::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42);
  pointer-events: none;
}

.language-code {
  color: var(--green-dark);
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .04em;
  line-height: 1;
}

.language-tab.is-active .language-code {
  color: var(--white);
}

.flag-es {
  background: linear-gradient(180deg, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
}

.flag-es::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 3px;
  height: 4px;
  border-radius: 1px;
  background: linear-gradient(180deg, #b58b22 0 50%, #8c1d2e 50% 100%);
  box-shadow: 0 0 0 .5px rgba(255, 248, 224, .75);
}

.flag-fr {
  background: linear-gradient(90deg, #002395 0 33.333%, #fff 33.333% 66.666%, #ed2939 66.666% 100%);
}

.flag-en {
  background:
    linear-gradient(0deg, transparent 0 43%, #c8102e 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 0 43%, #c8102e 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 0 36%, #fff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 0 36%, #fff 36% 64%, transparent 64%),
    linear-gradient(33deg, transparent 0 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58%),
    linear-gradient(147deg, transparent 0 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58%),
    #012169;
}

.hero {
  min-height: 92vh;
  align-items: flex-end;
}

.hero-slide {
  animation: none;
  background-position: center;
  filter: brightness(1.02) saturate(1.04);
}

.hero-slide-1 {
  background-image: url("../img/hero-home-nuts-premium.png");
  background-image: image-set(
    url("../img/hero-home-nuts-premium.webp") type("image/webp"),
    url("../img/hero-home-nuts-premium.png") type("image/png")
  );
  background-position: center right;
}

.hero-slide-2 {
  background-image: url("../img/ai-cacao-polvo.webp");
  background-position: center right;
}

.hero-slide-3 {
  background-image: url("../img/almonds-premium-clean.webp");
  background-position: center right;
}

.hero-slide-4 {
  background-image: url("../img/hero-home-cacao-premium.webp");
  background-position: center right;
}

@keyframes heroFadeNew {
  0%,
  24% {
    opacity: 1;
    transform: scale(1.02);
  }

  30%,
  94% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .74), rgba(255, 253, 248, .42) 34%, rgba(255, 253, 248, .1) 68%, rgba(255, 253, 248, 0) 100%),
    linear-gradient(0deg, rgba(8, 59, 42, .16), rgba(8, 59, 42, 0) 44%);
}

.hero-carousel-copy {
  position: relative;
  min-height: 160px;
  margin: 92px auto 96px;
  padding: 0;
}

.hero-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(500px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  animation: none;
  transform: translateY(8px);
}

.hero-panel p {
  margin: 0 0 14px;
  color: #17251d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.85vw, 1.74rem);
  font-weight: 600;
  line-height: 1.24;
  text-wrap: balance;
}

.hero-more {
  align-self: flex-start;
  color: var(--green-dark);
  font-size: .92rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-slide,
.hero-panel {
  animation: none;
}

.hero-slide,
.hero-panel {
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
}

.hero-slide.is-active,
.hero-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide.is-active {
  transform: scale(1.01);
}

.hero-panel.is-active {
  transform: translateY(0);
}

@keyframes heroPanelFade {
  0%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }

  28%,
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.about-section--intro {
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf1 58%, #ffffff 100%);
  border-bottom: 1px solid rgba(218, 201, 170, .42);
}

.about-section--intro .about-grid {
  align-items: start;
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card.featured img,
.product-card--wide img {
  aspect-ratio: 16 / 10;
}

.product-card--dates img {
  object-position: center right;
}

.product-card--dried img {
  object-position: center;
}

.cocoa-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cocoa-product-grid .product-card.featured {
  grid-column: auto;
}

.trading-section {
  padding: 82px 0;
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ee 58%, #ffffff 100%);
  border-top: 1px solid rgba(218, 201, 170, .42);
  border-bottom: 1px solid rgba(218, 201, 170, .42);
  color: var(--ink);
}

.trading-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 4.6vw, 66px);
  align-items: start;
  min-width: 0;
}

.trading-copy {
  max-width: 620px;
  padding-top: 0;
  min-width: 0;
}

.trading-heading {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.25vw, 3.45rem);
  font-weight: 600;
  line-height: 1.05;
  white-space: nowrap;
}

.trading-claim {
  max-width: 560px;
  margin: 16px 0 0;
  color: #294335;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.14rem, 1.45vw, 1.42rem);
  font-weight: 500;
  line-height: 1.32;
  text-wrap: balance;
}

.trading-copy > p:not(.section-kicker):not(.trading-values):not(.trading-claim) {
  max-width: 610px;
  margin: 22px 0 0;
  color: #4f584f;
  font-size: clamp(1rem, 1.17vw, 1.1rem);
  line-height: 1.72;
}

.trading-values {
  margin: 30px 0 0;
  color: rgba(8, 59, 42, .62);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.trading-visual {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.trading-image-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(218, 201, 170, .52);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(74, 44, 23, .1);
}

.trading-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, .02), rgba(8, 59, 42, .05));
  pointer-events: none;
}

.trading-visual-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .65s ease, transform .85s ease;
}

.trading-visual-image--control {
  object-position: 50% 42%;
}

.trading-visual-image--transport {
  object-position: 50% 50%;
}

.trading-visual-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.trading-carousel-card {
  position: absolute;
  bottom: clamp(24px, 3vw, 32px);
  left: 50%;
  width: min(380px, calc(100% - 60px));
  min-height: 120px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 252, 245, .55);
  border: 1px solid rgba(218, 201, 170, .28);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 59, 42, .04);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.trading-slide {
  position: absolute;
  inset: 18px 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
}

.trading-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.trading-slide h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.3vw, 1.3rem);
  font-weight: 600;
  line-height: 1.16;
}

.trading-slide p {
  max-width: none;
  margin: 0;
  color: #566055;
  font-size: .9rem;
  line-height: 1.5;
}

.contact-mobile-actions {
  display: none;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

.map-pin {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: currentColor;
}

.map-link:hover,
.map-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-chat {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 6px 6px 6px 16px;
  border: 1px solid rgba(218, 201, 170, .58);
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: var(--green-dark);
  box-shadow: 0 12px 28px rgba(8, 59, 42, .11);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.whatsapp-chat:hover,
.whatsapp-chat:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 154, 80, .48);
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 16px 34px rgba(8, 59, 42, .14);
  outline: none;
}

.whatsapp-chat__bubble {
  max-width: none;
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.whatsapp-chat__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 18px rgba(18, 103, 71, .2);
}

.whatsapp-chat__icon svg {
  width: 23px;
  height: 23px;
  display: block;
}

.whatsapp-chat__mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linejoin: round;
}

.whatsapp-chat__phone {
  fill: currentColor;
}

.site-footer {
  background: #062d22;
  color: rgba(255, 255, 255, .86);
  padding: 56px 0 58px;
}

.footer-grid {
  grid-template-columns: 1.25fr repeat(4, minmax(140px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: .95rem;
}

.footer-column p {
  margin: 0 0 10px;
}

.footer-column a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer .map-link {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  width: min(100%, calc(100% - 300px));
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  text-align: left;
}

@media (min-width: 1121px) {
  .about-intro {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
  }
}

@media (max-width: 1120px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid h2 {
    max-width: 720px;
  }

  .cocoa-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trading-layout {
    grid-template-columns: 1fr;
  }

  .trading-visual {
    max-width: 760px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .language-dropdown {
    align-self: center;
  }

  .language-menu {
    right: auto;
    left: 0;
  }
}

@media (max-width: 640px) {
  .language-current,
  .language-tab {
    width: 54px;
    height: 34px;
    min-width: 54px;
    min-height: 34px;
  }

  .language-current {
    width: 60px;
    min-width: 60px;
  }

  .flag {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(255, 253, 248, .72), rgba(255, 253, 248, .34) 50%, rgba(255, 253, 248, .05)),
      linear-gradient(90deg, rgba(255, 253, 248, .46), rgba(255, 253, 248, .12));
  }

  .hero-carousel-copy {
    width: min(calc(100% - 48px), var(--container));
    min-height: 142px;
    margin: 92px auto 58px;
  }

  .hero-panel {
    width: min(310px, 100%);
  }

  .hero-panel p {
    font-size: clamp(1.1rem, 6vw, 1.55rem);
    line-height: 1.22;
  }

  .about-section {
    padding: 46px 0 34px;
  }

  .about-grid {
    gap: 20px;
  }

  .about-grid h2 {
    font-size: clamp(1.76rem, 7.4vw, 2.2rem);
    line-height: 1.13;
  }

  .about-grid h2::after {
    width: 48px;
    margin-top: 18px;
  }

  .about-copy {
    max-width: 680px;
    margin-top: 0;
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.66;
  }

  .about-copy p + p {
    margin-top: 12px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .about-client-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .about-client-card {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 0;
  }

  .about-client-media {
    width: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .about-client-content {
    padding: 15px 15px 16px;
  }

  .about-stats div {
    min-height: 0;
    padding: 26px 24px 24px;
  }

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

  .trading-section {
    padding: 64px 0;
  }

  .trading-heading {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .trading-claim {
    margin-top: 12px;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    line-height: 1.35;
  }

  .trading-values {
    margin-top: 24px;
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .trading-image-frame {
    height: clamp(312px, 82vw, 380px);
    aspect-ratio: 4 / 3;
  }

    .trading-carousel-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: calc(100% - 30px);
    max-width: 390px;
    right: auto;
    min-height: 120px;
    margin: 0;
    padding: 0;
    background: rgba(255, 252, 245, .82);
    transform: translateX(-50%);
  }

  .trading-slide {
    inset: 18px 18px 20px;
    gap: 9px;
  }

  .trading-slide h3 {
    font-size: 1.16rem;
  }

  .trading-slide p {
    font-size: .9rem;
    line-height: 1.48;
  }

  .contact-mobile-actions {
    display: flex;
  }

  .whatsapp-chat {
    right: 16px;
    bottom: 22px;
    gap: 0;
    min-height: 0;
    padding: 5px;
    background: rgba(255, 253, 248, .86);
  }

  .whatsapp-chat__bubble {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .whatsapp-chat__icon {
    width: 42px;
    height: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    margin-top: 8px;
    padding-bottom: 56px;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(calc(100vw - 18px), 1220px);
    height: 68px;
    gap: 6px;
  }

  .brand-logo {
    height: 58px;
    max-width: min(124px, 31vw);
    max-height: 58px;
  }

  .nav-actions {
    gap: 5px;
  }

  .language-current,
  .language-tab {
    height: 34px;
    min-height: 34px;
  }

  .language-current {
    width: 60px;
    min-width: 60px;
    padding-inline: 7px 6px;
  }

  .language-tab {
    width: 54px;
    min-width: 54px;
  }

  .language-menu {
    gap: 6px;
    padding: 7px;
  }

  .flag {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .nav-toggle {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }

  .nav-menu {
    inset: 64px 9px auto;
    padding: 12px;
  }

  .section,
  .contact-section {
    padding-bottom: 54px;
  }

  .section {
    padding-top: 54px;
  }

  .contact-section {
    padding-top: 44px;
  }

  .about-section {
    padding: 40px 0 30px;
  }

  .about-grid {
    gap: 18px;
  }

  .about-grid h2 {
    font-size: clamp(1.72rem, 8.5vw, 2.15rem);
    line-height: 1.13;
  }

  .about-grid h2::after {
    width: 44px;
    margin-top: 16px;
  }

  .about-copy {
    margin-top: 0;
  }

  .about-copy p {
    font-size: .95rem;
    line-height: 1.64;
  }

  .about-copy p + p {
    margin-top: 11px;
  }

  .about-stats {
    gap: 10px;
    margin-top: 22px;
  }

  .about-client-grid {
    gap: 10px;
    margin-top: 16px;
  }

  .about-client-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .about-client-content {
    padding: 14px 14px 15px;
  }

  .about-client-card span {
    font-size: .95rem;
  }

  .about-client-card small {
    margin-top: 9px;
    font-size: .84rem;
    line-height: 1.5;
  }

  .about-stats div {
    padding: 20px 18px 18px;
  }

  .about-stats div::before {
    width: 26px;
    margin-bottom: 18px;
  }

  .about-stats span {
    font-size: .95rem;
  }

  .about-stats small {
    margin-top: 10px;
    font-size: .88rem;
    line-height: 1.5;
  }

  .product-grid,
  .cocoa-product-grid {
    gap: 14px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-media {
    aspect-ratio: 16 / 11;
  }

  .nuts-section .product-card--wide .product-media {
    aspect-ratio: 16 / 11;
  }

  .product-card.featured .product-media,
  .product-card--dates .product-media {
    aspect-ratio: 16 / 10;
  }

  .product-card__content {
    padding: 16px 16px 17px;
  }

  .nuts-section .card-tag,
  .cocoa-section .card-tag {
    margin-bottom: 8px;
    font-size: .68rem;
  }

  .nuts-section .product-card h3,
  .cocoa-section .product-card h3 {
    font-size: 1.14rem;
    line-height: 1.14;
  }

  .cocoa-section .product-card--cocoa-derivatives h3 {
    font-size: 1.06rem;
  }

  .nuts-section .product-card h3 + p,
  .cocoa-section .product-card h3 + p {
    margin-top: 9px;
  }

  .nuts-section .product-card p:not(.card-tag),
  .cocoa-section .product-card p:not(.card-tag) {
    font-size: .88rem;
    line-height: 1.48;
  }

  .trading-section {
    padding: 54px 0;
  }

  .trading-layout {
    gap: 24px;
  }

  .trading-copy {
    padding-top: 0;
  }

  .trading-heading {
    font-size: clamp(1.9rem, 9.5vw, 2.5rem);
    line-height: 1.12;
  }

  .trading-claim {
    margin-top: 11px;
    font-size: clamp(.98rem, 4.4vw, 1.12rem);
    line-height: 1.35;
  }

  .trading-copy > p:not(.section-kicker):not(.trading-values):not(.trading-claim) {
    margin-top: 16px;
    font-size: .94rem;
    line-height: 1.62;
  }

  .trading-values {
    margin-top: 18px;
    font-size: .68rem;
    line-height: 1.45;
  }

  .trading-image-frame {
    height: clamp(300px, 82vw, 360px);
    aspect-ratio: 4 / 3;
  }

  .trading-carousel-card {
    width: calc(100% - 24px);
    bottom: 16px;
    min-height: 120px;
    padding: 0;
    background: rgba(255, 252, 245, .65);
  }

  .trading-slide {
    inset: 16px 17px 18px;
    gap: 8px;
  }

  .trading-slide h3 {
    font-size: 1.06rem;
  }

  .trading-slide p {
    font-size: .86rem;
    line-height: 1.5;
  }

  .contact-section {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-copy h2 {
    font-size: clamp(1.5rem, 6.6vw, 1.9rem);
  }

  .contact-copy h2 + p:empty {
    display: none;
    margin: 0;
  }

  .contact-mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .contact-actions .button {
    width: auto;
    min-height: 34px;
    gap: 6px;
    padding: 7px 10px;
    font-size: .8rem;
    font-weight: 620;
    box-shadow: 0 7px 15px rgba(8, 59, 42, .09);
  }

  .contact-mobile-actions .button::before {
    content: "";
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    background: currentColor;
    -webkit-mask: var(--mobile-action-icon) center / contain no-repeat;
    mask: var(--mobile-action-icon) center / contain no-repeat;
  }

  .contact-mobile-actions .button.whatsapp {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16 3.5A12.1 12.1 0 0 0 5.7 22L4.2 28l6.2-1.6A12.1 12.1 0 1 0 16 3.5Zm0 3A9.1 9.1 0 1 1 16 24.7c-1.5 0-3-.4-4.3-1.1l-.6-.3-2.7.7.7-2.6-.4-.7A9.1 9.1 0 0 1 16 6.5Zm-4.5 5c.3-.6.6-.8 1.1-.8h.8c.3 0 .6.2.8.6l.9 2.2c.2.4.1.7-.1 1l-.7.8c-.2.2-.2.5 0 .8.8 1.3 1.8 2.3 3.1 3.1.3.2.5.2.8 0l.8-.7c.3-.2.6-.3 1-.1l2.2.9c.4.2.6.5.6.9v.8c0 .5-.4.9-1 1.1-.8.2-1.6.2-2.4 0-4-.9-7.1-4-8.1-8-.2-.9-.1-1.8.2-2.6Z'/%3E%3C/svg%3E");
    background: var(--green-dark);
    border-color: rgba(8, 59, 42, .88);
    color: var(--white);
    box-shadow: 0 9px 18px rgba(8, 59, 42, .12);
  }

  .contact-mobile-actions .button.secondary {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7.1 4.1c.5-.5 1.3-.6 1.9-.2l2.2 1.4c.5.3.7 1 .5 1.6l-.9 2.3c-.1.3 0 .6.2.8l3 3c.2.2.5.3.8.2l2.3-.9c.6-.2 1.2 0 1.6.5l1.4 2.2c.4.6.3 1.4-.2 1.9l-1.2 1.2c-.8.8-2 1.1-3.1.8-5.1-1.3-9.2-5.4-10.5-10.5-.3-1.1 0-2.3.8-3.1l1.2-1.2Z'/%3E%3C/svg%3E");
    background: rgba(255, 253, 248, .86);
    border-color: rgba(199, 160, 82, .42);
    color: var(--green-dark);
    box-shadow: 0 8px 16px rgba(65, 43, 20, .06);
  }

  .contact-mobile-actions .button.ghost {
    display: none;
  }

  .contact-details {
    gap: 6px;
    margin-top: 13px;
  }

  .contact-detail {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 7px;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
  }

  .contact-icon svg {
    width: 10.5px;
    height: 10.5px;
  }

  .contact-copy .contact-detail-label {
    font-size: .58rem;
    letter-spacing: .07em;
  }

  .contact-detail-body p,
  .contact-detail-body a,
  .contact-detail-link .contact-detail-body span:last-child {
    font-size: .86rem;
  }

  .contact-detail-link {
    width: 100%;
    padding: 5px 7px;
    border-color: rgba(238, 226, 207, .56);
    background: rgba(255, 255, 255, .36);
  }

  .contact-detail.contact-detail-link.map-link {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 7px;
  }

  .contact-copy .contact-note:empty {
    display: none;
    margin: 0;
  }

  .contact-section .contact-form {
    width: 100%;
    padding: 14px;
  }

  .contact-form .form-row {
    gap: 4px;
    margin-bottom: 6px;
  }

  .contact-form .form-row label {
    font-size: .72rem;
  }

  .contact-form input:not([type="checkbox"]),
  .contact-form textarea {
    min-height: 34px;
    padding: 7px 9px;
    font-size: .84rem;
  }

  .contact-form textarea {
    height: 76px;
    min-height: 72px;
  }

  .privacy-check {
    gap: 6px;
    font-size: .68rem;
    line-height: 1.38;
  }

  .privacy-check input {
    width: 15px;
    height: 15px;
  }

  .form-help {
    margin-left: 21px;
    font-size: .64rem;
  }

  .contact-form .button.primary.full {
    min-height: 36px;
    font-size: .84rem;
    font-weight: 680;
  }

  .whatsapp-chat {
    display: none;
  }

  .site-footer {
    padding: 46px 0 88px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-brand strong {
    font-size: 1.15rem;
  }

  .footer-column h2 {
    margin-bottom: 10px;
    font-size: .88rem;
  }

  .footer-column a,
  .footer-column p {
    font-size: .92rem;
    line-height: 1.5;
  }

  .footer-social-links {
    gap: 8px;
    margin: 12px 0 0;
  }

  .footer-social-link {
    width: 34px;
    height: 34px;
  }

  .footer-social-link svg {
    width: 17px;
    height: 17px;
  }

  .copyright {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    padding: 16px 0 64px;
    font-size: .82rem;
    line-height: 1.45;
    text-align: left;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel {
    animation: none !important;
    opacity: 0;
  }

  .hero-panel-1 {
    opacity: 1;
  }
}

.hero-slide,
.hero-panel {
  animation: none !important;
}

.hero-slide,
.hero-panel {
  opacity: 0;
  pointer-events: none;
}

.hero-panel {
  transform: translateY(8px);
}

.hero-slide.is-active,
.hero-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-panel.is-active {
  transform: translateY(0);
}
