/* ============================================================
   CCF — Design tokens (paleta kiwi)
   ============================================================ */
:root {
  --red: #6BB01F;
  --red-dark: #3F7A12;
  --red-soft: #E8F5D6;
  --ink: #1A2214;
  --paper: #F3F4F1;
  --paper-deep: #E8EBE3;
  --white: #FFFFFF;
  --gray-600: #6E7269;
  --gray-400: #9A9D95;
  --line: #E1E2DC;
  --green: #4F8C22;
  --leaf: #8BC34A;
  --kiwi: #C8E06A;
  --seed: #D4A017;
  --soreli: #F0C83A;
  --soreli-deep: #E0B020;
  --accent: #C62828;

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1240px;
  --gutter: clamp(24px, 5vw, 64px);
  --radius: 6px;
  --ease: cubic-bezier(.22,.68,0,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation: none !important;
  }
}

html {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 800;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }

p { margin: 0 0 1em; color: var(--gray-600); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
}

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

section { padding: clamp(64px, 10vw, 140px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink p { color: #C9CAC5; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn-primary {
  background: linear-gradient(160deg, var(--leaf) 0%, var(--red) 55%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(79, 140, 34, 0.28);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(63, 122, 18, 0.32);
}
.btn-ghost { border-color: currentColor; }
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  color: var(--red);
}
.bg-ink .btn-ghost { border-color: rgba(255,255,255,0.4); }
.bg-ink .btn-ghost:hover { border-color: var(--white); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  overflow: visible;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  padding: 17px 0;
  box-shadow: 0 1px 0 var(--line);
}
/* Blur en pseudo para no atrapar el menú fijo (position:fixed) al scrollear */
.site-header.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.is-nav-open .site-header.is-scrolled::before {
  display: none;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--red); }
.logo img {
  height: clamp(88px, 11vw, 128px);
  width: auto;
  border-radius: 0;
  transition: height .35s ease, filter .35s ease;
}
.footer-top .logo img { height: 52px; }
.site-header.is-scrolled .logo img { height: 100px; }
.site-header.on-dark:not(.is-scrolled) .logo img {
  height: clamp(110px, 14vw, 168px);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
}
.site-header.on-dark:not(.is-scrolled) .logo { color: var(--white); }

/* Header blanco con foto detrás (Productos) */
.site-header.on-frost {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(212, 224, 200, 0.65);
}
.site-header.on-frost::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.on-frost .logo img {
  height: clamp(96px, 12vw, 148px);
  filter: drop-shadow(0 4px 12px rgba(26, 34, 20, 0.12));
}
.site-header.on-frost.is-scrolled .logo img {
  height: 100px;
}
.site-header.on-frost .nav-links a {
  color: var(--ink);
}
.site-header.on-frost .nav-toggle span {
  background: var(--ink);
}
.site-header.on-frost .lang-switch {
  border-left-color: var(--line);
}
.site-header.on-frost .lang-switch button {
  color: var(--ink);
}
.site-header.on-frost .container {
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.site-header.on-dark:not(.is-scrolled) .nav-links a { color: var(--white); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--red);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 10px;
  position: relative;
  z-index: 120;
  width: 44px;
  height: 44px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s ease;
  transform-origin: center;
}
.site-header.on-dark:not(.is-scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.on-dark:not(.is-scrolled) .nav-toggle.is-active span,
.nav-toggle.is-active span { background: var(--white); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 18, 32, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-backdrop { display: block; }
  .logo img,
  .site-header.is-scrolled .logo img,
  .site-header.on-frost .logo img,
  .site-header.on-frost.is-scrolled .logo img,
  .site-header.on-dark:not(.is-scrolled) .logo img {
    height: 64px;
  }
  .page-hero,
  .page-hero-compact,
  .page-hero-person {
    padding-top: 118px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 82vw);
    height: 100%;
    height: 100dvh;
    max-height: none;
    background: var(--ink);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    padding: max(88px, calc(env(safe-area-inset-top) + 72px)) var(--gutter) max(40px, env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 110;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav-links.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-links a { color: var(--white) !important; font-size: 1.3rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(380px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #2B2B29 0%, #1C1C1B 55%, #171716 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero .hero-bg {
  object-position: center 42%;
  filter: brightness(1.28) saturate(1.12) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.5) 100%);
}
.hero .hero-media::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.06) 18%,
    rgba(26, 34, 20, 0.05) 45%,
    rgba(26, 34, 20, 0.28) 100%
  );
}
.hero-media .placeholder-label { z-index: 1; }
.hero-content {
  position: relative; z-index: 2;
  padding-bottom: clamp(36px, 5vw, 56px);
  padding-top: clamp(120px, 16vw, 160px);
}
.hero-content .eyebrow { color: #FF9A9D; }
.hero-content .eyebrow::before { background: #FF9A9D; }
.hero h1 { color: var(--white); }
.hero p.lede { max-width: 46ch; font-size: 1.15rem; color: #E7E7E3; }
.page-hero .lede { color: #E7E7E3; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 1.2em; }
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
  background: rgba(26, 34, 20, 0.25);
}
.hero .btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(26, 34, 20, 0.4);
}

.hero--clean {
  min-height: clamp(420px, 58vh, 620px);
  align-items: center;
  color: var(--ink);
  background: var(--paper);
  overflow: visible;
}
.hero--clean .hero-clean-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 85% at 82% 42%, rgba(232, 245, 214, 0.95) 0%, transparent 72%),
    linear-gradient(180deg, var(--paper) 0%, #EEF2EA 100%);
  pointer-events: none;
}
.hero-clean-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.82fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(148px, 18vw, 188px);
  padding-bottom: clamp(52px, 7vw, 84px);
}
.hero--clean p.lede {
  color: #454840;
  max-width: 44ch;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.65;
  font-weight: 500;
  margin: 0;
}
.hero.hero--clean h1 {
  color: var(--ink);
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  max-width: 14ch;
  margin-bottom: 0.45em;
}
.hero--clean .hero-actions {
  margin-top: clamp(20px, 3vw, 28px);
}
.hero--clean .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.hero--clean .btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.hero-clean-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 34vw, 380px);
}
.hero-clean-visual img {
  width: min(100%, 520px);
  max-height: none;
  height: auto;
  object-fit: contain;
  display: block;
  border: none;
  outline: none;
  filter: drop-shadow(0 14px 22px rgba(26, 34, 20, 0.1));
}
@media (max-width: 860px) {
  .hero--clean {
    min-height: 0;
  }
  .hero-clean-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: clamp(132px, 22vw, 156px);
    padding-bottom: 40px;
    text-align: center;
  }
  .hero-clean-visual {
    order: 1;
  }
  .hero-clean-copy {
    order: 2;
  }
  .hero-clean-visual img {
    width: min(82%, 340px);
    max-height: none;
  }
  .hero--clean h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero--clean p.lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero--clean .hero-actions {
    justify-content: center;
  }
}

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #D9D9D6;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(#6FAE28, transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top;} 50% { transform: scaleY(1); transform-origin: top;} 51% {transform-origin: bottom;} 100% { transform: scaleY(0); transform-origin: bottom;} }

/* ============================================================
   IMAGE PLACEHOLDERS
   (swap these for real <img> tags once photos are ready)
   ============================================================ */
.placeholder {
  position: relative;
  background: linear-gradient(135deg, #E7E8E3 0%, #D7D9D1 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  min-height: 220px;
  color: #8B8D84;
}
.placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0 2px, transparent 2px 14px);
}
.placeholder-label {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 14px 18px;
  max-width: 80%;
}
.placeholder-label small { display: block; font-weight: 400; opacity: 0.75; margin-top: 4px; }
.placeholder.has-photo::before { display: none; }
.placeholder.has-photo {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(28,28,27,0.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.placeholder.has-photo:hover { box-shadow: 0 18px 36px rgba(28,28,27,0.1); transform: translateY(-3px); }
.species-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0px;
  box-sizing: border-box;
  border-radius: 6px;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   INTRO / SPLIT SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.split-media .placeholder { aspect-ratio: 4/5; min-height: 360px; }
.split-media .split-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.split-media .placeholder.has-photo { position: relative; }

/* ============================================================
   PROCESS — horizontal banner láminas (always open)
   ============================================================ */
.section-process {
  padding: clamp(72px, 9vw, 120px) 0;
}
.process-head {
  max-width: 920px;
  margin-bottom: clamp(36px, 5vw, 52px);
}
.process-head .eyebrow {
  margin-bottom: 1em;
}
.process-flow-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.5vw, 16px);
  margin: 0 0 clamp(20px, 3vw, 28px);
  padding: clamp(18px, 2.4vw, 24px) clamp(22px, 3.5vw, 40px);
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: clamp(16px, 2vw, 22px);
  box-shadow: 0 8px 28px rgba(107, 176, 31, 0.22);
}
.process-flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  padding: clamp(4px, 0.8vw, 8px) clamp(8px, 1.5vw, 14px);
  background: none;
  border: none;
  border-radius: 0;
  text-align: center;
  color: inherit;
}
.process-flow-num {
  flex: none;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.72;
  color: inherit;
}
.process-flow-label {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.65vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: inherit;
}
.process-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: rgba(255, 255, 255, 0.55);
}
.process-flow-arrow svg {
  display: block;
}
.process-lede {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: var(--gray-600);
}
@media (max-width: 720px) {
  .process-flow-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 18px;
  }
  .process-flow-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  .process-flow-step {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 6px;
  }
  .process-flow-label {
    font-size: 1rem;
  }
}
.process-sheets {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}
.process-sheet {
  --sheet-bg: #F0EFEA;
  --pill-bg: #3E5034;
  --pill-text: #F8F9F6;
  --sheet-text: #454840;
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 26px);
  background: var(--sheet-bg);
  box-shadow: 0 8px 24px rgba(26, 34, 20, 0.05);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), box-shadow 0.35s ease;
}
.process-sheets.is-visible .process-sheet {
  opacity: 1;
  transform: translateY(0);
}
.process-sheets.is-visible .process-sheet:nth-child(2) {
  transition-delay: 0.1s;
}
.process-sheets.is-visible .process-sheet:nth-child(3) {
  transition-delay: 0.2s;
}
.process-sheet:hover {
  box-shadow: 0 12px 30px rgba(26, 34, 20, 0.08);
}
.process-sheet--cream {
  --sheet-bg: #F0EFEA;
  --pill-bg: #3E5034;
  --pill-text: #F8F9F6;
}
.process-sheet--olive {
  --sheet-bg: #E6EAE1;
  --pill-bg: #526448;
  --pill-text: #F8F9F6;
}
.process-sheet--mint {
  --sheet-bg: #EBF0E6;
  --pill-bg: #3E5034;
  --pill-text: #F8F9F6;
}
.process-sheet-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(200px, 22vw, 260px);
}
.process-sheet--reverse .process-sheet-side--text {
  order: 2;
}
.process-sheet--reverse .process-sheet-visual {
  order: 1;
}
.process-sheet-side--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 36px) clamp(22px, 3.5vw, 40px);
  z-index: 1;
}
.process-sheet-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  padding: 0;
  background: none;
  color: var(--red-dark);
  border-radius: 0;
  max-width: 100%;
}
.process-sheet-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  opacity: 0.7;
  flex: none;
  color: var(--red);
}
.process-sheet-title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--red-dark);
}
.process-sheet-desc {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.65;
  color: var(--sheet-text);
  opacity: 0.78;
}
.process-sheet-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: clamp(200px, 22vw, 260px);
}
.process-sheet-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.process-sheet:hover .process-sheet-visual img {
  transform: scale(1.04);
}
.process-sheet[data-sheet="0"] .process-sheet-visual img {
  object-position: center 28%;
}
.process-sheet[data-sheet="2"] .process-sheet-visual img {
  object-position: center 40%;
}
@media (max-width: 860px) {
  .process-sheet-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .process-sheet-side--text,
  .process-sheet-visual,
  .process-sheet--reverse .process-sheet-side--text,
  .process-sheet--reverse .process-sheet-visual {
    order: 0;
  }
  .process-sheet-visual {
    min-height: 200px;
  }
  .process-sheet-side--text {
    padding: 20px 20px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .process-sheet,
  .process-sheet-visual img {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   PRODUCT — kiwi banner (sober, curved, fruit + title clear)
   ============================================================ */
.section-product {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--white);
}
.section-product--page {
  padding: 0 0 clamp(40px, 6vw, 72px);
}
.section-product--page .kiwi-banner {
  border: none;
  min-height: clamp(440px, 62vh, 580px);
  padding-top: 0;
}
.kiwi-banner {
  --kiwi-panel: #DCE8C8;
  --kiwi-panel-deep: #C9D9AE;
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1.15fr);
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  min-height: clamp(380px, 46vw, 500px);
  overflow: hidden;
  background: var(--paper);
}
/* Soft organic green field — modern curve, not a square block */
.kiwi-banner::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -18%;
  top: -30%;
  width: 72%;
  height: 160%;
  background: radial-gradient(ellipse at 35% 45%, #E4EFD4 0%, var(--kiwi-panel) 48%, var(--kiwi-panel-deep) 100%);
  border-radius: 0 58% 52% 0 / 0 46% 54% 0;
  pointer-events: none;
}
.kiwi-banner-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px) 6% clamp(24px, 4vw, 48px) clamp(16px, 3vw, 40px);
}
.section-product--page .kiwi-banner-visual {
  padding-top: clamp(152px, 16vw, 192px);
}
.section-product--page .kiwi-banner-copy {
  margin-top: clamp(184px, 19vw, 218px);
}
.kiwi-banner-fruit {
  width: min(92%, 390px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(26, 34, 20, 0.12));
  transform: translateX(2%);
  transition: transform 0.7s var(--ease);
}
.kiwi-banner:hover .kiwi-banner-fruit {
  transform: translateX(4%) scale(1.03);
}
.kiwi-banner-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  margin: clamp(20px, 3vw, 36px) clamp(20px, 4vw, 48px) clamp(20px, 3vw, 36px) clamp(12px, 2vw, 28px);
  padding: clamp(36px, 5vw, 56px) clamp(32px, 4.5vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(225, 226, 220, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(26, 34, 20, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
}
.kiwi-banner-titleband {
  background: transparent;
  padding: 0 0 22px;
}
.kiwi-banner-titleband h1,
.kiwi-banner-titleband h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.75vw, 3.55rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
}
.kiwi-banner-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  background: transparent;
}
.kiwi-banner-body p {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: var(--gray-600);
}
.kiwi-banner-body .btn-on-dark {
  align-self: flex-start;
  margin-top: 10px;
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.kiwi-banner-body .btn-on-dark:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
@media (max-width: 860px) {
  .kiwi-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }
  .section-product--page .kiwi-banner {
    min-height: 0;
  }
  .kiwi-banner::before {
    left: -20%;
    top: -10%;
    width: 140%;
    height: 48%;
    border-radius: 0 0 50% 50% / 0 0 32% 32%;
  }
  .kiwi-banner-visual,
  .section-product--page .kiwi-banner-visual {
    min-height: 0;
    padding: clamp(108px, 18vw, 128px) 24px 4px;
  }
  .kiwi-banner-fruit {
    width: min(74%, 300px);
    transform: none;
  }
  .kiwi-banner:hover .kiwi-banner-fruit {
    transform: scale(1.03);
  }
  .kiwi-banner-copy,
  .section-product--page .kiwi-banner-copy {
    margin: 0 20px 28px;
  }
  .section-product--page .kiwi-banner-copy {
    margin-top: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .kiwi-banner-fruit,
  .kiwi-banner:hover .kiwi-banner-fruit {
    transition: none;
    transform: none;
  }
}

/* Legacy chain (kept if used elsewhere) */
.chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
}
.chain-track {
  position: absolute;
  top: 65px; left: 10%; right: 10%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.chain-track-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: var(--red);
  transition: width 1.4s var(--ease);
}
.chain-node { position: relative; z-index: 1; padding: 0 14px; text-align: center; }
.chain-num {
  width: 130px; height: 130px; margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--gray-400);
  transition: border-color .4s ease, color .4s ease, background .4s ease;
}
.chain-node.is-active .chain-num { border-color: var(--red); color: var(--red); background: #EAF5DE; }
.chain-num.has-photo { padding: 0; overflow: hidden; border-color: var(--line); background: none; box-shadow: 0 8px 20px rgba(28,28,27,0.08); }
.chain-num.has-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.chain-node.is-active .chain-num.has-photo { border-color: var(--red); box-shadow: 0 0 0 3px rgba(111,174,40,0.22); }
.chain-node h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 6px; }
.chain-node p { font-size: 0.88rem; margin: 0; }
@media (max-width: 860px) {
  .chain { grid-template-columns: 1fr; gap: 36px; }
  .chain-track { display: none; }
}

/* ============================================================
   PRODUCT BLOCKS
   ============================================================ */
.product-block { padding: clamp(40px,7vw,90px) 0; border-top: 1px solid var(--line); }
.product-block:first-of-type { border-top: none; }
.product-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.variety-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.variety-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
}
.product-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.product-grid .placeholder { aspect-ratio: 16/10; min-height: 260px; }
@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr; } }

.species-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.species-row:has(.kiwi-only) { grid-template-columns: minmax(260px, 420px); }
.species-col .placeholder { aspect-ratio: 1/1; min-height: 240px; margin-bottom: 22px; }
.species-col h3 { margin-bottom: 14px; }
.variety-list-vertical { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.variety-list-vertical li { font-size: 0.92rem; color: var(--gray-600); padding: 7px 0; border-top: 1px solid var(--line); }
.variety-list-vertical li:first-child { border-top: none; }
@media (max-width: 760px) { .species-row { grid-template-columns: 1fr; } }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--red); }
.stat span { font-size: 0.9rem; color: var(--gray-600); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.partner-slot {
  flex: 1 1 160px;
  min-height: 96px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}
.partner-slot.has-logo {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px 16px;
}
.partner-slot.has-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.partner-slot img {
  max-width: 88%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-slot img.logo-kiwi {
  max-height: 78px;
  max-width: 96%;
}
.partner-slot span {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 600;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.section-certs {
  background: var(--white);
}
.certs-head {
  max-width: 46rem;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.certs-head h2 { margin-bottom: 12px; }
.certs-lede {
  color: var(--gray-600);
  max-width: 58ch;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cert-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--white) 0%, #F7FAF3 100%);
  box-shadow: 0 10px 28px rgba(63, 122, 18, 0.06);
}
.cert-mark {
  width: 64px;
  height: 64px;
  color: var(--red);
}
.cert-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cert-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.cert-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .certs-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MARKETS (mismo formato: tabs + países + mapa)
   ============================================================ */
#mercados .markets-title {
  letter-spacing: -0.03em;
}
.markets-lede {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0 0 8px;
}
.ccf-mercados { margin-top: 36px; }
.continentes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 36px;
  margin-bottom: 0;
}
.continente-tab {
  appearance: none;
  background: none;
  border: none;
  padding: 4px 0 12px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}
.continente-tab:hover { color: var(--red-dark); }
.continente-tab.activo_mapa,
.continente-tab[aria-selected="true"] {
  color: var(--red);
  border-bottom-color: var(--red);
}
.ccf-mercados .mercados-lista {
  display: none;
  width: 100%;
  min-height: 88px;
  margin-top: 0;
  padding: 26px 28px 26px 56px;
  border: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  background: #F7F8F4 url("../images/mapas/pin.jpg") 18px 30px no-repeat;
}
.ccf-mercados .mercados-lista.is-active { display: block; }
.ccf-mercados .mercados-lista ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
}
.ccf-mercados .mercados-lista li {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
  position: relative;
  padding-left: 14px;
}
.ccf-mercados .mercados-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-sizing: border-box;
}
.ccf-mercados .mapa {
  display: none;
  margin: 28px 0 8px;
  width: 100%;
  text-align: center;
}
.ccf-mercados .mapa.is-active { display: block; }
.mapa-stage {
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: visible;
}
.ccf-mercados .mapa img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.map-origin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  z-index: 5;
  width: 0;
  height: 0;
  pointer-events: none;
}
.map-origin-label {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: #1A2214;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(26, 34, 20, 0.28);
}
.map-origin-pin {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 5px rgba(107, 176, 31, 0.35);
}
.map-origin-pin::after {
  display: none;
}
@media (max-width: 700px) {
  .map-origin-label {
    font-size: 0.64rem;
    padding: 4px 8px;
    right: auto;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
  .map-origin-pin {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 700px) {
  .continentes { gap: 8px 22px; }
  .ccf-mercados .mercados-lista { padding: 22px 16px 22px 48px; background-position: 12px 26px; }
  .ccf-mercados .mercados-lista ul { gap: 8px 18px; }
}

/* ============================================================
   CARDS (Nosotros / Procesos detail)
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--white) 0%, var(--red-soft) 140%);
  box-shadow: 0 8px 24px rgba(63, 122, 18, 0.06);
}
.value-card .num { font-family: var(--font-display); color: var(--red); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.08em; }

/* ============================================================
   LANGUAGE BAR
   ============================================================ */
.nav-links a.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background .25s ease, transform .25s ease;
}
.nav-links a.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav-links a.nav-cta::after { display: none; }
@media (max-width: 860px) {
  .nav-links a.nav-cta { display: inline-block; margin-top: 10px; }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.site-header.on-dark:not(.is-scrolled) .lang-switch { border-left-color: rgba(255,255,255,0.3); }
.lang-switch button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--ink);
  opacity: 0.55;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 4px 6px;
  cursor: pointer;
  transition: opacity .25s ease, color .25s ease, transform .25s ease;
  line-height: 1;
}
.lang-switch .lang-code {
  display: block;
}
.lang-switch .lang-flag {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.12));
}
.site-header.on-dark:not(.is-scrolled) .lang-switch button { color: var(--white); }
.site-header.on-frost .lang-switch button { color: var(--ink); }
.lang-switch button:hover { opacity: 0.9; transform: translateY(-1px); }
.lang-switch button.active { opacity: 1; color: var(--red) !important; }
@media (max-width: 860px) {
  .nav-links .lang-switch {
    border-left: none;
    padding-left: 0;
    margin: 18px 0 0;
    gap: 16px;
  }
  .nav-links .lang-switch button {
    color: var(--white);
    opacity: 0.65;
    font-size: 0.85rem;
  }
  .nav-links .lang-switch .lang-flag { font-size: 1.2rem; }
  .nav-links .lang-switch button.active { opacity: 1; color: var(--red) !important; }
}

/* ============================================================
   TABS (Quiénes somos / Historia)
   ============================================================ */
.tabs-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0 0 40px;
}
.tab-btn {
  border: none;
  background: transparent;
  padding: 11px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active {
  background: linear-gradient(160deg, var(--leaf), var(--red));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(63, 122, 18, 0.28);
}
.tab-panel {
  margin-top: 0;
}
.section-nosotros {
  padding: clamp(48px, 7vw, 96px) 0;
}
.nosotros-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.nosotros-copy {
  max-width: 54ch;
}
.nosotros-copy p {
  margin-bottom: 1.15em;
  color: var(--gray-600);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.7;
  opacity: 1;
}
.nosotros-copy p:last-child { margin-bottom: 0; }
.nosotros-photo-solo {
  margin: 0;
  width: 100%;
  max-width: 420px;
  justify-self: end;
}
.nosotros-photo-solo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(28, 28, 27, 0.12);
}
@media (max-width: 860px) {
  .nosotros-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .nosotros-copy {
    max-width: none;
  }
  .nosotros-photo-solo {
    max-width: 360px;
    justify-self: center;
  }
  .nosotros-photo-solo img {
    aspect-ratio: 5 / 6;
  }
}

/* ============================================================
   TIMELINE (Historia)
   ============================================================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -32px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.timeline-item .year { font-family: var(--font-display); font-weight: 800; color: var(--red); display: block; margin-bottom: 6px; }

/* ============================================================
   PROCESS DETAIL (Procesos page)
   ============================================================ */
.process-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px,5vw,70px); align-items: center; padding: clamp(48px,7vw,90px) 0; border-top: 1px solid var(--line); }
.process-detail:first-of-type { border-top: none; }
.process-detail.reverse .placeholder { order: 2; }
.process-detail .placeholder { aspect-ratio: 4/3; min-height: 280px; }
@media (max-width: 860px) { .process-detail { grid-template-columns: 1fr; } .process-detail.reverse .placeholder { order: 0; } }
.process-index { font-family: var(--font-display); font-weight: 800; color: var(--line); font-size: 3.5rem; line-height: 1; margin-bottom: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,70px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--white); color: var(--ink);
  transition: border-color .25s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--gray-400); margin-top: 14px; }
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.map-frame { border: none; width: 100%; height: 250px; min-height: 250px; display: block; }
.map-card {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 700px) {
  .map-frame { height: 220px; min-height: 220px; }
  .field input, .field textarea { font-size: 16px; }
}
.contact-info-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-info-list li { padding: 16px 0; border-top: 1px solid var(--line); }
.contact-info-list li:first-child { border-top: none; }
.contact-info-list .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); display: block; margin-bottom: 4px; }
.contact-info-list a:hover { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--white); color: var(--gray-600); padding: 70px 0 30px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top .logo { color: var(--ink); }
.footer-col h4 { color: var(--ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; color: var(--gray-600); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.82rem; color: var(--gray-400); flex-wrap: wrap; gap: 12px; }

/* Page hero (interior pages, shorter than home hero) */
.page-hero {
  position: relative; color: var(--white); padding: 190px 0 90px;
  background: linear-gradient(155deg, #2B2B29 0%, #1C1C1B 60%, #171716 100%);
  overflow: hidden;
}
.page-hero h1 { color: var(--white); }
.page-hero .hero-media {
  position: absolute; inset: 0;
}
.page-hero .hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    155deg,
    rgba(26, 34, 20, 0.52) 0%,
    rgba(63, 122, 18, 0.28) 45%,
    rgba(10, 10, 10, 0.62) 100%
  );
}
.page-hero-compact {
  min-height: 0;
  /* Más aire para el logo grande: no invade la sección siguiente */
  padding: clamp(168px, 20vw, 210px) 0 clamp(56px, 7vw, 80px);
}
.page-hero-compact .hero-media::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.12) 28%,
    rgba(26, 34, 20, 0.45) 100%
  );
}
.page-hero-compact + section {
  padding-top: clamp(56px, 8vw, 96px);
}
.page-hero-compact .hero-bg {
  object-position: center 45%;
}
.page-hero-kiwis .hero-bg {
  filter: brightness(1.12) saturate(1.06) contrast(1.04);
}
.page-hero-kiwis .hero-media::after {
  background: linear-gradient(
    180deg,
    rgba(18, 24, 12, 0.28) 0%,
    rgba(18, 24, 12, 0.38) 42%,
    rgba(10, 12, 8, 0.58) 100%
  );
}
.page-hero-kiwis .eyebrow {
  color: #E8F5D6;
}
.page-hero-kiwis .eyebrow::before {
  background: #E8F5D6;
}
.page-hero-kiwis h1,
.page-hero-kiwis .eyebrow {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
@media (max-width: 860px) {
  .page-hero-kiwis .hero-bg {
    filter: brightness(0.92) saturate(1.04) contrast(1.06);
    object-position: center 40%;
  }
  .page-hero-kiwis .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(12, 16, 8, 0.45) 0%,
      rgba(12, 16, 8, 0.52) 48%,
      rgba(8, 10, 6, 0.62) 100%
    );
  }
}
.page-hero-compact h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.25em;
}
.page-hero-compact .lede {
  margin-bottom: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}
.page-hero-person {
  min-height: clamp(320px, 42vh, 440px);
  display: flex;
  align-items: flex-end;
  padding: 140px 0 56px;
}
.page-hero-person .hero-media {
  background: #1a1a18;
}
.page-hero-person .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Recorte cerrado: cara + letrero */
  object-position: 32% 45%;
}
.page-hero-person .hero-media::after {
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.28) 42%,
    rgba(0,0,0,0.38) 100%
  );
}
.page-hero .container { position: relative; z-index: 1; }

/* CCF extras over NeoFresh base */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.stat-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.stat-card b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--red);
  font-weight: 800;
}
.stat-card span { display: block; margin-top: 6px; font-size: 0.9rem; color: var(--gray-600); }
.species-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.kiwi-only {
  max-width: 420px;
}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SEASON CALENDAR + PACK / NUTRITION (formato SPL)
   ============================================================ */
.season-wrap { margin-top: 32px; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
.season-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.82rem;
}
.season-table th,
.season-table td {
  border: 1px solid #D8D9D4;
  text-align: center;
  padding: 10px 6px;
}
.season-table th {
  background: linear-gradient(160deg, #24331A 0%, var(--ink) 100%);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-color: #2A3324;
}
.season-table th:first-child,
.season-table td:first-child {
  text-align: left;
  padding-left: 14px;
  min-width: 110px;
  font-weight: 700;
}
.season-table td {
  background: #E9EAE6;
  height: 36px;
}
.season-table td:first-child {
  background: #E9EAE6;
  color: var(--ink);
}
.season-table td.on { background: var(--red); border-color: #D8D9D4; }
.season-table tr.season-soreli td.on {
  background: var(--soreli);
}
.season-table tr.season-soreli td:first-child {
  color: var(--ink);
}
.season-table td.on.ac {
  background: repeating-linear-gradient(
    -45deg,
    var(--red),
    var(--red) 6px,
    var(--leaf) 6px,
    var(--leaf) 12px
  );
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.season-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.season-legend i {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.season-legend .lg-on { background: var(--red); }
.season-legend .lg-soreli { background: var(--soreli); }
.season-legend .lg-ac {
  background: repeating-linear-gradient(
    -45deg,
    var(--red),
    var(--red) 4px,
    #8BC34A 4px,
    #8BC34A 8px
  );
}

.pack-table-wrap { margin-top: 28px; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }

/* Packaging — compact 3×2 gallery */
.section-pack {
  padding: clamp(56px, 8vw, 96px) 0;
}
.pack-lede {
  max-width: 60ch;
  margin: 0 0 clamp(24px, 3vw, 32px);
  color: var(--gray-600);
}
.pack-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 12px);
  max-width: 780px;
  margin: 0 auto clamp(28px, 4vw, 36px);
  width: 100%;
}
.pack-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper-deep);
  aspect-ratio: 4 / 3;
  min-height: 0;
}
.pack-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.pack-gallery-item:hover img {
  transform: scale(1.04);
}
.pack-gallery-item:nth-child(1) img { object-position: center 35%; }
.pack-gallery-item:nth-child(2) img { object-position: center 42%; }
.pack-gallery-item:nth-child(3) img { object-position: center 40%; }
.pack-gallery-item:nth-child(4) img { object-position: center 40%; }
.pack-gallery-item:nth-child(5) img { object-position: center; }
.pack-gallery-item:nth-child(6) img { object-position: center 30%; }
@media (max-width: 640px) {
  .pack-gallery {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
@media (max-width: 400px) {
  .pack-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pack-gallery-item {
    aspect-ratio: 1 / 1;
  }
}

.pack-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}
.pack-table th,
.pack-table td {
  border: 1px solid #D8D9D4;
  padding: 12px 14px;
  text-align: center;
  vertical-align: middle;
}
.pack-table th {
  background: linear-gradient(160deg, #24331A 0%, var(--ink) 100%);
  font-weight: 700;
  color: var(--white);
  border-color: #2A3324;
}
.pack-table td {
  background: #E9EAE6;
  color: var(--ink);
}
.pack-table td:first-child {
  text-align: center;
  background: #E9EAE6;
  font-weight: 700;
}
.pack-table td.pack-varieties {
  vertical-align: middle;
}
.pack-table td.pack-varieties span {
  display: block;
  line-height: 1.55;
}

.section-nutrition {
  padding: 0 0 clamp(48px, 7vw, 88px);
  background: var(--white);
}
.nutrition-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  max-width: none;
}
.section-nutrition > .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.nutrition-media {
  margin: 0;
  position: relative;
  top: auto;
  border-radius: 0;
  overflow: hidden;
  background: var(--paper-deep);
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: min(46vh, 420px);
  height: auto;
  box-shadow: none;
}
.nutrition-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transition: transform 0.8s var(--ease);
}
.nutrition-shell:hover .nutrition-media img {
  transform: scale(1.03);
}
.nutrition-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) var(--gutter) 0;
  background: var(--white);
}
@media (max-width: 900px) {
  .nutrition-media {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
  .nutrition-highlights { grid-template-columns: 1fr 1fr; }
  .nutrition-benefits { grid-template-columns: 1fr; }
}
.nutrition-intro h2 { margin-bottom: 12px; }
.nutrition-intro p {
  color: var(--gray-600);
  max-width: 62ch;
  margin-bottom: 0;
}
.nutrition-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.nutrition-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: none;
}
.nutrition-stat .val {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.nutrition-stat .lbl {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.nutrition-stat .hint {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.nutrition-benefits {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nutrition-benefits li {
  list-style: none;
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.92rem;
  border-radius: 0 12px 12px 0;
}
.nutrition-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.nutrition-table-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 18px 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nutrition-table-head h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
}
.nutrition-table-head span {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-align: right;
}
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.nutrition-table th,
.nutrition-table td {
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.nutrition-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  background: var(--white);
}
.nutrition-table td:nth-child(2),
.nutrition-table td:nth-child(3),
.nutrition-table th:nth-child(2),
.nutrition-table th:nth-child(3) {
  text-align: right;
  white-space: nowrap;
}
.nutrition-table tr.group td {
  background: #F4F7EF;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 14px;
  padding-bottom: 10px;
}
.nutrition-table tr:last-child td { border-bottom: none; }
.nutrition-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.nutrition-bar .track {
  width: 88px;
  height: 6px;
  border-radius: 999px;
  background: #E7ECDF;
  overflow: hidden;
  flex-shrink: 0;
}
.nutrition-bar .fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--red-dark));
}
.nutrition-bar .pct {
  min-width: 3.2em;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.85rem;
}
.nutrition-source {
  margin: 14px 20px 18px;
  font-size: 0.82rem;
  color: var(--gray-400);
}
.nutrition-source a { color: var(--red); font-weight: 600; }
.nutrition-source a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .nutrition-highlights { grid-template-columns: 1fr; }
  .nutrition-table th:nth-child(3),
  .nutrition-table td:nth-child(3) { display: none; }
  .nutrition-bar .track { width: 56px; }
}
