/* ============================================================
   Viaje China — landing
   Base: TCM design system (Outfit + Source Serif 4, ember accent)
   Gestos del brief: 8 plazas gigante, números enormes detrás como
   textura, sellos REVEALED ON APPLICATION, mapa ilustrado,
   acordeón FAQ, marquee de palabras chinas. Sin grunge agresivo —
   las texturas son sutiles (ruido del 4%), el peso lo lleva la tipo.
   ============================================================ */

@import url("colors_and_type.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;900&display=swap");

:root {
  --font-cursive: "Outfit", system-ui, sans-serif;
  --font-cn: "Noto Serif SC", "Source Serif 4", serif;

  /* China-specific accent: TCM ember by default, but with a deeper red
     option for an alt direction (vermilion / 朱红) */
  --china-red:      #E63D14;
  --china-vermilion:#C8330F;
  --china-ink:      #0A0A0A;
  --china-bone:     #F4EFE6;   /* warmer than TCM bone */
  --china-paper:    #FFFFFF;

  --max: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--content-primary);
  background: var(--china-paper);
  /* near-imperceptible warm grain — the only "texture" we allow */
  background-image:
    radial-gradient(at 12% 8%, rgba(255,180,120,0.10) 0%, transparent 40%),
    radial-gradient(at 88% 22%, rgba(255,120,80,0.06) 0%, transparent 45%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

/* ---------- LAYOUT PRIMITIVES ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; position: relative; }
.section { padding: 96px 0; position: relative; }
.section--ink { background: var(--china-ink); color: #fff; }
.section--bone { background: var(--china-bone); }
.section--tight { padding: 72px 0; }

@media (max-width: 720px) {
  .section { padding: 96px 0; }
  .wrap { padding: 0 20px; }
}

/* ---------- TYPE HELPERS ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tcm-ember);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: currentColor;
}
.eyebrow--no-rule::before { display: none; }
.eyebrow--ink { color: var(--china-ink); }
.eyebrow--paper { color: rgba(255,255,255,0.7); }
.eyebrow--paper::before { background: rgba(255,255,255,0.4); }

.display {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
}
.display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.display em.cursive {
  font-family: var(--font-cursive);
  font-weight: 500;
  font-size: 1.08em;
}

.h-section {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-section em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--content-secondary);
  max-width: 640px;
}
.section--ink .lede { color: rgba(255,255,255,0.7); }

.cn { font-family: var(--font-cn); }

.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--content-tertiary);
  text-transform: uppercase;
  margin: 56px 0;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: var(--border-default);
  max-width: 280px;
}
.section--ink .divider { color: rgba(255,255,255,0.4); }
.section--ink .divider::before, .section--ink .divider::after { background: rgba(255,255,255,0.15); }

/* The "× × ×" small mark used as a stronger separator */
.glyph-sep {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.6em;
  color: var(--tcm-ember);
  padding: 32px 0;
}

/* ---------- CHIP BUTTON (from TCM design system) ---------- */
.tcm-chip-btn {
  position: relative;
  display: inline-flex; align-items: center;
  border: none; cursor: pointer;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.012em;
  overflow: hidden;
  isolation: isolate;
  transition: color 240ms var(--ease-out), background 240ms var(--ease-out), box-shadow 240ms var(--ease-out), transform 160ms var(--ease-out);
}
.tcm-chip-btn:active { transform: scale(0.98); }

.tcm-chip-btn__disc {
  position: absolute;
  top: 6px; left: 6px; bottom: 6px;
  display: inline-flex; align-items: center; justify-content: flex-start;
  border-radius: 9999px;
  z-index: 1;
  overflow: hidden;
  transition: width 360ms cubic-bezier(0.65, 0, 0.35, 1), background 240ms var(--ease-out);
}
.tcm-chip-btn__disc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: color 240ms var(--ease-out);
}
.tcm-chip-btn__disc-icon svg { display: block; transition: transform 360ms cubic-bezier(0.65, 0, 0.35, 1); }
.tcm-chip-btn__label { position: relative; z-index: 2; transition: color 240ms var(--ease-out); }

.tcm-chip-btn--lg { font-size: 18px; height: 68px; padding: 0 36px 0 76px; }
.tcm-chip-btn--lg .tcm-chip-btn__disc { width: 56px; }
.tcm-chip-btn--lg .tcm-chip-btn__disc-icon { width: 56px; height: 56px; }
.tcm-chip-btn--lg:hover .tcm-chip-btn__disc { width: calc(100% - 12px); }
.tcm-chip-btn--lg:hover .tcm-chip-btn__disc-icon svg { transform: translateX(8px); }

.tcm-chip-btn--md { font-size: 16px; height: 60px; padding: 0 30px 0 66px; }
.tcm-chip-btn--md .tcm-chip-btn__disc { width: 48px; }
.tcm-chip-btn--md .tcm-chip-btn__disc-icon { width: 48px; height: 48px; }
.tcm-chip-btn--md:hover .tcm-chip-btn__disc { width: calc(100% - 12px); }
.tcm-chip-btn--md:hover .tcm-chip-btn__disc-icon svg { transform: translateX(6px); }

.tcm-chip-btn--sm { font-size: 14px; height: 48px; padding: 0 24px 0 52px; }
.tcm-chip-btn--sm .tcm-chip-btn__disc { width: 38px; }
.tcm-chip-btn--sm .tcm-chip-btn__disc-icon { width: 38px; height: 38px; }
.tcm-chip-btn--sm:hover .tcm-chip-btn__disc { width: calc(100% - 10px); }
.tcm-chip-btn--sm:hover .tcm-chip-btn__disc-icon svg { transform: translateX(4px); }

.tcm-chip-btn--canvas { background: #fff; color: #0A0A0A; box-shadow: inset 0 0 0 1px var(--border-default); }
.tcm-chip-btn--canvas .tcm-chip-btn__disc { background: var(--tcm-ember); }
.tcm-chip-btn--canvas .tcm-chip-btn__disc-icon { color: #fff; }
.tcm-chip-btn--canvas:hover { color: #fff; box-shadow: inset 0 0 0 1px var(--tcm-ember); }
.tcm-chip-btn--canvas:hover .tcm-chip-btn__disc { background: var(--tcm-ember-hover); }

.tcm-chip-btn--inverse { background: #0A0A0A; color: #fff; }
.tcm-chip-btn--inverse .tcm-chip-btn__disc { background: var(--tcm-ember); }
.tcm-chip-btn--inverse .tcm-chip-btn__disc-icon { color: #fff; }
.tcm-chip-btn--inverse:hover .tcm-chip-btn__disc { background: var(--tcm-ember-hover); }

.tcm-chip-btn--ember { background: var(--tcm-ember); color: #fff; }
.tcm-chip-btn--ember .tcm-chip-btn__disc { background: #0A0A0A; }
.tcm-chip-btn--ember .tcm-chip-btn__disc-icon { color: #fff; }
.tcm-chip-btn--ember:hover .tcm-chip-btn__disc { background: #1f1f1f; }

/* Placeholder marker — visible until copy lands */
.ph {
  background: rgba(255,74,28,0.08);
  border: 1px dashed rgba(255,74,28,0.5);
  color: var(--tcm-ember);
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 0.75em;
  letter-spacing: 0.04em;
  border-radius: 4px;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}
.section--ink .ph { background: rgba(255,74,28,0.12); border-color: rgba(255,74,28,0.6); }
.ph-block {
  display: block;
  padding: 12px 16px;
  background: rgba(255,74,28,0.06);
  border: 1px dashed rgba(255,74,28,0.4);
  color: rgba(255,74,28,0.9);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 0;
}
.section--ink .ph-block { background: rgba(255,74,28,0.10); border-color: rgba(255,74,28,0.55); color: rgba(255,180,150,0.95); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(10,10,10,0.10);
  max-width: calc(100% - 24px);
}
.nav__brand {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--china-ink);
  display: flex; align-items: center; gap: 10px;
  margin-right: 0;
}
.nav__brand .ember-dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--tcm-ember);
}
.nav__links { display: flex; gap: 2px; align-items: center; }
.nav__links a {
  font-size: 13px; color: var(--content-secondary);
  padding: 8px 14px; border-radius: 9999px;
  transition: all 160ms var(--ease-out);
}
.nav__links a:hover { color: var(--china-ink); background: rgba(10,10,10,0.05); }
.nav__cta { margin-left: 6px; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav { padding: 6px 6px 6px 18px; }
}

/* =============================================================
   01 · HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--china-ink);
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  /* Documentary-style placeholder: warm reds, ink, paper texture */
  background:
    radial-gradient(at 25% 35%, rgba(255,140,80,0.35) 0%, transparent 55%),
    radial-gradient(at 75% 65%, rgba(180,40,20,0.35) 0%, transparent 60%),
    radial-gradient(at 50% 110%, rgba(0,0,0,0.85) 0%, transparent 60%),
    linear-gradient(135deg, #5a1a10 0%, #2a0f0a 50%, #0a0606 100%);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  /* "filtros / grunge sutil" — fine grain via SVG noise inline */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.18; mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.85) 100%);
}

/* Massive faded "8" / dragon character behind everything */
.hero__giant {
  position: absolute;
  right: -4vw; top: 8vh;
  font-family: var(--font-cn);
  font-weight: 900;
  font-size: 62vw;
  line-height: 0.8;
  color: var(--tcm-ember);
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero__content {
  position: relative; z-index: 10;
  max-width: var(--max); margin: 0 auto;
  padding: 140px 32px 120px;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
}

.hero__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__top .l { display: flex; gap: 8px; align-items: center; }
.hero__top .l::before {
  content: ""; width: 6px; height: 6px; border-radius: 9999px;
  background: var(--tcm-ember);
  box-shadow: 0 0 12px var(--tcm-ember);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__main {
  display: flex; flex-direction: column; gap: 36px;
  max-width: 1100px;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: var(--tcm-ember);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hero__eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--tcm-ember);
}
.hero__headline {
  font-size: clamp(56px, 9.5vw, 148px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}
.hero__headline em {
  font-family: var(--font-cursive);
  font-style: italic; font-weight: 400;
  font-size: 1.18em;
  line-height: 0.9;
  color: var(--tcm-ember);
}
.hero__sub {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0;
}

.hero__bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__plazas {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.hero__plazas-num {
  font-family: var(--font-sans);
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--tcm-ember);
}
.hero__plazas-label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 720px) {
  .hero__content { padding: 120px 20px 60px; gap: 40px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__plazas { align-items: flex-start; text-align: left; }
}

/* =============================================================
   02 · POR QUÉ CHINA — big numbers, statement text
   ============================================================= */
.why {
  background: var(--china-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why__statement {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin: 0 0 100px;
  color: #fff;
}
.why__statement em {
  font-family: var(--font-cursive);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18em;
  line-height: 0.9;
  color: var(--tcm-ember);
}
.why__statement .strike {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--tcm-ember);
  color: rgba(255,255,255,0.5);
}

.why__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.why__stat {
  padding: 32px 0;
  border-right: 1px solid rgba(255,255,255,0.18);
  padding-right: 24px;
}
.why__stat:last-child { border-right: none; }
.why__stat-num {
  font-size: clamp(56px, 5.5vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--tcm-ember);
  margin-bottom: 18px;
  font-feature-settings: "tnum";
}
.why__stat-label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  max-width: 200px;
}

@media (max-width: 860px) {
  .why__stats { grid-template-columns: repeat(2, 1fr); }
  .why__stat:nth-child(2) { border-right: none; }
  .why__stat:nth-child(1), .why__stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.18); }
}

/* =============================================================
   03 · FILOSOFÍA — Explore · Create · Inspire (typographic, not Venn)
   ============================================================= */
.philo {
  background: var(--china-paper);
  position: relative;
  overflow: hidden;
}
.philo__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 80px;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.philo__pillar {
  padding: 56px 32px 56px 0;
  border-right: 1px solid var(--border-default);
  position: relative;
  cursor: default;
  transition: background 240ms var(--ease-out);
}
.philo__pillar:last-child { border-right: none; }
.philo__pillar:hover { background: rgba(255,74,28,0.04); }
.philo__pillar-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--tcm-ember);
  margin-bottom: 24px;
}
.philo__pillar-word {
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  color: var(--china-ink);
}
.philo__pillar-word em {
  font-family: var(--font-cursive);
  font-style: italic;
  font-weight: 400;
  color: var(--tcm-ember);
  display: block;
  font-size: 0.55em;
  letter-spacing: 0;
  margin-top: 8px;
}
.philo__pillar-body {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--content-secondary);
  max-width: 320px;
}

.philo__manifesto {
  margin-top: 60px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.4;
  color: var(--china-ink);
  max-width: 880px;
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .philo__pillars { grid-template-columns: 1fr; }
  .philo__pillar { border-right: none; border-bottom: 1px solid var(--border-default); padding: 40px 0; }
  .philo__pillar:last-child { border-bottom: none; }
}

/* =============================================================
   04 · BIG 5 — five experiences, editorial stack
   ============================================================= */
.big5 {
  background: #FFFFFF;
  position: relative;
}
.big5__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap; margin-bottom: 60px;
}
.big5__count {
  font-size: clamp(96px, 14vw, 220px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--tcm-ember);
  font-feature-settings: "tnum";
}
.big5__count .of { color: var(--china-ink); opacity: 0.18; }

.big5__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border-default);
}
.big5__item {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 220px;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-default);
  cursor: pointer;
  position: relative;
  transition: padding 240ms var(--ease-out), background 240ms var(--ease-out);
}
.big5__item:hover { padding-left: 16px; background: rgba(255,74,28,0.03); }
.big5__item-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--tcm-ember);
  letter-spacing: 0.06em;
}
.big5__item-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--china-ink);
  margin: 0;
}
.big5__item-title em {
  font-family: var(--font-cursive);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18em;
  line-height: 0.9;
  color: var(--tcm-ember);
}
.big5__item-cn {
  font-family: var(--font-cn);
  font-weight: 400;
  font-size: 18px;
  color: var(--content-tertiary);
  margin-left: 12px;
}
.big5__item-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--content-secondary);
  max-width: 460px;
  margin: 0;
}
.big5__item-meta {
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--content-tertiary);
}
.big5__item-meta strong {
  display: block;
  color: var(--china-ink);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
}
.big5__item-arrow {
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  opacity: 0;
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
  color: var(--tcm-ember);
}
.big5__item:hover .big5__item-arrow { opacity: 1; transform: translate(8px, -50%); }

@media (max-width: 860px) {
  .big5__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .big5__item-meta { text-align: left; }
  .big5__item-arrow { display: none; }
}

/* =============================================================
   05 · ITINERARIO — map + day-by-day
   ============================================================= */
.itin {
  background: var(--china-paper);
  position: relative;
  overflow: hidden;
}
.itin__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .itin__layout { grid-template-columns: 1fr; gap: 56px; }
}

.itin__map {
  position: sticky; top: 100px;
  aspect-ratio: 4/5;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 0;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.itin__map svg { width: 100%; height: 100%; }
.itin__map-label {
  position: absolute;
  top: 24px; left: 32px;
  font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tcm-ember);
}
.itin__map-corner {
  position: absolute;
  bottom: 24px; right: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--content-tertiary);
  text-align: right;
}

.itin__days {
  display: flex; flex-direction: column;
}
.itin__day {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-default);
}
.itin__day:first-child { border-top: 1px solid var(--border-default); }
.itin__day-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--tcm-ember);
  padding-top: 4px;
}
.itin__day-city {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--china-ink);
  margin: 0 0 6px;
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.itin__day-city .cn {
  font-size: 16px;
  color: var(--content-tertiary);
  font-weight: 400;
}
.itin__day-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--content-secondary);
  margin: 0;
}

/* =============================================================
   06 · PABLO — guide / faces
   ============================================================= */
.pablo {
  background: var(--china-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pablo__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .pablo__layout { grid-template-columns: 1fr; gap: 56px; }
}
.pablo__portrait {
  aspect-ratio: 4/5;
  max-width: 420px;
  width: 100%;
  background:
    radial-gradient(at 35% 25%, rgba(255,180,120,0.5) 0%, transparent 55%),
    radial-gradient(at 60% 80%, rgba(180,40,20,0.4) 0%, transparent 55%),
    linear-gradient(135deg, #6a3020 0%, #1a0a08 100%);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.pablo__portrait-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.pablo__portrait-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 24px;
  pointer-events: none;
}
.pablo__portrait-cn {
  position: absolute;
  top: 24px; right: 28px;
  font-size: clamp(72px, 8vw, 112px);
  line-height: 1;
  color: var(--tcm-ember);
  opacity: 0.55;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.pablo__portrait::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.16; mix-blend-mode: overlay;
}
.pablo__portrait-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.pablo__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 32px;
  position: relative;
}
.pablo__quote::before {
  content: "“"; position: absolute;
  left: -0.5em; top: -0.25em;
  font-size: 2.2em;
  color: var(--tcm-ember);
  opacity: 0.6;
  font-style: normal;
}
.pablo__byline {
  display: flex; flex-direction: column; gap: 4px;
}
.pablo__name {
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.02em;
}
.pablo__role {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.pablo__credentials {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 32px;
}
.pablo__cred-num {
  font-size: 36px; font-weight: 600;
  color: var(--tcm-ember);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pablo__cred-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* =============================================================
   07 · INCLUIDO — what's in the price
   ============================================================= */
.incl {
  background: #FFFFFF;
}
.incl__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-default);
}
.incl__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--border-default);
  align-items: start;
}
.incl__item:nth-child(odd) { border-right: 1px solid var(--border-default); padding-right: 32px; }
.incl__item:nth-child(even) { padding-left: 32px; }
.incl__item-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--tcm-ember);
  padding-top: 6px;
}
.incl__item-head {
  font-size: 18px;
  font-weight: 600;
  color: var(--china-ink);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.incl__item-body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--content-secondary);
  margin: 0;
}

@media (max-width: 720px) {
  .incl__grid { grid-template-columns: 1fr; }
  .incl__item, .incl__item:nth-child(odd), .incl__item:nth-child(even) {
    padding: 24px 0; border-right: none;
  }
}

.incl__price {
  margin-top: 60px;
  display: flex; align-items: baseline; gap: 24px;
  flex-wrap: wrap;
  padding-top: 56px;
  border-top: 1px solid var(--border-default);
}
.incl__price-amount {
  font-size: clamp(64px, 7vw, 120px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--china-ink);
}
.incl__price-amount sup {
  font-size: 0.45em;
  font-weight: 500;
  vertical-align: top;
  margin-right: 4px;
  color: var(--content-secondary);
}
.incl__price-meta {
  display: flex; flex-direction: column; gap: 6px;
}
.incl__price-meta-line {
  font-size: 14px;
  color: var(--content-secondary);
}
.incl__price-stamp {
  margin-left: auto;
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border: 1px dashed var(--tcm-ember);
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tcm-ember);
  font-weight: 600;
}

/* =============================================================
   08 · APLICACIÓN + FAQ
   ============================================================= */
.apply {
  background: var(--china-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.apply__giant {
  position: absolute;
  left: -2vw; bottom: -8vw;
  font-family: var(--font-cn);
  font-weight: 900;
  font-size: 38vw;
  line-height: 0.85;
  color: var(--tcm-ember);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

/* APPLY — new layout: vertical flow inside .apply__inner */
.apply .wrap { position: relative; z-index: 2; }
.apply__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.apply .apply__head {
  text-align: left;
  margin: 24px 0 24px;
  color: #fff;
}
.apply .apply__lede {
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin: 0 0 56px;
}
.apply .apply__lede--bold {
  color: #fff;
  font-weight: 500;
}

/* PROCESS — 4 steps in a horizontal row, connected by arrows */
.apply__process {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 40px 0;
  margin-bottom: 56px;
}
.apply__pstep {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,0.10);
}
.apply__pstep:first-child { border-left: none; padding-left: 0; }
.apply__pstep-num {
  font-family: var(--font-sans);
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--tcm-ember);
  font-feature-settings: "tnum";
  margin-bottom: 18px;
}
.apply__pstep-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apply__pstep-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.apply__pstep-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.apply__pstep-arrow {
  position: absolute;
  right: -8px; top: 6px;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--tcm-ember);
  line-height: 1;
  z-index: 1;
}

/* CTA — big button + meta line below */
.apply__cta-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.apply__cta-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.apply__cta-meta strong {
  color: #fff;
  font-weight: 600;
}
.apply__cta-meta-dot {
  width: 4px; height: 4px;
  border-radius: 9999px;
  background: var(--tcm-ember);
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .apply__process {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }
  .apply__pstep:nth-child(odd) { border-left: none; padding-left: 0; }
  .apply__pstep:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 32px; }
  .apply__pstep:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 32px; }
  .apply__pstep-arrow { display: none; }
}
@media (max-width: 560px) {
  .apply__process {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
  .apply__pstep {
    border-left: none !important;
    padding: 24px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.10);
  }
  .apply__pstep:first-child { border-top: none; padding-top: 0 !important; }
  .apply .apply__lede { margin-bottom: 36px; }
  .apply__cta-meta { font-size: 11px; gap: 10px; }
  .apply__cta-meta-dot { display: none; }
}
.apply__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .apply__layout { grid-template-columns: 1fr; gap: 56px; } }

.apply__lhs h2 {
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #fff;
}
.apply__lhs h2 em {
  font-family: var(--font-cursive);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18em;
  line-height: 0.9;
  color: var(--tcm-ember);
}
.apply__steps {
  margin-top: 56px;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.apply__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  align-items: start;
}
.apply__step-num {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--tcm-ember);
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.apply__step-title {
  font-size: 17px; font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}
.apply__step-body {
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.apply__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.apply__form-stamp {
  position: absolute;
  top: -16px; right: 32px;
  padding: 8px 16px;
  background: var(--tcm-ember);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(-2deg);
}
.apply__form-head {
  font-size: 22px; font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.apply__form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 12px;
}
.apply__field {
  display: flex; flex-direction: column; gap: 8px;
}
.apply__label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.apply__input,
.apply__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: #fff;
  transition: border-color 160ms var(--ease-out);
  outline: none;
}
.apply__input:focus, .apply__textarea:focus { border-bottom-color: var(--tcm-ember); }
.apply__input::placeholder, .apply__textarea::placeholder { color: rgba(255,255,255,0.3); }
.apply__textarea { resize: none; min-height: 80px; }
.apply__submit { margin-top: 8px; }
.apply__form-foot {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 4px;
}

/* FAQ */
.faq { background: var(--china-ink); color: #fff; }
.faq__list {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.faq__q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 24px;
  padding: 28px 0;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
}
.faq__q-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--tcm-ember);
  letter-spacing: 0.06em;
}
.faq__q-text {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.faq__q-toggle {
  width: 32px; height: 32px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.30);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--ease-out);
  position: relative;
}
.faq__q-toggle::before, .faq__q-toggle::after {
  content: ""; position: absolute;
  background: #fff;
}
.faq__q-toggle::before { width: 12px; height: 1.5px; }
.faq__q-toggle::after { width: 1.5px; height: 12px; transition: transform 240ms var(--ease-out); }
.faq__item--open .faq__q-toggle {
  background: var(--tcm-ember);
  border-color: var(--tcm-ember);
}
.faq__item--open .faq__q-toggle::before,
.faq__item--open .faq__q-toggle::after { background: #fff; }
.faq__item--open .faq__q-toggle::after { transform: scaleY(0); }
.faq__a {
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-out), padding 320ms var(--ease-out);
}
.faq__item--open .faq__a {
  max-height: 600px;
  padding: 0 0 32px;
}
.faq__a-text {
  grid-column: 2;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 720px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.foot {
  background: var(--china-ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot__top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.foot__big {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  max-width: 700px;
}
.foot__big em {
  font-family: var(--font-cursive);
  font-style: italic;
  font-size: 1.18em;
  line-height: 0.9;
  color: var(--tcm-ember);
}
.foot__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  flex-wrap: wrap; gap: 20px;
}
.foot__brand {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.foot__brand .ember-dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--tcm-ember);
}
.foot__links { display: flex; gap: 32px; }
.foot__links a:hover { color: #fff; }

/* =============================================================
   MARQUEE — Chinese characters band
   ============================================================= */
.marquee {
  background: var(--china-ink);
  color: var(--tcm-ember);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 28px 0;
}
.marquee__track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
}
.marquee__item {
  display: inline-flex; align-items: baseline; gap: 16px;
  font-family: var(--font-cn);
  font-size: 28px;
  font-weight: 400;
}
.marquee__item span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.marquee__sep {
  color: rgba(255,74,28,0.5);
  font-family: var(--font-sans);
  font-size: 18px;
  align-self: center;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================
   TWEAKS — variant flags applied at body level
   ============================================================= */
body[data-theme="vermilion"] {
  --tcm-ember: #C8330F;
  --tcm-ember-hover: #A82A0C;
  --tcm-ember-pressed: #88220A;
}
body[data-theme="brief-orange"] {
  --tcm-ember: #FA6809;
  --tcm-ember-hover: #E25700;
  --tcm-ember-pressed: #BF4900;
}
body[data-grunge="off"] .hero__media::after,
body[data-grunge="off"] .pablo__portrait::after { display: none; }
body[data-grunge="strong"] .hero__media::after,
body[data-grunge="strong"] .pablo__portrait::after { opacity: 0.32; }

/* Big5 variant: scrolling cards instead of editorial list */
body[data-big5="cards"] .big5__list { display: none; }
body[data-big5="list"] .big5__cards { display: none; }
.big5__card {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 240ms var(--ease-out);
  cursor: pointer;
  position: relative;
}
.big5__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.big5__card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--tcm-ember);
  letter-spacing: 0.06em;
}
.big5__card-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--china-ink);
  margin: 0;
}
.big5__card-cn {
  font-family: var(--font-cn);
  font-size: 14px;
  color: var(--content-tertiary);
}
.big5__card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--content-secondary);
  margin: 0;
}
.big5__card-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--content-tertiary);
}

/* Hero variant: typographic, no media */
body[data-hero="typo"] .hero__media,
body[data-hero="typo"] .hero__scrim { display: none; }
body[data-hero="typo"] .hero { background: var(--china-paper); color: var(--china-ink); }
body[data-hero="typo"] .hero__top, body[data-hero="typo"] .hero__sub { color: var(--content-secondary); }
body[data-hero="typo"] .hero__top .l { color: var(--tcm-ember); }
body[data-hero="typo"] .hero__headline { color: var(--china-ink); }
body[data-hero="typo"] .hero__plazas-label { color: var(--content-tertiary); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__top .l::before { animation: none; }
}


/* =============================================================
   RESPONSIVE OVERRIDES — mobile-first (90% of traffic is mobile)
   Appended at end so it wins specificity over earlier rules.
   ============================================================= */
@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .wrap { padding: 0 20px; }

  .big5__item {
    grid-template-columns: 56px 1fr;
    gap: 8px 16px;
    padding: 24px 0;
  }
  .big5__item-num { grid-column: 1; grid-row: 1; align-self: start; padding-top: 6px; }
  .big5__item-title { grid-column: 2; grid-row: 1; }
  .big5__item-desc { grid-column: 2; grid-row: 2; }
  .big5__item-meta { grid-column: 2; grid-row: 3; text-align: left; }
  .big5__item-arrow { display: none; }
  .big5__item:hover { padding-left: 0; }

  .itin__layout { grid-template-columns: 1fr; gap: 40px; }
  .itin__map { position: relative; top: 0; aspect-ratio: 1/1; padding: 24px; }
  .itin__day { grid-template-columns: 60px 1fr; gap: 16px; padding: 22px 0; }

  .pablo__layout { grid-template-columns: 1fr; gap: 40px; }
  .pablo__credentials { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .apply__layout { grid-template-columns: 1fr; gap: 56px; }
  .apply__form { padding: 28px 22px; }
  .apply__step { grid-template-columns: 48px 1fr; gap: 14px; padding: 20px 0; }

  .why__stats { grid-template-columns: repeat(2, 1fr); }
  .why__stat:nth-child(2) { border-right: none; }
  .why__stat:nth-child(1), .why__stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.18); }

  .philo__pillars { grid-template-columns: 1fr; }
  .philo__pillar { border-right: none; border-bottom: 1px solid var(--border-default); padding: 36px 0; }
  .philo__pillar:last-child { border-bottom: none; }

  .incl__grid { grid-template-columns: 1fr; }
  .incl__item, .incl__item:nth-child(odd), .incl__item:nth-child(even) {
    padding: 22px 0;
    border-right: none;
  }
  .incl__price { gap: 16px; padding-top: 40px; margin-top: 56px; flex-wrap: wrap; }
  .incl__price-stamp { margin-left: 0; }

  .faq__q { grid-template-columns: 44px 1fr 28px; gap: 14px; padding: 22px 0; }
  .faq__a { grid-template-columns: 44px 1fr 28px; gap: 14px; }
  .faq__q-toggle { width: 28px; height: 28px; }

  .marquee__item { font-size: 22px; gap: 10px; }
  .marquee__item span { font-size: 11px; }
  .marquee__track { gap: 40px; }

  .foot__top { flex-direction: column; align-items: flex-start; gap: 28px; }
  .foot__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot__links { flex-wrap: wrap; gap: 18px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .wrap { padding: 0 18px; }

  /* HERO */
  .hero { min-height: 100svh; }
  .hero__content {
    padding: 100px 18px 44px !important;
    min-height: 100svh;
    gap: 32px;
  }
  .hero__top { font-size: 10px; gap: 10px; flex-wrap: wrap; }
  .hero__main { gap: 22px; }
  .hero__eyebrow { font-size: 11px; gap: 10px; }
  .hero__eyebrow::before { width: 24px; }
  .hero__headline { font-size: clamp(40px, 13vw, 60px) !important; line-height: 0.96; }
  .hero__headline em { display: inline; }
  .hero__plazas { display: none; }
  .why__title { font-size: clamp(36px, 8vw, 56px) !important; }
  .why__title em { font-size: 1em !important; }
  .hero__sub { font-size: 16px !important; }
  .hero__bottom { flex-direction: column !important; align-items: stretch !important; gap: 28px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero__ctas a { display: block; }
  .hero__ctas .tcm-chip-btn { width: 100%; justify-content: flex-start; }
  .hero__plazas { flex-direction: row; gap: 14px; align-items: baseline; text-align: left; }
  .hero__plazas-num { font-size: 64px !important; }
  .hero__plazas-label { font-size: 11px; max-width: 180px; }
  .hero__giant { font-size: 90vw; right: -10vw; top: 14vh; opacity: 0.10; }

  .display { font-size: clamp(38px, 11vw, 54px); }
  .h-section { font-size: clamp(28px, 8vw, 42px) !important; }
  .lede { font-size: 16px; }

  /* WHY */
  .why__stats { grid-template-columns: 1fr; }
  .why__stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.18) !important;
    padding: 22px 0;
  }
  .why__stat:last-child { border-bottom: none !important; }
  .why__stat-num { font-size: 56px; margin-bottom: 12px; }
  .why__statement { font-size: clamp(24px, 7vw, 32px) !important; margin-bottom: 48px !important; }
  .why__stat-label { max-width: none; }

  /* BIG5 */
  .big5__head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 48px !important; }
  .big5__count { font-size: 88px !important; }
  .big5__item-title { font-size: 22px !important; }
  .big5__item-cn { display: block; margin-left: 0; margin-top: 4px; font-size: 14px; }

  /* PABLO */
  .pablo__credentials { grid-template-columns: 1fr; gap: 0; padding-top: 24px; }
  .pablo__credentials > div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: baseline; gap: 16px;
  }
  .pablo__credentials > div:last-child { border-bottom: none; }
  .pablo__cred-num { font-size: 28px; flex-shrink: 0; min-width: 80px; }
  .pablo__cred-label { margin-top: 0; }
  .pablo__quote { font-size: clamp(22px, 6vw, 28px) !important; }
  .pablo__quote::before { left: -0.2em; font-size: 1.6em; top: -0.2em; }

  /* ITINERARY */
  .itin__day { grid-template-columns: 56px 1fr; gap: 12px; padding: 18px 0; }
  .itin__day-city { font-size: 18px; gap: 8px; }
  .itin__day-city .cn { font-size: 13px; }
  .itin__day-body { font-size: 14px; }

  /* INCLUDED */
  .incl__price-amount { font-size: clamp(48px, 14vw, 72px) !important; }
  .incl__price-meta { width: 100%; }

  /* APPLY */
  .apply__form { padding: 28px 18px; }
  .apply__form-stamp { right: 16px; top: -14px; font-size: 9px; padding: 6px 12px; }
  .apply__form-head { font-size: 20px; }
  .apply__lhs h2 { font-size: clamp(32px, 9vw, 44px) !important; }
  .apply__step { padding: 18px 0; }
  .apply__steps { margin-top: 36px; }
  .apply__giant { font-size: 60vw; }

  /* FAQ */
  .faq__q-text { font-size: 17px; }
  .faq__a-text { font-size: 15px; }

  /* FOOTER */
  .foot { padding: 48px 0 28px; }
  .foot__top { padding-bottom: 36px; gap: 24px; }
  .foot__big { font-size: clamp(28px, 9vw, 40px); }

  /* NAV — show brand dot + Aplicar CTA on mobile */
  .nav {
    padding: 5px 5px 5px 12px;
    gap: 6px;
    max-width: calc(100% - 16px);
    top: 12px;
  }
  .nav__brand { font-size: 10px; letter-spacing: 0.12em; margin-right: 0; gap: 6px; }
  .nav__cta .tcm-chip-btn { font-size: 12px; height: 38px; padding: 0 16px 0 42px; }
  .nav__cta .tcm-chip-btn .tcm-chip-btn__disc { width: 30px; }
  .nav__cta .tcm-chip-btn .tcm-chip-btn__disc-icon { width: 30px; height: 30px; }

  /* Eyebrow rule shorter */
  .eyebrow::before { width: 20px; }

  /* Confirmacion page */
  .conf { padding: 56px 18px; }
  .conf__head { font-size: clamp(38px, 11vw, 56px); }
  .conf__sub { font-size: 17px; margin-bottom: 36px; }
  .conf__step { grid-template-columns: 60px 1fr; gap: 8px 12px; padding: 16px 0; }
  .conf__step-num { grid-column: 1; grid-row: 1; }
  .conf__step-text { grid-column: 2; grid-row: 1; font-size: 15px; }
  .conf__step-when { grid-column: 1 / -1; grid-row: 2; text-align: left; padding-left: 72px; padding-top: 4px; }
  .conf__giant { font-size: 80vw; opacity: 0.05; }
}

@media (max-width: 420px) {
  .hero__headline { font-size: 38px !important; }
  .hero__plazas-num { font-size: 56px !important; }
  .hero__giant { font-size: 110vw; opacity: 0.08; }
  .h-section { font-size: 28px !important; }
  .why__statement { font-size: 22px !important; }
  .big5__count { font-size: 72px !important; }
  .foot__big { font-size: 28px; }
  .marquee__item { font-size: 18px; }
  .marquee__sep { font-size: 14px; }

  .tcm-chip-btn--lg { font-size: 15px; height: 56px; padding: 0 20px 0 60px; }
  .tcm-chip-btn--lg .tcm-chip-btn__disc { width: 44px; }
  .tcm-chip-btn--lg .tcm-chip-btn__disc-icon { width: 44px; height: 44px; }
  .tcm-chip-btn--lg .tcm-chip-btn__disc-icon svg { width: 22px; height: 22px; }
}


/* =============================================================
   v5 — copy update: hero grid, Why pasado/futuro, philo Venn,
   Big5 locked items, Pablo testimonials, filter NO/SI, etc.
   ============================================================= */

/* HERO — image grid (4 documentary tiles) */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}
.hero__tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.hero__tile--a { background: linear-gradient(135deg, #5a1a10, #2a0f0a 70%); }
.hero__tile--b { background: linear-gradient(180deg, #1a3a5e 0%, #0a1a2e 100%); }
.hero__tile--c { background: linear-gradient(225deg, #3a3a3a 0%, #0a0a0a 100%); }
.hero__tile--d { background: linear-gradient(135deg, #b8743a 0%, #4a2a14 80%); }
.hero__tile-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.45);
  padding: 4px 8px;
  border: 1px dashed rgba(255,180,140,0.4);
  white-space: nowrap;
}
/* Hide grid in typo mode */
[data-hero="typo"] .hero__grid { display: none; }
/* Stronger scrim sits ON TOP of the grid for text legibility */
.hero__scrim { z-index: 3; }
.hero__giant { z-index: 4; }
.hero__content { z-index: 10; }

/* WHY — pasado × futuro */
.why__title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 64px;
  color: #fff;
  max-width: 900px;
}
.why__title em {
  font-family: var(--font-cursive);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18em;
  line-height: 0.9;
  color: var(--tcm-ember);
}
.why__col-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
.why__col-grid--reverse {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
.why__col-text { min-width: 0; }
.why__col-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 96px;
}
.why__col-photo-art {
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: #0a0504;
  isolation: isolate;
}
.why__scene {
  display: block;
  width: 100%; height: 100%;
}
.why__col-photo-art::after {
  /* subtle film grain + vignette */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.why__col-photo-tag {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.why__col-photo .ph-block {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 2px;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 20px;
}
.why__col-photo-cap {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .why__col-grid,
  .why__col-grid--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why__col-photo { position: static; }
  .why__col-grid--reverse .why__col-photo { order: 2; }
  .why__col-grid--reverse .why__col-text { order: 1; }
}
.why__col {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 48px 0;
  max-width: 760px;
  margin-left: 0;
}
.why__col--alt {
  margin-left: auto;
  text-align: left;
  border-top-color: rgba(255,180,140,0.30);
}
.why__col-mark {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tcm-ember);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.why__col-mark::before,
.why__col-mark::after {
  content: "";
  height: 2px;
  background: var(--tcm-ember);
  flex: 0 0 28px;
}
.why__col-mark::after { flex: 1; opacity: 0.35; }
.why__col-body {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
  margin: 0 0 18px;
  max-width: 680px;
}
.why__col-body strong {
  color: inherit;
  font-weight: 600;
  background: linear-gradient(180deg, transparent 55%, var(--tcm-ember) 55%);
  padding: 0 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.why__col-stat {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.why__col-stat-num {
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
}
.why__col-stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}
.why__close {
  margin-top: 48px;
  font-size: clamp(20px, 1.8vw, 24px);
  color: rgba(255,255,255,0.7);
  max-width: 760px;
}
.why__kicker {
  margin-top: 32px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.015em;
  max-width: 720px;
}
.why__kicker em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  color: var(--tcm-ember);
  font-size: inherit;
  letter-spacing: inherit;
}

/* PHILOSOPHY — Venn layout */
.philo__layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.philo__copy { max-width: 580px; }
.philo__lead {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--content-secondary);
  margin: 24px 0 0;
}
.philo__lead em {
  font-family: var(--font-cursive);
  font-style: italic;
  font-weight: 500;
  color: var(--tcm-ember);
  font-size: 1.18em;
  line-height: 0.9;
}
.philo__creed {
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
  border-left: 2px solid var(--tcm-ember);
}
.philo__creed li {
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--china-ink);
  padding: 16px 24px;
  border-bottom: 1px dashed rgba(10,10,10,0.12);
}
.philo__creed li:last-child {
  border-bottom: none;
  padding-top: 24px;
  font-style: normal;
  color: var(--china-ink);
}
.philo__venn {
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  /* perspective for the spiral entrance */
  perspective: 1000px;
}
.philo__venn img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
}
@media (max-width: 980px) {
  .philo__layout { grid-template-columns: 1fr; gap: 56px; }
  .philo__venn img { max-width: 380px; }
}
@media (max-width: 720px) {
  .philo__creed li { padding: 14px 18px; font-size: 18px; }
  .philo__venn img { max-width: 280px; }
}

/* === Venn spiral entrance =====================================
   Override .reveal default for philo__venn so the diagram spirals
   in from tiny to full size when scrolled into view. */
.philo__venn.reveal {
  opacity: 0;
  transform: scale(0.04) rotate(-900deg);
  transform-origin: 50% 50%;
  transition:
    opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity;
}
.philo__venn.reveal.is-in {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
@media (prefers-reduced-motion: reduce) {
  .philo__venn.reveal,
  .philo__venn.reveal.is-in {
    transform: none;
    transition: none;
    opacity: 1;
  }
}

/* BIG5 — intro paragraphs + locked variant + foot */
.big5__intro {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--content-secondary);
  margin: 24px 0 0;
}
.big5__intro--bold {
  color: var(--china-ink);
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 56px;
}
.big5__item--locked .big5__item-title {
  color: var(--content-secondary);
}
.big5__item--locked .big5__item-cn {
  opacity: 0.4;
}
.big5__lock {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--tcm-ember);
  background: rgba(255,74,28,0.08);
  padding: 4px 8px;
  border: 1px dashed rgba(255,74,28,0.4);
  border-radius: 4px;
}
.big5__item-meta strong {
  font-weight: 600;
}
.big5__item-meta span:not(.big5__lock) {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--content-tertiary);
}
.big5__card--locked .big5__card-title {
  color: var(--content-secondary);
}
.big5__card--locked .big5__card-cn {
  opacity: 0.5;
}
.big5__foot {
  margin-top: 56px;
  font-size: 15px;
  color: var(--content-secondary);
  line-height: 1.55;
  max-width: 780px;
  padding-top: 32px;
  border-top: 1px solid var(--border-default);
}
.big5__foot--seal {
  margin-top: 16px;
  padding-top: 0;
  border-top: none;
  color: var(--china-ink);
}
.big5__foot strong { font-weight: 600; }

/* New: structured notes block under Big5 cards */
.big5__notes {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-default);
}
.big5__note {
  padding: 28px 32px 24px 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
}
.big5__note + .big5__note {
  border-left: 1px solid var(--border-default);
  padding-left: 32px;
}
.big5__note-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tcm-ember);
  font-weight: 500;
  padding-top: 4px;
}
.big5__note--seal .big5__note-key { color: var(--china-ink); }
.big5__note-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--content-secondary);
  margin: 0;
}
.big5__note-text strong { color: var(--china-ink); font-weight: 600; }
@media (max-width: 880px) {
  .big5__notes { grid-template-columns: 1fr; }
  .big5__note { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .big5__note + .big5__note { border-left: none; border-top: 1px solid var(--border-default); padding-left: 0; }
}

/* PABLO — head + bio + bolivia + testimonials */
.pablo__head {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 32px 0 64px;
}
.pablo__name-big {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 12px;
}
.pablo__role-line {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tcm-ember);
  margin: 0 0 32px;
  font-weight: 600;
}
.pablo__bio {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0 0 16px;
  max-width: 580px;
}
.pablo__bio strong {
  color: #fff;
  font-weight: 600;
}
.pablo__bolivia {
  margin: 96px 0 64px;
  padding: 48px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 720px;
}
.pablo__bolivia-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--tcm-ember);
  margin-bottom: 20px;
}
.pablo__bolivia-body {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
.pablo__bolivia-body strong {
  font-weight: 600;
  color: #fff;
}
/* Testimonials live in a separate WHITE band that breaks out
   of the dark Pablo section. */
.pablo__testimonials-band {
  background: #ffffff;
  color: var(--china-ink);
  padding: 96px 0 96px;
  margin-top: 96px;
}
.pablo__testimonials-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.pablo__testimonials-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.pablo__testimonials-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--china-ink);
}
.pablo__testimonials-hint {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--tcm-ember);
  text-transform: uppercase;
}

/* Horizontal scroller — escapes wrap padding to bleed right */
.pablo__testimonials {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  grid-template-columns: none;
  gap: 20px;
  margin: 0;
  padding: 4px 64px 24px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--tcm-ember) transparent;
}
.pablo__testimonials::-webkit-scrollbar { height: 6px; }
.pablo__testimonials::-webkit-scrollbar-track { background: rgba(0,0,0,0.06); }
.pablo__testimonials::-webkit-scrollbar-thumb { background: var(--tcm-ember); border-radius: 6px; }

.pablo__testimonials-band .pablo__testi {
  margin: 0;
  padding: 28px 28px 24px;
  background: #ffffff;
  border: 1px solid var(--border-subtle, #EEEDE8);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(10,10,10,0.04);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  isolation: isolate;
  transition: box-shadow 280ms var(--ease-out), transform 280ms var(--ease-out);
}
/* Animated gradient border on hover — sits above the card via a masked
   pseudo-element. Color sweeps from ember → soft amber → ember. */
.pablo__testimonials-band .pablo__testi::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    var(--tcm-ember) 0%,
    #FFB37A 30%,
    var(--tcm-ember) 55%,
    #C2410C 80%,
    var(--tcm-ember) 100%);
  background-size: 220% 100%;
  background-position: 0% 0%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease-out);
}
.pablo__testimonials-band .pablo__testi:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(10,10,10,0.18), 0 2px 6px rgba(10,10,10,0.06);
}
.pablo__testimonials-band .pablo__testi:hover::before {
  opacity: 1;
  animation: testiBorderSweep 2.4s linear infinite;
}
@keyframes testiBorderSweep {
  0%   { background-position:   0% 0%; }
  100% { background-position: 220% 0%; }
}
.pablo__testimonials-band .pablo__testi-portrait {
  background: linear-gradient(135deg, rgba(255,74,28,0.18), rgba(255,74,28,0.04));
  border: 1px solid rgba(255,74,28,0.35);
  margin: 0;
}
.pablo__testimonials-band .pablo__testi-portrait-initials {
  color: var(--tcm-ember);
  text-shadow: none;
}
.pablo__testimonials-band .pablo__testi-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--china-ink);
  margin: 0;
  flex: 1;
}
.pablo__testimonials-band .pablo__testi-quote > span {
  background-image: linear-gradient(var(--tcm-ember), var(--tcm-ember));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  padding: 0 2px 2px;
  transition: background-size 480ms var(--ease-out);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.pablo__testimonials-band .pablo__testi:hover .pablo__testi-quote > span {
  background-size: 100% 2px;
}
.pablo__testimonials-band .pablo__testi-cite {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(10,10,10,0.10);
  font-style: normal;
}
.pablo__testimonials-band .pablo__testi-meta strong {
  color: var(--china-ink);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 14px;
}
.pablo__testimonials-band .pablo__testi-meta > span {
  color: var(--content-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

@media (max-width: 720px) {
  .pablo__testimonials-band { padding: 64px 0; margin-top: 64px; }
  .pablo__testimonials { grid-auto-columns: minmax(260px, 78vw); padding: 4px 32px 20px 0; }
}

/* hide legacy/old grid styles for the inner-section testimonials */
.pablo__testimonials {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 20px;
  margin: 0;
}
.pablo__testi {
  margin: 0;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 24px;
  transition: background 280ms var(--ease-out), border-color 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.pablo__testi:hover {
  background: #ffffff;
  border-color: rgba(255,74,28,0.45);
  transform: translateY(-2px);
}
.pablo__testi-portrait {
  width: 96px;
  height: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  margin: 0 0 20px;
  background: linear-gradient(135deg, rgba(255,74,28,0.18), rgba(255,74,28,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  transition: border-color 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.pablo__testi:hover .pablo__testi-portrait {
  border-color: rgba(255,200,170,0.55);
}
.pablo__testi-portrait-initials {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.pablo__testi-portrait-tag {
  display: none;
}
.pablo__testi-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: #fff;
  margin: 0;
}
/* legacy `.pablo__testi-quote span` underline removed —
   the .pablo__testimonials-band variant supersedes it and stacking
   two background-image rules produced a double-underline glitch. */
.pablo__testi-cite {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}
.pablo__testi-avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 9999px;
  background:
    radial-gradient(at 30% 30%, rgba(255,180,140,0.5) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,74,28,0.55), rgba(180,40,10,0.85));
  border: 1px solid rgba(255,180,140,0.45);
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.pablo__testi:hover .pablo__testi-avatar {
  border-color: rgba(255,200,170,0.85);
  transform: scale(1.04);
}
.pablo__testi-avatar-initials {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.pablo__testi-meta {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.3;
}
.pablo__testi-meta strong {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 980px) {
  .pablo__testimonials { grid-template-columns: 1fr; gap: 16px; }
  .pablo__bolivia { margin: 56px 0 40px; padding-top: 32px; }
}

/* INCLUDED — filter NO/SI columns + quickfacts + investment */
.filter__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.filter__col {
  position: relative;
  padding: 40px 36px 36px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border-default);
  overflow: hidden;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.filter__col::before {
  /* Top accent bar */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.filter__col--no::before {
  background: linear-gradient(90deg, rgba(10,10,10,0.55), rgba(10,10,10,0.10));
}
.filter__col--si::before {
  background: linear-gradient(90deg, var(--tcm-ember), rgba(255,74,28,0.25));
}
.filter__col--no {
  background: #FAFAF8;
}
.filter__col--si:hover {
  border-color: rgba(255,74,28,0.45);
  box-shadow: 0 16px 48px -16px rgba(255,74,28,0.25);
  transform: translateY(-3px);
}
.filter__col-head {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--china-ink);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-default);
  display: flex; align-items: center; gap: 16px;
}
.filter__col--no .filter__col-head { color: var(--china-ink); }
.filter__col--no .filter__col-head::before {
  content: "✕";
  width: 40px; height: 40px;
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: rgba(255,74,28,0.10);
  color: var(--tcm-ember);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
}
.filter__col--si .filter__col-head::before {
  content: "✓";
  width: 40px; height: 40px;
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: rgba(255,74,28,0.10);
  color: var(--tcm-ember);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
}
.filter__list {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
  counter-reset: filteritem;
}
.filter__list li {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--china-ink);
  padding: 16px 0 16px 38px;
  position: relative;
  counter-increment: filteritem;
  border-bottom: 1px dashed rgba(10,10,10,0.10);
  transition: padding-left 240ms var(--ease-out), color 240ms var(--ease-out);
}
.filter__list li::before {
  content: counter(filteritem, decimal-leading-zero);
  position: absolute;
  left: 0; top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--tcm-ember);
  font-weight: 600;
}
.filter__list li:last-child { border-bottom: none; }
.filter__col--no .filter__list li {
  color: var(--china-ink);
  text-decoration: line-through;
  text-decoration-color: rgba(255,74,28,0.7);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.filter__col--no .filter__list li::before {
  color: var(--tcm-ember);
  text-decoration: none;
}
.filter__col--si .filter__list li:hover {
  color: var(--tcm-ember);
  padding-left: 44px;
}
.incl__transition {
  margin: 64px 0 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.3;
  color: var(--china-ink);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.incl__quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 64px;
}
.incl__qf {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  align-items: stretch;
  transition: border-color 280ms var(--ease-out), transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.incl__qf::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--tcm-ember);
}
.incl__qf:hover {
  border-color: rgba(255,74,28,0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(255,74,28,0.20);
}
.incl__qf:nth-child(odd),
.incl__qf:nth-child(even) { padding-left: 24px; padding-right: 24px; border-left: 1px solid var(--border-default); }
.incl__qf-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tcm-ember);
  font-weight: 600;
}
.incl__qf-val {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.2;
  color: var(--china-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum";
}
.incl__qf-val em {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-style: normal;
  color: var(--content-secondary);
  font-weight: 400;
  letter-spacing: 0;
}
.incl__qf-val--soft {
  color: var(--content-tertiary);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
}
.incl__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-default);
}
.incl__col {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--border-default);
}
.incl__col:last-child {
  padding-left: 32px;
  padding-right: 0;
  border-right: none;
}
.incl__col-head {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--china-ink);
  margin-bottom: 28px;
}
.incl__list {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
}
.incl__list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(10,10,10,0.08);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.5;
  color: var(--china-ink);
}
.incl__list li:last-child { border-bottom: none; }
.incl__list-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: var(--tcm-ember);
  margin-top: 8px;
}
.incl__list--neg .incl__list-dot {
  background: transparent;
  border: 1.5px solid rgba(10,10,10,0.25);
}
.incl__list--neg li {
  color: var(--content-secondary);
}
.incl__investment {
  margin-top: 60px;
  padding: 56px 48px;
  background: var(--china-ink);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.incl__investment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 12% 0%, rgba(255,74,28,0.18) 0%, transparent 55%),
    radial-gradient(at 95% 110%, rgba(255,138,58,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.incl__investment > * { position: relative; }
.incl__investment-key {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 28px;
}
.incl__powered {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.incl__powered-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.incl__powered-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.incl__powered-name {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.18em;
}
.incl__powered-row--boost .incl__powered-name {
  color: var(--tcm-ember);
  position: relative;
}
.incl__powered-row--boost .incl__powered-name::before {
  content: "+";
  display: inline-block;
  margin-right: 8px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.incl__powered-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-weight: 500;
}
.incl__investment-body {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 0 0 14px;
  max-width: 720px;
}
.incl__investment-body strong {
  color: #fff;
  font-weight: 600;
}
.incl__investment-foot {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 720px;
}
.incl__investment-foot a {
  color: var(--tcm-ember);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.incl__investment-foot a:hover {
  color: var(--china-ink);
}

/* Inversión: 2-cols (texto izquierda, imagen pequeña derecha) */
.incl__inv-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .incl__inv-grid { grid-template-columns: 1fr; gap: 28px; }
}

.costbk {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.costbk__photo {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #1a0a08;
  border: 1px solid rgba(255,255,255,0.10);
}
.costbk__photo-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.costbk__photo-cn {
  position: absolute;
  top: 16px; right: 18px;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  letter-spacing: -0.02em;
  z-index: 2;
}
.costbk__photo-tag {
  position: absolute;
  bottom: 16px; left: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,10,10,0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border: 1px solid rgba(255,180,140,0.35);
  border-radius: 6px;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.costbk__cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 980px) {
  .filter__layout { grid-template-columns: 1fr; gap: 16px; }
  .filter__col {
    padding: 32px 24px 28px;
  }
  .filter__col:last-child { padding: 32px 24px 28px; }
  .incl__quickfacts { grid-template-columns: repeat(2, 1fr); }
  .incl__qf, .incl__qf:nth-child(odd), .incl__qf:nth-child(even) {
    padding: 24px 20px 22px;
    border-left: 1px solid var(--border-default);
  }
  .incl__layout { grid-template-columns: 1fr; }
  .incl__col, .incl__col:last-child {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid var(--border-default);
  }
  .incl__col:last-child { border-bottom: none; }
  .incl__investment { padding: 40px 28px; }
}

/* APPLY — head, lede, waitlist */
.apply__head {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 32px;
}
.apply__head em {
  font-family: var(--font-cursive);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18em;
  line-height: 0.9;
  color: var(--tcm-ember);
}
.apply__lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0 0 16px;
  max-width: 540px;
}
.apply__lede--bold {
  color: #fff;
  font-weight: 500;
  margin-bottom: 32px;
}
.apply__steps-head {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tcm-ember);
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 0;
}
.apply__waitlist {
  margin-top: 32px;
  padding: 16px 22px;
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,180,140,0.30);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* MOBILE adjustments for new sections */
@media (max-width: 720px) {
  .why__title { margin-bottom: 40px; }
  .why__col { padding: 32px 0; }
  .why__col-mark { margin-bottom: 18px; font-size: 11px; }
  .why__col-stat-num { font-size: clamp(40px, 14vw, 64px); }
  .why__close { margin-top: 32px; font-size: 17px; }
  .why__kicker { margin-top: 20px; font-size: clamp(22px, 7vw, 30px); }

  .pablo__head { margin: 24px 0 40px; font-size: clamp(32px, 9vw, 48px); }
  .pablo__name-big { font-size: clamp(40px, 12vw, 60px); }

  .filter__col { padding: 24px 18px 22px; }
  .incl__investment { padding: 32px 22px; }
  .incl__transition { font-size: 22px; margin: 48px 0 24px; }
  .incl__quickfacts { grid-template-columns: 1fr; }

  .apply__head { font-size: clamp(42px, 13vw, 64px); }
  .apply__waitlist { font-size: 10px; padding: 12px 18px; width: 100%; justify-content: flex-start; }
  .apply__steps-head { padding-bottom: 12px; font-size: 11px; }

  .big5__intro { font-size: 16px; }
  .big5__intro--bold { margin-bottom: 40px; }
  .big5__foot { margin-top: 40px; padding-top: 24px; font-size: 14px; }
  .big5__lock { font-size: 10px; padding: 3px 7px; }
}


/* =============================================================
   BIG 5 — Cartas visuales (v6)
   Grid de cartas grandes con imagen-placeholder dominante.
   La primera ocupa toda la fila. Las locked llevan sello rojo.
   Oculta los layouts anteriores (.big5__list y .big5__cards).
   ============================================================= */
.big5__list,
.big5__grid { display: none !important; }

.big5__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.big5__vcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  cursor: pointer;
}
.big5__vcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.big5__vcard:hover .big5__vcard-img::after { opacity: 0.45; }
.big5__vcard:hover .big5__vcard-cn { transform: translate(-50%, -50%) scale(1.04); }

/* Lead card spans all 6 cols, image side-by-side with body */
.big5__vcard--lead {
  grid-column: span 6;
  flex-direction: row;
  min-height: 460px;
}
.big5__vcard--lead .big5__vcard-img {
  flex: 1.2;
  aspect-ratio: auto;
  min-height: 460px;
}
.big5__vcard--lead .big5__vcard-body {
  flex: 1;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.big5__vcard--lead .big5__vcard-title {
  font-size: clamp(32px, 3.2vw, 48px);
}
.big5__vcard--lead .big5__vcard-desc {
  font-size: 17px;
}

/* Standard cards: 2 per row on desktop. 5 cards total = lead(6) + 4×3 */
.big5__vcard--std {
  grid-column: span 3;
}

/* IMAGE / PLACEHOLDER */
.big5__vcard-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}
.big5__vcard-img::after {
  /* dark vignette + grain overlay */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.55) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
  transition: opacity 320ms var(--ease-out);
  pointer-events: none;
}

/* Visual variants — documentary placeholders per location */
.big5__vcard-img--muralla {
  background:
    radial-gradient(at 20% 100%, rgba(255,140,80,0.55) 0%, transparent 55%),
    radial-gradient(at 80% 20%, rgba(255,200,140,0.30) 0%, transparent 50%),
    linear-gradient(165deg, #c8541a 0%, #6a2410 45%, #1a0a08 100%);
}
.big5__vcard-img--shanghai {
  background:
    radial-gradient(at 30% 70%, rgba(255,74,28,0.45) 0%, transparent 50%),
    radial-gradient(at 70% 30%, rgba(120,180,255,0.25) 0%, transparent 50%),
    linear-gradient(180deg, #1a1530 0%, #0a0818 60%, #050810 100%);
}
.big5__vcard-img--shenzhen {
  background:
    radial-gradient(at 50% 50%, rgba(0,200,255,0.20) 0%, transparent 55%),
    radial-gradient(at 80% 80%, rgba(255,74,28,0.35) 0%, transparent 50%),
    linear-gradient(135deg, #0a1a2a 0%, #1a2a3a 40%, #050810 100%);
}
.big5__vcard-img--sealed {
  background:
    radial-gradient(at 50% 40%, rgba(200,51,15,0.55) 0%, transparent 55%),
    linear-gradient(180deg, #2a0a08 0%, #0a0606 100%);
}
.big5__vcard-img--sealed-alt {
  background:
    radial-gradient(at 50% 60%, rgba(255,74,28,0.40) 0%, transparent 55%),
    linear-gradient(180deg, #1a0808 0%, #050202 100%);
}

/* Giant chinese character watermarked over the image */
.big5__vcard-cn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-cn);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.85;
  color: rgba(255,255,255,0.10);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  white-space: nowrap;
  transition: transform 480ms var(--ease-out);
}
.big5__vcard--lead .big5__vcard-cn {
  font-size: clamp(160px, 28vw, 360px);
}

/* Number top-left */
.big5__vcard-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  z-index: 4;
  background: rgba(0,0,0,0.35);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

/* Placeholder tag bottom-left, dashed (system convention) */
.big5__vcard-ph {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,10,10,0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 7px 11px;
  border: 1px solid rgba(255,180,140,0.35);
  border-radius: 6px;
  z-index: 4;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* Sealed seal — overlay for locked cards */
.big5__vcard--locked .big5__vcard-img {
  filter: saturate(0.6) brightness(0.65);
}
.big5__vcard-seal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 36px;
  border: 2px solid var(--tcm-ember);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
}
.big5__vcard-seal::before,
.big5__vcard-seal::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--tcm-ember);
}
.big5__vcard-seal::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.big5__vcard-seal::after { bottom: -8px; right: -8px; border-left: none; border-top: none; }
.big5__vcard-seal-mark {
  font-family: var(--font-cn);
  font-size: 56px;
  font-weight: 900;
  color: var(--tcm-ember);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.big5__vcard-seal-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

/* BODY */
.big5__vcard-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.big5__vcard-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--china-ink);
  margin: 0;
}
.big5__vcard--locked .big5__vcard-title { color: var(--content-secondary); }
.big5__vcard-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--content-secondary);
  margin: 0;
}
.big5__vcard-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.big5__vcard-meta strong {
  font-size: 12px;
  font-weight: 500;
  color: var(--content-tertiary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.big5__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--tcm-ember);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .big5__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .big5__vcard--lead { grid-column: span 2; flex-direction: column; min-height: 0; }
  .big5__vcard--lead .big5__vcard-img { min-height: 0; aspect-ratio: 16/10; }
  .big5__vcard--lead .big5__vcard-body { padding: 28px; }
  .big5__vcard--std { grid-column: span 1; }
}
@media (max-width: 640px) {
  .big5__grid { grid-template-columns: 1fr; gap: 14px; }
  .big5__vcard--lead { grid-column: span 1; }
  .big5__vcard--std { grid-column: span 1; }
  .big5__vcard-img { aspect-ratio: 4/3; }
  .big5__vcard-body { padding: 22px 22px 26px; }
  .big5__vcard-title { font-size: 19px; }
  .big5__vcard-seal { padding: 20px 26px; }
  .big5__vcard-seal-mark { font-size: 44px; }
}


/* =============================================================
   APPLY — CTA card simplificada (Typeform externo)
   Reemplaza el form inline por un CTA card centrado y atractivo.
   ============================================================= */
.apply__cta-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  isolation: isolate;
}
.apply__cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(at 80% 0%, rgba(255,74,28,0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.apply__cta-card > * { position: relative; z-index: 1; }

.apply__cta-cn {
  position: absolute;
  right: -10px; bottom: -40px;
  font-family: var(--font-cn);
  font-size: 280px;
  font-weight: 900;
  line-height: 0.85;
  color: rgba(255,74,28,0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.apply__cta-head {
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.apply__cta-sub {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 420px;
}
.apply__cta-list {
  list-style: none;
  margin: 12px 0 8px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.apply__cta-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.apply__cta-list li span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--tcm-ember);
  min-width: 64px;
  letter-spacing: -0.01em;
}
.apply__cta-foot {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.apply__cta-card .tcm-chip-btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 720px) {
  .apply__cta-card { padding: 40px 24px 32px; }
  .apply__cta-cn { font-size: 200px; right: -20px; bottom: -30px; }
  .apply__cta-list li span { font-size: 16px; min-width: 56px; }
  .apply__cta-card .tcm-chip-btn { width: 100%; align-self: stretch; }
}


/* =============================================================
   v7 — refinamientos de conversión
   ============================================================= */

/* Hero: meta debajo del CTA */
.hero__cta-meta {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 720px) {
  .hero__cta-meta { font-size: 11px; margin-top: 10px; text-align: center; }
}


/* =============================================================
   v8 — Dividers entre secciones (travel-themed, ember accent)
   ============================================================= */
.divx {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 36px 0;
  isolation: isolate;
}
.divx__wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.divx--ink { background: var(--china-ink); color: rgba(255,255,255,0.65); }
.divx--paper { background: #FFFFFF; color: var(--content-secondary); }

/* Hairlines */
.divx__rule {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.18;
}

/* ===== FLIGHT ===== */
.divx--flight { padding: 30px 0 22px; }
.divx--flight .divx__wrap { gap: 18px; align-items: center; }
.divx__coord {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.divx__coord-mark {
  font-size: 14px;
  color: var(--tcm-ember);
  line-height: 1;
}
.divx__route {
  flex: 1;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}
.divx__route-svg {
  width: 100%; height: 36px;
  color: var(--tcm-ember);
  overflow: visible;
}
.divx__route-path {
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-dasharray: 4 5;
  opacity: 0.55;
}
.divx__route-plane {
  color: var(--tcm-ember);
  offset-path: path("M 4 30 Q 200 6 400 30 T 796 30");
  offset-rotate: auto;
  animation: divx-fly 9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
@keyframes divx-fly {
  0% { offset-distance: 0%; opacity: 0; }
  6% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
.divx__code {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0.45;
}

/* ===== COMPASS ===== */
.divx--compass { padding: 40px 0; }
.divx--compass .divx__wrap { gap: 28px; }
.divx__compass {
  flex-shrink: 0;
  width: 56px; height: 56px;
  color: currentColor;
}
.divx__compass-svg { width: 100%; height: 100%; }
.divx__compass-needle {
  transform-origin: 32px 32px;
  animation: divx-compass-spin 14s ease-in-out infinite;
}
@keyframes divx-compass-spin {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(40deg); }
  40% { transform: rotate(-25deg); }
  60% { transform: rotate(70deg); }
  80% { transform: rotate(-10deg); }
}
.divx__compass-label {
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 2px;
  text-align: left;
}
.divx__compass-cn {
  font-family: var(--font-cn);
  font-size: 16px;
  font-weight: 700;
  color: var(--tcm-ember);
  letter-spacing: 0.04em;
  line-height: 1;
}
.divx__compass-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ===== STAMP ===== */
.divx--stamp { padding: 44px 0; }
.divx--stamp .divx__wrap { gap: 24px; }
.divx__stamp {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 14px;
}
.divx__stamp-mark {
  width: 56px; height: 56px;
  color: var(--tcm-ember);
  transform: rotate(-8deg);
  animation: divx-stamp-pulse 4s ease-in-out infinite;
}
.divx__stamp-mark svg { width: 100%; height: 100%; }
@keyframes divx-stamp-pulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.05); }
}
.divx__stamp-text {
  display: flex; flex-direction: column; gap: 4px;
}
.divx__stamp-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--tcm-ember);
  text-transform: uppercase;
}
.divx__stamp-sub {
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

@media (max-width: 720px) {
  .divx { padding: 24px 0; }
  .divx__coord-label { display: none; }
  .divx__coord-mark { font-size: 12px; }
  .divx__route { height: 28px; }
  .divx__route-svg { height: 28px; }
  .divx__code { font-size: 9px; letter-spacing: 0.18em; }
  .divx--compass .divx__wrap { gap: 16px; }
  .divx__compass { width: 44px; height: 44px; }
  .divx__compass-cn { font-size: 14px; }
  .divx--stamp .divx__wrap { gap: 14px; }
  .divx__stamp-mark { width: 44px; height: 44px; }
  .divx__stamp-label { font-size: 11px; letter-spacing: 0.18em; }
  .divx__stamp-sub { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .divx__route-plane,
  .divx__compass-needle,
  .divx__stamp-mark { animation: none; }
}

/* =============================================================
   BIG 5 — EDITORIAL REDESIGN
   Asymmetric grid: 01 lead full-width (photo R, body L)
   02+03 row 7/5; 04+05 row 5/7
   Photo placeholders are clean dashed frames (real photos drop in)
   ============================================================= */
.big5__grid--editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 24px;
  margin-top: 40px;
}
.big5__grid--editorial .big5__vcard {
  position: relative;
  display: grid;
  gap: 24px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  overflow: visible;
  box-shadow: none;
  cursor: default;
}
.big5__grid--editorial .big5__vcard:hover { transform: none; box-shadow: none; }

/* SLOT 1 — lead, full row, photo right body left */
.big5__slot--1 {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border-default);
}
.big5__slot--1 .big5__body { order: 1; padding-right: 32px; }
.big5__slot--1 .big5__photo { order: 2; }
.big5__slot--1 .big5__body-title { font-size: clamp(36px, 4vw, 64px); }

/* SLOTS 2 & 3 — row split 7/5 */
.big5__slot--2 { grid-column: 1 / span 7; grid-template-columns: minmax(0, 1fr); }
.big5__slot--3 { grid-column: 8 / span 5; grid-template-columns: minmax(0, 1fr); }

/* SLOTS 4 & 5 — row split 5/7 (mirror) */
.big5__slot--4 { grid-column: 1 / span 5; grid-template-columns: minmax(0, 1fr); }
.big5__slot--5 { grid-column: 6 / span 7; grid-template-columns: minmax(0, 1fr); }

/* PHOTO frame — clean editorial placeholder */
.big5__grid--editorial .big5__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: transparent;
  overflow: visible;
}
.big5__slot--1 .big5__photo { aspect-ratio: 4 / 5; }
.big5__slot--3 .big5__photo,
.big5__slot--4 .big5__photo { aspect-ratio: 4 / 5; }
.big5__slot--2 .big5__photo,
.big5__slot--5 .big5__photo { aspect-ratio: 4 / 3; }

.big5__photo-frame {
  position: absolute; inset: 0;
  background: #0a0504;
  border: 1px solid rgba(0,0,0,0.20);
  overflow: hidden;
  isolation: isolate;
}
.big5__svg {
  display: block;
  width: 100%; height: 100%;
}
.big5__photo-tag {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.big5__photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* Big number badge — top-left, OUTSIDE the photo, hanging into margin */
.big5__photo-num {
  position: absolute;
  top: -16px; left: -16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 700;
  line-height: 0.85;
  color: var(--china-ink);
  letter-spacing: -0.04em;
  text-shadow: 2px 2px 0 var(--china-paper);
}
.big5__photo-num span {
  font-size: 0.28em;
  font-weight: 500;
  color: var(--content-tertiary);
  letter-spacing: 0.08em;
  margin-left: 4px;
  vertical-align: super;
}

/* CN char — bottom-right, partially overlapping out of frame */
.big5__photo-cn {
  position: absolute;
  bottom: -24px; right: -8px;
  z-index: 3;
  font-family: var(--font-cn);
  font-size: clamp(72px, 8vw, 128px);
  font-weight: 600;
  line-height: 0.85;
  color: var(--tcm-ember);
  letter-spacing: 0;
  pointer-events: none;
  text-shadow: 0 0 0 var(--china-paper),
               -2px 2px 0 var(--china-paper),
               2px 2px 0 var(--china-paper),
               2px -2px 0 var(--china-paper),
               -2px -2px 0 var(--china-paper);
}

/* Sealed cards — overlay seal */
.big5__grid--editorial .big5__vcard--locked .big5__photo-frame {
  background:
    repeating-linear-gradient(45deg,
      rgba(255,74,28,0.06) 0 10px,
      transparent 10px 20px),
    rgba(255,74,28,0.04);
  border-color: rgba(255,74,28,0.45);
  border-style: solid;
}
.big5__photo-seal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 28px;
  background: rgba(255,74,28,0.08);
  border: 2px solid var(--tcm-ember);
}
.big5__photo-seal-mark {
  font-family: var(--font-cn);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.85;
  color: var(--tcm-ember);
}
.big5__photo-seal-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tcm-ember);
  font-weight: 600;
}

/* BODY — text block beside or below photo */
.big5__grid--editorial .big5__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 0 0;
}
.big5__body-meta-top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.big5__body-meta-top::before {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--tcm-ember);
}
.big5__body-place {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--content-secondary);
  text-transform: uppercase;
}
.big5__body-title {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--china-ink);
  margin: 4px 0 0;
}
.big5__grid--editorial .big5__vcard--locked .big5__body-title {
  color: var(--content-secondary);
}
.big5__body-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--content-secondary);
  margin: 0;
  max-width: 60ch;
}

/* RESPONSIVE — stack the row pairs at md, single column at sm */
@media (max-width: 980px) {
  .big5__slot--1 { grid-template-columns: 1fr; padding: 32px 0 40px; }
  .big5__slot--1 .big5__body { padding-right: 0; order: 2; }
  .big5__slot--1 .big5__photo { order: 1; }
  .big5__slot--2,
  .big5__slot--3,
  .big5__slot--4,
  .big5__slot--5 { grid-column: 1 / -1; }
  .big5__photo-num { font-size: 64px; top: -10px; left: -8px; }
  .big5__photo-cn { font-size: 72px; bottom: -16px; right: -4px; }
}
@media (max-width: 640px) {
  .big5__grid--editorial { gap: 36px 16px; }
  .big5__slot--1 .big5__body-title { font-size: 28px; }
  .big5__photo-num { font-size: 48px; }
  .big5__photo-cn { font-size: 56px; }
  .big5__photo-seal { padding: 14px 22px; }
  .big5__photo-seal-mark { font-size: 40px; }
}

/* =============================================================
   FILTER LAYOUT — INCLUYE / NO INCLUYE variant
   Reuses the card chrome from Filtro NO/SÍ but without the
   "right vs wrong" connotation: no strike-through, ✓ on incluye,
   neutral dash on no-incluye.
   ============================================================= */
.filter__layout--incl {
  margin-top: 32px;
}
/* Override the strike-through for the NO column when used as
   "no incluye" (these aren't wrong-choices, just exclusions). */
.filter__layout--incl .filter__col--no .filter__list li {
  color: var(--china-ink);
  text-decoration: none;
  opacity: 0.95;
}
.filter__layout--incl .filter__col--no .filter__list li::before {
  color: var(--content-tertiary);
}
/* Use a neutral dash icon for "qué no incluye" instead of ✕ */
.filter__layout--incl .filter__col--no .filter__col-head::before {
  content: "—";
  background: rgba(10,10,10,0.06);
  color: var(--china-ink);
  font-size: 22px;
}
/* And ✓ stays on the SÍ → "qué incluye" — already styled. */

/* =============================================================
   WHY DIPTYCH — pasado × futuro side-by-side, fills width
   ============================================================= */
.why__diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.why__panel {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  overflow: hidden;
  transition: background 320ms var(--ease-out), border-color 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.why__panel:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,180,140,0.25);
  transform: translateY(-2px);
}
.why__panel--future {
  background: rgba(255,74,28,0.04);
  border-color: rgba(255,180,140,0.16);
}
.why__panel-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #1a0a05;
  overflow: hidden;
  isolation: isolate;
}
.why__panel-photo .big5__svg,
.why__panel-photo .why__scene {
  width: 100%; height: 100%; display: block;
}
.why__panel-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.why__panel-cn {
  position: absolute;
  top: 18px; left: 22px;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  color: #fff;
  opacity: 0.85;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  letter-spacing: -0.02em;
}
.why__panel-tag {
  position: absolute;
  bottom: 14px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #fff;
  text-transform: uppercase;
  background: rgba(10,5,4,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  text-shadow: none;
}
.why__panel-text {
  padding: 36px 36px 40px;
  display: flex; flex-direction: column;
  flex: 1;
}
.why__panel-mark {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--tcm-ember);
  line-height: 1;
  margin-bottom: 20px;
}
.why__panel-body {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
}
.why__panel-body strong {
  font-family: inherit;
  font-weight: 600;
  color: var(--tcm-ember);
  background: linear-gradient(transparent 62%, rgba(255,74,28,0.45) 62%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 2px;
}
.why__panel-stat {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 4px;
}
.why__panel-stat-num {
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
  font-feature-settings: "tnum";
}
.why__panel-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .why__diptych { grid-template-columns: 1fr; gap: 24px; }
  .why__panel-text { padding: 28px 24px 32px; }
}

/* =============================================================
   BIG5 — design-system cards (media 4:5 + body)
   3-up grid on desktop, full content fills width
   ============================================================= */
.big5 .big5__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 360px);
  gap: 24px;
  margin-top: 64px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--tcm-ember) transparent;
  padding: 8px 4px 24px;
  margin-left: -4px; margin-right: -4px;
}
.big5 .big5__cards::-webkit-scrollbar { height: 6px; }
.big5 .big5__cards::-webkit-scrollbar-track { background: rgba(10,10,10,0.06); border-radius: 6px; }
.big5 .big5__cards::-webkit-scrollbar-thumb { background: var(--tcm-ember); border-radius: 6px; }
.big5 .b5card {
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle, #EEEDE8);
  box-shadow: 0 1px 2px rgba(10,10,10,0.04);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.big5 .b5card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(10,10,10,0.18), 0 2px 6px rgba(10,10,10,0.06);
  border-color: rgba(10,10,10,0.10);
}
.big5 .b5card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 16px 16px 0 0;
  perspective: 1200px;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}
/* Flipper — 3D wrapper that rotates on hover */
.big5 .b5card__flipper {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(.16,.7,.25,1);
  will-change: transform;
}
.big5 .b5card:hover .b5card__flipper,
.big5 .b5card:focus-within .b5card__flipper {
  transform: rotateY(180deg);
}
.big5 .b5card__face {
  position: absolute; inset: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #1a0a05;
}
.big5 .b5card__face--front {}
.big5 .b5card__face--back {
  transform: rotateY(180deg);
}
.big5 .b5card__face .big5__svg {
  display: block;
  width: 100%; height: 100%;
}
.big5 .b5card__face--front::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, transparent 30%, transparent 65%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
/* 2x2 collage on the back face */
.big5 .b5card__collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: #1a0a05;
}
.big5 .b5card__col {
  position: relative;
  overflow: hidden;
  background: #1a0a05;
}
.big5 .b5card__col .big5__svg {
  width: 100%; height: 100%;
  display: block;
  /* slight scale variation per quadrant for visual variety */
  transform: scale(1.4);
  transform-origin: 50% 50%;
}
.big5 .b5card__col--a .big5__svg { transform: scale(1.5); transform-origin: 25% 30%; }
.big5 .b5card__col--b .big5__svg { transform: scale(1.6); transform-origin: 75% 35%; }
.big5 .b5card__col--c .big5__svg { transform: scale(1.45); transform-origin: 30% 75%; filter: hue-rotate(-8deg); }
.big5 .b5card__col--d .big5__svg { transform: scale(1.7); transform-origin: 70% 70%; filter: brightness(0.85); }

.big5 .b5card__back-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,5,3,0.35) 0%, rgba(10,5,3,0.05) 30%, transparent 60%, rgba(10,5,3,0.75) 100%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px 18px;
  pointer-events: none;
}
.big5 .b5card__back-eyebrow {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,74,28,0.85);
  padding: 6px 10px;
  border-radius: 999px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.big5 .b5card__back-cn {
  position: absolute;
  top: 16px; right: 18px;
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 1;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  letter-spacing: -0.02em;
}
.big5 .b5card__back-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.big5 .b5card__face .big5__svg {
  width: 100%; height: 100%;
}
.big5 .b5card__media-num {
  position: absolute;
  top: 18px; left: 20px;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 2;
}
.big5 .b5card__media-num-tot {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.65;
  margin-left: 2px;
}
.big5 .b5card__media-cn {
  position: absolute;
  top: 18px; right: 20px;
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 1;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  letter-spacing: -0.02em;
  z-index: 2;
}
.big5 .b5card__media-lock {
  position: absolute;
  bottom: 18px; left: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #ffba80;
  z-index: 2;
}
.big5 .b5card__body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.big5 .b5card__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tcm-ember);
  font-weight: 500;
}
.big5 .b5card__title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--china-ink);
  margin: 0;
}
.big5 .b5card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--content-secondary);
  margin: 0;
  white-space: pre-line;
}
.big5 .b5card--locked .b5card__media { background: #1a0a05; }
.big5 .b5card--locked .b5card__title { color: var(--china-ink); }

/* On mobile, reduce card width for scroll */
@media (max-width: 720px) {
  .big5 .big5__cards { grid-auto-columns: minmax(260px, 300px); gap: 16px; }
  .big5 .b5card__body { padding: 20px 20px 24px; }
}
