:root {
  --terra:    #B8521E;
  --terra-dk: #8C3C16;
  --terra-lt: rgba(184,82,30,.08);
  --terra-bd: rgba(184,82,30,.18);
  --forest:   #2A5620;
  --forest-dk:#1A3A14;
  --cream:    #F8EDE1;
  --sand:     #ECDCC6;
  --bg:       #FAFAF7;
  --card-bg:  #FFFFFF;
  --text:     #1C1917;
  --muted:    #6B6059;
  --border:   rgba(184,82,30,.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
  --shadow:    0 4px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.13);
  --radius:   14px;
  --radius-sm: 8px;
  --font:      'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 66px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; }

/* ── SCROLL ANIMATIONS ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ── SKIP LINK & SR-ONLY ── */
.skip-link {
  position: absolute; left: 1rem; top: -100%;
  background: var(--terra); color: #fff;
  padding: .6rem 1.2rem; border-radius: 0 0 8px 8px;
  font-size: .9rem; font-weight: 700; text-decoration: none;
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,247,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none; font-weight: 700; font-size: 1.05rem; color: var(--text);
  font-family: var(--font-head);
}
.nav-logo .icon { font-size: 1.4rem; }
.nav-logo span { color: var(--terra); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .88rem; font-weight: 500; transition: color .2s; letter-spacing: .01em; }
.nav-links a:hover { color: var(--terra); }
.nav-cta { background: var(--terra); color: #fff !important; padding: .4rem 1.1rem; border-radius: 20px; transition: background .2s !important; }
.nav-cta:hover { background: var(--terra-dk) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem; width: 44px; height: 44px;
}
.hamburger span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 66px 0 0 0;
  background: rgba(250,250,247,.99); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.3rem; font-weight: 600; color: var(--text); text-decoration: none; font-family: var(--font-head); }
.mobile-menu a:hover { color: var(--terra); }
.mobile-menu .nav-cta { background: var(--terra); color: #fff !important; padding: .6rem 1.4rem; border-radius: 24px; font-family: var(--font); }

/* ── HERO ── */
.hero {
  background: linear-gradient(145deg, #FDF7EF 0%, #F2E3CE 55%, #EAD4B5 100%);
  padding: 5.5rem 2rem 4.5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(184,82,30,.1) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(42,86,32,.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--terra-lt); color: var(--terra);
  border: 1px solid var(--terra-bd); padding: .3rem .9rem;
  border-radius: 20px; font-size: .78rem; font-weight: 600; margin-bottom: 1.3rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 800;
  line-height: 1.1; color: var(--text); margin-bottom: 1.1rem;
}
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--terra); color: #fff; padding: .8rem 1.6rem; border-radius: 9px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: .4rem;
  box-shadow: 0 4px 16px rgba(184,82,30,.3);
}
.btn-primary:hover { background: var(--terra-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,82,30,.35); }
.btn-secondary {
  background: transparent; color: var(--text); padding: .8rem 1.6rem; border-radius: 9px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  border: 2px solid var(--sand); transition: border-color .2s, color .2s, background .2s;
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-secondary:hover { border-color: var(--terra); color: var(--terra); background: var(--terra-lt); }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.2rem; padding-top: 2rem;
  border-top: 1px solid rgba(184,82,30,.15);
}
.stat-num { font-size: 1.7rem; font-weight: 700; color: var(--terra); font-family: var(--font-head); }
.stat-lbl { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: .15rem; letter-spacing: .02em; }

/* Hero Video */
.hero-video { position: relative; }
.video-card {
  background: #000; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9/16; max-height: 480px; position: relative; cursor: pointer; display: block;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s, transform .4s; }
.video-card:hover img { opacity: .82; transform: scale(1.02); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; background: rgba(255,255,255,.94); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 24px rgba(0,0,0,.3); transition: transform .2s;
}
.video-card:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
.video-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: #fff; padding: 2.5rem 1.2rem 1.2rem; font-size: .85rem; font-weight: 500;
}

/* Next episode badge */
.next-ep-badge {
  background: var(--terra); color: #fff; border-radius: 10px; padding: .8rem 1.1rem;
  margin-top: 1rem; display: flex; flex-direction: column; gap: .2rem;
}
.next-ep-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.next-ep-countdown { font-size: 1.05rem; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--terra);
  color: rgba(255,255,255,.95);
  padding: .55rem 2rem;
  font-size: .78rem; font-weight: 500; line-height: 1.4;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .3rem 1.4rem;
}
.trust-strip strong { font-weight: 700; }
.trust-sep { opacity: .35; }
@media (max-width: 600px) {
  .trust-strip { flex-direction: column; gap: .2rem; text-align: center; padding: .5rem 1.25rem; }
  .trust-sep { display: none; }
}

/* ── SECTIONS ── */
section { padding: 3rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block; color: var(--terra);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; margin-bottom: .75rem; line-height: 1.2;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 560px; margin-bottom: 1.75rem; line-height: 1.75; }

/* ── FILTER PILLS ── */
.filter-pills {
  display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.pill {
  background: transparent; border: 1.5px solid var(--sand); color: var(--muted);
  padding: .7rem .9rem; border-radius: 20px; font-size: .84rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.pill:hover { border-color: var(--terra); color: var(--terra); background: var(--terra-lt); }
.pill.active { background: var(--terra); border-color: var(--terra); color: #fff; }

/* ── EPISODES ── */
#episodios { background: var(--bg); padding-bottom: 1rem; }
.episodes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.ep-card {
  background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(236,220,198,.6);
  text-decoration: none; color: var(--text);
  transition: transform .25s, opacity .3s; display: block; cursor: pointer;
}
.ep-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ep-card.hidden { display: none; }
button.ep-card { -webkit-appearance: none; appearance: none; padding: 0; font: inherit; text-align: left; width: 100%; }
button.ep-card[aria-disabled="true"] { cursor: default; }
.ep-thumb { position: relative; aspect-ratio: 9/16; background: #111; overflow: hidden; }
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.ep-card:hover .ep-thumb img { transform: scale(1.04); }
.ep-badge {
  position: absolute; top: .6rem; left: .6rem;
  background: var(--terra); color: #fff; font-size: .68rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: 5px; letter-spacing: .04em;
}
.ep-badge.scheduled { background: var(--forest); }
.ep-info { padding: 1.1rem; }
.ep-num { font-size: .72rem; font-weight: 700; color: var(--terra); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.ep-title { font-size: .95rem; font-weight: 700; line-height: 1.35; margin-bottom: .4rem; font-family: var(--font-head); }
.ep-cuisine { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }

/* ── ALLERGEN CHIPS ── */
.ep-allergen-tags {
  display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .45rem;
}
.ep-allergen-chip {
  display: inline-flex; align-items: center; gap: .2rem;
  font-size: .68rem; font-weight: 600; padding: .15rem .48rem;
  border-radius: 20px; letter-spacing: .01em; line-height: 1.4;
}
.ep-allergen-chip.warning {
  background: #FEF3C7; color: #78350F; border: 1px solid rgba(245,158,11,.25);
}
.ep-allergen-chip.safe {
  background: #D1FAE5; color: #064E3B; border: 1px solid rgba(16,185,129,.25);
}

/* ── ¿SABÍAS QUE? ── */
#sabias-que { background: var(--cream); padding-top: 1rem; }
#sobre-celeste { padding-top: 1rem; }
#cocinas { padding-top: 1rem; }
#suscribete { padding-top: 1rem; }
.carousel { position: relative; }
.carousel-track {
  display: grid;
  grid-template-areas: "slide";
  min-height: 14rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.carousel-slide {
  grid-area: slide;
  padding: 2rem 2.5rem;
  background: var(--card-bg);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.carousel-icon { font-size: 3rem; line-height: 1; }
.carousel-text {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem); font-weight: 600; line-height: 1.45;
  color: var(--text); max-width: 720px; width: 100%;
  overflow-wrap: break-word; hyphens: auto;
}
.carousel-text em { font-style: italic; color: var(--terra); }
.carousel-source { font-size: .8rem; color: var(--muted); font-weight: 500; }
.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.5rem;
}
.carousel-btn {
  background: var(--card-bg); border: 1.5px solid var(--sand); color: var(--text);
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { background: var(--terra); border-color: var(--terra); color: #fff; box-shadow: 0 4px 16px rgba(184,82,30,.3); }
.carousel-btn-pause {
  background: var(--terra-lt); border-color: var(--terra-bd); color: var(--terra);
  font-size: .85rem;
}
.carousel-btn-pause[aria-pressed="true"] {
  background: var(--terra); border-color: var(--terra); color: #fff;
}
.carousel-counter {
  font-size: .85rem; font-weight: 600; color: var(--muted);
  letter-spacing: .05em; font-variant-numeric: tabular-nums;
  min-width: 5rem; text-align: center;
}
.carousel-progress {
  height: 2px; background: var(--sand); border-radius: 2px; margin-top: 1.2rem; overflow: hidden;
}
.carousel-progress-fill {
  height: 100%; background: var(--terra); border-radius: 2px;
  width: 0%; animation: carousel-tick 5s linear forwards;
}
@keyframes carousel-tick { to { width: 100%; } }

/* ── NOTICIAS ── */
#noticias { background: var(--bg); }
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem;
}
.news-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); border: 1px solid rgba(236,220,198,.5); border-top: 3px solid var(--terra);
  display: flex; flex-direction: column; gap: .75rem; transition: transform .2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-source { display: flex; align-items: center; gap: .5rem; }
.news-source-badge {
  background: var(--terra-lt); color: var(--terra);
  font-size: .68rem; font-weight: 700; padding: .2rem .6rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.news-date { font-size: .75rem; color: var(--muted); }
.news-title {
  font-size: .95rem; font-weight: 700; line-height: 1.45; color: var(--text);
  text-decoration: none; font-family: var(--font-head);
}
.news-title:hover { color: var(--terra); }
.news-summary { font-size: .82rem; color: var(--muted); line-height: 1.65; }
.news-link {
  font-size: .8rem; font-weight: 600; color: var(--terra); text-decoration: none;
  display: inline-flex; align-items: center; gap: .3rem; margin-top: auto;
}
.news-link:hover { text-decoration: underline; }

/* Skeleton loader */
.news-skeleton {
  background: linear-gradient(90deg, var(--sand) 25%, rgba(236,220,198,.3) 50%, var(--sand) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
  border-radius: var(--radius); height: 180px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.news-error {
  grid-column: 1/-1; text-align: center; color: var(--muted);
  padding: 3rem; font-size: .95rem;
}

/* ── ABOUT ── */
#sobre-celeste {
  background: linear-gradient(145deg, var(--forest) 0%, var(--forest-dk) 100%); color: #fff;
}
#sobre-celeste .section-label { color: rgba(255,255,255,.8); }
#sobre-celeste .section-title { color: #fff; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center;
}
.about-avatar {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.avatar-circle {
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.avatar-name { font-size: 1.3rem; font-weight: 700; color: #fff; font-family: var(--font-head); }
.avatar-title { font-size: .85rem; color: rgba(255,255,255,.8); text-align: center; }
.about-text { color: rgba(255,255,255,.88); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.about-quote {
  border-left: 3px solid rgba(184,82,30,.55); padding-left: 1.3rem;
  font-style: italic; color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.75;
  font-family: var(--font-head);
}
.btn-light {
  background: rgba(255,255,255,.1); color: #fff; padding: .78rem 1.5rem; border-radius: 9px;
  text-decoration: none; font-weight: 600; border: 1px solid rgba(255,255,255,.22);
  display: inline-flex; align-items: center; gap: .4rem; transition: background .2s;
}
.btn-light:hover { background: rgba(255,255,255,.2); }

/* ── COCINAS ── */
#cocinas { background: var(--cream); }
.cocinas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.cocina-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); border: 1px solid rgba(236,220,198,.6);
  border-top: 3px solid var(--terra); transition: transform .2s;
}
.cocina-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cocina-icon { font-size: 2.2rem; margin-bottom: .75rem; display: block; }
.cocina-name { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; font-family: var(--font-head); }
.cocina-eps { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ── NEWSLETTER ── */
#newsletter { background: var(--cream); text-align: center; padding: 5rem 2rem; border-top: 1px solid var(--sand); }
#newsletter .section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: .5rem; }
.nl-inner { max-width: 560px; margin: 0 auto; }
.nl-badge {
  display: inline-block; background: var(--terra-lt); border: 1px solid var(--terra-bd);
  color: var(--terra); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1.1rem;
}
.nl-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin: .75rem auto 2rem; }
.btn-terra {
  background: var(--terra); color: #fff; padding: .9rem 2.4rem; border-radius: 9px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background .2s, transform .15s; box-shadow: var(--shadow);
}
.btn-terra:hover { background: var(--terra-dk); transform: translateY(-2px); }
.nl-btn { margin-bottom: .9rem; }
.nl-fine { font-size: .8rem; color: var(--muted); margin-top: .5rem; }

/* ── CTA ── */
#suscribete { background: var(--terra); color: #fff; text-align: center; padding: 5rem 2rem; }
#suscribete .section-title { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.cta-sub { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: .75rem auto 2rem; max-width: 500px; line-height: 1.75; }
.cta-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap; }
.cta-stat-num { font-size: 2rem; font-weight: 700; color: #fff; font-family: var(--font-head); }
.cta-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500; }
.btn-white {
  background: #fff; color: var(--terra); padding: .9rem 2.2rem; border-radius: 9px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform .15s, box-shadow .2s; box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.22); }

/* ── LEGAL PAGES ── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 7rem 1.5rem 5rem; }
.legal-page h1 { font-family: var(--font-head); font-size: 2.1rem; color: var(--text); margin-bottom: .5rem; }
.legal-page .legal-updated { color: var(--muted); font-size: .9rem; margin-bottom: 2.5rem; }
.legal-page h2 { font-family: var(--font-head); font-size: 1.35rem; color: var(--text); margin: 2.25rem 0 .75rem; }
.legal-page p, .legal-page li { color: var(--text); line-height: 1.75; margin-bottom: 1rem; }
.legal-page ul { padding-left: 1.4rem; margin-bottom: 1.25rem; }
.legal-page a { color: var(--terra); }

/* ── FOOTER ── */
footer { background: var(--text); color: rgba(255,255,255,.55); padding: 2.5rem 2rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-weight: 700; color: #fff; font-size: .95rem; font-family: var(--font-head); }
.footer-logo span { color: var(--terra); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: .78rem; }

/* ── FOOTER DISCLAIMER ── */
.footer-disclaimer-bar {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .7rem 2rem; text-align: center;
}
.footer-disclaimer {
  font-size: .72rem; color: rgba(255,255,255,.5);
  max-width: 700px; margin: 0 auto; line-height: 1.6;
}

/* ── VIDEO MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  animation: fadeIn .2s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-inner {
  position: relative; width: 100%; max-width: 700px;
  background: #000; border-radius: var(--radius); overflow: hidden;
  animation: slideUp .28s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: .75rem; right: .75rem; z-index: 10;
  background: rgba(255,255,255,.14); color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.28); }
.modal-embed { aspect-ratio: 9/16; width: 100%; max-height: 80vh; }
.modal-embed iframe { width: 100%; height: 100%; border: none; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { transition: none; opacity: 1; transform: none; }
  .carousel-slide { transition: none; }
  .carousel-progress-fill { animation: none; width: 0; }
  .modal-inner { animation: none; }
  .modal-overlay { animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 2.5rem 1.5rem; }
  .section-sub { margin-bottom: 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-video { order: -1; }
  .video-card { aspect-ratio: 16/9; max-height: 220px; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-avatar { flex-direction: row; }
  .avatar-circle { width: 80px; height: 80px; font-size: 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1rem; }
  .cta-stats { gap: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .carousel-slide { padding: 1.5rem 1.75rem; }
  #episodios { padding-bottom: 0.75rem; }
  #sabias-que { padding-top: 0.75rem; }
  .modal-embed { aspect-ratio: 16/9; }
  .news-grid { grid-template-columns: 1fr; }
  .episodes-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.25rem 2.5rem; }
  section { padding: 3rem 1.25rem; }
  nav { padding: 0 1.25rem; }
  .hero-stats { flex-direction: column; gap: .75rem; border-top: none; padding-top: 1rem; }
  .stat-num { font-size: 1.35rem; }
  .episodes-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ep-thumb { aspect-ratio: 4/5; }
  .carousel-slide { padding: 1.5rem 1.2rem; }
  .carousel-text { font-size: 1.05rem; }
  .cta-stats { gap: 1.5rem; }
  .modal-inner { margin: 0; border-radius: 0; }
  .modal-overlay { padding: 0; }
}

/* ── Inline newsletter form ────────────────────────────────────────────────── */
.nl-form { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: .9rem; }
.nl-email {
  flex: 1; min-width: 200px; max-width: 280px;
  padding: .7rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--sand); background: #fff;
  font-size: .95rem; font-family: var(--font-body); color: var(--text);
  outline: none; -webkit-appearance: none;
}
.nl-email:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(184,82,30,.12); }
.nl-submit {
  padding: .7rem 1.4rem; border-radius: 8px; border: none; cursor: pointer;
  background: var(--terra); color: #fff;
  font-size: .95rem; font-weight: 700; font-family: var(--font-body);
  transition: background .2s, transform .15s; min-height: 44px;
}
.nl-submit:hover { background: var(--terra-dk); transform: translateY(-1px); }
.nl-fine a { color: var(--muted); text-decoration: underline; }
.nl-fine a:hover { color: var(--terra); }

/* ── Mobile sticky subscribe bar ───────────────────────────────────────────── */
.mobile-sub-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--terra); color: #fff;
  padding: .65rem 1rem;
  align-items: center; gap: .75rem;
  box-shadow: 0 -3px 16px rgba(0,0,0,.18);
}
.mobile-sub-bar.dismissed { display: none !important; }
.mobile-sub-text { font-size: .82rem; font-weight: 500; flex: 1; }
.mobile-sub-btn {
  background: #fff; color: var(--terra);
  padding: .4rem .9rem; border-radius: 20px;
  font-size: .82rem; font-weight: 700; text-decoration: none;
  white-space: nowrap; min-height: 44px;
  display: inline-flex; align-items: center;
  transition: background .15s;
}
.mobile-sub-btn:hover { background: var(--cream); }
.mobile-sub-close {
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobile-sub-close:hover { color: #fff; }
@media (max-width: 768px) {
  .mobile-sub-bar { display: flex; }
}
