/* ========== GRUPO BETTA — Rediseño ========== */
:root {
  --bg: #EDEFDC;
  --fg: #1F2814;
  --muted: #6D7A52;
  --accent: #6B8A3C;
  --accent-warm: #C89A48;
  --line: rgba(31, 40, 20, 0.14);
  --surface: #E4E7CE;
  --surface-2: #D8DCBE;
  --density: 1;
  --serif: 'Inter', system-ui, -apple-system, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
}

[data-mode="light"] {
  --bg: #EDEFDC;
  --fg: #1F2814;
  --muted: #6D7A52;
  --accent: #6B8A3C;
  --accent-warm: #C89A48;
  --surface: #E4E7CE;
  --surface-2: #D8DCBE;
  --line: rgba(31, 40, 20, 0.14);
}

[data-mode="dark"] {
  --bg: #1F2814;
  --fg: #EDEFDC;
  --muted: #A8B88A;
  --accent: #9CB85A;
  --accent-warm: #D9B24A;
  --line: rgba(237, 239, 220, 0.14);
  --surface: #263018;
  --surface-2: #2E391C;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.app-root {
  position: relative;
  min-height: 100vh;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: color-mix(in oklch, var(--bg) 70%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--fg);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav.nav-solid {
  background: color-mix(in oklch, var(--bg) 90%, transparent);
  border-bottom-color: var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: inherit;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.1));
}
[data-mode="dark"] .nav-logo-img,
[data-variant="v1"] .nav-logo-img,
[data-variant="v3"] .nav-logo-img {
  /* Keep natural green; logo already reads on dark */
}
.nav-logo-text {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.7;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  line-height: 1.1;
}
.nav-logo-text em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}
.nav-logo .mark {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-left: 10px;
  opacity: 0.6;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lang-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 6px 10px;
  border-radius: 999px;
}
.lang-toggle button {
  background: transparent;
  color: inherit;
  border: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.5;
  padding: 0 4px;
}
.lang-toggle button.active { opacity: 1; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #F4F3E6;
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); background: var(--accent-warm); }
.cta-btn .arrow { transition: transform 0.2s; }
.cta-btn:hover .arrow { transform: translateX(4px); }

/* ============ SHARED SECTION ============ */
.section {
  padding: calc(120px * var(--density)) 40px;
  position: relative;
}
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.section-label::before {
  content: "";
  width: 48px;
  height: 2px;
  background: currentColor;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
}

/* ============ V1: EDITORIAL — NATURAL on cream ============ */
.v1-hero {
  padding: 140px 40px 88px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.v1-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.v1-hero-left { min-width: 0; padding-right: 20px; }
.v1-hero-right { min-width: 0; }

.v1-hero .v1-tagline {
  color: var(--muted);
}
.v1-hero .v1-tagline .dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 20%, transparent);
}

.v1-hero .v1-headline {
  margin: 32px 0 28px;
  color: var(--fg);
}
.v1-hero .v1-headline em,
.v1-hero .v1-headline .em {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}

.v1-hero-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: color-mix(in oklch, var(--fg) 72%, transparent);
  max-width: 520px;
  margin: 0 0 36px;
}

.v1-hero-cta { align-self: start; }

.v1-hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 40px 80px -30px rgba(31, 40, 20, 0.35);
}
.v1-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.v1-hero-photo:hover img { transform: scale(1.04); }
.v1-hero-photo-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 8px 14px;
  color: #EDEFDC;
  background: rgba(10, 15, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
}

.v1-hero-bottom {
  max-width: 1440px;
  margin: 96px auto 0;
}

@media (max-width: 900px) {
  .v1-hero { padding: 110px 20px 60px; }
  .v1-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .v1-hero-right { order: -1; }
  .v1-hero-photo { aspect-ratio: 4 / 3; }
  .v1-hero-bottom { margin-top: 56px; }
}
.v1-hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.v1-tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}
.v1-tagline .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(127, 176, 105, 0); }
}
.v1-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 8.5vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 60px 0 0;
  position: relative;
  z-index: 2;
}
.v1-headline .em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.v1-hero-band .v1-headline em,
.v1-hero-band .v1-headline .em {
  color: #C89A48;
  font-style: italic;
}
.v1-headline .line {
  display: block;
}
.v1-headline .line > span {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  animation: riseIn 1.2s cubic-bezier(.2,.8,.2,1) both;
}
.v1-headline .line:nth-child(2) > span { animation-delay: 0.15s; }
.v1-headline .line:nth-child(3) > span { animation-delay: 0.3s; }
.v1-headline .line:nth-child(4) > span { animation-delay: 0.45s; }
@keyframes riseIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .v1-headline .line > span { animation: none; opacity: 1; transform: translateY(0); }
}

.v1-hero-sub {
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.v1-hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  position: relative;
  z-index: 2;
}
.v1-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v1-stat-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.v1-stat-value {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.v1-stat-value .small {
  font-family: var(--mono);
  font-size: 12px;
  margin-left: 4px;
  color: var(--muted);
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
}
.marquee-track span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 24px;
  font-style: normal;
  display: inline-flex;
  align-items: center;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Quienes somos editorial */
.v1-who {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.v1-who-text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.v1-who-text h2 em { color: var(--accent); }
.v1-who-text p {
  font-size: 17px;
  line-height: 1.55;
  color: color-mix(in oklch, var(--fg) 85%, transparent);
  max-width: 480px;
  margin-bottom: 20px;
}
.v1-who-map {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--fg);
  overflow: hidden;
}
.v1-who-map svg { width: 100%; height: 100%; color: var(--accent); }
.v1-who-pp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.v1-who-pp h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.v1-who-pp p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
}

/* ============ CALENDAR ============ */
.calendar {
  background: var(--surface);
  padding: 80px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 40px;
}
.cal-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 600px;
}
.cal-head h2 em { color: var(--accent); font-style: italic; }
.cal-head p {
  max-width: 380px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.cal-grid {
  display: grid;
  grid-template-columns: 80px repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-family: var(--mono);
}
.cal-grid > div {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-grid .cal-corner { background: var(--surface-2); }
.cal-grid .cal-month { color: var(--muted); background: var(--surface-2); }
.cal-grid .cal-row-label {
  text-align: left;
  justify-content: flex-start;
  color: var(--fg);
  background: var(--surface-2);
  font-weight: 600;
}
.cal-grid .cal-cell { background: transparent; }
.cal-grid .cal-cell.active-chile {
  background: linear-gradient(180deg, color-mix(in oklch, var(--accent) 50%, transparent), color-mix(in oklch, var(--accent) 30%, transparent));
}
.cal-grid .cal-cell.active-peru {
  background: linear-gradient(180deg, color-mix(in oklch, var(--accent-warm) 50%, transparent), color-mix(in oklch, var(--accent-warm) 30%, transparent));
}
.cal-grid .cal-cell.active-peak {
  background: var(--accent);
  color: #0A0F0A;
  font-weight: 700;
}
.cal-grid .cal-cell.active-peak-warm {
  background: var(--accent-warm);
  color: #0A0F0A;
  font-weight: 700;
}
.cal-legend {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cal-legend .sw {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cal-legend .box {
  width: 14px; height: 14px;
}
.cal-today {
  position: absolute;
  top: -8px; bottom: -8px;
  width: 2px;
  background: #ff4040;
  pointer-events: none;
  z-index: 3;
}
.cal-today::before {
  content: "HOY";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4040;
  color: white;
  font-family: var(--mono);
  font-size: 9px;
  padding: 3px 6px;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

/* ============ EXPORT MAP ============ */
.export-section {
  padding: 120px 40px;
}
.export-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.export-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.export-head h2 em { color: var(--accent); font-style: italic; }
.export-head p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in oklch, var(--fg) 85%, transparent);
  align-self: end;
}
.export-map-wrap {
  position: relative;
  aspect-ratio: 2 / 1;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  color: var(--fg);
}
.export-map-wrap svg { width: 100%; height: 100%; color: var(--fg); }
.export-pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s;
}
.export-pin::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.export-pin.origin {
  background: var(--accent-warm);
  width: 16px; height: 16px;
}
.export-pin.origin::before {
  border-color: var(--accent-warm);
}
.export-pin:hover { transform: translate(-50%, -50%) scale(1.3); }
.export-pin.active {
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent);
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2.4); opacity: 0; }
}
.export-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent));
  transform-origin: left center;
  pointer-events: none;
  opacity: 0.4;
}
.export-line.active { opacity: 1; height: 2px; }
.export-tooltip {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 10px 14px;
  transform: translate(-50%, -130%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
}
.export-countries {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.export-chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.2s;
  cursor: pointer;
}
.export-chip:hover, .export-chip.active {
  border-color: var(--accent);
  background: color-mix(in oklch, var(--accent) 15%, transparent);
  color: var(--accent);
}

/* ============ DATA STRIP ============ */
.data-strip {
  padding: 80px 40px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.data-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 40px;
  border-right: 1px solid var(--line);
}
.data-cell:last-child { border-right: 0; }
.data-value {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.data-value .unit {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}
.data-value em { font-style: italic; color: var(--accent); }
.data-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.5;
  margin-top: 6px;
}

/* ============ PRODUCERS ============ */
.producers {
  padding: 120px 40px;
}
.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.prod-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.3s;
}
.prod-card:hover { border-color: var(--accent); }
.prod-card-img {
  position: absolute;
  inset: 0;
  background: var(--surface-2);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.prod-card:hover .prod-card-img { transform: scale(1.05); }
.prod-card-img.chile {
  background-image: url("assets/chile-central.png");
  background-size: cover;
  background-position: center;
}
.prod-card-img.chile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,15,10,0) 0%,
    rgba(10,15,10,0) 40%,
    rgba(10,15,10,0.45) 70%,
    rgba(10,15,10,0.85) 100%);
}
.prod-card-img.peru {
  background-image: url("assets/peru-valley.png");
  background-size: cover;
  background-position: center;
}
.prod-card-img.peru::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,15,10,0) 0%,
    rgba(10,15,10,0) 40%,
    rgba(10,15,10,0.45) 70%,
    rgba(10,15,10,0.85) 100%);
}
.prod-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 10, 0.85));
  color: #EEEEEE;
}
.prod-card-overlay .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.prod-card-overlay h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.prod-card-overlay p {
  font-size: 13px;
  opacity: 0.8;
  max-width: 280px;
  margin-top: 8px;
  line-height: 1.5;
}

/* ============ CERTIFICATIONS ============ */
.certs {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.certs-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.certs-head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.02em;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.cert {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s;
  gap: 12px;
  text-align: center;
}
.cert:hover {
  border-color: var(--accent);
  background: color-mix(in oklch, var(--accent) 8%, transparent);
}
.cert-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
}
.cert-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.cert-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

/* ============ INSTALACIONES ============ */
.install {
  padding: 120px 40px;
}
.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.install-main {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg,
      color-mix(in oklch, var(--accent) 25%, var(--surface)) 0%,
      var(--surface) 50%,
      color-mix(in oklch, var(--accent-warm) 15%, var(--surface-2)) 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.install-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.install-main::after {
  content: "[ FOTO — PACKING · CÁMARAS DE FRÍO · CALIBRACIÓN ]";
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.install-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.install-side h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.install-side h2 em { color: var(--accent); font-style: italic; }
.install-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.install-spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.install-spec .num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.install-spec .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 40px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-left h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.contact-left h2 em { color: var(--accent); font-style: italic; }
.contact-info {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 40px;
}
.contact-info strong {
  color: var(--fg);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}
.contact-info a { color: var(--accent); }

.contact-form {
  display: grid;
  gap: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
}
.field.check {
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-group button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.chip-group button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #F4F3E6;
}
.submit-btn {
  justify-self: start;
  margin-top: 10px;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 40px 30px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--fg);
  font-weight: 300;
}
.footer-col h5 {
  color: var(--fg);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 11px;
}
.footer-col a { display: block; padding: 4px 0; opacity: 0.7; }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
}

/* ============ V2: NATURAL LIGHT ============ */
[data-variant="v2"] {
  --bg: #F5F2EA;
  --fg: #1A2219;
  --muted: #6B7A68;
  --accent: #3A5A2A;
  --accent-warm: #C4A86A;
  --surface: #ECE8DD;
  --surface-2: #E3DFD2;
  --line: rgba(26, 34, 25, 0.14);
}
[data-variant="v2"] .nav { color: var(--fg); mix-blend-mode: normal; }
[data-variant="v2"] .nav.nav-solid { color: var(--fg); }
[data-variant="v2"] .v2-hero {
  min-height: 100vh;
  padding: 140px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
[data-variant="v2"] .v2-hero-img-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--mono);
  color: var(--surface);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.9;
  z-index: 2;
}
[data-variant="v2"] .v2-hero-img::after {
  display: none;
}

/* ============ HARVEST ROUTE ============ */
.harvest {
  padding: calc(120px * var(--density)) 40px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.harvest-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.harvest-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.harvest-head h2 em { color: var(--accent); font-style: italic; }
.harvest-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
}
/* ============ FOOD SERVICE ============ */
.foodservice {
  padding: calc(120px * var(--density)) 40px;
}
.fs-head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: baseline;
}
.fs-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}
.fs-head h2 em { color: var(--accent); font-style: italic; }
.fs-head p {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: color-mix(in oklch, var(--fg) 85%, transparent);
  margin: 0;
  padding-top: 8px;
}
.fs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fs-card {
  background: var(--bg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  transition: background 0.3s;
}
.fs-card:hover {
  background: color-mix(in oklch, var(--accent) 8%, var(--bg));
}
.fs-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.fs-card h4 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.fs-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: auto;
}

/* 4-column certs grid (overrides the 5-col default) */
.certs-grid-4 { grid-template-columns: repeat(4, 1fr) !important; }

/* Install simple (no specs) */
.install-grid-simple {
  grid-template-columns: 1.2fr 1fr !important;
}
.install-grid-simple .install-side { justify-content: center; }

[data-variant="v2"] .v2-hero-img {
  aspect-ratio: 3/4;
  background-image: url("assets/campo-paltas.png");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
[data-variant="v2"] .v2-hero-img::after {
  content: "VALLE DE ACONCAGUA · HUERTO PROPIO";
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--mono);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 8px 12px;
  background: rgba(10,15,10,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
[data-variant="v2"] .v2-hero-text {
  padding-right: 20px;
}
[data-variant="v2"] .v2-hero-text .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
[data-variant="v2"] .v2-hero-text .eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}
[data-variant="v2"] .v2-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
[data-variant="v2"] .v2-hero-text h1 em { color: var(--accent); font-style: italic; }
[data-variant="v2"] .v2-hero-text p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 36px;
}
[data-variant="v2"] .cta-btn { background: var(--accent); color: #F5F2EA; }
[data-variant="v2"] .cta-btn:hover { background: var(--fg); }

/* ============ V3: DATA-DRIVEN ============ */
[data-variant="v3"] {
  --bg: #0F1610;
  --accent: #7FB069;
  --accent-warm: #FFD166;
}
[data-variant="v3"] .v3-hero {
  min-height: 100vh;
  padding: 100px 40px 40px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
}
[data-variant="v3"] .v3-hero-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 40px;
}
[data-variant="v3"] .v3-hero-head h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
}
[data-variant="v3"] .v3-hero-head h1 em { color: var(--accent); font-style: italic; }
[data-variant="v3"] .v3-hero-head .meta {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
[data-variant="v3"] .v3-live {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  min-height: 420px;
}
[data-variant="v3"] .v3-live-left h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
[data-variant="v3"] .v3-live-left h4::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4040;
  animation: pulse 1.5s infinite;
}
[data-variant="v3"] .v3-timeline {
  position: relative;
  height: 120px;
  border: 1px solid var(--line);
  background:
    linear-gradient(to right, transparent 0, transparent calc(100% / 12 - 1px), var(--line) calc(100% / 12 - 1px), var(--line) calc(100% / 12));
  background-size: calc(100% / 12) 100%;
}
[data-variant="v3"] .v3-bar {
  position: absolute;
  height: 40px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A0F0A;
}
[data-variant="v3"] .v3-bar.chile {
  background: var(--accent);
  top: 14px;
}
[data-variant="v3"] .v3-bar.peru {
  background: var(--accent-warm);
  top: 66px;
}
[data-variant="v3"] .v3-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
}
[data-variant="v3"] .v3-live-right {
  border-left: 1px solid var(--line);
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
[data-variant="v3"] .v3-live-stat {
  margin-bottom: 24px;
}
[data-variant="v3"] .v3-live-stat .val {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
[data-variant="v3"] .v3-live-stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
[data-variant="v3"] .v3-ticker {
  display: flex;
  gap: 40px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
[data-variant="v3"] .v3-ticker-row {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}
[data-variant="v3"] .v3-ticker-row span { color: var(--accent); }

/* ============ TWEAKS PANEL ============ */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 300px;
  background: #0A0F0A;
  color: #EEE;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px;
  z-index: 500;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
}
.tweaks.show { display: block; }
.tweaks h6 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  font-weight: 400;
}
.tweaks .row { margin-bottom: 16px; }
.tweaks .opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks button {
  background: rgba(255,255,255,0.06);
  color: #EEE;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 10px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
}
.tweaks button:hover { background: rgba(255,255,255,0.12); }
.tweaks button.active {
  background: var(--accent);
  color: #F4F3E6;
  border-color: var(--accent);
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .section, .contact, .install, .export-section, .producers { padding: 60px 20px; }
  .v1-hero { padding: 120px 20px 60px; }
  .v1-hero-top, .v1-who, .export-head, .install-grid, .contact-grid, .prod-grid { grid-template-columns: 1fr; gap: 40px; }
  .v1-hero-bottom, .data-grid, .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  [data-variant="v2"] .v2-hero { grid-template-columns: 1fr; }
  [data-variant="v3"] .v3-live { grid-template-columns: 1fr; }
  [data-variant="v3"] .v3-live-right { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
}


/* ============ WORLD MAP (realistic) ============ */
.export-map-wrap {
  aspect-ratio: 2 / 1;
  background:
    radial-gradient(ellipse at center, color-mix(in oklch, var(--accent) 6%, var(--surface)) 0%, var(--surface) 70%);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  color: var(--fg);
}
.world-svg {
  width: 100%;
  height: 100%;
  display: block;
  color: var(--fg);
}
.world-svg .land-shape {
  fill: rgba(127, 176, 105, 0.35);
  stroke: rgba(127, 176, 105, 0.55);
  stroke-width: 0.4;
  transition: fill 0.4s;
}
[data-mode="light"] .world-svg .land-shape {
  fill: rgba(47, 78, 42, 0.28);
  stroke: rgba(47, 78, 42, 0.55);
}
.world-svg .land-dot {
  fill: rgba(127, 176, 105, 0.55);
  transition: fill 0.4s;
}
[data-mode="light"] .world-svg .land-dot {
  fill: rgba(47, 78, 42, 0.5);
}
.world-svg .continent {
  display: none;
}
.world-svg .graticule line {
  stroke: var(--line);
  stroke-width: 0.3;
  stroke-dasharray: 2 4;
}
.world-svg .arc-base {
  fill: none;
  stroke: color-mix(in oklch, var(--accent) 40%, transparent);
  stroke-width: 0.8;
  stroke-dasharray: 2 3;
  opacity: 0.6;
  transition: all 0.3s;
}
.world-svg .arc-anim {
  fill: none;
  stroke: url(#arc-grad);
  stroke-width: 1.5;
  stroke-linecap: round;
  animation: arc-flow 4s linear infinite;
  filter: drop-shadow(0 0 3px color-mix(in oklch, var(--accent) 50%, transparent));
}
.world-svg .arc-grp.active .arc-base {
  stroke: var(--accent-warm);
  stroke-width: 1.2;
  opacity: 1;
}
.world-svg .arc-grp.active .arc-anim {
  stroke-width: 2.2;
  animation-duration: 2s;
}
@keyframes arc-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}
.world-svg .pin {
  cursor: pointer;
  transition: all 0.25s;
}
.world-svg .pin-dot {
  fill: var(--accent);
  transition: all 0.25s;
}
.world-svg .pin-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.5;
  transform-origin: center;
  animation: pin-ping 2.4s ease-out infinite;
}
.world-svg .pin.origin .pin-dot {
  fill: var(--accent-warm);
  r: 7;
}
.world-svg .pin.origin .pin-ring {
  stroke: var(--accent-warm);
  stroke-width: 1.5;
  opacity: 0.7;
}
.world-svg .pin.active .pin-dot {
  fill: #fff;
  r: 6;
  filter: drop-shadow(0 0 4px var(--accent));
}
.world-svg .pin.active .pin-ring {
  stroke: #fff;
  opacity: 1;
}
.world-svg .pin:hover .pin-dot {
  r: 6;
}
.world-svg .pin-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: var(--fg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-weight: 500;
  paint-order: stroke;
  stroke: var(--bg);
  stroke-width: 3;
}
.world-svg .pin.active .pin-label,
.world-svg .pin:hover .pin-label {
  opacity: 1;
}
@keyframes pin-ping {
  0% { transform: scale(0.6); opacity: 0.9; }
  80% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* world map must fit nicely in light mode too */
[data-mode="light"] .export-map-wrap {
  background: radial-gradient(ellipse at center,
    color-mix(in oklch, var(--accent) 8%, var(--surface)) 0%,
    var(--surface) 70%);
}


/* ============ INSTALACIONES — PHOTO HERO ============ */
.install { padding: 120px 40px; }

.install-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 40px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
.install-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease, transform 6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.install-photo.active {
  opacity: 1;
  transform: scale(1.03);
}
.install-hero:hover .install-photo.active {
  transform: scale(1.06);
}
.install-photo-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.install-photo-dots button {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.install-photo-dots button.active {
  background: #fff;
  width: 44px;
}
.install-photo-dots button:hover {
  background: rgba(255, 255, 255, 0.7);
}
.install-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 55%,
    color-mix(in oklch, #0A0F0A 85%, transparent) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  pointer-events: none;
}
.install-photo-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(10, 15, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #EEEEEE;
}
.install-photo-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7FB069;
  box-shadow: 0 0 10px #7FB069;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.install-photo-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  align-self: flex-end;
}
.install-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.install-head .section-label { align-self: end; margin-bottom: 8px; }
.install-head .install-title { margin: 0; max-width: none; }
@media (max-width: 900px) {
  .install-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}
.install-body {
  display: block;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.install-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.install-title em {
  color: var(--accent);
  font-style: italic;
}
.install-p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 720px;
  padding-top: 0;
}

@media (max-width: 960px) {
  .install { padding: 60px 20px; }
  .install-hero { aspect-ratio: 4 / 3; }
  .install-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 30px;
    margin-top: 30px;
  }
  .install-p { padding-top: 0; }
  .install-photo-overlay { padding: 16px 18px; }
}


/* ---------- V1 WHO — photo de paltas en el árbol ---------- */
.v1-who {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 40px;
}
.v1-who-text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 640px;
  text-wrap: balance;
}
.v1-who-text h2 em {
  color: var(--accent);
  font-style: italic;
}
.v1-who-text > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin-top: 28px;
}
.v1-who-pp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.v1-who-pp h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.v1-who-pp p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.v1-who-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
  background: #0F1610;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.v1-who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.8s cubic-bezier(.2,.7,.2,1);
}
.v1-who-photo:hover img { transform: scale(1.04); }
.v1-who-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.v1-who-photo-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  background: rgba(10, 15, 10, 0.6);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.v1-who-photo-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: whoPulse 2s ease-in-out infinite;
}
@keyframes whoPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.v1-who-photo-caption {
  position: absolute;
  bottom: 16px; right: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 960px) {
  .v1-who {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v1-who-photo { aspect-ratio: 4 / 5; max-width: 540px; }
  .v1-who-pp { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; padding-top: 24px; }
}

/* ---------- CERTIFICACIONES ---------- */
.certs {
  padding: 120px 40px;
  border-top: 1px solid var(--line);
}
.certs-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: end;
  padding-top: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.certs-head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.certs-head h3 em {
  font-style: italic;
}
.certs-grid {
  display: grid;
  gap: 0;
}
.certs-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.cert {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.3s ease;
  min-height: 240px;
}
.cert:last-child { border-right: none; }
.cert:hover { background: color-mix(in oklch, var(--accent) 5%, transparent); }
.cert-logo {
  width: 100%;
  max-width: 200px;
  height: 72px;
  color: var(--fg);
  display: flex;
  align-items: center;
}
.cert-logo svg {
  width: 100%;
  height: 100%;
}
.cert-name {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 600;
  margin-top: auto;
}
.cert-meta {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 960px) {
  .certs { padding: 60px 20px; }
  .certs-head { grid-template-columns: 1fr; gap: 20px; padding-bottom: 30px; }
  .certs-grid-4 { grid-template-columns: 1fr 1fr; }
  .cert { padding: 28px 20px; min-height: 200px; }
  .cert:nth-child(2n) { border-right: none; }
  .cert:nth-child(1), .cert:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .certs-grid-4 { grid-template-columns: 1fr; }
  .cert { border-right: none; border-bottom: 1px solid var(--line); }
  .cert:last-child { border-bottom: none; }
}


/* ========== Country marks (Marca Chile / Marca Perú) ========== */
.prod-country-mark {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  background: #fff;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.15);
  border: 3px solid #fff;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.prod-country-mark--square {
  width: 104px;
  height: 104px;
  border-radius: 50%;
}
.prod-country-mark--wide {
  width: 104px;
  height: 104px;
  border-radius: 50%;
}
.prod-card:hover .prod-country-mark {
  transform: translateY(-2px) scale(1.04);
}

/* V2 Natural: give the marks a soft cream ring so the red sits comfortably on beige */
[data-variant="v2"] .prod-country-mark {
  background: #fff;
  border-color: #F5EFE3;
  box-shadow: 0 10px 28px rgba(60, 50, 30, 0.18), 0 0 0 6px rgba(255,255,255,0.6);
}

@media (max-width: 720px) {
  .prod-country-mark--square { width: 76px; height: 76px; top: 14px; right: 14px; }
  .prod-country-mark--wide { width: 76px; height: 76px; top: 14px; right: 14px; }
}

/* ========== Producers — head + merged harvest regions ========== */
.prod-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}
.prod-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  text-wrap: pretty;
}
.prod-grid { margin-top: 0; }

.prod-regions {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.prod-region-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prod-region-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.prod-region-head h4 {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.prod-region-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.prod-region-count::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--line);
  vertical-align: middle;
  margin-right: 12px;
}
.prod-region-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.prod-region-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: padding-left 0.3s cubic-bezier(.2,.8,.2,1), color 0.2s;
}
.prod-region-list li:last-child { border-bottom: 0; }
.prod-region-list li .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.prod-region-col.peru .prod-region-list li .dot {
  background: var(--accent-warm);
}
.prod-region-list li:hover {
  padding-left: 14px;
  color: var(--accent);
}
.prod-region-col.peru .prod-region-list li:hover {
  color: var(--accent-warm);
}
.prod-region-list li:hover .dot {
  transform: scale(1.6);
}

@media (max-width: 960px) {
  .prod-head { grid-template-columns: 1fr; gap: 24px; }
  .prod-regions { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; padding-top: 30px; }
}

/* ============================================================
   COMPACT SCALE — reduce overall page density + typography
   ============================================================ */
.container { max-width: 1280px; }

/* Section padding: pull in ~25% */
.section, .certs, .contact, .install, .export-section, .producers, .foodservice, .harvest, .data-strip {
  padding-top: calc(88px * var(--density));
  padding-bottom: calc(88px * var(--density));
}

/* Hero: trim the top/bottom breathing room */
.v1-headline { font-size: clamp(36px, 4.4vw, 76px); }
.v1-stat-value { font-size: 26px; }

/* Marquee smaller */
.marquee { padding: 18px 0; }
.marquee-track { font-size: 32px; gap: 48px; }
.marquee-track span { font-size: 18px; }

/* Headline scales */
.v1-who-text h2,
.install-title,
.harvest-head h2,
.fs-head h2 { font-size: clamp(34px, 4.2vw, 64px); }
.export-head h2 { font-size: clamp(36px, 4.4vw, 72px); }
.contact-left h2 { font-size: clamp(40px, 5vw, 92px); }
.certs-head h3 { font-size: clamp(32px, 4vw, 56px); }

/* Producers title */
.prod-head h2 { font-size: clamp(34px, 4.2vw, 64px) !important; }

/* Data strip */
.data-value { font-size: clamp(40px, 5vw, 76px); }

/* Prod overlay text */
.prod-card-overlay h3 { font-size: clamp(26px, 2.8vw, 44px); }
.prod-card-overlay p { font-size: 12px; }

/* Region list smaller */
.prod-region-head h4 { font-size: clamp(26px, 2.4vw, 38px); }
.prod-region-list li { font-size: clamp(16px, 1.25vw, 20px); padding: 14px 4px; }

/* Foodservice cards */
.fs-card { padding: 32px 26px 30px; min-height: 260px; }
.fs-card h4 { font-size: 22px; }
.fs-card p { font-size: 13px; }

/* Section label tighter */
.section-label { font-size: 11px; margin-bottom: 22px; }

/* Install */
.install-hero { aspect-ratio: 16 / 9; }
.install-body { padding-top: 36px; margin-top: 36px; gap: 48px; }
.install-p { font-size: 15px; }

/* Nav slightly tighter */
.nav { padding: 14px 36px; }
.nav-logo-img { height: 32px; }

/* Footer */
.footer { padding: 48px 40px 24px; }

/* Body base / general body copy */
.v1-who-text > p,
.harvest-head p,
.export-head p,
.fs-head p { font-size: 15px; }

@media (min-width: 1400px) {
  .v1-hero, .section, .install, .export-section, .producers, .foodservice, .certs, .contact, .data-strip {
    padding-left: 60px;
    padding-right: 60px;
  }
}


/* ============ EXPORT: PACKAGING ============ */
.export-packaging-bar {
  margin-top: 56px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: color-mix(in oklch, var(--surface) 60%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.export-packaging-bar-left { min-width: 0; }
.export-packaging-bar-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.3;
}
.export-packaging-bar-title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}
.cta-btn.outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}
.cta-btn.outline:hover {
  background: var(--fg);
  color: var(--bg);
}

/* Modal */
.pack-modal {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--fg) 70%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  animation: packFade 0.25s ease-out;
}
@keyframes packFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.pack-modal-inner {
  position: relative;
  background: var(--bg);
  max-width: 1080px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 48px 48px 56px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  animation: packRise 0.35s cubic-bezier(.2,.8,.2,1);
}
@keyframes packRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.pack-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 22px;
  line-height: 1;
  color: var(--fg);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pack-modal-close:hover { background: var(--fg); color: var(--bg); }
.pack-modal-head { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.pack-modal-head h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}

.pack-cards { display: grid; gap: 32px; }
.pack-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 24px;
  background: color-mix(in oklch, var(--surface) 55%, transparent);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.pack-card-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 360px;
}
.pack-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 3px;
  background: var(--surface);
  display: block;
}
.pack-card-body { display: flex; flex-direction: column; justify-content: center; padding: 12px 8px; }
.pack-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.pack-card-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.pack-card-weight {
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pack-card-weight em {
  font-style: italic;
  color: var(--accent);
}
.pack-card-desc {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  max-width: 180px;
  text-align: right;
  padding-top: 8px;
}
.pack-card-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  row-gap: 14px;
  margin: 0;
}
.pack-card-specs dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.pack-card-specs dd {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  color: var(--fg);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .pack-modal-inner { padding: 32px 20px 40px; }
  .pack-card { grid-template-columns: 1fr; gap: 20px; padding: 16px; }
  .pack-card-media { min-height: 240px; }
  .pack-card-head { flex-direction: column; gap: 8px; }
  .pack-card-desc { text-align: left; max-width: none; }
  .export-packaging-bar { flex-direction: column; align-items: flex-start; padding: 20px; gap: 16px; }
}

/* ============ TAB NAV (router) ============ */
.nav-tabs {
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--line);
  padding: 12px 36px;
}
.nav-tabs-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-tabs-links > a,
.nav-tabs-links .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--fg);
  opacity: 0.72;
  font-weight: 500;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: opacity 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
}
.nav-tabs-links > a:hover,
.nav-tabs-links .nav-dropdown-trigger:hover { opacity: 1; }
.nav-tabs-links > a.active,
.nav-tabs-links .nav-dropdown.active .nav-dropdown-trigger {
  opacity: 1;
  background: color-mix(in oklch, var(--accent) 12%, transparent);
  border-color: color-mix(in oklch, var(--accent) 30%, transparent);
  color: var(--accent);
}
.nav-tabs-links > a::after { display: none; }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger .chev {
  font-size: 9px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-trigger .chev { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 48px -12px color-mix(in oklch, var(--fg) 22%, transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 110;
}
/* Invisible hover bridge — lets the cursor cross the 6px gap without triggering mouseleave */
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
/* Widen the hover zone around the trigger too */
.nav-dropdown.open::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 14px;
  z-index: 109;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--bg);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--fg);
  opacity: 0.8;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.15s, opacity 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  opacity: 1;
  background: color-mix(in oklch, var(--fg) 6%, transparent);
}
.nav-dropdown-menu a.active {
  opacity: 1;
  color: var(--accent);
  background: color-mix(in oklch, var(--accent) 10%, transparent);
}
.nav-dropdown-menu a::after { display: none; }

.cta-btn-active {
  background: var(--fg) !important;
  color: var(--bg) !important;
}

/* page top pad — sits under fixed nav when NOT hero page */
.page-top-pad {
  padding-top: 72px;
}

[data-variant="v2"] .nav-tabs,
[data-variant="v3"] .nav-tabs,
[data-variant="v1"] .nav-tabs {
  background: color-mix(in oklch, var(--bg) 92%, transparent);
}

@media (max-width: 960px) {
  .nav-tabs { padding: 12px 20px; }
  .nav-tabs-links { display: none; }
}


/* ========== PER-COUNTRY MAPS ========== */
.harvest-countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.harvest-country-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.harvest-country-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px dashed color-mix(in oklch, var(--fg) 16%, transparent);
}
.harvest-country-header h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1;
  flex: 1;
}
.harvest-country-flag {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 22%, transparent);
  align-self: center;
}
.harvest-country-flag.peru {
  background: #E8A95B;
  box-shadow: 0 0 0 4px color-mix(in oklch, #E8A95B 22%, transparent);
}
.harvest-country-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.cmap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.cmap-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  color: var(--fg);
  display: block;
}
.harvest-country-block:nth-child(2) .cmap-svg {
  max-width: 640px;
}
.cmap-svg text {
  user-select: none;
}
.cmap-stops {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cmap-stops li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.005em;
  color: color-mix(in oklch, var(--fg) 78%, transparent);
  cursor: default;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.cmap-stops li:hover,
.cmap-stops li.active {
  background: color-mix(in oklch, var(--c, var(--accent)) 12%, transparent);
  color: var(--fg);
  transform: translateX(4px);
}
.cmap-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.4;
  min-width: 22px;
}
.cmap-stops li.active .cmap-num {
  opacity: 0.9;
  color: var(--c, var(--accent));
}
.cmap-name {
  font-weight: 500;
}

@media (max-width: 960px) {
  .harvest-countries {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .cmap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cmap-svg, .harvest-country-block:nth-child(2) .cmap-svg {
    max-width: 320px;
    margin: 0 auto;
  }
  .harvest-hero-video {
    aspect-ratio: 16 / 9;
  }
}


/* ========== WHOLESALE HERO IMG ========== */
.wholesale-hero {
  margin: 40px auto 56px;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  max-height: 380px;
  overflow: hidden;
  border-radius: 2px;
  background: #000;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.6);
}
.wholesale-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
@media (max-width: 960px) {
  .wholesale-hero { aspect-ratio: 4 / 3; }
}
.wholesale-hero--portrait {
  max-width: 440px;
  aspect-ratio: 3 / 4;
  max-height: 560px;
}
.wholesale-hero--portrait img { object-position: center 40%; }


/* ========== CUSTOM SELECT ========== */
.csel {
  position: relative;
  font-family: var(--sans);
}
.csel-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  color: var(--fg);
  min-height: 40px;
  transition: border-color 0.2s;
  outline: none;
}
.csel-control:focus-visible,
.csel.open .csel-control {
  border-color: var(--accent);
}
.csel-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.csel:not(.has-value) .csel-value {
  color: var(--muted);
  opacity: 0.6;
}
.csel-clear {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.15s;
}
.csel-clear:hover {
  color: var(--fg);
  background: color-mix(in oklch, var(--line) 60%, transparent);
}
.csel-chev {
  font-size: 11px;
  color: var(--muted);
  transition: transform 0.2s;
  font-family: var(--mono);
}
.csel.open .csel-chev { transform: rotate(180deg); }
.csel-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  animation: csel-in 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes csel-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.csel-search {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg);
  outline: none;
}
.csel-search::placeholder { color: var(--muted); opacity: 0.6; }
.csel-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.csel-list::-webkit-scrollbar { width: 6px; }
.csel-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.csel-opt {
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--fg);
  transition: background 0.12s;
  line-height: 1.3;
}
.csel-opt.focus,
.csel-opt:hover {
  background: color-mix(in oklch, var(--accent) 10%, transparent);
}
.csel-opt.sel {
  background: color-mix(in oklch, var(--accent) 16%, transparent);
  font-weight: 600;
  color: var(--accent);
}
.csel-empty {
  padding: 16px 14px;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  list-style: none;
}


/* ========== HARVEST VIDEO COLUMN (vertical) ========== */
.harvest-video-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 24px;
}
.harvest-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 3px;
  background: #0a0f0a;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.55);
}
.harvest-video-el {
  /* Source file is 1920x1080 with portrait content (~9:16) centered between
     black bars. Container is 9:16; filling the height auto-scales width to
     ~3.16× container width — centering on content and cropping black sides. */
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translateX(-50%);
  display: block;
}
.harvest-video-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}
.harvest-video-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 22%, transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}


/* ================================================================
   MEJORAS VISUALES — REVIEW 2026-04-24
   ================================================================ */

/* --- 1. QUIÉNES SOMOS: foto idéntica al hero Grupo Betta --- */
.v1-who { grid-template-columns: 1fr 1fr !important; gap: 72px !important; align-items: center !important; }
.v1-who-photo {
  aspect-ratio: 3 / 4 !important;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(31, 40, 20, 0.35);
  background: var(--surface);
}
.v1-who-photo img { object-fit: cover; width: 100%; height: 100%; display: block; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.v1-who-photo:hover img { transform: scale(1.04); }
.v1-who-photo-tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: #fff; padding: 7px 12px; font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em; display: flex; align-items: center; gap: 8px; z-index: 3;
}
.v1-who-photo-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 30%, transparent);
}

/* --- 2. EXPORTACIÓN: mapa con más contraste, pin Chile prominente --- */
[data-mode="light"] .world-svg .land-shape {
  fill: rgba(47, 78, 42, 0.42) !important;
  stroke: rgba(47, 78, 42, 0.7) !important;
  stroke-width: 0.5 !important;
}
.world-svg .pin.origin .pin-dot { r: 9 !important; }
.world-svg .pin.origin .pin-ring {
  stroke-width: 2 !important; opacity: 0.9 !important;
}
.world-svg .origin-label {
  opacity: 1 !important; font-size: 11px !important; font-weight: 700 !important;
  fill: var(--accent-warm) !important;
}
.world-svg .arc-base {
  stroke: color-mix(in oklch, var(--accent) 55%, transparent) !important;
  opacity: 0.8 !important; stroke-width: 1 !important;
}
.world-svg .arc-anim { stroke-width: 2 !important; }
/* Chips destinos: estados más fuertes */
.export-chip.active {
  background: var(--accent) !important; color: #fff !important;
  border-color: var(--accent) !important;
}

/* --- 3. PRODUCTORES: mapas country más grandes y respirados --- */
.harvest-countries { gap: 64px !important; }
.harvest-country-block { padding: 0 !important; }
.cmap { max-width: none !important; }
.cmap-svg { min-height: 520px; }
.cmap-stops {
  display: grid !important; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px !important; margin-top: 24px !important;
}
.cmap-stops li {
  border: 1px solid var(--line); padding: 12px 14px !important;
  display: flex !important; align-items: center; gap: 12px;
  cursor: pointer; transition: all 0.2s;
  background: color-mix(in oklch, var(--surface) 60%, transparent);
}
.cmap-stops li:hover, .cmap-stops li.active {
  border-color: var(--c, var(--accent));
  background: color-mix(in oklch, var(--c, var(--accent)) 10%, var(--surface));
  transform: translateX(2px);
}
.cmap-stops li .cmap-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  color: var(--c, var(--accent)); font-weight: 700;
  padding-right: 12px; border-right: 1px solid var(--line);
}
.cmap-stops li .cmap-name {
  font-family: var(--serif); font-size: 14px; font-weight: 500; line-height: 1.2;
}

/* --- 4. FOOD SERVICE: foto sin cortar rostros --- */
section.foodservice .wholesale-hero img,
section[id="foodservice"] .wholesale-hero img {
  object-position: center 30% !important;
}

/* --- 5. MAYORISTAS: layout left-right (foto retrato a la izq, copy a la der) --- */
section[id="mayoristas"] .container > .fs-head { display: none; } /* lo movemos al row */
section[id="mayoristas"] .container::before { content: none; }
.wholesale-split {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px; align-items: center; margin-bottom: 56px;
}
.wholesale-split .wholesale-hero--portrait {
  margin: 0 !important; max-width: none !important; max-height: none !important;
  aspect-ratio: 4 / 5 !important;
}
.wholesale-split .wholesale-copy h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 4.5vw, 72px); line-height: 0.98; letter-spacing: -0.04em; margin-bottom: 24px;
}
.wholesale-split .wholesale-copy h2 em { color: var(--accent); font-style: italic; }
.wholesale-split .wholesale-copy p {
  font-size: 17px; line-height: 1.6;
  color: color-mix(in oklch, var(--fg) 85%, transparent); max-width: 540px;
}
@media (max-width: 900px) {
  .wholesale-split { grid-template-columns: 1fr; gap: 32px; }
}

/* --- 6. CARDS DE PILARES (FoodService / Mayoristas): borde lateral acento + número grande --- */
.fs-card {
  position: relative;
  border: 1px solid var(--line);
  padding-left: 36px !important;
  min-height: 280px !important;
}
.fs-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent); transform: scaleY(0.3); transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fs-card:hover::before { transform: scaleY(1); }
.fs-num {
  font-size: 32px !important; font-family: var(--serif) !important;
  font-style: italic !important; font-weight: 400 !important;
  letter-spacing: 0 !important; color: var(--accent) !important; line-height: 1;
}

/* --- 7. CERTIFICACIONES: cards más bajas (no cuadradas) --- */
.cert {
  aspect-ratio: auto !important;
  min-height: 200px !important;
  padding: 28px 20px !important;
  gap: 16px !important;
}
.cert .cert-logo svg { max-height: 68px; width: 100%; }

/* --- 8. CONTACTO: lado izq con info de contacto enriquecida --- */
.contact-info {
  display: flex; flex-direction: column; gap: 18px;
  font-family: var(--mono); font-size: 12px; line-height: 1.6;
  letter-spacing: 0.05em; color: var(--muted);
}
.contact-info strong {
  display: block; color: var(--fg); font-weight: 500;
  text-transform: uppercase; font-size: 10px; letter-spacing: 0.18em;
  margin-bottom: 4px;
}
.contact-channels { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.contact-channels a {
  color: var(--fg); display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 13px; letter-spacing: 0;
  font-family: var(--sans); transition: color 0.2s;
}
.contact-channels a:hover { color: var(--accent); }
.contact-channels a .ico {
  width: 22px; height: 22px; border-radius: 50%;
  background: color-mix(in oklch, var(--accent) 12%, transparent);
  color: var(--accent); display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* --- 9. FOOTER: más contraste, menos pálido --- */
.footer { color: color-mix(in oklch, var(--fg) 70%, transparent) !important; }
.footer-col h5 { color: var(--fg) !important; opacity: 1 !important; }
.footer-col a { color: color-mix(in oklch, var(--fg) 75%, transparent) !important; opacity: 1 !important; }
.footer-col a:hover { color: var(--accent) !important; }
.footer-bottom { color: color-mix(in oklch, var(--fg) 60%, transparent) !important; }



/* --- HERO V1: compactar para entrar en primer viewport --- */
.v1-hero { padding: 96px 40px 56px !important; }
.v1-hero .v1-headline { margin: 22px 0 22px !important; }
.v1-hero-bottom { margin-top: 56px !important; }


/* --- LANG SWITCH dropdown --- */
.lang-dd { position: relative; font-family: var(--mono); }
.lang-dd-trigger {
  background: transparent; border: 1px solid color-mix(in oklch, var(--fg) 25%, transparent);
  color: var(--fg); padding: 6px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.lang-dd-trigger:hover { border-color: var(--accent); color: var(--accent); }
.lang-dd-trigger .chev { font-size: 9px; transition: transform 0.2s; opacity: 0.6; }
.lang-dd.open .lang-dd-trigger .chev { transform: rotate(180deg); }
.lang-dd-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 160px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 4px; padding: 4px;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.25);
  z-index: 200; display: flex; flex-direction: column;
  animation: csel-in 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lang-dd-menu button {
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: 0; cursor: pointer;
  padding: 10px 12px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; color: var(--fg);
  border-radius: 3px; transition: background 0.15s;
}
.lang-dd-menu button:hover { background: color-mix(in oklch, var(--accent) 10%, transparent); }
.lang-dd-menu button.active { background: color-mix(in oklch, var(--accent) 14%, transparent); color: var(--accent); }
.lang-dd-menu .code { font-weight: 700; }
.lang-dd-menu .name { font-family: var(--sans); font-size: 12px; letter-spacing: 0; opacity: 0.8; }


/* --- CARGO SHIPS sailing along sea routes (2x size, contrasted) --- */
.world-svg .ship { pointer-events: none; }
.world-svg .ship-hull {
  fill: #fff;
  stroke: #1a1a1a;
  stroke-width: 0.6;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
}
.world-svg .ship-cabin {
  fill: var(--accent-warm);
  stroke: #1a1a1a;
  stroke-width: 0.5;
}
.world-svg .ship-container {
  fill: var(--accent);
  stroke: #1a1a1a;
  stroke-width: 0.4;
}
.world-svg .ship-mast {
  stroke: #1a1a1a;
  stroke-width: 0.7;
}
.world-svg .ship-wake {
  fill: var(--accent);
  opacity: 0.45;
  animation: ship-pulse 1.8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes ship-pulse {
  0%, 100% { opacity: 0.2; r: 6; }
  50%      { opacity: 0.55; r: 11; }
}
.world-svg .ship-body {
  animation: ship-rock 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes ship-rock {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2deg); }
}


/* --- MAPA EXPORTACIÓN: limpieza visual + barcos imagen --- */
/* Quitar grid del fondo, queda solo el océano */
.world-svg .graticule { display: none !important; }
/* Arc base: línea continua más fina, sin dash */
.world-svg .arc-base {
  stroke: color-mix(in oklch, var(--accent-warm) 70%, transparent) !important;
  stroke-width: 1 !important;
  stroke-dasharray: none !important;
  opacity: 0.6 !important;
  fill: none;
}
/* Ocultar arc-anim (era el pulso visible que ensuciaba) */
.world-svg .arc-anim { display: none !important; }
/* Pin Chile: anillo más sutil, animación más lenta */
.world-svg .pin-ring { animation-duration: 4s !important; opacity: 0.35 !important; }
/* Barcos: SVG inline (cargo-ship symbol), sin estela ni balanceo */
.world-svg .ship-wake,
.world-svg .ship-body { display: none; }
.world-svg .ship use {
  filter: drop-shadow(0 1.5px 2.5px rgba(0,0,0,0.55));
}


/* --- PINS DE DESTINO MÁS VISIBLES (rojo-coral con halo) --- */
.world-svg .pin:not(.origin) .pin-dot {
  fill: #E63946 !important;
  stroke: #fff !important;
  stroke-width: 1.4 !important;
  r: 6 !important;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
}
.world-svg .pin:not(.origin) .pin-ring {
  stroke: #E63946 !important;
  stroke-width: 1.5 !important;
  opacity: 0.6 !important;
  animation-duration: 2.6s !important;
}
.world-svg .pin:not(.origin):hover .pin-dot,
.world-svg .pin:not(.origin).active .pin-dot {
  r: 8 !important;
  fill: #ff5c6e !important;
}
.world-svg .pin:not(.origin) .pin-label {
  fill: #1a1a1a;
  font-weight: 700 !important;
  font-size: 10px !important;
}


/* ================================================================
   MOBILE — menú hamburguesa, drawer y mejoras de tipografía
   ================================================================ */
.nav-burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px; gap: 4px;
  flex-direction: column; align-items: center; justify-content: center;
  width: 36px; height: 36px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--fg); border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav.mobile-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.mobile-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 90; animation: fade-in 0.2s ease-out;
}
.nav-mobile-drawer {
  position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important;
  width: min(82vw, 360px) !important;
  height: 100vh; height: 100dvh;
  background: var(--bg) !important;
  z-index: 120 !important; padding: 80px 28px 32px;
  display: flex !important; flex-direction: column; gap: 4px;
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 40px rgba(0,0,0,0.15);
  animation: slide-in 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
  box-sizing: border-box;
}
.nav-mobile-overlay { z-index: 110 !important; }
@keyframes slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.nav-mobile-drawer a {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--fg); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid color-mix(in oklch, var(--line) 60%, transparent);
  transition: color 0.15s, padding-left 0.2s;
}
.nav-mobile-drawer a:hover, .nav-mobile-drawer a.active {
  color: var(--accent); padding-left: 6px;
}
.nav-mobile-drawer a.indent {
  font-size: 17px; padding-left: 16px; opacity: 0.85;
}
.nav-mobile-drawer .nav-mobile-section {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin: 16px 0 4px;
}

/* Breakpoint mobile: ocultar nav-tabs-links y CTA contacto, mostrar burger */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-tabs-links { display: none !important; }
  .nav-right .cta-btn { display: none; }
  .nav-burger { display: flex; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo-img { height: 28px; }
}

/* Otras mejoras mobile generales */
@media (max-width: 720px) {
  /* Tipografía hero más compacta */
  .v1-hero { padding: 84px 20px 40px !important; }
  .v1-hero-inner { gap: 28px !important; }
  .v1-hero .v1-headline { font-size: clamp(40px, 9vw, 56px) !important; margin: 18px 0 18px !important; }
  .v1-hero-bottom { margin-top: 32px !important; }
  .v1-stat-value { font-size: 28px; }

  /* Páginas interiores */
  .page-top-pad { padding-top: 70px !important; }
  .install { padding: 40px 20px !important; }
  .export-section { padding: 40px 20px !important; }
  .export-head { grid-template-columns: 1fr !important; gap: 20px !important; margin-bottom: 32px !important; }
  .export-head h2 { font-size: clamp(34px, 8.5vw, 52px) !important; }
  .install-title { font-size: clamp(34px, 8.5vw, 52px) !important; }

  /* Quiénes somos: foto va arriba en mobile */
  .v1-who { grid-template-columns: 1fr !important; gap: 28px !important; }
  .v1-who-photo { aspect-ratio: 4 / 3 !important; }
  .v1-who-text h2 { font-size: clamp(34px, 8.5vw, 52px) !important; }

  /* Mayoristas split → stack en mobile */
  .wholesale-split { grid-template-columns: 1fr !important; gap: 24px !important; }
  .wholesale-split .wholesale-copy h2 { font-size: clamp(34px, 8.5vw, 52px) !important; }
  .wholesale-split .wholesale-hero--portrait { aspect-ratio: 4 / 5 !important; }

  /* Productores cards de cosecha */
  .harvest-countries { grid-template-columns: 1fr !important; gap: 32px !important; }
  .cmap-stops { grid-template-columns: 1fr !important; }
  .prod-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* Certificaciones 4 col → 2 col */
  .certs-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }

  /* Cards de pilares 4 col → 1 col */
  .fs-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .fs-card { min-height: auto !important; padding: 24px 20px 24px 32px !important; }
  .fs-card h4 { font-size: 22px; }

  /* Contact form: 1 col en mobile */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact { padding: 40px 20px !important; }
  .contact h2 { font-size: clamp(34px, 8.5vw, 52px) !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* Footer: 1 col */
  .footer { padding: 40px 20px 24px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Mapa export: ratio más alto en mobile (más cuadrado) */
  .export-map-wrap { aspect-ratio: 1.4 / 1 !important; }

  /* Chips destinos más grandes para tap */
  .export-chip { padding: 10px 16px; font-size: 12px; }

  /* Modal pack: full screen en mobile */
  .pack-modal-inner { max-width: 95vw !important; max-height: 92vh !important; }
  .pack-cards { grid-template-columns: 1fr !important; }
}
