/* Javier Natera — Ilusionista Contemporáneo
   Paleta y tono según el Manual de Marca (2026): lujo discreto, confianza, claridad. */

:root {
  --charcoal: #1E1E1E;
  --midnight: #221829;
  --plum: #392A44;
  --lavender: #CAC4CF;
  --paper: #F3F1F5;
  --ink: #1E1E1E;
  --muted-dark: rgba(202, 196, 207, .72);
  --muted-light: #5E5566;
  --line-dark: rgba(202, 196, 207, .16);
  --line-light: rgba(34, 24, 41, .14);
  --font: "Urbanist", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--lavender);
  background: var(--midnight);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-weight: 300; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--lavender); color: var(--midnight); padding: 8px 14px; border-radius: 4px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--lavender); outline-offset: 3px; }

/* Etiqueta espaciada, como el tagline del logotipo */
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 22px;
}
.light .eyebrow { color: var(--muted-light); }
.section { padding: clamp(84px, 12vw, 150px) 0; position: relative; }
.section-title { font-size: clamp(34px, 5vw, 58px); max-width: 17ch; }
.section-intro { max-width: 56ch; margin-top: 22px; color: var(--muted-dark); font-size: 18px; }
.light { background: var(--paper); color: var(--ink); }
.light .section-intro { color: var(--muted-light); }
.plum { background: var(--plum); }
.charcoal { background: var(--charcoal); }

/* Botones */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  font: 600 13px/1 var(--font);
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--lavender);
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn-solid { background: var(--lavender); color: var(--midnight); }
.btn-solid:hover { background: #fff; border-color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--lavender); }
.btn-ghost:hover { background: rgba(202, 196, 207, .12); }
.light .btn-solid { background: var(--midnight); color: var(--paper); border-color: var(--midnight); }
.light .btn-solid:hover { background: var(--plum); border-color: var(--plum); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  padding: 26px 0;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(34, 24, 41, .9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding: 14px 0;
  border-color: var(--line-dark);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: clamp(150px, 16vw, 190px); height: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; color: var(--muted-dark); transition: color .3s; white-space: nowrap;
}
.nav a:hover { color: #fff; }
.nav .lang { border: 1px solid var(--line-dark); border-radius: 999px; padding: 7px 12px; letter-spacing: .14em; }
.nav .btn { padding: 12px 20px; font-size: 11px; color: var(--midnight); }
.menu-toggle { display: none; background: none; border: 0; color: var(--lavender); padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: currentColor; margin: 6px 0; transition: transform .3s, opacity .3s; }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 30px;
    background: var(--midnight);
    opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  }
  .nav a { font-size: 15px; }
  .nav .btn { font-size: 13px; padding: 16px 28px; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav { opacity: 1; visibility: visible; }
  body.menu-open .header { -webkit-backdrop-filter: none; backdrop-filter: none; }
  body.menu-open .menu-toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 150px 0 clamp(64px, 9vw, 110px);
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transform: scale(1.04); animation: heroIn 2.4s var(--ease) forwards; }
@keyframes heroIn { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(34,24,41,.55) 0%, rgba(34,24,41,.25) 35%, rgba(34,24,41,.9) 78%, var(--midnight) 100%),
    linear-gradient(90deg, rgba(34,24,41,.85) 0%, rgba(34,24,41,0) 65%);
}
.hero h1 { font-size: clamp(42px, 7.2vw, 96px); max-width: 12ch; color: #fff; }
.hero h1 em { font-style: normal; color: var(--lavender); }
.hero .lead { font-size: clamp(18px, 1.6vw, 21px); max-width: 44ch; margin-top: 26px; color: var(--lavender); }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 34px; margin-top: 56px; padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark);
}
.hero-meta strong { color: #fff; font-weight: 600; }

@media (max-width: 720px) {
  .hero-media img { object-position: 62% 20%; }
  .hero-media video { object-position: 50% 30%; }
  .hero::after { background: linear-gradient(180deg, rgba(34,24,41,.55) 0%, rgba(34,24,41,.78) 28%, rgba(34,24,41,.92) 60%, var(--midnight) 100%); }
}

/* ---------- Clientes ---------- */
.clients { padding: 48px 0 56px; border-bottom: 1px solid var(--line-dark); }
.clients .eyebrow { text-align: center; margin-bottom: 30px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; align-items: center; gap: clamp(48px, 6vw, 84px); width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee img { height: 38px; width: auto; max-width: none; opacity: .78; }
.marquee img.tall { height: 66px; }
@keyframes marquee { to { transform: translateX(calc(-50% - clamp(24px, 3vw, 42px))); } }

/* ---------- Manifiesto ---------- */
.manifesto { text-align: center; }
.manifesto .mono { width: 64px; height: auto; margin: 0 auto 34px; opacity: .9; }
.manifesto blockquote {
  margin: 0 auto; max-width: 24ch;
  font-size: clamp(28px, 4.2vw, 50px); font-weight: 300; line-height: 1.22; color: #fff;
}
.manifesto blockquote span { color: var(--muted-dark); }
.manifesto p { margin: 34px auto 0; max-width: 58ch; color: var(--muted-dark); }

/* ---------- Experiencias ---------- */
.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.format { display: flex; flex-direction: column; }
.format figure { margin: 0; overflow: hidden; border-radius: 4px; aspect-ratio: 4 / 5; background: var(--plum); }
.format img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: saturate(.85); }
.format:hover img { transform: scale(1.05); }
.format .num { font-size: 12px; letter-spacing: .3em; color: var(--muted-light); margin: 28px 0 10px; }
.format h3 { font-size: 27px; color: var(--ink); }
.format h3 small { display: block; font-size: 13px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-light); margin-top: 8px; font-weight: 500; }
.format p { margin-top: 14px; color: var(--muted-light); }
@media (max-width: 860px) {
  .formats { grid-template-columns: 1fr; gap: 56px; }
  .format figure { aspect-ratio: 4 / 3; }
}

/* ---------- Principios + proceso ---------- */
.split { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.split .sticky { position: sticky; top: 130px; }
.principles { list-style: none; margin: 0; padding: 0; }
.principles li { padding: 34px 0; border-top: 1px solid var(--line-dark); }
.principles li:last-child { border-bottom: 1px solid var(--line-dark); }
.principles h3 { font-size: 26px; color: #fff; }
.principles p { color: var(--muted-dark); margin-top: 10px; max-width: 52ch; }
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: clamp(70px, 9vw, 110px); counter-reset: step; }
.step { padding: 32px 28px 34px; border: 1px solid var(--line-dark); border-radius: 4px; background: rgba(34,24,41,.35); }
.step .n { font-size: 44px; font-weight: 200; color: var(--muted-dark); line-height: 1; }
.step h3 { font-size: 22px; color: #fff; margin-top: 22px; }
.step p { color: var(--muted-dark); margin-top: 10px; font-size: 16px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split .sticky { position: static; }
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Para quién ---------- */
.audiences { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; border-top: 1px solid var(--line-light); }
.audience { padding: 34px 26px 10px 0; }
.audience + .audience { padding-left: 26px; border-left: 1px solid var(--line-light); }
.audience h3 { font-size: 24px; color: var(--ink); }
.audience p { margin-top: 12px; color: var(--muted-light); font-size: 16px; }
.cities { margin-top: 56px; display: flex; flex-wrap: wrap; gap: 10px; }
.cities span { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; padding: 9px 16px; border: 1px solid var(--line-light); border-radius: 999px; color: var(--muted-light); }
@media (max-width: 960px) {
  .audiences { grid-template-columns: 1fr 1fr; }
  .audience:nth-child(3) { padding-left: 0; border-left: 0; }
  .audience:nth-child(n+3) { border-top: 1px solid var(--line-light); }
}
@media (max-width: 560px) {
  .audiences { grid-template-columns: 1fr; }
  .audience, .audience + .audience { padding-left: 0; border-left: 0; }
  .audience + .audience { border-top: 1px solid var(--line-light); }
}

/* ---------- The Secret Room ---------- */
.tsr { overflow: hidden; }
.tsr-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.tsr-media { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4 / 5; background: #000; box-shadow: 0 40px 90px rgba(0,0,0,.45); }
.tsr-media video, .tsr-media img { width: 100%; height: 100%; object-fit: cover; }
.tsr-badge {
  position: absolute; left: 20px; bottom: 20px;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  background: rgba(30,30,30,.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 9px 14px; border-radius: 999px; color: #fff;
}
.tsr-badge::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #d64545; margin-right: 10px; vertical-align: 1px; }
.tsr h2 { font-size: clamp(36px, 5vw, 60px); color: #fff; }
.tsr .kicker { font-size: clamp(19px, 1.8vw, 22px); color: #fff; margin-top: 24px; max-width: 34ch; }
.tsr p.body { color: var(--muted-dark); margin-top: 18px; max-width: 48ch; }
.tsr-facts { display: grid; grid-template-columns: repeat(3, auto); gap: 8px 34px; justify-content: start; margin: 34px 0 40px; padding: 22px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.tsr-facts dt { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted-dark); }
.tsr-facts dd { margin: 4px 0 0; color: #fff; font-size: 17px; }
.tsr .actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 860px) {
  .tsr-grid { grid-template-columns: 1fr; }
  .tsr-media { aspect-ratio: 4 / 3; }
  .tsr-facts { grid-template-columns: 1fr 1fr; }
}

/* ---------- Testimonios ---------- */
.quotes { margin-top: 60px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.quote { grid-column: span 2; margin: 0; padding: 36px 32px; border-radius: 4px; background: #fff; border: 1px solid var(--line-light); display: flex; flex-direction: column; }
.quote.wide { grid-column: span 3; }
.quote blockquote { margin: 0; font-size: 19px; line-height: 1.5; color: var(--ink); flex: 1; }
.quote blockquote::before { content: "“"; display: block; font-size: 58px; line-height: .6; color: var(--plum); margin-bottom: 16px; font-weight: 300; }
.quote figcaption { margin-top: 26px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-light); }
@media (max-width: 960px) {
  .quotes { grid-template-columns: 1fr 1fr; }
  .quote, .quote.wide { grid-column: span 1; }
  .quote:last-child { grid-column: span 2; }
}
@media (max-width: 620px) {
  .quotes { grid-template-columns: 1fr; }
  .quote:last-child { grid-column: span 1; }
}

/* ---------- Brochure ---------- */
.brochure { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 44px clamp(28px, 5vw, 60px); border: 1px solid var(--line-dark); border-radius: 4px; background: linear-gradient(120deg, var(--plum), var(--midnight)); }
.brochure h2 { font-size: clamp(26px, 3vw, 34px); color: #fff; }
.brochure p { color: var(--muted-dark); margin-top: 8px; max-width: 50ch; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 50px; border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0; font-size: clamp(18px, 2vw, 21px); color: #fff;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 26px; font-weight: 200; color: var(--muted-dark); transition: transform .3s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 28px; color: var(--muted-dark); max-width: 70ch; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 7vw, 100px); }
.contact-aside p { color: var(--muted-light); margin-top: 22px; max-width: 40ch; }
.contact-lines { margin-top: 40px; display: grid; gap: 18px; }
.contact-lines a { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); font-size: 18px; }
.contact-lines a:hover { color: var(--plum); text-decoration: underline; text-underline-offset: 4px; }
.contact-lines svg { width: 20px; height: 20px; flex: none; color: var(--plum); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-light); }
.field input, .field select, .field textarea {
  font: 400 17px/1.4 var(--font); color: var(--ink);
  background: #fff; border: 1px solid var(--line-light); border-radius: 4px;
  padding: 14px 16px; width: 100%;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(57,42,68,.14); }
.form .submit { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 6px; }
.form .note { font-size: 14px; color: var(--muted-light); }
.form-status { grid-column: 1 / -1; font-size: 15px; color: var(--plum); min-height: 1em; }
.field.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { padding: 70px 0 44px; background: var(--charcoal); color: var(--muted-dark); font-size: 14px; }
.footer .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.footer img { width: 190px; height: auto; }
.footer .tag { margin-top: 14px; font-size: 11px; letter-spacing: .38em; text-transform: uppercase; }
.footer nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer nav a { text-decoration: none; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.footer nav a:hover { color: #fff; }
.footer .bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; }

/* Botón flotante en móvil */
.float-cta { display: none; }
@media (max-width: 720px) {
  .float-cta {
    display: flex; justify-content: center;
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
    box-shadow: 0 14px 40px rgba(0,0,0,.4);
    transform: translateY(140%); transition: transform .45s var(--ease);
  }
  .float-cta.show { transform: none; }
}

/* Aparición suave al hacer scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .hero-media img, .hero-media video { animation: none; }
}

/* ---------- Trayectoria (Home) ---------- */
.creds { padding: clamp(56px, 7vw, 84px) 0; border-bottom: 1px solid var(--line-dark); }
.creds-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.creds-head .eyebrow { margin: 0; }
.link-arrow { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--lavender); border-bottom: 1px solid var(--line-dark); padding-bottom: 4px; transition: color .3s, border-color .3s; }
.link-arrow:hover { color: #fff; border-color: #fff; }
.light .link-arrow { color: var(--plum); border-color: var(--line-light); }
.creds-list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.creds-list li { padding: 6px 26px 6px 0; }
.creds-list li + li { padding-left: 26px; border-left: 1px solid var(--line-dark); }
.creds-list strong { display: block; font-size: clamp(19px, 1.9vw, 23px); font-weight: 400; color: #fff; line-height: 1.25; }
.creds-list span { display: block; margin-top: 8px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); }
@media (max-width: 960px) {
  .creds-list { grid-template-columns: 1fr 1fr; gap: 26px 0; }
  .creds-list li:nth-child(3) { padding-left: 0; border-left: 0; }
}
@media (max-width: 560px) {
  .creds-list { grid-template-columns: 1fr; gap: 0; }
  .creds-list li, .creds-list li + li { padding: 18px 0; border-left: 0; }
  .creds-list li + li { border-top: 1px solid var(--line-dark); }
}

/* ---------- Páginas interiores ---------- */
.page-hero { padding: clamp(150px, 18vw, 210px) 0 clamp(60px, 8vw, 96px); position: relative; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: end; }
.page-hero h1 { font-size: clamp(42px, 6.4vw, 84px); color: #fff; }
.page-hero h1 .eyebrow { margin-bottom: 26px; }
.page-hero .lead { font-size: clamp(19px, 1.7vw, 22px); color: var(--lavender); margin-top: 28px; max-width: 40ch; }
.page-hero figure { margin: 0; border-radius: 4px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--plum); }
.page-hero figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.crumbs { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 34px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-hidden] { margin: 0 10px; opacity: .6; }
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero figure { aspect-ratio: 4 / 3; }
}

.prose { max-width: 62ch; }
.prose p { color: var(--muted-dark); font-size: 18px; }
.prose p + p { margin-top: 20px; }
.prose p.big { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.4; color: #fff; font-weight: 300; }
.light .prose p { color: var(--muted-light); }
.light .prose p.big { color: var(--ink); }

/* Hitos */
.milestones { list-style: none; margin: 60px 0 0; padding: 0; border-top: 1px solid var(--line-light); }
.milestone { display: grid; grid-template-columns: 220px 1fr; gap: 16px 40px; padding: 36px 0; border-bottom: 1px solid var(--line-light); }
.milestone .when { font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-light); padding-top: 8px; }
.milestone h3 { font-size: clamp(24px, 2.6vw, 30px); color: var(--ink); }
.milestone p { color: var(--muted-light); margin-top: 12px; max-width: 60ch; }
.milestone .video { margin-top: 28px; max-width: 640px; }
@media (max-width: 720px) { .milestone { grid-template-columns: 1fr; } .milestone .when { padding-top: 0; } }

/* Video de YouTube que solo carga al hacer clic */
.yt-wrap { position: relative; aspect-ratio: 16 / 9; border-radius: 4px; overflow: hidden; background: #000; }
.yt { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; padding: 0; border-radius: 4px; overflow: hidden; background: #000; cursor: pointer; }
.yt img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .4s var(--ease), transform 1s var(--ease); }
.yt:hover img { opacity: 1; transform: scale(1.03); }
.yt .play { position: absolute; left: 50%; top: 50%; width: 76px; height: 76px; margin: -38px 0 0 -38px; border-radius: 50%; background: rgba(243,241,245,.92); display: grid; place-items: center; box-shadow: 0 12px 34px rgba(0,0,0,.4); }
.yt .play::before { content: ""; margin-left: 5px; border-style: solid; border-width: 12px 0 12px 19px; border-color: transparent transparent transparent var(--midnight); }
.yt .label { position: absolute; left: 18px; bottom: 16px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: #fff; background: rgba(30,30,30,.7); padding: 8px 12px; border-radius: 999px; }
.yt-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Logos en cuadrícula */
.logo-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 34px 40px; align-items: center; }
.logo-grid img { height: 34px; width: auto; max-width: 100%; margin: 0 auto; opacity: .75; }
.logo-grid img.tall { height: 58px; }
@media (max-width: 860px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }

/* Cierre con llamado a la acción */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(34px, 5vw, 58px); color: #fff; max-width: 18ch; margin: 0 auto; }
.cta-band p { color: var(--muted-dark); margin: 24px auto 0; max-width: 52ch; }
.cta-band .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }

/* Tarjetas de ideas (mentalismo, proceso) */
.pillars { list-style: none; margin: 60px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar { padding: 34px 30px 36px; border: 1px solid var(--line-dark); border-radius: 4px; background: rgba(34,24,41,.35); }
.pillar .n { font-size: 12px; letter-spacing: .3em; color: var(--muted-dark); }
.pillar h3 { font-size: 25px; color: #fff; margin-top: 18px; }
.pillar p { color: var(--muted-dark); margin-top: 12px; font-size: 16px; }
.light .pillar { background: #fff; border-color: var(--line-light); }
.light .pillar h3 { color: var(--ink); }
.light .pillar p, .light .pillar .n { color: var(--muted-light); }
.pillars.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .pillars, .pillars.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .pillars, .pillars.four { grid-template-columns: 1fr; } }

/* Casos */
.cases { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case { padding: 38px 34px 40px; border-radius: 4px; background: #fff; border: 1px solid var(--line-light); }
.case .tag { font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-light); }
.case h3 { font-size: clamp(23px, 2.4vw, 28px); color: var(--ink); margin-top: 16px; }
.case p { color: var(--muted-light); margin-top: 14px; }
@media (max-width: 760px) { .cases { grid-template-columns: 1fr; } }

/* Lista en dos columnas */
.feature-list { list-style: none; margin: 50px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.feature-list li { padding: 24px 0; border-top: 1px solid var(--line-dark); }
.feature-list strong { display: block; font-weight: 400; font-size: 21px; color: #fff; }
.feature-list span { display: block; margin-top: 6px; color: var(--muted-dark); font-size: 16px; }
.light .feature-list li { border-color: var(--line-light); }
.light .feature-list strong { color: var(--ink); }
.light .feature-list span { color: var(--muted-light); }
@media (max-width: 760px) { .feature-list { grid-template-columns: 1fr; } }

/* Nota destacada */
.aside-note { margin-top: 56px; padding: 30px 34px; border-left: 2px solid var(--lavender); background: rgba(202,196,207,.06); max-width: 70ch; }
.aside-note p { color: var(--muted-dark); }
.aside-note strong { color: #fff; font-weight: 500; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.two-col figure { margin: 0; border-radius: 4px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--plum); }
.two-col figure img, .two-col figure video { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.cities a { text-decoration: none; }
.cities a:hover span { border-color: var(--plum); color: var(--plum); }
.format .more { margin-top: 18px; }
.page-hero h1 em { font-style: normal; color: var(--lavender); }
/* El retrato se recorta centrado en el rostro */
.page-hero figure img[src*="retrato"] { object-position: 50% 18%; }
@media (max-width: 860px) { .page-hero figure:has(img[src*="retrato"]) { aspect-ratio: 4 / 5; } }
