/* ════════════════════════════════════════════════════════════════
   INTERACEITUNA — DESIGN SYSTEM E · v2 RESPONSIVE
   Unified Stylesheet · Optimized for ALL devices
   
   BREAKPOINTS:
   320px  → Mobile S     (iPhone SE, small Android)
   480px  → Mobile L
   640px  → Tablet S     (portrait)
   768px  → Tablet
   1024px → Tablet L / Laptop
   1280px → Desktop
   1536px → Desktop L
   
   KEY IMPROVEMENTS vs v1:
   - 100dvh for mobile viewport (address bar safe)
   - 16px minimum font-size on inputs (prevents iOS zoom)
   - 44×44px minimum tap targets (WCAG AA)
   - Mobile drawer menu with accordion dropdowns
   - Tested clamp() values across 320px → 1920px
   - aspect-ratio on images (prevents CLS)
   - Horizontal overflow prevention
   - Print-friendly styles
   - Reduced motion support
   - Focus-visible accessibility
   ════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────
   1. RESET & CUSTOM PROPERTIES
   ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

:root {
  /* Brand Colors */
  --oliva: #9EA800;
  --oliva-d: #7A8200;
  --oliva-dd: #5C6200;
  --oliva-l: #C8D14A;
  --oliva-ll: #E2E87A;
  --oliva-pale: #F0F2D6;
  --oliva-bg: #F6F7EB;
  --oliva-bg2: #ECEEDA;

  /* Neutrals */
  --dark: #111110;
  --dark-2: #1A1A18;
  --dark-3: #222220;
  --dark-4: #2C2C2A;
  --dark-5: #3A3A38;
  --carbon: #3C3C3B;
  --carbon-50: #4D4D4C;
  --gray: #8A8A88;
  --gray-l: #B0B0AE;
  --gray-ll: #D4D4D2;
  --sand: #F5F1EA;
  --sand-2: #EDE8DF;
  --cream: #FAF9F5;
  --warm: #F8F5EF;
  --white: #FFFFFF;
  --bg: #FAFAF8;

  /* Typography */
  --sans: 'General Sans', 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Syne', 'General Sans', system-ui, sans-serif;

  /* Border Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* ─── RESPONSIVE SPACING ─── */
  --pad: clamp(16px, 4.5vw, 64px);
  --pad-sec: clamp(48px, 8vw, 120px);
  --space-xs: clamp(8px, 1vw, 12px);
  --space-s: clamp(12px, 1.5vw, 20px);
  --space-m: clamp(20px, 3vw, 40px);
  --space-l: clamp(32px, 5vw, 64px);
  --space-xl: clamp(48px, 7vw, 96px);
  --space-2xl: clamp(64px, 9vw, 120px);

  /* ─── RESPONSIVE TYPOGRAPHY ───
     Min values tested at 320px · Max values capped for readability */
  --h-hero: clamp(36px, 7.5vw, 80px);
  --h1:     clamp(28px, 5vw, 56px);
  --h2:     clamp(24px, 3.8vw, 44px);
  --h3:     clamp(20px, 2.6vw, 30px);
  --h4:     clamp(17px, 1.8vw, 22px);
  --body:   clamp(15px, 1.1vw, 17px);
  --sm:     clamp(13px, 0.95vw, 14px);
  --xs:     clamp(11px, 0.8vw, 12px);
  --xxs:    clamp(10px, 0.7vw, 11px);

  /* Easings */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Borders */
  --border: rgba(0, 0, 0, 0.06);
  --border-h: rgba(0, 0, 0, 0.1);

  /* Layout */
  --nav-h: 76px;
  --topbar-h: 32px;

  /* Safe area (iOS notch) */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* On very small devices, reduce nav height */
@media (max-width: 480px) {
  :root {
    --nav-h: 64px;
    --topbar-h: 28px;
  }
}


/* ────────────────────────────────────────────
   2. BASE & TYPOGRAPHY
   ──────────────────────────────────────────── */
body {
  font-family: var(--sans);
  font-size: var(--body);
  color: var(--carbon);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Prevent horizontal overflow from any child */
body, html {
  max-width: 100%;
  overflow-x: clip;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  /* Prevent layout shift while loading */
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}

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

button, input, textarea, select {
  font-family: var(--sans);
  font-size: 16px; /* Prevents iOS zoom on focus */
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Accessibility: focus-visible */
:focus-visible {
  outline: 2px solid var(--oliva);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduce motion support */
@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;
  }
}


/* ────────────────────────────────────────────
   3. GRAIN TEXTURE
   ──────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* Hide grain on small devices (performance) */
@media (max-width: 480px) {
  body::after { opacity: 0.02; }
}


/* ────────────────────────────────────────────
   4. UTILITY CLASSES
   ──────────────────────────────────────────── */

/* Tags */
.tag {
  font-family: var(--sans);
  font-size: var(--xxs);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oliva);
  flex-shrink: 0;
}
.tag-ol { color: var(--oliva-d); }
.tag-w  { color: var(--oliva-l); }
.tag-dk { color: var(--oliva); }

/* Buttons — min 44×44 tap target */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 14px 30px;
  border-radius: 60px;
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .btn { padding: 16px 36px; letter-spacing: 2.5px; }
}

.btn-ol {
  background: var(--oliva);
  color: var(--white);
}
.btn-ol:hover {
  background: var(--oliva-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(158, 168, 0, 0.25);
}
.btn-ol:active {
  transform: translateY(0);
}

.btn-soft {
  background: var(--white);
  color: var(--carbon);
  border: 1px solid var(--border-h);
}
.btn-soft:hover {
  border-color: var(--oliva);
  color: var(--oliva-d);
  background: var(--oliva-bg);
}

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); }

.btn-w { background: var(--white); color: var(--carbon); }
.btn-w:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); }

.btn-ghost-w {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost-w:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Scroll Reveal */
.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.rv.on {
  opacity: 1;
  transform: none;
}
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.48s; }

/* Links */
.link-more,
.link-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--oliva);
  transition: gap 0.35s;
  min-height: 32px;
}
.link-more:hover,
.link-all:hover { gap: 18px; }
.link-more svg,
.link-all svg {
  width: 16px;
  height: 16px;
  stroke: var(--oliva);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}


/* ────────────────────────────────────────────
   5. TOPBAR
   ──────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  padding: 7px var(--pad);
  padding-top: calc(7px + var(--safe-top));
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--xxs);
  color: rgba(255, 255, 255, 0.5);
  gap: 8px;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  white-space: nowrap;
}
.topbar a:hover { color: var(--oliva-l); }
.tb-l {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
}
.tb-l > span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.tb-l svg {
  width: 11px;
  height: 11px;
  stroke: var(--oliva);
  fill: none;
  stroke-width: 1.8;
  margin-right: 4px;
  vertical-align: -1px;
  flex-shrink: 0;
}

/* Hide email on mobile */
@media (max-width: 640px) {
  .tb-l span:nth-child(2) { display: none; }
}

/* Hide Área Operadores on very small screens */
@media (max-width: 380px) {
  .topbar-r a:last-child { display: none; }
}


/* ────────────────────────────────────────────
   6. NAVBAR & DROPDOWNS (DESKTOP + MOBILE DRAWER)
   ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.nav-logo img {
  height: clamp(36px, 4vw, 44px);
  width: auto;
}

.nav-mid {
  display: flex;
  gap: clamp(14px, 2vw, 32px);
  list-style: none;
  height: 100%;
  align-items: center;
}
.nav-mid > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-mid > li > a {
  font-size: var(--xxs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  padding: 6px 0;
  transition: color 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
}
.nav-mid > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--oliva);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}
.nav-mid > li > a:hover,
.nav-mid > li > a.active {
  color: var(--carbon);
}
.nav-mid > li > a:hover::after,
.nav-mid > li > a.active::after {
  width: 100%;
}

.nav-mid > li > a .chev,
.nav-mid > li > a .chevron {
  width: 10px;
  height: 10px;
  stroke: var(--gray-l);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.nav-mid > li:hover > a .chev,
.nav-mid > li:hover > a .chevron,
.nav-mid > li.open > a .chev,
.nav-mid > li.open > a .chevron {
  transform: rotate(180deg);
  stroke: var(--oliva);
}

/* Desktop dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  list-style: none;
  z-index: 100;
}
.nav-mid > li:hover .dropdown,
.nav-mid > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 22px;
  font-size: var(--xs);
  font-weight: 600;
  color: var(--carbon-50);
  transition: all 0.2s;
  letter-spacing: 0.5px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.dropdown li a:hover {
  background: var(--oliva-bg);
  color: var(--oliva-d);
  padding-left: 26px;
}

.nav-end { z-index: 1001; }
.nav-end .btn {
  padding: 10px 22px;
  min-height: 40px;
  font-size: var(--xxs);
  border-radius: 40px;
}

/* Mobile burger */
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--carbon);
  border-radius: 1px;
  transition: all 0.35s var(--ease);
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 16, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-backdrop.show {
  display: block;
  opacity: 1;
}

/* ─── MOBILE MENU (< 1024px) ─── */
@media (max-width: 1023px) {
  .nav-burger { display: flex; }

  .nav-mid {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--nav-h) + 24px) 24px 40px;
    gap: 4px;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }
  .nav-mid.open { transform: translateX(0); }

  .nav-mid > li {
    height: auto;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
  }
  .nav-mid > li:last-child { border-bottom: none; }

  .nav-mid > li > a {
    padding: 16px 4px;
    font-size: var(--sm);
    color: var(--carbon);
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
  }
  .nav-mid > li > a::after { display: none; }

  /* Accordion dropdown on mobile */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--cream);
    border: none;
    border-radius: var(--r-md);
    box-shadow: none;
    padding: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.35s var(--ease), margin 0.35s var(--ease);
  }
  .nav-mid > li.open .dropdown {
    max-height: 500px;
    margin: 0 0 12px;
    padding: 6px 0;
  }
  .dropdown li a {
    padding: 12px 20px;
    font-size: var(--xs);
  }

  /* Contact button inside mobile menu */
  .nav-end-mobile-contact {
    display: block;
    margin-top: 24px;
  }
  .nav-end .btn { display: none; }
  .nav-end-mobile-contact .btn {
    display: flex;
    width: 100%;
    padding: 16px 24px;
    min-height: 52px;
  }
}

@media (min-width: 1024px) {
  .nav-end-mobile-contact { display: none !important; }
}


/* ────────────────────────────────────────────
   7. HERO SLIDER (Home)
   ──────────────────────────────────────────── */
.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--topbar-h));
  min-height: calc(100dvh - var(--nav-h) - var(--topbar-h));
  max-height: 900px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slider .swiper { height: 100%; min-height: inherit; }
.hero-slide {
  position: relative;
  height: 100%;
  min-height: inherit;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,16,.5) 0%, rgba(17,17,16,.4) 60%, rgba(17,17,16,.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad);
}
.hero-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  padding: clamp(32px, 6vh, 80px) 0 clamp(24px, 4vh, 48px);
}
.hero-tag-line { margin-bottom: clamp(14px, 2vh, 24px); }

.hero-h1 {
  font-family: var(--display);
  font-size: var(--h-hero);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin-bottom: clamp(14px, 2vh, 24px);
  color: var(--white);
  text-transform: uppercase;
  text-wrap: balance;
}
.hero-h1 .hi,
.hero-h1 .accent { color: var(--oliva-l); }
.hero-h1 .ho,
.hero-h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25);
}

.hero-p {
  font-size: var(--body);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: clamp(20px, 3vh, 36px);
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 4vh, 48px);
}

.hero-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hb {
  padding: clamp(16px, 2.5vw, 28px) 8px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s;
  min-width: 0;
}
.hb:last-child { border-right: none; }
.hb:hover { background: rgba(255, 255, 255, 0.02); }
.hb-n {
  font-family: var(--display);
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 800;
  color: var(--oliva-l);
  line-height: 1;
}
.hb-l {
  font-size: clamp(8px, 1vw, 11px);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.3;
}

/* Slider pagination — vertical right */
.hero-slider .swiper-pagination {
  position: absolute !important;
  bottom: auto !important;
  top: 50% !important;
  right: 16px !important;
  left: auto !important;
  transform: translateY(-50%);
  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero-slider .swiper-pagination {
    right: var(--pad) !important;
  }
}
.hero-slider .swiper-pagination-bullet {
  width: 3px;
  height: 20px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
  transition: all 0.5s;
  cursor: pointer;
}
.hero-slider .swiper-pagination-bullet-active {
  background: var(--oliva-l);
  height: 36px;
}


/* ────────────────────────────────────────────
   8. TICKER / MARQUEE
   ──────────────────────────────────────────── */
.ticker {
  background: var(--oliva);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: inline-flex;
  gap: clamp(24px, 4vw, 48px);
  animation: tick 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  font-family: var(--display);
  font-size: var(--sm);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.3vw, 3px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
  opacity: 0.65;
}
.ticker-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0.25;
  flex-shrink: 0;
}
@keyframes tick {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover for accessibility */
.ticker:hover .ticker-track { animation-play-state: paused; }


/* ────────────────────────────────────────────
   9. BENTO GRID (Home About)
   ──────────────────────────────────────────── */
.bento {
  padding: var(--pad-sec) var(--pad);
  background: var(--bg);
}
.bento-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  gap: 20px;
}
.bento-head h2 {
  font-family: var(--display);
  font-size: var(--h1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  max-width: 580px;
  text-wrap: balance;
}
.bento-head h2 span { color: var(--oliva); }
.bento-head p {
  font-size: var(--body);
  color: var(--gray);
  max-width: 360px;
  line-height: 1.8;
  font-weight: 300;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 12px;
}
.bc {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.bc:hover { transform: translateY(-4px); }

/* Desktop layout */
.bc1 { grid-column: 1 / 7; grid-row: 1 / 4; min-height: 440px; }
.bc1 img { width: 100%; height: 100%; object-fit: cover; }
.bc1::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,17,16,.78) 0%, rgba(17,17,16,.1) 40%, transparent 70%); }
.bc1-body { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(20px, 3vw, 40px); z-index: 1; }
.bc1-body h3 { font-family: var(--display); font-size: var(--h3); font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.2; text-transform: uppercase; letter-spacing: -0.5px; text-wrap: balance; }
.bc1-body p { font-size: var(--sm); color: rgba(255,255,255,.55); line-height: 1.7; max-width: 360px; }

.bc2 { grid-column: 7 / 10; grid-row: 1 / 2; background: var(--oliva); padding: clamp(20px, 2.5vw, 32px); display: flex; flex-direction: column; justify-content: space-between; min-height: 140px; }
.bc2-num { font-family: var(--display); font-size: clamp(36px, 4.5vw, 64px); font-weight: 800; color: var(--white); line-height: 1; }
.bc2-label { font-size: var(--sm); color: rgba(255,255,255,.65); font-weight: 500; margin-top: 8px; line-height: 1.4; }

.bc3 { grid-column: 10 / 13; grid-row: 1 / 3; background: var(--white); border: 1px solid var(--border); padding: clamp(20px, 2.8vw, 36px); display: flex; flex-direction: column; justify-content: center; }
.bc3 h3 { font-family: var(--display); font-size: var(--h3); font-weight: 700; line-height: 1.2; margin: 14px 0; text-transform: uppercase; letter-spacing: -0.5px; }
.bc3 p { font-size: var(--sm); color: var(--gray); line-height: 1.8; }
.bc3-orgs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 20px; }
.bc3-org {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--cream);
  font-size: var(--xxs);
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  white-space: nowrap;
}
.bc3-org:hover { border-color: var(--oliva); color: var(--oliva-d); background: var(--oliva-bg); }

.bc4 { grid-column: 7 / 10; grid-row: 2 / 4; overflow: hidden; min-height: 200px; }
.bc4 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.bc4:hover img { transform: scale(1.05); }
.bc4::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,17,16,.5) 0%, transparent 40%); }
.bc4-label { position: absolute; bottom: 20px; left: 20px; z-index: 1; font-size: var(--sm); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }

.bc5 { grid-column: 10 / 13; grid-row: 3 / 4; background: var(--oliva-bg); border: 1px solid rgba(158,168,0,.1); padding: clamp(20px, 2.5vw, 32px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; min-height: 120px; }
.bc5-num { font-family: var(--display); font-size: clamp(28px, 3vw, 48px); font-weight: 800; color: var(--oliva); line-height: 1; }
.bc5-label { font-size: var(--xs); color: var(--gray); margin-top: 6px; font-weight: 500; line-height: 1.4; }


/* ────────────────────────────────────────────
   10. RECIPES CAROUSEL
   ──────────────────────────────────────────── */
.recipes {
  padding: var(--pad-sec) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.recipes::before {
  content: 'RECETAS';
  font-family: var(--display);
  font-size: clamp(80px, 16vw, 260px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.015);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.recipes-head {
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.recipes-head-txt h2 {
  font-family: var(--display);
  font-size: var(--h1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
  text-wrap: balance;
}
.recipes-head-txt h2 span { color: var(--oliva); }
.recipes-head-txt p {
  font-size: var(--body);
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
  max-width: 400px;
}

.r-arrows { display: flex; gap: 8px; }
.r-arrows button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  flex-shrink: 0;
}
.r-arrows button:hover { background: var(--oliva); border-color: var(--oliva); }
.r-arrows button svg { width: 18px; height: 18px; stroke: var(--carbon); fill: none; stroke-width: 2; transition: stroke 0.3s; }
.r-arrows button:hover svg { stroke: var(--white); }

.recipes-track { padding: 0 var(--pad); position: relative; z-index: 1; }
.recipes-track .swiper-slide {
  width: min(340px, 85vw);
  height: auto;
}

.rc {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.45s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rc:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 168, 0, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.08);
}
.rc-img {
  aspect-ratio: 4 / 3;
  max-height: 220px;
  position: relative;
  overflow: hidden;
}
.rc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.rc:hover .rc-img img { transform: scale(1.06); }
.rc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.2) 0%, transparent 30%); }
.rc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--oliva);
  color: var(--white);
  font-size: var(--xxs);
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
}
.rc-body { padding: 22px 22px 10px; flex: 1; }
.rc-name { font-family: var(--display); font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; line-height: 1.2; margin-bottom: 8px; text-transform: uppercase; letter-spacing: -0.5px; text-wrap: balance; }
.rc-desc { font-size: var(--sm); color: var(--gray); line-height: 1.6; }
.rc-foot { padding: 12px 22px 20px; display: flex; justify-content: space-between; align-items: center; }
.rc-time {
  font-size: var(--xxs);
  color: var(--gray-l);
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  min-height: 28px;
}
.rc-time svg { width: 12px; height: 12px; stroke: var(--gray); fill: none; stroke-width: 2; flex-shrink: 0; }
.rc-go {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.rc:hover .rc-go { background: var(--oliva); border-color: var(--oliva); }
.rc-go svg { width: 14px; height: 14px; stroke: var(--gray); fill: none; stroke-width: 2; transition: stroke 0.3s; }
.rc:hover .rc-go svg { stroke: var(--white); }


/* ────────────────────────────────────────────
   11. NUTRITION CARDS
   ──────────────────────────────────────────── */
.nutri-sec { padding: var(--pad-sec) var(--pad); background: var(--cream); }
.nutri-head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.nutri-head h2 { font-family: var(--display); font-size: var(--h1); font-weight: 800; text-transform: uppercase; letter-spacing: -1px; line-height: 1; margin: 14px 0 12px; text-wrap: balance; }
.nutri-head h2 span { color: var(--oliva); }
.nutri-head p { font-size: var(--body); color: var(--gray); max-width: 480px; margin: 0 auto; line-height: 1.8; font-weight: 300; }

.n-strip,
.nutri-feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
}
.n-card,
.nf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.n-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(158,168,0,.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.n-card:hover::before { opacity: 1; }
.n-card:hover,
.nf-card:hover {
  border-color: rgba(158, 168, 0, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}
.n-ring,
.nf-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--oliva-bg);
  border: 1.5px solid rgba(158, 168, 0, 0.15);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.n-card:hover .n-ring { border-color: var(--oliva); background: var(--oliva-bg2); }
.n-ring svg,
.nf-icon svg { width: 26px; height: 26px; stroke: var(--oliva); fill: none; stroke-width: 1.3; }
.n-title,
.nf-title {
  font-family: var(--display);
  font-size: var(--h4);
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.n-desc,
.nf-desc { font-size: var(--sm); color: var(--gray); line-height: 1.7; position: relative; z-index: 1; }


/* ────────────────────────────────────────────
   12. DIETA MEDITERRÁNEA SPLIT
   ──────────────────────────────────────────── */
.dieta {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 460px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.dieta-img { position: relative; overflow: hidden; min-height: 280px; }
.dieta-img img { width: 100%; height: 100%; object-fit: cover; }
.dieta-body {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dieta-body h2 {
  font-family: var(--display);
  font-size: var(--h2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 16px 0 20px;
  text-wrap: balance;
}
.dieta-body h2 span { color: var(--oliva); }
.dieta-body p { font-size: var(--body); color: var(--gray); line-height: 1.9; margin-bottom: 12px; }
.d-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.d-chip {
  padding: 9px 18px;
  border-radius: 24px;
  font-size: var(--xs);
  font-weight: 600;
  background: var(--cream);
  color: var(--carbon-50);
  border: 1px solid var(--border);
  transition: all 0.3s;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.d-chip:hover { border-color: var(--oliva); color: var(--oliva-d); background: var(--oliva-bg); }


/* ────────────────────────────────────────────
   13. PROMO CINEMATIC
   ──────────────────────────────────────────── */
.promo {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.promo-bg { position: absolute; inset: 0; }
.promo-bg img { width: 100%; height: 100%; object-fit: cover; }
.promo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,16,.94) 0%, rgba(17,17,16,.7) 50%, rgba(17,17,16,.35) 100%);
}
.promo-inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6vw, 88px) var(--pad);
  max-width: 620px;
}
.promo-inner h2 {
  font-family: var(--display);
  font-size: var(--h2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--white);
  margin: 18px 0 20px;
  text-wrap: balance;
}
.promo-inner h2 span { color: var(--oliva-l); }
.promo-inner p { font-size: var(--body); color: rgba(255,255,255,.45); line-height: 1.9; margin-bottom: 28px; font-weight: 300; }

.p-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.pt {
  padding: 8px 18px;
  border-radius: 24px;
  font-size: var(--xxs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.pt-on { background: var(--oliva); color: var(--white); border: 1px solid var(--oliva); }
.pt-off { background: transparent; color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.08); }


/* ────────────────────────────────────────────
   14. NEWS CARDS & GRID
   ──────────────────────────────────────────── */
.news-sec { padding: var(--pad-sec) var(--pad); background: var(--bg); }
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  gap: 20px;
}
.news-head-txt h2 { font-family: var(--display); font-size: var(--h1); font-weight: 800; text-transform: uppercase; letter-spacing: -1px; line-height: 1; margin-bottom: 10px; text-wrap: balance; }
.news-head-txt h2 span { color: var(--oliva); }
.news-head-txt p { font-size: var(--body); color: var(--gray); line-height: 1.8; font-weight: 300; }

.news-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; }

.nf-news {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 460px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  grid-row: 1 / 3;
}
.nf-news img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.nf-news:hover img { transform: scale(1.04); }
.nf-news::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,17,16,.9) 0%, rgba(17,17,16,.2) 45%, transparent 75%); }
.nf-body { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(20px, 3vw, 40px); z-index: 1; }
.nf-date { font-size: var(--xxs); text-transform: uppercase; letter-spacing: 2px; color: var(--oliva-l); font-weight: 700; }
.nf-title { font-family: var(--display); font-size: var(--h3); font-weight: 700; color: var(--white); margin-top: 10px; line-height: 1.2; text-transform: uppercase; letter-spacing: -0.5px; text-wrap: balance; }
.nf-excerpt { font-size: var(--sm); color: rgba(255,255,255,.55); line-height: 1.7; margin-top: 10px; max-width: 460px; }

.ns {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  min-height: 140px;
}
.ns:hover { transform: translateX(6px); border-color: rgba(158,168,0,.12); box-shadow: 0 12px 32px rgba(0,0,0,.05); }
.ns-img { overflow: hidden; min-height: 140px; }
.ns-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ns:hover .ns-img img { transform: scale(1.06); }
.ns-body { padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.ns-date { font-size: var(--xxs); text-transform: uppercase; letter-spacing: 1.5px; color: var(--oliva); font-weight: 700; }
.ns-title { font-family: var(--display); font-size: clamp(14px, 1.2vw, 18px); font-weight: 700; line-height: 1.3; margin-top: 8px; text-transform: uppercase; letter-spacing: -0.3px; }
.ns-excerpt { font-size: var(--xs); color: var(--gray); line-height: 1.6; margin-top: 6px; }


/* ────────────────────────────────────────────
   15. PAGE HERO (Interior pages)
   ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: clamp(240px, 40vh, 380px);
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,17,16,.88) 0%, rgba(17,17,16,.3) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(32px, 5vw, 48px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--xxs);
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.4); transition: color 0.3s; }
.page-hero .breadcrumb a:hover { color: var(--oliva-l); }
.page-hero .breadcrumb svg { width: 10px; height: 10px; stroke: rgba(255,255,255,.25); fill: none; stroke-width: 2; flex-shrink: 0; }
.page-hero h1 {
  font-family: var(--display);
  font-size: var(--h1);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  text-wrap: balance;
}
.page-hero h1 span { color: var(--oliva-l); }
.page-hero-sub {
  font-size: var(--body);
  color: rgba(255,255,255,.5);
  margin-top: 14px;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

.sec { padding: var(--pad-sec) var(--pad); }
.sec-head { margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head.centered { text-align: center; }
.sec-title {
  font-family: var(--display);
  font-size: var(--h2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 12px 0;
  text-wrap: balance;
}
.sec-title span { color: var(--oliva); }
.sec-sub { font-size: var(--body); color: var(--gray); line-height: 1.8; font-weight: 300; max-width: 540px; }
.sec-head.centered .sec-sub { margin: 0 auto; }


/* ────────────────────────────────────────────
   16. YEAR NAVIGATION (Promociones)
   ──────────────────────────────────────────── */
.year-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.year-nav::-webkit-scrollbar { display: none; }
.year-nav-inner {
  display: flex;
  gap: 0;
  padding: 0 var(--pad);
  min-width: max-content;
}
.yn {
  padding: 14px 20px;
  font-family: var(--display);
  font-size: var(--xs);
  font-weight: 700;
  color: var(--gray-l);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  border: none;
  background: none;
  white-space: nowrap;
  min-height: 48px;
}
.yn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--oliva);
  border-radius: 2px 2px 0 0;
  transition: width 0.3s;
}
.yn:hover { color: var(--carbon); }
.yn.active { color: var(--oliva-d); }
.yn.active::after { width: 100%; }


/* ────────────────────────────────────────────
   17. TIMELINE & CAMPAIGN CARDS (Promociones)
   ──────────────────────────────────────────── */
.featured-section { padding: var(--pad-sec) var(--pad); background: var(--bg); }
.featured-label {
  font-family: var(--display);
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  margin-bottom: clamp(-40px, -3vw, -20px);
  position: relative;
  z-index: 0;
}

.year-section { padding: var(--pad-sec) var(--pad); border-top: 1px solid var(--border); }
.year-section:nth-child(even) { background: var(--cream); }
.year-heading { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.year-num { font-family: var(--display); font-size: clamp(32px, 5vw, 60px); font-weight: 800; color: var(--oliva); line-height: 1; }
.year-line { flex: 1; height: 1px; background: var(--border); min-width: 40px; }
.year-meta { font-size: var(--xxs); color: var(--gray); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

.scope-label {
  font-family: var(--display);
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--carbon);
  margin: 28px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.scope-label::before { content: ''; width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.scope-label.national::before { background: var(--oliva); }
.scope-label.intl::before { background: var(--oliva-l); }
.scope-label .count {
  margin-left: auto;
  font-family: var(--sans);
  font-size: var(--xxs);
  color: var(--gray-l);
  font-weight: 600;
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 1px;
}

.camp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}
.camp-card { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); cursor: pointer; transition: all 0.45s var(--ease); }
.camp-card:hover { transform: translateY(-5px); border-color: rgba(158,168,0,.15); box-shadow: 0 20px 48px rgba(0,0,0,.06); }
.camp-card-img { aspect-ratio: 4 / 3; max-height: 200px; overflow: hidden; position: relative; }
.camp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.camp-card:hover .camp-card-img img { transform: scale(1.05); }
.camp-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.2) 0%, transparent 30%); }
.camp-badge { position: absolute; top: 14px; left: 14px; background: var(--oliva); color: var(--white); font-size: var(--xxs); font-weight: 800; padding: 5px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 2px; z-index: 1; }
.camp-card-body { padding: 22px; }
.camp-title { font-family: var(--display); font-size: var(--h4); font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 6px; text-wrap: balance; }
.camp-desc { font-size: var(--sm); color: var(--gray); line-height: 1.6; }
.camp-foot { padding: 0 22px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.camp-link { font-size: var(--xxs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--oliva); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.camp-card:hover .camp-link { gap: 12px; }
.camp-link svg { width: 14px; height: 14px; stroke: var(--oliva); fill: none; stroke-width: 2; }
.camp-country-tag { font-size: var(--xxs); color: var(--gray-l); background: var(--cream); padding: 4px 10px; border-radius: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: 1px solid var(--border); }

/* National featured card */
.nat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.nat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.06); border-color: rgba(158,168,0,.12); }
.nat-card-img { overflow: hidden; min-height: 200px; }
.nat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.nat-card:hover .nat-card-img img { transform: scale(1.04); }
.nat-card-body { padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; justify-content: center; }
.nat-card-body h3 { font-family: var(--display); font-size: var(--h3); font-weight: 700; text-transform: uppercase; letter-spacing: -0.5px; margin: 10px 0; text-wrap: balance; }
.nat-card-body p { font-size: var(--sm); color: var(--gray); line-height: 1.7; }

/* Featured grid (2025 section) */
.featured-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; position: relative; z-index: 1; }
.feat-hero-card { border-radius: var(--r-xl); overflow: hidden; position: relative; min-height: 400px; aspect-ratio: 4 / 3; cursor: pointer; }
.feat-hero-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.feat-hero-card:hover img { transform: scale(1.04); }
.feat-hero-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,17,16,.88) 0%, rgba(17,17,16,.2) 40%, transparent 70%); }
.feat-hero-body { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(24px, 3vw, 40px); z-index: 1; }
.feat-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--oliva); color: var(--white); font-size: var(--xxs); font-weight: 800; padding: 6px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; min-height: 28px; }
.feat-title { font-family: var(--display); font-size: var(--h3); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 10px; text-wrap: balance; }
.feat-excerpt { font-size: var(--sm); color: rgba(255,255,255,.55); line-height: 1.7; max-width: 420px; }
.feat-link { display: inline-flex; align-items: center; gap: 8px; font-size: var(--xxs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--oliva-l); margin-top: 14px; transition: gap 0.3s; }
.feat-link:hover { gap: 16px; }
.feat-link svg { width: 14px; height: 14px; stroke: var(--oliva-l); fill: none; stroke-width: 2; }

.feat-side { display: flex; flex-direction: column; gap: 16px; }
.feat-card { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); cursor: pointer; transition: all 0.4s var(--ease); display: grid; grid-template-columns: 140px 1fr; flex: 1; min-height: 120px; }
.feat-card:hover { transform: translateX(6px); border-color: rgba(158,168,0,.12); box-shadow: 0 12px 36px rgba(0,0,0,.06); }
.feat-card-img { overflow: hidden; min-height: 120px; }
.feat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.feat-card:hover .feat-card-img img { transform: scale(1.06); }
.feat-card-body { padding: 18px; display: flex; flex-direction: column; justify-content: center; }
.fc-badge { display: inline-flex; width: fit-content; padding: 3px 10px; border-radius: 12px; font-size: var(--xxs); font-weight: 700; background: var(--oliva-bg); color: var(--oliva-d); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.fc-title { font-family: var(--display); font-size: var(--sm); font-weight: 700; text-transform: uppercase; letter-spacing: -0.2px; line-height: 1.3; }
.fc-desc { font-size: var(--xs); color: var(--gray); line-height: 1.5; margin-top: 4px; }


/* ────────────────────────────────────────────
   18. MAP SECTION (Promociones)
   ──────────────────────────────────────────── */
.map-section {
  background: var(--dark-2);
  padding: clamp(40px, 6vw, 72px) var(--pad);
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(158, 168, 0, 0.03);
  pointer-events: none;
}
.map-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.map-header h2 { font-family: var(--display); font-size: var(--h2); font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: -1px; line-height: 1.05; text-wrap: balance; }
.map-header h2 span { color: var(--oliva-l); }
.map-countries { display: flex; flex-wrap: wrap; gap: 8px; }
.mc { padding: 8px 18px; border-radius: 24px; font-size: var(--xxs); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s; cursor: pointer; min-height: 32px; display: inline-flex; align-items: center; }
.mc-on { background: var(--oliva); color: var(--white); border: 1px solid var(--oliva); }
.mc-past { background: transparent; color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.07); }
.mc-past:hover { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.5); }

.map-visual { display: flex; align-items: center; justify-content: center; padding: 20px 0; position: relative; z-index: 1; }
.world-svg { width: 100%; max-width: 800px; height: auto; opacity: 0.85; }
.world-svg .land { fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.03); stroke-width: 0.5; }
.world-svg .active-country { fill: var(--oliva); opacity: 0.7; transition: opacity 0.3s; }
.world-svg .active-country:hover { opacity: 1; }
.world-svg .dot { fill: var(--oliva-l); }
.world-svg .dot-ring { fill: none; stroke: var(--oliva-l); stroke-width: 1; opacity: 0.3; }


/* ────────────────────────────────────────────
   19. ARTICLE HERO & LAYOUT
   ──────────────────────────────────────────── */
.art-hero { position: relative; min-height: clamp(380px, 55vh, 520px); overflow: hidden; background: var(--dark); }
.art-hero-bg { position: absolute; inset: 0; }
.art-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.art-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,17,16,.92) 0%, rgba(17,17,16,.4) 40%, rgba(17,17,16,.2) 100%); }
.art-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) clamp(40px, 6vw, 56px);
  max-width: 900px;
}
.art-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: var(--xxs); color: rgba(255,255,255,.35); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; flex-wrap: wrap; }
.art-breadcrumb a { color: rgba(255,255,255,.4); transition: color 0.3s; }
.art-breadcrumb a:hover { color: var(--oliva-l); }
.art-breadcrumb svg { width: 10px; height: 10px; stroke: rgba(255,255,255,.25); fill: none; stroke-width: 2; flex-shrink: 0; }
.art-hero-cat { display: inline-flex; align-items: center; gap: 8px; background: var(--oliva); color: var(--white); font-size: var(--xxs); font-weight: 800; padding: 6px 18px; border-radius: 20px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; width: fit-content; min-height: 28px; }
.art-hero-title { font-family: var(--display); font-size: var(--h1); font-weight: 800; color: var(--white); line-height: 1.08; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 20px; text-wrap: balance; }
.art-hero-title span { color: var(--oliva-l); }
.art-hero-meta { display: flex; align-items: center; gap: clamp(10px, 2vw, 20px); flex-wrap: wrap; font-size: var(--xs); color: rgba(255,255,255,.45); }
.art-hero-meta svg { width: 14px; height: 14px; stroke: var(--oliva-l); fill: none; stroke-width: 1.8; margin-right: 4px; vertical-align: -2px; flex-shrink: 0; }
.art-meta-item { display: flex; align-items: center; gap: 6px; }
.art-meta-divider { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.15); }

.art-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 6vw, 72px) var(--pad);
  max-width: 1320px;
  margin: 0 auto;
}
.art-main { min-width: 0; }
.art-lead { font-size: clamp(16px, 1.3vw, 20px); font-weight: 500; color: var(--carbon); line-height: 1.85; padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--border); }


/* ────────────────────────────────────────────
   20. ARTICLE BODY & PROSE
   ──────────────────────────────────────────── */
.prose h2,
.art-body h2 { font-family: var(--display); font-size: var(--h3); font-weight: 700; text-transform: uppercase; letter-spacing: -0.5px; margin: 36px 0 14px; line-height: 1.2; color: var(--carbon); text-wrap: balance; }
.prose h3,
.art-body h3 { font-family: var(--display); font-size: var(--h4); font-weight: 700; text-transform: uppercase; letter-spacing: -0.3px; margin: 28px 0 12px; line-height: 1.3; color: var(--carbon); }
.prose p,
.art-body p { font-size: var(--body); color: var(--carbon-50); line-height: 1.95; margin-bottom: 18px; }
.prose blockquote,
.art-body blockquote { margin: 32px 0; padding: clamp(20px, 2.5vw, 28px) clamp(22px, 3vw, 32px); background: var(--oliva-bg); border-left: 4px solid var(--oliva); border-radius: 0 var(--r-md) var(--r-md) 0; font-family: var(--display); font-size: clamp(16px, 1.5vw, 22px); font-weight: 600; color: var(--carbon); line-height: 1.5; font-style: normal; }
.prose blockquote cite,
.art-body blockquote cite { display: block; font-family: var(--sans); font-size: var(--sm); color: var(--gray); font-weight: 500; margin-top: 12px; font-style: normal; text-transform: uppercase; letter-spacing: 1px; }
.prose ul, .prose ol,
.art-body ul, .art-body ol { margin: 18px 0 22px 22px; font-size: var(--body); color: var(--carbon-50); line-height: 1.95; }
.prose li, .art-body li { margin-bottom: 8px; padding-left: 4px; }
.prose li::marker, .art-body li::marker { color: var(--oliva); }
.prose img, .art-body img { border-radius: var(--r-lg); margin: 28px 0; }

.art-img-block { margin: 36px 0; border-radius: var(--r-lg); overflow: hidden; position: relative; }
.art-img-block img { width: 100%; height: auto; }
.art-img-caption { padding: 12px 0; font-size: var(--xs); color: var(--gray); display: flex; align-items: center; gap: 8px; }
.art-img-caption::before { content: ''; width: 20px; height: 2px; background: var(--oliva); flex-shrink: 0; }

.art-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 36px 0; }
.art-gallery img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; border-radius: var(--r-md); }

.art-highlight-box { margin: 36px 0; padding: clamp(22px, 3vw, 32px); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); display: flex; gap: 18px; align-items: flex-start; }
.art-hb-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--oliva-bg); border: 1.5px solid rgba(158,168,0,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.art-hb-icon svg { width: 22px; height: 22px; stroke: var(--oliva); fill: none; stroke-width: 1.5; }
.art-hb-body h4 { font-family: var(--display); font-size: var(--h4); font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: -0.3px; }
.art-hb-body p { font-size: var(--sm); color: var(--gray); line-height: 1.7; margin: 0; }

.art-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0; padding-top: 28px; border-top: 1px solid var(--border); }
.art-tag { padding: 8px 16px; border-radius: 24px; font-size: var(--xxs); font-weight: 700; color: var(--gray); background: var(--cream); border: 1px solid var(--border); text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; min-height: 32px; display: inline-flex; align-items: center; }
.art-tag:hover { border-color: var(--oliva); color: var(--oliva-d); background: var(--oliva-bg); }


/* ────────────────────────────────────────────
   21. ARTICLE SIDEBAR
   ──────────────────────────────────────────── */
.art-sidebar { position: relative; min-width: 0; }
.sidebar-sticky { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; overflow: hidden; }
.sidebar-card-title { font-family: var(--display); font-size: var(--sm); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--carbon); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.sidebar-card-title::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--oliva); }

.sb-related { display: flex; flex-direction: column; gap: 14px; }
.sb-related-item { display: flex; gap: 12px; cursor: pointer; padding: 8px; border-radius: var(--r-md); transition: background 0.3s; margin: -8px; margin-bottom: 0; align-items: center; }
.sb-related-item:hover { background: var(--cream); }
.sb-rel-img { width: 68px; height: 68px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.sb-rel-img img { width: 100%; height: 100%; object-fit: cover; }
.sb-rel-body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.sb-rel-date { font-size: var(--xxs); color: var(--oliva); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.sb-rel-title { font-family: var(--display); font-size: var(--sm); font-weight: 700; line-height: 1.3; margin-top: 4px; text-transform: uppercase; letter-spacing: -0.2px; }

.sb-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sb-stat { background: var(--cream); border-radius: var(--r-md); padding: 16px 12px; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
.sb-stat:hover { border-color: rgba(158,168,0,.15); background: var(--oliva-bg); }
.sb-stat-num { font-family: var(--display); font-size: clamp(20px, 2vw, 28px); font-weight: 800; color: var(--oliva); line-height: 1; }
.sb-stat-label { font-size: var(--xxs); color: var(--gray); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

.sb-newsletter { text-align: center; }
.sb-newsletter p { font-size: var(--sm); color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.sb-nl-input { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--border); font-size: 16px; font-family: var(--sans); background: var(--cream); outline: none; transition: border-color 0.3s; margin-bottom: 10px; min-height: 44px; }
.sb-nl-input:focus { border-color: var(--oliva); }
.sb-nl-btn { width: 100%; padding: 14px; border-radius: 10px; background: var(--oliva); color: var(--white); font-size: var(--xxs); font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; cursor: pointer; border: none; transition: all 0.3s; font-family: var(--sans); min-height: 44px; }
.sb-nl-btn:hover { background: var(--oliva-d); }

.sidebar-cta { background: var(--oliva); border-radius: var(--r-lg); padding: 28px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.sidebar-cta::before { content: ''; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.06); }
.sidebar-cta h4 { font-family: var(--display); font-size: var(--h4); font-weight: 700; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 8px; position: relative; z-index: 1; }
.sidebar-cta p { font-size: var(--sm); color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 16px; position: relative; z-index: 1; }
.sidebar-cta .btn { padding: 12px 24px; position: relative; z-index: 1; }


/* ────────────────────────────────────────────
   22. ARTICLE SHARE & AUTHOR
   ──────────────────────────────────────────── */
.art-share { display: flex; align-items: center; gap: 10px; padding: 28px 0; border-top: 1px solid var(--border); flex-wrap: wrap; }
.art-share-label { font-size: var(--xxs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-right: 6px; }
.share-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.3s; cursor: pointer; flex-shrink: 0; }
.share-btn:hover { background: var(--oliva); border-color: var(--oliva); }
.share-btn svg { width: 18px; height: 18px; stroke: var(--gray); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.share-btn:hover svg { stroke: var(--white); }

.author-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); display: flex; gap: 18px; align-items: center; margin: 36px 0 0; flex-wrap: wrap; }
.author-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--oliva-bg); border: 2px solid var(--oliva-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--oliva-d); }
.author-info { min-width: 0; flex: 1; }
.author-info h4 { font-family: var(--display); font-size: var(--sm); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.author-info p { font-size: var(--sm); color: var(--gray); line-height: 1.6; margin-top: 4px; }


/* ────────────────────────────────────────────
   23. ARTICLE NAVIGATION (Prev/Next)
   ──────────────────────────────────────────── */
.art-nav-bottom { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); margin-top: 36px; }
.art-nav-item { padding: 24px 0; display: flex; flex-direction: column; gap: 6px; cursor: pointer; transition: background 0.3s; }
.art-nav-item:hover { background: var(--cream); }
.art-nav-item:first-child { padding-right: 20px; border-right: 1px solid var(--border); padding-left: 8px; }
.art-nav-item:last-child { padding-left: 20px; padding-right: 8px; text-align: right; align-items: flex-end; }
.art-nav-label { font-size: var(--xxs); text-transform: uppercase; letter-spacing: 2px; color: var(--gray); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.art-nav-label svg { width: 12px; height: 12px; stroke: var(--oliva); fill: none; stroke-width: 2; flex-shrink: 0; }
.art-nav-title { font-family: var(--display); font-size: var(--sm); font-weight: 700; color: var(--carbon); text-transform: uppercase; letter-spacing: -0.2px; line-height: 1.3; }


/* ────────────────────────────────────────────
   24. RELATED ARTICLES SECTION
   ──────────────────────────────────────────── */
.related-sec { padding: var(--pad-sec) var(--pad); background: var(--cream); border-top: 1px solid var(--border); }
.related-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(24px, 4vw, 40px); flex-wrap: wrap; gap: 16px; }
.related-head h2 { font-family: var(--display); font-size: var(--h2); font-weight: 800; text-transform: uppercase; letter-spacing: -1px; line-height: 1; text-wrap: balance; }
.related-head h2 span { color: var(--oliva); }

.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.rel-card { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); cursor: pointer; transition: all 0.45s var(--ease); display: flex; flex-direction: column; }
.rel-card:hover { transform: translateY(-6px); border-color: rgba(158,168,0,.15); box-shadow: 0 20px 48px rgba(0,0,0,.06); }
.rel-card-img { aspect-ratio: 16 / 10; max-height: 220px; overflow: hidden; position: relative; }
.rel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.rel-card:hover .rel-card-img img { transform: scale(1.05); }
.rel-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.15) 0%, transparent 30%); }
.rel-card-badge { position: absolute; top: 14px; left: 14px; background: var(--oliva); color: var(--white); font-size: var(--xxs); font-weight: 800; padding: 5px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 2px; z-index: 1; }
.rel-card-body { padding: 22px; flex: 1; }
.rel-card-date { font-size: var(--xxs); text-transform: uppercase; letter-spacing: 1.5px; color: var(--oliva); font-weight: 700; }
.rel-card-title { font-family: var(--display); font-size: var(--h4); font-weight: 700; line-height: 1.2; margin-top: 8px; text-transform: uppercase; letter-spacing: -0.3px; text-wrap: balance; }
.rel-card-excerpt { font-size: var(--sm); color: var(--gray); line-height: 1.6; margin-top: 8px; }
.rel-card-foot { padding: 0 22px 22px; display: flex; justify-content: space-between; align-items: center; }
.rel-card-link { font-size: var(--xxs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--oliva); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.rel-card:hover .rel-card-link { gap: 12px; }
.rel-card-link svg { width: 14px; height: 14px; stroke: var(--oliva); fill: none; stroke-width: 2; }


/* ────────────────────────────────────────────
   25. INFO BOXES
   ──────────────────────────────────────────── */
.info-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.info-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--oliva-bg); border: 1.5px solid rgba(158,168,0,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; stroke: var(--oliva); fill: none; stroke-width: 1.5; }
.info-text { min-width: 0; flex: 1; }
.info-text h4 { font-family: var(--display); font-size: var(--sm); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-text p { font-size: var(--sm); color: var(--gray); line-height: 1.6; margin: 0; word-wrap: break-word; overflow-wrap: break-word; }
.info-text a { color: var(--oliva); font-weight: 600; word-break: break-word; }


/* ────────────────────────────────────────────
   26. DOWNLOAD ITEMS
   ──────────────────────────────────────────── */
.dl-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); transition: all 0.3s; margin-bottom: 8px; cursor: pointer; min-height: 56px; }
.dl-item:hover { border-color: var(--oliva); background: var(--oliva-bg); }
.dl-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--oliva-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dl-icon svg { width: 18px; height: 18px; stroke: var(--oliva); fill: none; stroke-width: 1.5; }
.dl-name { font-size: var(--sm); font-weight: 600; color: var(--carbon); }
.dl-meta { font-size: var(--xxs); color: var(--gray); }


/* ────────────────────────────────────────────
   27. FORMS
   ──────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: var(--xxs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); }
.form-input,
.form-textarea {
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  font-size: 16px; /* Prevents iOS zoom */
  font-family: var(--sans);
  background: var(--cream);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  min-height: 48px;
  color: var(--carbon);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--oliva);
  background: var(--white);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-l);
  opacity: 1;
}
.form-textarea { resize: vertical; min-height: 120px; padding: 14px 16px; }


/* ────────────────────────────────────────────
   28. MAP EMBED
   ──────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: clamp(280px, 40vw, 360px);
  background: var(--sand);
  border: 1px solid var(--border);
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }


/* ────────────────────────────────────────────
   29. TEAM GRID
   ──────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr)); gap: 16px; }
.team-card { text-align: center; padding: 28px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); transition: all 0.3s; }
.team-card:hover { border-color: rgba(158,168,0,.15); transform: translateY(-3px); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--oliva-bg); border: 2px solid var(--oliva-pale); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--oliva-d); }
.team-name { font-family: var(--display); font-size: var(--sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.team-role { font-size: var(--xs); color: var(--gray); margin-top: 2px; }


/* ────────────────────────────────────────────
   30. FILTERS / TABS
   ──────────────────────────────────────────── */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 24px;
  font-size: var(--xxs);
  font-weight: 700;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  cursor: pointer;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--oliva);
  color: var(--white);
  border-color: var(--oliva);
}

/* Horizontal scroll on mobile */
@media (max-width: 640px) {
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin-left: calc(var(--pad) * -1);
    margin-right: calc(var(--pad) * -1);
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }
}


/* ────────────────────────────────────────────
   31. RECIPE DETAIL
   ──────────────────────────────────────────── */
.recipe-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; min-height: 440px; }
.recipe-hero-img { overflow: hidden; position: relative; min-height: 280px; }
.recipe-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.recipe-hero-body { background: var(--cream); padding: clamp(32px, 5vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.recipe-hero-body h1 { font-family: var(--display); font-size: var(--h2); font-weight: 800; text-transform: uppercase; letter-spacing: -1px; margin: 12px 0 16px; text-wrap: balance; }
.recipe-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.recipe-meta-item { display: inline-flex; align-items: center; gap: 6px; font-size: var(--xs); color: var(--gray); background: var(--white); padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border); min-height: 32px; }
.recipe-meta-item svg { width: 14px; height: 14px; stroke: var(--oliva); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.ingredients-list { list-style: none; margin: 0; padding: 0; }
.ingredients-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: var(--sm); color: var(--carbon-50); display: flex; align-items: center; gap: 10px; }
.ingredients-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--oliva); flex-shrink: 0; }

/* Generic card */
.card { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: all 0.45s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); border-color: rgba(158,168,0,.15); box-shadow: 0 20px 48px rgba(0,0,0,.06); }
.card-img { aspect-ratio: 16 / 10; max-height: 200px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-badge { position: absolute; top: 14px; left: 14px; background: var(--oliva); color: var(--white); font-size: var(--xxs); font-weight: 800; padding: 5px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 2px; z-index: 1; }
.card-body { padding: 22px; flex: 1; }
.card-date { font-size: var(--xxs); text-transform: uppercase; letter-spacing: 1.5px; color: var(--oliva); font-weight: 700; }
.card-title { font-family: var(--display); font-size: var(--h4); font-weight: 700; line-height: 1.2; margin-top: 8px; text-transform: uppercase; letter-spacing: -0.3px; text-wrap: balance; }
.card-excerpt { font-size: var(--sm); color: var(--gray); line-height: 1.6; margin-top: 8px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: var(--xxs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--oliva); padding: 0 22px 22px; transition: gap 0.3s; }
.card:hover .card-link { gap: 12px; }
.card-link svg { width: 14px; height: 14px; stroke: var(--oliva); fill: none; stroke-width: 2; }


/* ────────────────────────────────────────────
   32. CTA BAND
   ──────────────────────────────────────────── */
.cta {
  margin: 0 var(--pad) clamp(32px, 5vw, 72px);
  background: var(--oliva);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 60px) clamp(24px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.cta-text { max-width: 520px; position: relative; z-index: 1; flex: 1; min-width: 260px; }
.cta-text h3 {
  font-family: var(--display);
  font-size: var(--h2);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 8px;
  text-wrap: balance;
}
.cta-text p { font-size: var(--body); color: rgba(255, 255, 255, 0.65); font-weight: 300; }


/* ────────────────────────────────────────────
   33. FOOTER
   ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: clamp(40px, 6vw, 72px) var(--pad) clamp(20px, 3vw, 32px);
  padding-bottom: calc(clamp(20px, 3vw, 32px) + var(--safe-bottom));
}
.ft-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(32px, 5vw, 56px);
}
.ft-brand img { height: 32px; filter: brightness(0) invert(1); opacity: 0.6; margin-bottom: 8px; }
.ft-brand-sub { font-size: var(--xxs); text-transform: uppercase; letter-spacing: 3px; color: var(--oliva); font-weight: 700; margin-bottom: 18px; }
.ft-brand-addr { font-size: var(--sm); color: rgba(255,255,255,.3); line-height: 1.9; }
.ft-brand-badge { margin-top: 22px; }
.ft-brand-badge img { height: 44px; border-radius: 6px; }
.ft-col h4 { font-size: var(--xxs); text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,.2); font-weight: 700; margin-bottom: 22px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 12px; }
.ft-col ul li a { font-size: var(--sm); color: rgba(255,255,255,.4); transition: color 0.3s; display: inline-block; min-height: 28px; }
.ft-col ul li a:hover { color: var(--oliva-l); }
.ft-ct { display: flex; align-items: center; gap: 10px; font-size: var(--sm); color: rgba(255,255,255,.4); margin-bottom: 14px; word-break: break-word; }
.ft-ct svg { width: 14px; height: 14px; stroke: var(--oliva); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: var(--xxs);
  color: rgba(255,255,255,.15);
  flex-wrap: wrap;
  gap: 10px;
}
.ft-bottom a { color: rgba(255,255,255,.15); margin-left: 12px; transition: color 0.3s; }
.ft-bottom a:hover { color: rgba(255,255,255,.4); }


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS — DETAILED OVERRIDES
   ════════════════════════════════════════════════════════════════ */

/* ─── 1280px+ — DESKTOP LARGE ─── */
@media (min-width: 1280px) {
  .art-layout { max-width: 1280px; }
  .bento-grid { gap: 16px; }
}

/* ─── 1024px+ — LAPTOP ─── */
@media (min-width: 1024px) {
  /* Desktop-only enhancements */
}

/* ─── < 1024px — TABLET L / LAPTOP S ─── */
@media (max-width: 1023px) {
  /* Bento grid: 2-column */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .bc1 { grid-column: 1 / 3; grid-row: auto; min-height: 360px; }
  .bc2 { grid-column: 1 / 2; grid-row: auto; min-height: 140px; }
  .bc3 { grid-column: 2 / 3; grid-row: auto; }
  .bc4 { grid-column: 1 / 2; grid-row: auto; min-height: 220px; }
  .bc5 { grid-column: 2 / 3; grid-row: auto; min-height: 140px; }

  /* Splits to single column */
  .dieta,
  .recipe-hero { grid-template-columns: 1fr; }

  /* News becomes stacked */
  .news-grid { grid-template-columns: 1fr; }
  .nf-news { grid-row: auto; min-height: 340px; aspect-ratio: 16 / 10; }

  /* Nutrition to 2 cols */
  .n-strip,
  .nutri-feature { grid-template-columns: 1fr 1fr; }

  /* Related articles 2 cols */
  .related-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer 2 cols */
  .ft-grid { grid-template-columns: 1fr 1fr; }

  /* Form single column */
  .form-grid { grid-template-columns: 1fr; }

  /* Featured grid stacks */
  .featured-grid { grid-template-columns: 1fr; }

  /* National card stacks */
  .nat-card { grid-template-columns: 1fr; }
  .nat-card-img { aspect-ratio: 16 / 9; max-height: 280px; }

  /* Article layout */
  .art-layout { grid-template-columns: 1fr; max-width: 780px; }
  .art-sidebar { order: 2; }
  .sidebar-sticky { position: static; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

  /* CTA center */
  .cta { justify-content: center; text-align: center; }
  .cta-text { min-width: 0; }
}

/* ─── 768px — TABLET ─── */
@media (max-width: 767px) {
  /* Bento to 1 column */
  .bento-grid { grid-template-columns: 1fr; }
  .bc1, .bc2, .bc3, .bc4, .bc5 { grid-column: auto; grid-row: auto; }
  .bc1 { min-height: 300px; }
  .bc2 { min-height: 160px; }
  .bc3 { padding: 26px 22px; }
  .bc4 { min-height: 220px; }
  .bc5 { min-height: 140px; }

  /* Nutrition full stack */
  .n-strip,
  .nutri-feature { grid-template-columns: 1fr; }

  /* Hero bar compressed */
  .hero-bar { grid-template-columns: repeat(4, 1fr); }
  .hb { padding: 14px 4px; }
  .hb-n { font-size: clamp(16px, 4vw, 22px); }
  .hb-l { font-size: 8px; letter-spacing: 0.8px; }

  /* News card stacks vertically */
  .ns { grid-template-columns: 120px 1fr; }
  .ns-img { min-height: 120px; }
  .ns-body { padding: 16px; }

  /* Feat cards */
  .feat-card { grid-template-columns: 120px 1fr; min-height: 110px; }
  .feat-card-img { min-height: 110px; }
  .feat-card-body { padding: 16px; }

  /* Footer single column */
  .ft-grid { grid-template-columns: 1fr; }

  /* Related grid 1 col */
  .related-grid { grid-template-columns: 1fr; }

  /* Camp grid 1 col */
  .camp-grid { grid-template-columns: 1fr; }

  /* Article hero */
  .art-hero-title { font-size: clamp(26px, 7vw, 40px); }

  /* Gallery */
  .art-gallery { grid-template-columns: 1fr; }

  /* Prev/Next stacks */
  .art-nav-bottom { grid-template-columns: 1fr; }
  .art-nav-item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 4px;
  }
  .art-nav-item:last-child {
    padding: 24px 4px;
    text-align: left;
    align-items: flex-start;
  }

  /* Dieta img aspect */
  .dieta-img { aspect-ratio: 16 / 10; min-height: 240px; max-height: 360px; }

  /* Recipe hero */
  .recipe-hero-img { aspect-ratio: 16 / 10; min-height: 240px; }

  /* Sidebar stack to grid */
  .sidebar-sticky { grid-template-columns: 1fr; }

  /* CTA smaller padding */
  .cta { padding: 32px 24px; }

  /* Scope label wraps */
  .scope-label { flex-wrap: wrap; }
  .scope-label .count { margin-left: 0; }
}

/* ─── 640px — TABLET S / LARGE PHONE ─── */
@media (max-width: 639px) {
  /* Smaller page hero */
  .page-hero { min-height: clamp(200px, 35vh, 300px); }

  /* Smaller ft-bottom */
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .ft-bottom a { margin-left: 0; margin-right: 12px; }

  /* Art share wraps with label hiding */
  .art-share-label { display: none; }

  /* Author box stacks */
  .author-box { flex-direction: row; }
}

/* ─── 480px — PHONE ─── */
@media (max-width: 479px) {
  /* Ultra compact nav */
  .nav { padding: 0 16px; }
  .nav-logo img { height: 34px; }
  .nav-end .btn { padding: 8px 16px; font-size: 10px; }

  /* Topbar reduce */
  .topbar { padding: 6px 16px; }

  /* Hero bar — 2 columns stacked */
  .hero-bar {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .hb { border-right: 1px solid rgba(255,255,255,.04); }
  .hb:nth-child(2) { border-right: none; }
  .hb:nth-child(3) { border-top: 1px solid rgba(255,255,255,.04); }
  .hb:nth-child(4) { border-top: 1px solid rgba(255,255,255,.04); border-right: none; }

  /* Hero h1 more compact */
  .hero-h1 { letter-spacing: -1px; }

  /* Hero btns stack if needed */
  .hero-btns .btn { flex: 1 1 auto; min-width: 140px; }

  /* Buttons more compact */
  .btn {
    padding: 14px 26px;
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  /* NS stacks vertically */
  .ns { grid-template-columns: 1fr; }
  .ns-img { aspect-ratio: 16 / 9; min-height: 0; max-height: 180px; }

  /* Feat card stacks */
  .feat-card { grid-template-columns: 1fr; }
  .feat-card-img { aspect-ratio: 16 / 9; min-height: 0; max-height: 160px; }

  /* Info box stacks */
  .info-box { flex-direction: column; gap: 14px; padding: 22px; }

  /* Author box stacks */
  .author-box { flex-direction: column; text-align: center; }

  /* Article highlight box */
  .art-highlight-box { flex-direction: column; gap: 16px; }

  /* Breadcrumb condensed */
  .art-breadcrumb,
  .page-hero .breadcrumb { font-size: 9px; letter-spacing: 1px; }

  /* Dieta body padding */
  .dieta-body { padding: 36px 22px; }

  /* Recipe body */
  .recipe-hero-body { padding: 32px 22px; }

  /* Year num smaller */
  .year-num { font-size: clamp(28px, 8vw, 44px); }

  /* Scope label wraps */
  .scope-label { font-size: 10px; letter-spacing: 2px; }

  /* Map countries stack */
  .map-header { flex-direction: column; align-items: flex-start; }

  /* Art hero meta smaller */
  .art-hero-meta { gap: 8px; }
  .art-meta-divider { display: none; }

  /* CTA text smaller */
  .cta { padding: 28px 20px; }
  .cta .btn { width: 100%; }

  /* Sidebar stat grid 1 col on xs */
  .sb-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── 360px — SMALL PHONE (iPhone SE, etc) ─── */
@media (max-width: 359px) {
  :root {
    --pad: 14px;
  }
  .hero-btns .btn { min-width: 0; width: 100%; }
  .hb-n { font-size: 14px; }
  .hb-l { font-size: 7px; letter-spacing: 0.5px; }
}


/* ════════════════════════════════════════════════════════════════
   LANDSCAPE PHONE FIXES
   ════════════════════════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-slider { min-height: 500px; }
  .hero-top { padding: 20px 0; }
  .hero-h1 { font-size: clamp(28px, 5vw, 40px); }
  .hero-bar { padding: 12px 0; }
  .hb { padding: 10px 4px; }
}


/* ════════════════════════════════════════════════════════════════
   HIGH CONTRAST / DARK MODE PREFERENCES
   ════════════════════════════════════════════════════════════════ */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(0, 0, 0, 0.2);
    --border-h: rgba(0, 0, 0, 0.3);
  }
  .btn { border: 1px solid currentColor; }
}


/* ════════════════════════════════════════════════════════════════
   PRINT STYLES
   ════════════════════════════════════════════════════════════════ */
@media print {
  .topbar,
  .nav,
  .hero-slider .swiper-pagination,
  .cta,
  .footer,
  .art-share,
  .sidebar-sticky,
  .nav-burger,
  body::after {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .hero-bg,
  .promo-bg,
  .page-hero-bg,
  .art-hero-bg {
    display: none;
  }
  .hero-h1,
  .page-hero h1,
  .art-hero-title {
    color: black !important;
  }
  a { text-decoration: underline; color: #000; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  h1, h2, h3, h4 { page-break-after: avoid; }
}
