/* ==========================================================================
   EKU SNACKS — WEB V2 COMPLETE 9-SECTION STYLESHEET
   Aesthetic: Contemporary Pacific Harvest / Editorial FMCG Premium
   Tokens: Instrument Sans, Newsreader Italic, #F8F5EB, #161513, #FFAE00, #0A4D2E
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Typography */
  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  /* Core Palette */
  --color-bg: #F8F5EB;
  --color-bg-alt: #F3EFE4;
  --color-bg-card: #FFFFFF;
  --color-text-primary: #161513;
  --color-text-secondary: #3C3830;
  --color-text-muted: #6B665A;
  --color-text-light: #F8F5EB;
  
  /* Brand Accents */
  --color-accent: #FFAE00;
  --color-accent-hover: #F2A400;
  --color-accent-active: #E09800;
  --color-accent-text: #12110D;
  --color-gold-terruno: #C5A059;

  /* Deep Forest & Sensory Palette */
  --color-finca: #0A4D2E;
  --color-finca-dark: #051F13;
  --color-finca-light: #12663D;
  --color-crunch-dark: #0F1612;
  --color-crunch-card: #18221D;

  /* Flavor Chromatic Identity */
  --sku-salted: #56C8F5;
  --sku-salted-bg: #EAF7FE;
  --sku-garlic: #ECEAE6;
  --sku-garlic-ribbon: #DCA01C;
  --sku-garlic-bg: #F6F4F0;
  --sku-spicy: #F1D09A;
  --sku-spicy-ribbon: #D91414;
  --sku-spicy-bg: #FDF2E9;
  --sku-madurito: #E8CF96;
  --sku-madurito-ribbon: #FFA800;
  --sku-madurito-bg: #FDF8ED;

  /* Borders & Dividers */
  --color-border-subtle: rgba(22, 21, 19, 0.10);
  --color-border-dark: rgba(248, 245, 235, 0.12);
  --color-divider: rgba(22, 21, 19, 0.14);

  /* Layout & Geometry */
  --container-max: 1240px;
  --section-padding-y: clamp(72px, 10vh, 128px);
  --section-padding-x: clamp(20px, 4.5vw, 64px);
  --hero-padding-x: clamp(28px, 5vw, 84px);
  --hero-content-max: 560px;
  --body-max: 460px;
  --header-height: 72px;

  /* Motion & Easing */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-in: 0.75s;
}

/* --------------------------------------------------------------------------
   02. RESET & GLOBAL BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: var(--color-bg);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.w-full {
  width: 100%;
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   03. LAYOUT CONTAINERS & COMMON SECTION ELEMENTS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.section {
  position: relative;
  width: 100%;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  overflow: hidden;
}

.section-header {
  max-width: 780px;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.section-eyebrow--gold {
  color: var(--color-accent);
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 18px;
}

.section-title--dark {
  color: #FFFFFF;
}

.section-title--light {
  color: var(--color-text-light);
}

.section-title__sub {
  display: block;
  font-size: 0.72em;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.section-title--dark .section-title__sub {
  color: rgba(255, 255, 255, 0.78);
}

.section-desc {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 620px;
}

.section-desc--dark {
  color: rgba(248, 245, 235, 0.82);
}

.section-desc--light {
  color: rgba(248, 245, 235, 0.88);
}

.section-header.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-actions {
  margin-top: 32px;
}

.section-microcopy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: clamp(48px, 6vh, 72px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section-microcopy--dark {
  color: rgba(248, 245, 235, 0.45);
}

.section-microcopy--light {
  color: rgba(248, 245, 235, 0.60);
}

/* --------------------------------------------------------------------------
   04. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: transform 0.2s var(--ease-editorial), background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn__arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background-color: var(--color-text-primary);
  color: var(--color-bg);
  border: 1px solid var(--color-text-primary);
}

.btn--primary:hover {
  background-color: #2E2B27;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 21, 19, 0.15);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-accent-text);
  border: 1px solid rgba(22, 21, 19, 0.08);
  box-shadow: 0 2px 8px rgba(255, 174, 0, 0.25);
}

.btn--accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 174, 0, 0.40);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
}

.btn--outline:hover {
  background-color: rgba(22, 21, 19, 0.05);
  transform: translateY(-2px);
}

.btn--outline-light {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* --------------------------------------------------------------------------
   05. GLOBAL STICKY HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: rgba(248, 245, 235, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header__container {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-header__logo-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.site-header__logo-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 3px;
}

.site-header__nav {
  display: block;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  background: rgba(248, 245, 235, 0.95);
  padding: 6px 20px;
  border-radius: 24px;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.site-header__link {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.site-header__num {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0.75;
}

.site-header__link:hover,
.site-header__link.is-active {
  color: var(--color-text-primary);
}

.site-header__link.is-active {
  position: relative;
}

.site-header__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 1px;
}

.site-header__actions {
  display: flex;
  align-items: center;
}

.site-header__cta-btn {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: var(--color-accent);
  color: var(--color-accent-text);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(22, 21, 19, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.site-header__cta-btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   06. SECCIÓN 01: PRESENTACIÓN (Hero Hook)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg);
  padding-top: var(--header-height);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  display: block;
  transition: object-position 0.4s ease;
}

/* Localized Scrim Layer */
.hero__edge {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 245, 235, 0.92) 0%,
    rgba(248, 245, 235, 0.75) 18%,
    rgba(248, 245, 235, 0.28) 32%,
    rgba(248, 245, 235, 0) 42%
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

.hero-section.is-frame-v01 .hero__image {
  object-position: 68% center;
}

.hero-section.is-frame-v01 .hero__edge {
  background: linear-gradient(
    90deg,
    rgba(248, 245, 235, 0.94) 0%,
    rgba(248, 245, 235, 0.78) 20%,
    rgba(248, 245, 235, 0.35) 34%,
    rgba(248, 245, 235, 0) 48%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--hero-content-max);
  margin-left: var(--hero-padding-x);
  padding-top: clamp(32px, 6vh, 64px);
  padding-bottom: clamp(32px, 6vh, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(11px, 0.85vw, 12.5px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: clamp(16px, 2.2vh, 24px);
}

.hero__copy-variant {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__copy-variant[hidden] {
  display: none !important;
}

.hero__h1 {
  font-family: var(--font-sans);
  font-size: clamp(42px, 4.6vw, 76px);
  font-weight: 550;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  text-transform: uppercase;
  margin: 0;
}

.hero__h1-accent {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.96em;
  line-height: 0.96;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--color-text-primary);
  margin-top: 0.08em;
}

.hero__body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: var(--body-max);
  margin: clamp(22px, 3vh, 32px) 0 0 0;
}

.hero__actions {
  margin-top: clamp(28px, 3.6vh, 40px);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-accent);
  color: var(--color-accent-text);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 4px;
  border: 1px solid rgba(22, 21, 19, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s var(--ease-editorial), background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.hero__cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 174, 0, 0.30);
}

.hero__cta-arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(3px);
}

.hero__microcopy {
  position: absolute;
  bottom: clamp(24px, 3.8vw, 40px);
  left: var(--hero-padding-x);
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__microcopy-line--label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0.85;
}

.hero__microcopy-line--value {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Hero Controls Pill */
.hero__controls {
  position: absolute;
  bottom: clamp(24px, 3.8vw, 40px);
  right: var(--hero-padding-x);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(248, 245, 235, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hero__control-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__control-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__control-divider {
  font-size: 11px;
  color: var(--color-divider);
}

.hero__control-sep {
  font-size: 10.5px;
  color: var(--color-divider);
}

.hero__control-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 4px 8px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.hero__control-btn:hover {
  color: var(--color-text-primary);
}

.hero__control-btn.is-active {
  color: var(--color-accent-text);
  background: var(--color-accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.hero__scroll {
  position: absolute;
  bottom: clamp(20px, 3.5vw, 34px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.hero__scroll-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-track {
  width: 1px;
  height: 24px;
  background: var(--color-divider);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-text-primary);
  animation: scrollPulse 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* --------------------------------------------------------------------------
   07. SECCIÓN 02: EL CRUNCH (Sensory Snap)
   -------------------------------------------------------------------------- */
.section--crunch {
  background: radial-gradient(circle at 80% 20%, #1c2b22 0%, var(--color-crunch-dark) 60%);
  color: var(--color-text-light);
}

.section__bg-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 174, 0, 0.08) 0%, rgba(10, 77, 46, 0) 70%);
  pointer-events: none;
}

.crunch-display {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.crunch-display__kinetic {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--color-border-dark);
  padding-bottom: 24px;
  opacity: 0.85;
}

.crunch-word {
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.crunch-word--1 {
  font-size: clamp(24px, 3.5vw, 42px);
  color: rgba(248, 245, 235, 0.4);
}

.crunch-word--2 {
  font-size: clamp(44px, 7vw, 96px);
  color: var(--color-accent);
  text-shadow: 0 0 40px rgba(255, 174, 0, 0.25);
}

.crunch-word--3 {
  font-size: clamp(24px, 3.5vw, 42px);
  color: rgba(248, 245, 235, 0.4);
}

.crunch-experience-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.crunch-experience-grid--clean {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.crunch-sensory-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
}

.caption-metric {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.caption-desc {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(248, 245, 235, 0.82);
}

.crunch-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.crunch-features--clean {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.crunch-features--clean .crunch-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.crunch-features--clean .crunch-card__tag {
  margin-top: auto;
}

.crunch-card {
  background: rgba(24, 34, 29, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-dark);
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.crunch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 174, 0, 0.4);
}

.crunch-card__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.crunch-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.crunch-card__text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(248, 245, 235, 0.75);
  margin-bottom: 12px;
}

.crunch-card__tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-terruno);
}

/* --------------------------------------------------------------------------
   08. SECCIÓN 03: SABORES (Cuatro Actitudes)
   -------------------------------------------------------------------------- */
.section--sabores {
  background-color: var(--color-bg);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.flavor-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-editorial), box-shadow 0.3s ease, border-color 0.3s ease;
}

.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22, 21, 19, 0.08);
}

.flavor-card--salted:hover { border-color: var(--sku-salted); }
.flavor-card--garlic:hover { border-color: var(--sku-garlic-ribbon); }
.flavor-card--spicy:hover { border-color: var(--sku-spicy-ribbon); }
.flavor-card--madurito:hover { border-color: var(--sku-madurito-ribbon); }

.flavor-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.flavor-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.flavor-card__pack {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease-editorial);
}

.flavor-card:hover .flavor-card__pack {
  transform: scale(1.04);
}

.flavor-card__halo {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.35;
  z-index: -1;
}

.flavor-card__halo--salted { background: var(--sku-salted); }
.flavor-card__halo--garlic { background: #D5CBB8; }
.flavor-card__halo--spicy { background: var(--sku-spicy-ribbon); }
.flavor-card__halo--madurito { background: var(--sku-madurito-ribbon); }

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

.flavor-card__sku-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.flavor-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.flavor-card__copy {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: 18px;
  flex-grow: 1;
}

.flavor-card__attitude {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.flavor-card__pill {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg);
  padding: 3px 8px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   09. SECCIÓN 04: ORIGEN ECUATORIAL (Origen)
   -------------------------------------------------------------------------- */
.section--ecuador {
  background: linear-gradient(145deg, var(--color-finca) 0%, var(--color-finca-dark) 100%);
  color: var(--color-text-light);
}

.ecuador-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(197, 160, 89, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.7;
}

.ecuador-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.ecuador-narrative {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ecuador-coordinates-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.coord-icon {
  color: var(--color-accent);
  font-size: 12px;
}

.coord-val {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FFFFFF;
}

.four-worlds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.world-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.world-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 174, 0, 0.35);
}

.world-card__header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.world-card__idx {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
}

.world-card__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.world-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248, 245, 235, 0.78);
  margin-bottom: 14px;
}

.world-card__meta {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-terruno);
}

/* --------------------------------------------------------------------------
   10. SECCIÓN 05: DEL ECUADOR AL MUNDO (Ambición & Tránsito)
   -------------------------------------------------------------------------- */
.section--mundo {
  background-color: var(--color-bg-alt);
}

.mundo-dual-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  margin-top: 48px;
}

.mundo-lifestyle-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(22, 21, 19, 0.08);
  border: 1px solid var(--color-border-subtle);
  background: #FFFFFF;
  transition: transform 0.3s var(--ease-editorial), box-shadow 0.3s ease;
}

.mundo-lifestyle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(22, 21, 19, 0.12);
}

.mundo-lifestyle-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 13;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mundo-lifestyle-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.4s ease;
}

.mundo-lifestyle-card:hover .mundo-lifestyle-card__img {
  transform: scale(1.03);
}

.mundo-lifestyle-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 21, 19, 0.12) 0%,
    rgba(22, 21, 19, 0) 35%,
    rgba(22, 21, 19, 0.72) 80%,
    rgba(22, 21, 19, 0.88) 100%
  );
  pointer-events: none;
}

.mundo-lifestyle-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 245, 235, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-subtle);
  z-index: 2;
}

.mundo-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.mundo-lifestyle-card__footer {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #FFFFFF;
}

.lifestyle-footer-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.lifestyle-footer-sub {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(248, 245, 235, 0.88);
}

.mundo-transit-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mundo-transit-col .transit-journey {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
}

.mundo-transit-col .transit-step {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}

.mundo-transit-col .transit-step__num {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-text-muted);
  width: 24px;
  margin-bottom: 0;
  padding-top: 14px;
  flex-shrink: 0;
  text-align: center;
}

.mundo-transit-col .transit-step__node {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 14px;
  flex-shrink: 0;
  position: relative;
}

.mundo-transit-col .transit-step__line {
  position: static;
  transform: none;
  width: 2px;
  height: 100%;
  min-height: 24px;
  background: var(--color-divider);
  margin-top: 6px;
}

.mundo-transit-col .transit-step:last-child .transit-step__line {
  display: none;
}

.mundo-transit-col .transit-step__info {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  padding: 16px 20px;
  border-radius: 8px;
  flex-grow: 1;
}

.mundo-transit-col .transit-step__tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
}

.mundo-transit-col .transit-step__city {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.mundo-transit-col .transit-step__text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.mundo-actions {
  margin-top: 4px;
  padding-left: 56px;
}

/* --------------------------------------------------------------------------
   11. SECCIÓN 06: COLECCIÓN (Producto / Formato 100g)
   -------------------------------------------------------------------------- */
.section--coleccion {
  background-color: var(--color-bg);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-editorial), box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22, 21, 19, 0.08);
}

.product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 0;
}

.product-card__flavor-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
}

.product-card__weight {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.spec-item {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg);
  padding: 3px 7px;
  border-radius: 3px;
}

.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 14px;
  transition: color 0.2s ease;
}

.product-card__cta:hover {
  color: var(--color-accent-hover);
}

.product-card__arrow {
  transition: transform 0.2s ease;
}

.product-card__cta:hover .product-card__arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   12. SECCIÓN 07: NUESTRA HISTORIA (Ambición & Visión)
   -------------------------------------------------------------------------- */
.section--historia {
  background-color: var(--color-bg-alt);
}

.editorial-story__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  margin-top: 40px;
}

.editorial-story__body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.editorial-story__body p.lead-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.governance-box {
  background: rgba(22, 21, 19, 0.04);
  border-left: 3px solid var(--color-finca);
  padding: 18px 20px;
  border-radius: 0 6px 6px 0;
  margin-top: 32px;
}

.governance-box__title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-finca);
  display: block;
  margin-bottom: 6px;
}

.governance-box__text {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
  color: var(--color-text-muted) !important;
  margin-bottom: 0 !important;
}

.editorial-quote {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  padding: 32px 28px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 32px;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 1;
  color: var(--color-accent);
  position: absolute;
  top: 12px;
  left: 20px;
  opacity: 0.4;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-primary);
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.quote-author {
  display: block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.story-pillar__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-pillar__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.story-pillar__text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   13. SECCIÓN 08: DISTRIBUCIÓN / CONTACTO (Conversión Dual)
   -------------------------------------------------------------------------- */
.section--contacto {
  background-color: var(--color-bg);
}

.split-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.track-card {
  border-radius: 12px;
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
  transform: translateY(-4px);
}

.track-card--b2c {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
}

.track-card--b2b {
  background: linear-gradient(145deg, var(--color-finca) 0%, var(--color-finca-dark) 100%);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(10, 77, 46, 0.18);
}

.track-card__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.track-card__tag--gold {
  color: var(--color-accent);
}

.track-card__title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.track-card__title--light {
  color: #FFFFFF;
}

.track-card__sub {
  font-size: 17px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.track-card__sub--light {
  color: rgba(248, 245, 235, 0.85);
}

.track-card__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.track-card__body--light {
  color: rgba(248, 245, 235, 0.80);
}

.track-retail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.retail-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  background: var(--color-bg);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--color-border-subtle);
}

.track-b2b-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.b2b-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(248, 245, 235, 0.90);
}

.perk-check {
  color: var(--color-accent);
  font-weight: 800;
}

.track-card__action {
  margin-bottom: 18px;
}

.track-card__micro {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.track-card__micro--light {
  color: rgba(248, 245, 235, 0.50);
}

/* --------------------------------------------------------------------------
   14. SECCIÓN 09: CIERRE (Energía de Marca / Hero Treatment)
   -------------------------------------------------------------------------- */
.section--cierre {
  background-color: var(--color-bg);
  padding-top: clamp(64px, 8vh, 104px);
  padding-bottom: clamp(64px, 8vh, 104px);
  position: relative;
}

.cierre-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(22, 21, 19, 0.12);
  border: 1px solid var(--color-border-subtle);
  background: #161513;
  display: flex;
  align-items: center;
}

.cierre-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.cierre-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
  transition: transform 0.6s var(--ease-editorial);
}

.cierre-hero:hover .cierre-hero__img {
  transform: scale(1.025);
}

/* Flawless Editorial Scrim: Preserves Radiant Model/Pouch while guaranteeing AAA Text Contrast */
.cierre-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 17, 14, 0.95) 0%,
    rgba(18, 17, 14, 0.88) 32%,
    rgba(18, 17, 14, 0.58) 52%,
    rgba(18, 17, 14, 0.18) 72%,
    rgba(18, 17, 14, 0.05) 100%
  ),
  linear-gradient(
    0deg,
    rgba(18, 17, 14, 0.45) 0%,
    transparent 35%
  );
  pointer-events: none;
}

.cierre-hero__content {
  position: relative;
  z-index: 10;
  max-width: 580px;
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cierre-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 4px;
  margin-bottom: 18px;
}

.cierre-hero__sub {
  display: block;
  font-size: 0.68em;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 8px;
}

.cierre-hero__body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(248, 245, 235, 0.85);
  max-width: 480px;
  margin-bottom: 32px;
}

.cierre-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cierre-hero__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 17, 14, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 174, 0, 0.35);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.cierre-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
}

.cierre-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--color-divider);
  max-width: 340px;
  text-align: center;
}

.seal-brand {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-text-primary);
}

.seal-loc {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.seal-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   15. GLOBAL BRAND FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #12110E;
  color: #F8F5EB;
  padding-top: clamp(60px, 8vh, 88px);
  padding-bottom: 48px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 56px;
}

.site-footer__logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
  margin-bottom: 12px;
}

.site-footer__tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(248, 245, 235, 0.65);
  max-width: 320px;
}

.site-footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 18px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a,
.site-footer__links span {
  font-size: 13px;
  color: rgba(248, 245, 235, 0.75);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: #FFFFFF;
}

.site-footer__legal {
  border-top: 1px solid rgba(248, 245, 235, 0.12);
  padding-top: 32px;
}

.site-footer__legal p {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(248, 245, 235, 0.45);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS & ACCESSIBILITY
   -------------------------------------------------------------------------- */

/* Large Tablet & Small Laptop (992px - 1180px) */
@media (max-width: 1180px) {
  .flavor-grid,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  :root {
    --hero-content-max: 480px;
  }

  .crunch-experience-grid {
    grid-template-columns: 1fr;
  }

  .crunch-features--clean {
    grid-template-columns: 1fr;
  }

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

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

  .mundo-lifestyle-card__frame {
    aspect-ratio: 16 / 10;
  }

  .mundo-actions {
    padding-left: 0;
  }

  .editorial-story__grid {
    grid-template-columns: 1fr;
  }

  .split-tracks {
    grid-template-columns: 1fr;
  }

  .cierre-hero {
    min-height: 500px;
  }

  .cierre-hero__img {
    object-position: 75% center;
  }
}

/* Mobile (< 760px) */
@media (max-width: 760px) {
  :root {
    --hero-padding-x: 20px;
    --section-padding-x: 20px;
    --section-padding-y: 64px;
    --header-height: 64px;
  }

  .site-header__nav {
    display: none;
  }

  .hero-section {
    justify-content: flex-end;
    padding-bottom: clamp(64px, 10vh, 88px);
  }

  .hero__image {
    object-position: 80% 18%;
  }

  .hero__edge {
    background: linear-gradient(
      0deg,
      rgba(248, 245, 235, 1) 0%,
      rgba(248, 245, 235, 0.97) 52%,
      rgba(248, 245, 235, 0.35) 72%,
      rgba(248, 245, 235, 0) 86%
    );
  }

  .hero__content {
    margin-left: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero__eyebrow {
    margin-bottom: 12px;
    font-size: 10.5px;
  }

  .hero__h1 {
    font-size: clamp(28px, 7.8vw, 38px);
    line-height: 0.98;
  }

  .hero__body {
    font-size: 14.5px;
    line-height: 1.45;
    margin-top: 14px;
  }

  .hero__actions {
    margin-top: 20px;
    width: 100%;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  .hero__microcopy {
    display: none;
  }

  .hero__controls {
    bottom: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 3px 8px;
    gap: 6px;
    max-width: calc(100% - 32px);
  }

  .hero__scroll {
    display: none;
  }

  .caption-metric {
    font-size: 20px;
  }

  .flavor-grid,
  .collection-grid,
  .four-worlds {
    grid-template-columns: 1fr;
  }

  .mundo-lifestyle-card__frame {
    aspect-ratio: 16 / 10;
  }

  .mundo-transit-col .transit-step {
    flex-direction: column;
    gap: 8px;
  }

  .mundo-transit-col .transit-step__num {
    text-align: left;
    padding-top: 0;
  }

  .mundo-transit-col .transit-step__node {
    display: none;
  }

  .cierre-hero {
    min-height: auto;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 12px;
  }

  .cierre-hero__img {
    object-position: 70% 20%;
  }

  .cierre-hero__scrim {
    background: linear-gradient(
      0deg,
      rgba(18, 17, 14, 0.98) 0%,
      rgba(18, 17, 14, 0.92) 58%,
      rgba(18, 17, 14, 0.45) 82%,
      rgba(18, 17, 14, 0.1) 100%
    );
  }

  .cierre-hero__content {
    padding: 240px 20px 32px;
    max-width: 100%;
    width: 100%;
  }

  .cierre-hero__title {
    font-size: clamp(28px, 7.5vw, 36px);
  }

  .cierre-hero__body {
    font-size: 14.5px;
    margin-bottom: 24px;
  }

  .cierre-hero__badge {
    top: 14px;
    right: 14px;
    font-size: 9.5px;
    padding: 5px 12px;
  }

  .cierre-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .cierre-hero__actions .btn {
    width: 100%;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }
}

/* Accessibility: Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   R07 · FILM ACT MINIMAL PROTOTYPE
   Appended to the canonical V2 stylesheet. Scoped entirely to the ACT 1
   "film" block + release. Section 03 (Sabores) and below are untouched V2.
   No panel · no card · no glass · no dark slab · no background blur ·
   no fake depth · no scale-down · no lateral translate.
   ========================================================================== */

/* V2 sets `overflow-x: hidden` on html/body, which turns the root into a
   scroll container and silently breaks `position: sticky`. Swap it for
   `clip` (same horizontal-overflow guard, no scroll container). Scoped to
   the R07 stylesheet only. */
html,
body {
  overflow-x: clip;
}

/* Let the sticky stage reach the true top of the viewport (V2 keeps a
   header-height padding on <main> that would otherwise leave a strip). */
.film-act { margin-top: calc(-1 * var(--header-height)); }

/* --- Header: minimal / transparent while the film owns the viewport --- */
body.is-film-act .site-header {
  background-color: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.is-film-act .site-header__nav,
body.is-film-act .site-header__actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.is-film-act .site-header__logo-name { color: #F8F5EB; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5); }
body.is-film-act .site-header__logo-tag  { color: rgba(248, 245, 235, 0.72); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }
.site-header__nav,
.site-header__actions,
.site-header__logo-name,
.site-header__logo-tag { transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease; }
/* R08 · header master opacity is driven inline by the film controller during
   the film act (retired before the climax). No opacity transition here, so the
   inline value takes effect immediately; colour/bg still ease. */
.site-header { transition: color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease; }
.film-act__edge { transition: none; }

/* --- ACT 1 bounded scrub track --- */
.film-act {
  position: relative;
  width: 100%;
  height: 750vh;               /* scrub runway for the full action (present → bite → chew → reaction) */
  background: var(--color-finca-dark);
}

.film-act__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--color-finca-dark);
}


/* Full-bleed. Full brightness. Edge to edge. */
.film-act__canvas,
.film-act__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.film-act__canvas { z-index: 2; opacity: 0; transition: opacity 0.3s ease; }
.film-act__stage.is-ready .film-act__canvas { opacity: 1; }
.film-act__fallback {
  z-index: 1;
  object-fit: cover;
  object-position: 62% 44%;
  transition: opacity 0.3s ease;
}
.film-act__stage.is-ready .film-act__fallback { opacity: 0; }

/* Legibility ONLY — a soft one-corner falloff, never a rectangle behind the
   text. Matches the intent of the approved V2 hero edge scrim; stays subtle
   so the film reads full-brightness. */
.film-act__edge {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(96deg, rgba(3, 15, 9, 0.38) 0%, rgba(3, 15, 9, 0.12) 22%, transparent 44%),
    linear-gradient(2deg, rgba(3, 15, 9, 0.30) 0%, transparent 20%);
}

/* --- Caption: eyebrow + headline (+ one serif line). Type only. --- */
.film-act__caption {
  position: absolute;
  z-index: 4;
  left: clamp(22px, 6vw, 104px);
  top: 50%;
  transform: translateY(-46%);
  max-width: min(40ch, 42vw);
  opacity: 0;                                  /* driven inline by the controller */
  transition: transform 0.55s var(--ease-editorial);
  pointer-events: none;
}
.film-act__caption.is-visible { transform: translateY(-50%); }

.film-act__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: clamp(0.8rem, 1.6vh, 1.25rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.film-act__headline {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #F8F5EB;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.45);
}

.film-act__serif {
  display: block;
  margin-top: 0.42em;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.44em;
  letter-spacing: 0.005em;
  color: #ECE5D2;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.55);
}

/* --- Scroll cue --- */
.film-act__cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(20px, 4vh, 40px);
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(248, 245, 235, 0.82);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  opacity: 0.75;
  transition: opacity 0.4s ease;
}
.film-act__cue.is-hidden { opacity: 0; }

/* --- RELEASE — the sticky track ends; the film is gone. --- */
.film-release {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 26px);
  padding: clamp(30px, 8vh, 78px) clamp(20px, 6vw, 80px);
  background: var(--color-finca-dark);
}
.film-release__rule {
  height: 1px;
  width: min(16vw, 170px);
  background: rgba(248, 245, 235, 0.28);
}
.film-release__note {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 245, 235, 0.6);
  white-space: nowrap;
}

/* --- ACT 2 begins clean: Sabores keeps its own canonical V2 background. --- */
.section--sabores { position: relative; z-index: 5; }

@media (max-width: 768px) {
  .film-act { height: 640vh; }
  .film-act__caption { max-width: min(90vw, 34ch); }
  .film-act__headline { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}


/* ==========================================================================
   R08 · EDITORIAL RE-ORG
   - Section 06 "Colección" removed (fused into Section 03); its CSS classes
     (.collection-grid/.product-card) are simply unused now.
   - Section 06 "Nuestra Historia" and Section 07 "Distribución & Contacto"
     rebuilt as full-bleed premium image blocks (same system as .cierre-hero).
   Scoped entirely to .historia-hero / .contacto-hero. Nothing else touched.
   ========================================================================== */

.historia-hero,
.contacto-hero {
  padding: 0;
  display: flex;
  align-items: center;
  min-height: clamp(660px, 92vh, 940px);
  background: var(--color-finca-dark);
  color: #F4EFE2;
  isolation: isolate;
}

.historia-hero__media,
.contacto-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.historia-hero__img,
.contacto-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.historia-hero__img { object-position: 62% 30%; }
.contacto-hero__img { object-position: 68% 28%; }

/* Legibility scrim — a directional gradient, no flat box. */
.historia-hero__scrim,
.contacto-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(4, 18, 11, 0.92) 0%, rgba(4, 18, 11, 0.74) 34%, rgba(4, 18, 11, 0.30) 66%, rgba(4, 18, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 18, 11, 0.55) 0%, rgba(4, 18, 11, 0) 40%);
}

.historia-hero__inner,
.contacto-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(72px, 12vh, 140px);
  padding-bottom: clamp(72px, 12vh, 140px);
}

.historia-hero__col,
.contacto-hero__col {
  max-width: 620px;
}

.historia-hero__col .section-eyebrow,
.contacto-hero__col .section-eyebrow {
  color: var(--color-accent);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.historia-hero__title,
.contacto-hero__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #F8F5EB;
  margin: 0.7rem 0 1.4rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}

.historia-hero__sub,
.contacto-hero__sub {
  display: block;
  margin-top: 0.5em;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.44em;
  color: #E7DFCC;
}

.historia-hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: #F1EADB;
  margin: 0 0 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.historia-hero__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(244, 239, 226, 0.86);
  margin: 0 0 2rem;
  max-width: 34rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.historia-hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
  margin: 0 0 2rem;
}

.historia-hero__pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 2px solid rgba(255, 174, 0, 0.7);
  padding-top: 12px;
}

.historia-hero__pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.historia-hero__pillar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #F8F5EB;
}

.historia-hero__pillar-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(244, 239, 226, 0.78);
}

.historia-hero__quote {
  margin: 0 0 1.6rem;
  padding-left: 18px;
  border-left: 3px solid rgba(255, 174, 0, 0.7);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #F1EADB;
  max-width: 34rem;
}

.historia-hero__quote cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(244, 239, 226, 0.6);
}

.historia-hero__governance {
  font-size: 0.72rem;
  line-height: 1.65;
  color: rgba(244, 239, 226, 0.62);
  max-width: 34rem;
}

.historia-hero__governance span {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(244, 239, 226, 0.82);
}

/* --- Contacto hero --- */
.contacto-hero__tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin: 1.6rem 0 1.4rem;
}

.contacto-hero__track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-top: 2px solid rgba(255, 174, 0, 0.7);
  padding-top: 14px;
}

.contacto-hero__track-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.contacto-hero__track-tag--gold { color: #FFD37A; }

.contacto-hero__track-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: #F8F5EB;
}

.contacto-hero__track-text {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(244, 239, 226, 0.82);
}

.contacto-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contacto-hero .retail-pill {
  border: 1px solid rgba(248, 245, 235, 0.35);
  color: rgba(248, 245, 235, 0.9);
  background: rgba(248, 245, 235, 0.06);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.contacto-hero .btn {
  margin-top: 4px;
}

/* keep both CTAs readable on the dark image */
.contacto-hero .btn--primary {
  background: rgba(248, 245, 235, 0.12);
  color: #F8F5EB;
  border: 1px solid rgba(248, 245, 235, 0.5);
}
.contacto-hero .btn--primary:hover {
  background: rgba(248, 245, 235, 0.2);
}

.contacto-hero__micro {
  margin-top: 1.6rem;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(244, 239, 226, 0.55);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .historia-hero__pillars,
  .contacto-hero__tracks {
    grid-template-columns: 1fr;
  }
  .historia-hero__img { object-position: 66% 24%; }
  .contacto-hero__img { object-position: 72% 22%; }
  .historia-hero__scrim,
  .contacto-hero__scrim {
    background:
      linear-gradient(180deg, rgba(4, 18, 11, 0.62) 0%, rgba(4, 18, 11, 0.86) 55%, rgba(4, 18, 11, 0.95) 100%);
  }
}

/* ==========================================================================
   R10 . EDITORIAL REFINEMENTS (over R08 base)
   01 . section 05 -> full-bleed hero (chica-4-16x9-ok)
   02 . section 04 -> ecuadorfoto as full-section background + green scrim
   03 . section 06 -> main copy column moved to the right
   04 . header wordmark restyled closer to the pack lockup
   Scoped; Film Act architecture untouched.
   ========================================================================== */

/* ---------- 04 . HEADER WORDMARK (pack-style lockup) ---------- */
:root { --header-height: 78px; }

.site-header__brand--pack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
}
.site-header__brand--pack .site-header__logo-name {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--color-finca);
}
.site-header__brand--pack .site-header__logo-snacks {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-finca);
}
.site-header__brand--pack .site-header__logo-snacks::before,
.site-header__brand--pack .site-header__logo-snacks::after {
  content: "";
  flex: 0 0 12px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.9;
}
.site-header__brand--pack .site-header__logo-tag {
  margin-top: 4px;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

body.is-film-act .site-header__brand--pack .site-header__logo-name,
body.is-film-act .site-header__brand--pack .site-header__logo-snacks {
  color: #F8F5EB;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
body.is-film-act .site-header__brand--pack .site-header__logo-tag {
  color: rgba(248, 245, 235, 0.75);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  :root { --header-height: 68px; }
  .site-header__brand--pack .site-header__logo-name { font-size: 21px; }
  .site-header__brand--pack .site-header__logo-snacks { font-size: 8px; letter-spacing: 0.34em; }
  .site-header__brand--pack .site-header__logo-snacks::before,
  .site-header__brand--pack .site-header__logo-snacks::after { flex-basis: 9px; }
}

/* ---------- 02 . section 04 ECUADOR -- ecuadorfoto background ---------- */
.ecuador-photo { position: relative; isolation: isolate; overflow: hidden; }
.ecuador-photo__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.ecuador-photo__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 44%;
  display: block;
}
.ecuador-photo__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 26, 15, 0.90) 0%, rgba(5, 26, 15, 0.72) 42%, rgba(5, 26, 15, 0.40) 72%, rgba(5, 26, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 26, 15, 0.55) 0%, rgba(5, 26, 15, 0.15) 45%, rgba(5, 26, 15, 0.35) 100%);
}
.ecuador-photo > .container { position: relative; z-index: 1; }
.ecuador-photo .ecuador-bg-pattern { opacity: 0.22; z-index: 0; }
.ecuador-photo .world-card {
  background: rgba(6, 26, 16, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ---------- 01 . section 05 MUNDO HERO (full-bleed) ---------- */
.mundo-hero {
  padding: 0;
  display: flex;
  align-items: center;
  min-height: clamp(660px, 92vh, 940px);
  background: var(--color-finca-dark);
  color: #F4EFE2;
  isolation: isolate;
}
.mundo-hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.mundo-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 32%;
  display: block;
}
.mundo-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(4, 18, 11, 0.93) 0%, rgba(4, 18, 11, 0.76) 34%, rgba(4, 18, 11, 0.30) 66%, rgba(4, 18, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 18, 11, 0.55) 0%, rgba(4, 18, 11, 0) 42%);
}
.mundo-hero__inner {
  position: relative; z-index: 1;
  padding-top: clamp(72px, 12vh, 140px);
  padding-bottom: clamp(72px, 12vh, 140px);
}
.mundo-hero__col { max-width: 640px; }
.mundo-hero__col .section-eyebrow { color: var(--color-accent); text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5); }
.mundo-hero__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #F8F5EB;
  margin: 0.7rem 0 1.2rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}
.mundo-hero__sub {
  display: block; margin-top: 0.5em;
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 0.44em; color: #E7DFCC;
}
.mundo-hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: #F1EADB;
  margin: 0 0 1.8rem;
  max-width: 34rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.mundo-hero__route {
  list-style: none; margin: 0 0 2rem; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.mundo-hero__stop {
  display: flex; flex-direction: column; gap: 5px;
  border-top: 2px solid rgba(255, 174, 0, 0.55);
  padding-top: 12px;
}
.mundo-hero__stop.is-active { border-top-color: var(--color-accent); }
.mundo-hero__stop-num { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--color-accent); }
.mundo-hero__stop-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; color: rgba(244, 239, 226, 0.62); }
.mundo-hero__stop-city { font-size: 0.95rem; font-weight: 700; color: #F8F5EB; }
.mundo-hero__stop-text { font-size: 0.78rem; line-height: 1.5; color: rgba(244, 239, 226, 0.78); }
.mundo-hero__cta { align-self: flex-start; }
.mundo-hero .btn--primary {
  background: rgba(248, 245, 235, 0.12);
  color: #F8F5EB;
  border: 1px solid rgba(248, 245, 235, 0.5);
}
.mundo-hero .btn--primary:hover { background: rgba(248, 245, 235, 0.2); }
.mundo-hero__micro { margin-top: 1.4rem; font-size: 10px; letter-spacing: 0.1em; color: rgba(244, 239, 226, 0.55); }

/* ---------- 03 . section 06 HISTORIA -- main copy column to the RIGHT ---------- */
.historia-hero--right .historia-hero__col {
  margin-left: auto;
  margin-right: 0;
}
.historia-hero--right .historia-hero__scrim {
  background:
    linear-gradient(264deg, rgba(4, 18, 11, 0.92) 0%, rgba(4, 18, 11, 0.74) 34%, rgba(4, 18, 11, 0.30) 66%, rgba(4, 18, 11, 0.06) 100%),
    linear-gradient(0deg, rgba(4, 18, 11, 0.55) 0%, rgba(4, 18, 11, 0) 40%);
}
.historia-hero--right .historia-hero__img { object-position: 22% 30%; }

@media (max-width: 900px) {
  .mundo-hero__route { grid-template-columns: 1fr; }
  .mundo-hero__img { object-position: 64% 24%; }
  .ecuador-photo__scrim {
    background: linear-gradient(180deg, rgba(5, 26, 15, 0.7) 0%, rgba(5, 26, 15, 0.88) 50%, rgba(5, 26, 15, 0.95) 100%);
  }
  .mundo-hero__scrim {
    background: linear-gradient(180deg, rgba(4, 18, 11, 0.6) 0%, rgba(4, 18, 11, 0.88) 55%, rgba(4, 18, 11, 0.95) 100%);
  }
  .historia-hero--right .historia-hero__col { margin-left: 0; }
  .historia-hero--right .historia-hero__scrim {
    background: linear-gradient(180deg, rgba(4, 18, 11, 0.62) 0%, rgba(4, 18, 11, 0.86) 55%, rgba(4, 18, 11, 0.95) 100%);
  }
}

/* ==========================================================================
   R11 . CLOSING SECTION -> FULL-STAGE
   Section 08 "Cierre" rebuilt as a full-bleed brand plate (same system as
   .mundo-hero / .historia-hero / .contacto-hero): the media fills the whole
   section, no bounded rounded panel. Copy, CTAs, badge and seal unchanged.
   Scoped to .cierre-stage. Film Act architecture untouched.
   ========================================================================== */

.section--cierre.cierre-stage {
  padding: 0;
  background: var(--color-finca-dark);
  min-height: clamp(660px, 92vh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* the media/scrim are now direct children of the section (position: relative
   comes from .section) -> the existing .cierre-hero__media rules (position:
   absolute; inset: 0) already stretch them to the full section. */
.cierre-stage .cierre-hero__img { object-position: 72% center; }

.cierre-stage__inner {
  position: relative;
  z-index: 10;
  padding-top: clamp(72px, 12vh, 140px);
  padding-bottom: clamp(72px, 12vh, 140px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 5vh, 52px);
}

.cierre-stage .cierre-hero__content { padding: 0; }

.cierre-stage .cierre-seal {
  margin: 0;
  align-items: flex-start;
  text-align: left;
  max-width: none;
  border-top: 1px solid rgba(248, 245, 235, 0.22);
  padding-top: 22px;
}
.cierre-stage .seal-brand { color: #F8F5EB; }
.cierre-stage .seal-loc,
.cierre-stage .seal-tag { color: rgba(248, 245, 235, 0.62); }

@media (max-width: 900px) {
  .cierre-stage .cierre-hero__img { object-position: 74% 20%; }
  .cierre-stage .cierre-hero__scrim {
    background: linear-gradient(
      0deg,
      rgba(18, 17, 14, 0.98) 0%,
      rgba(18, 17, 14, 0.92) 58%,
      rgba(18, 17, 14, 0.45) 82%,
      rgba(18, 17, 14, 0.1) 100%
    );
  }
}

/* Responsive R01: mobile-only navigation and Film Act composition tuning. */
.film-act .film-act__serif { color: #161513; }
.contacto-hero__availability {
  margin: 0;
  color: rgba(244, 239, 226, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-header__mobile-toggle,
.site-header__mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__actions { display: none; }

  .site-header__mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(22, 21, 19, 0.22);
    border-radius: 4px;
    background: rgba(248, 245, 235, 0.9);
    color: var(--color-text-primary);
    cursor: pointer;
  }

  .site-header__mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .site-header__mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 8px;
    background: rgba(248, 245, 235, 0.98);
    border: 1px solid var(--color-border-subtle);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(22, 21, 19, 0.16);
  }

  .site-header__mobile-menu.is-open { display: grid; }

  .site-header__mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    color: var(--color-text-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .site-header__mobile-menu a:last-child { border-bottom: 0; }

  .film-act__caption {
    left: 20px;
    max-width: calc(100vw - 40px);
  }

  .film-act__headline {
    font-size: clamp(1.55rem, 6.5vw, 2.15rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
  }

  body.is-film-act .site-header__mobile-toggle {
    border-color: rgba(248, 245, 235, 0.38);
    background: rgba(3, 15, 9, 0.28);
    color: #F8F5EB;
  }

  body.is-film-act .site-header__mobile-menu {
    background: rgba(3, 15, 9, 0.97);
    border-color: rgba(248, 245, 235, 0.22);
  }

  body.is-film-act .site-header__mobile-menu a {
    color: #F8F5EB;
    border-color: rgba(248, 245, 235, 0.16);
  }
}

/* ==========================================================================
   EDITORIAL R01 . cleanup round
   - Wordmark -> black in every state (was dark-green on light / cream on film).
   - Technical section eyebrows removed in markup (no CSS needed).
   - Nav numbers removed in markup.
   Only the wordmark needs CSS. Scoped; nothing else touched.
   ========================================================================== */

/* --- Wordmark: BLACK, in all header states --- */
.site-header__brand--pack .site-header__logo-name,
.site-header__brand--pack .site-header__logo-snacks {
  color: var(--color-text-primary);          /* #161513 - near black */
}
.site-header__brand--pack .site-header__logo-tag {
  color: var(--color-text-primary);
  opacity: 0.72;                              /* keeps the secondary line lighter, still black-based */
}

/* Film Act state: keep the wordmark BLACK (per Direction). The header retires
   to opacity 0 before the bright close-up, so black only has to hold over the
   opening frames -- a very soft light halo lifts it off the bright sky without
   going back to white. (Minimal-contrast solution, reported.) */
body.is-film-act .site-header__brand--pack .site-header__logo-name,
body.is-film-act .site-header__brand--pack .site-header__logo-snacks,
body.is-film-act .site-header__brand--pack .site-header__logo-tag {
  color: var(--color-text-primary);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.55),
    0 1px 2px rgba(255, 255, 255, 0.9);
}
body.is-film-act .site-header__brand--pack .site-header__logo-tag { opacity: 0.8; }
