/* ============================================
   ClaudIA Montoya — Landing v2
   Híbrido Holographik + Lamborghini
   Monocromo · #FFC000 acento único · Helvetica tight
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-95: #f5f5f5;
  --gray-90: #ebebeb;
  --gray-80: #d4d4d4;
  --gray-60: #888888;
  --gray-40: #444444;
  --gray-20: #1a1a1a;
  --yellow: #FFC000;
  --yellow-soft: #fff2c2;

  --font-display: 'Helvetica Neue', 'Inter', Arial, sans-serif;
  --font-body: 'Helvetica Neue', 'Inter', Arial, sans-serif;
  --font-italic: 'Fraunces', Georgia, serif;

  --container: 1320px;
  --sec-pad-y: clamp(96px, 12vw, 180px);
  --sec-pad-x: clamp(20px, 4vw, 56px);

  --tight: -0.04em;
  --tight-soft: -0.02em;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.25;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: var(--tight-soft);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sec-pad-x);
}

/* ============================================
   NAV
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  padding: 16px var(--sec-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--black);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: var(--tight-soft);
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.nav-logo .ia {
  background: var(--yellow);
  color: var(--black);
  padding: 0 6px;
  font-weight: 700;
}
.nav-logo .apellido {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: var(--tight-soft);
  color: var(--white);
  text-transform: none;
  margin-left: 4px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.nav-logo .ia { color: var(--black); }
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: var(--tight-soft);
  color: var(--white);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tight-soft);
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--white); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.2s;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  background: var(--white);
  padding: clamp(40px, 6vw, 80px) var(--sec-pad-x) 0;
  position: relative;
}
.hero-bar { display: none; }
.hero-grid--photo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.hero-grid--photo .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-grid--photo .hero-eyebrow { margin-bottom: clamp(20px, 2.5vw, 36px); }
.hero-grid--photo .hero-tagline { margin-bottom: clamp(24px, 3vw, 40px); }
.hero-grid--photo .hero-sub { max-width: 52ch; margin-bottom: 32px; }
.hero-grid--photo .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-grid--photo .hero-badges { grid-column: 1 / -1; }

.hero-photo--lead {
  display: block;
  align-self: stretch;
  justify-self: stretch;
  position: relative;
}
.hero-photo--lead .hero-photo-frame {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: clamp(420px, 60vh, 720px);
  aspect-ratio: auto;
}
.hero-tagline { font-size: clamp(48px, 7.5vw, 110px); }

@media (max-width: 900px) {
  .hero-grid--photo { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo--lead .hero-photo-frame { min-height: 480px; max-width: 420px; margin: 0 auto; }
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  background: var(--black);
  color: var(--yellow);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: clamp(28px, 4vw, 48px);
  font-weight: 500;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(56px, 10.5vw, 156px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 0.92;
  color: var(--black);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.hero-tagline .neg {
  color: var(--gray-80);
  text-decoration: line-through;
  text-decoration-color: var(--gray-80);
  text-decoration-thickness: 3px;
  font-weight: 300;
}
.hero-tagline em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
}
.hero-tagline strong {
  background: var(--yellow);
  color: var(--black);
  padding: 0 14px;
  font-weight: 400;
  display: inline-block;
  line-height: 0.92;
}

.hero-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--black);
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.3;
  letter-spacing: var(--tight-soft);
  color: var(--black);
  max-width: 560px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--black);
  color: var(--yellow);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tight-soft);
  border: 1px solid var(--black);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.btn-primary::after { content: '→'; }
.btn-primary:hover { background: var(--yellow); color: var(--black); }

.btn-secondary {
  background: var(--white);
  color: var(--black);
  padding: 17px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--tight-soft);
  border: 1px solid var(--black);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tight-soft);
  border: 1px solid var(--yellow);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-yellow::after { content: '→'; }
.btn-yellow:hover { background: var(--black); color: var(--yellow); border-color: var(--black); }

.btn-oro {
  background: var(--yellow);
  color: var(--black);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tight-soft);
  border: 1px solid var(--yellow);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
}
.btn-oro::after { content: '→'; }
.btn-oro:hover { background: var(--black); color: var(--yellow); border-color: var(--black); }

.btn-outline-oro {
  background: transparent;
  color: var(--white);
  padding: 17px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--tight-soft);
  border: 1px solid var(--white);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  width: 100%;
}
.btn-outline-oro:hover { background: var(--white); color: var(--black); }

.hero-photo {
  display: flex;
  justify-content: flex-end;
}
.hero-photo-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s;
}
.hero-photo-frame:hover img { filter: grayscale(0) contrast(1); }
.hero-photo-corner { display: none; }
.hero-photo-meta {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.hero-photo-meta .num {
  color: var(--yellow);
}

/* HERO MARQUEE */
.hero-marquee {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  margin: 0 calc(var(--sec-pad-x) * -1);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.hero-marquee-track {
  display: flex;
  gap: 56px;
  padding: 18px 0;
  white-space: nowrap;
  animation: scrollx 36s linear infinite;
  align-items: center;
}
.hero-marquee-item {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: var(--tight-soft);
  display: inline-flex;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
}
.hero-marquee-item::after {
  content: '◆';
  color: var(--yellow);
  font-size: 10px;
}
@keyframes scrollx {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* HERO STATS (replaces badges) */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  margin: 0 calc(var(--sec-pad-x) * -1);
}
.hero-badge {
  padding: 32px clamp(16px, 3vw, 32px);
  border-right: 1px solid var(--black);
}
.hero-badge:last-child { border-right: none; }
.hero-badge-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 0.95;
  margin-bottom: 8px;
}
.hero-badge-label {
  font-size: 12px;
  letter-spacing: var(--tight-soft);
  line-height: 1.3;
  color: var(--black);
}

/* ============================================
   SECTIONS — base
   ============================================ */
.std {
  padding: var(--sec-pad-y) 0;
  background: var(--white);
  color: var(--black);
}
.dark-bg {
  background: var(--black);
  color: var(--white);
}
.dark-bg .section-label { color: var(--yellow); }
.dark-bg .section-title { color: var(--white); }
.dark-bg .section-sub { color: var(--gray-80); }
.grain { background: var(--white); }
.dark-bg.grain { background: var(--black); }

.section-head {
  max-width: 920px;
  margin: 0 auto clamp(48px, 7vw, 96px);
  padding: 0 var(--sec-pad-x);
  text-align: left;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  background: var(--black);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-weight: 500;
}
.dark-bg .section-label {
  background: var(--yellow);
  color: var(--black);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
}
.section-title strong {
  background: var(--yellow);
  padding: 0 10px;
  font-weight: 400;
  color: var(--black);
}
.section-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.35;
  letter-spacing: var(--tight-soft);
  color: var(--gray-40);
  max-width: 720px;
}

/* ============================================
   PROBLEMA
   ============================================ */
#problema {
  background: var(--black);
  color: var(--white);
  padding: var(--sec-pad-y) 0;
}
.problema-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.problema-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 64px);
  font-weight: 300;
  letter-spacing: var(--tight);
  line-height: 1.05;
  color: var(--white);
}
.problema-quote strong {
  background: var(--yellow);
  color: var(--black);
  padding: 0 10px;
  font-weight: 400;
  display: inline-block;
}
.problema-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.problema-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-40);
  align-items: baseline;
}
.problema-item:last-child { border-bottom: 1px solid var(--gray-40); }
.problema-item .n {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--yellow);
  font-size: 18px;
}
.problema-item p {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: var(--tight-soft);
  color: var(--gray-80);
}

/* ============================================
   TRES PUERTAS
   ============================================ */
.tres-puertas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--black);
}
.puerta {
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--black);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  position: relative;
}
.puerta:last-child { border-right: none; }
.puerta:hover { background: var(--gray-95); }
.puerta-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  margin-bottom: clamp(40px, 6vw, 64px);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.puerta-num strong {
  font-weight: 600;
  color: var(--black);
  font-size: 13px;
}
.puerta-titulo {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 1;
  margin-bottom: 16px;
  color: var(--black);
}
.puerta-para {
  font-size: 12px;
  letter-spacing: var(--tight-soft);
  color: var(--yellow-soft);
  background: var(--black);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 24px;
  color: var(--yellow);
}
.puerta-desc {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--gray-40);
  margin-bottom: 32px;
  flex: 1;
}
.puerta-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tight-soft);
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.15s;
}
.puerta-link:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

/* ============================================
   CURSO
   ============================================ */
#curso .section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.curso-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding: 0 var(--sec-pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.semanas {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-40);
}
.semana {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--gray-40);
  align-items: start;
}
.semana-num {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--yellow);
  line-height: 0.95;
  display: flex;
  flex-direction: column;
  letter-spacing: var(--tight-soft);
}
.semana-num .lbl {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  text-transform: lowercase;
  margin-bottom: 4px;
  font-weight: 500;
}
.semana-titulo {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: var(--tight);
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--white);
}
.semana-desc {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--gray-80);
}

.curso-sidebar {
  position: sticky;
  top: 96px;
}
.curso-card {
  background: var(--white);
  color: var(--black);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--white);
}
.curso-card-eyebrow {
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--black);
  background: var(--yellow);
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 500;
}
.curso-precio {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.curso-precio .currency {
  font-size: 18px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  font-weight: 400;
}
.curso-precio-label {
  font-size: 13px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  margin-bottom: 24px;
}
.curso-fechas {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 20px 0;
  margin: 24px 0;
}
.curso-fechas-label {
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-40);
  margin-bottom: 12px;
  font-weight: 500;
}
.curso-fechas-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.curso-fechas-lista li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  letter-spacing: var(--tight-soft);
}
.curso-fechas-lista .dia {
  font-weight: 600;
}
.curso-fechas-lista .hora {
  color: var(--gray-40);
  font-size: 12px;
}
.curso-fechas-foot {
  font-size: 11px;
  color: var(--gray-60);
  letter-spacing: var(--tight-soft);
}
.curso-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.curso-features li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--black);
}
.curso-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 8px;
  top: 5px;
}
.curso-inhouse {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--gray-40);
  padding: 16px;
  background: var(--gray-95);
  border-left: 3px solid var(--yellow);
  margin-bottom: 8px;
}
.curso-card .btn-oro,
.curso-card .btn-outline-oro {
  width: 100%;
}
.curso-card .btn-outline-oro {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.curso-card .btn-outline-oro:hover { background: var(--black); color: var(--yellow); }

/* ============================================
   FORMATOS / EVENTOS
   ============================================ */
.formatos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--black);
  margin: 0 var(--sec-pad-x);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.formato {
  padding: clamp(32px, 4vw, 48px);
  border-right: 1px solid var(--black);
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
}
.formato:last-child { border-right: none; }
.formato-destacado {
  background: var(--black);
  color: var(--white);
}
.formato-badge {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  letter-spacing: var(--tight-soft);
  padding: 6px 12px;
  font-weight: 600;
}
.formato-tag {
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  margin-bottom: 16px;
  font-weight: 500;
}
.formato-destacado .formato-tag { color: var(--yellow); }
.formato-nombre {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 1;
  margin-bottom: 8px;
}
.formato-duracion {
  font-size: 12px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  margin-bottom: 24px;
}
.formato-destacado .formato-duracion { color: var(--gray-80); }
.formato-puntos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.formato-puntos li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
}
.formato-puntos li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 8px;
  top: 5px;
}
.formato-precio {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.formato-precio .currency {
  font-size: 14px;
  color: var(--gray-60);
  font-weight: 400;
}
.formato-destacado .formato-precio .currency { color: var(--yellow); }
.formato-precio-label {
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
}

.eventos-cta {
  max-width: var(--container);
  margin: 64px auto 0;
  padding: 32px var(--sec-pad-x);
  border: 1px solid var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--gray-95);
}
.eventos-cta-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 1;
}
.eventos-cta-text em {
  font-family: var(--font-italic);
  font-style: italic;
}
.eventos-cta-sub {
  font-size: 13px;
  color: var(--gray-40);
  margin-top: 6px;
  letter-spacing: var(--tight-soft);
}

/* ============================================
   EMPRESAS
   ============================================ */
.etapas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--white);
  margin-bottom: 64px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.etapas + * { margin-top: 64px; }
.etapa {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--white);
}
.etapa:last-child { border-right: none; }
.etapa-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tight-soft);
  color: var(--yellow);
  margin-bottom: 24px;
  display: inline-block;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 4px;
}
.etapa-titulo {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: var(--tight);
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}
.etapa-desc {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--gray-80);
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--white);
  max-width: var(--container);
  margin: 0 auto;
}
.paquete {
  border-right: 1px solid var(--white);
  background: var(--black);
}
.paquete:last-child { border-right: none; }
.paquete-destacado {
  background: var(--yellow);
  color: var(--black);
}
.paquete-badge-top {
  background: var(--black);
  color: var(--yellow);
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: var(--tight-soft);
  font-weight: 600;
  display: inline-block;
}
.paquete-inner {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.paquete-nombre {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: var(--tight);
  line-height: 1;
  margin-bottom: 16px;
}
.paquete-descripcion {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--gray-80);
  margin-bottom: 24px;
}
.paquete-destacado .paquete-descripcion { color: var(--gray-20); }
.paquete-precio {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.paquete-precio .desde {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  margin-right: 4px;
}
.paquete-destacado .paquete-precio .desde { color: var(--gray-40); }
.paquete-precio .currency {
  font-size: 14px;
  color: var(--yellow);
  font-weight: 400;
}
.paquete-destacado .paquete-precio .currency { color: var(--black); }
.paquete-precio-label {
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  margin-bottom: 24px;
}
.paquete-destacado .paquete-precio-label { color: var(--gray-40); }
.paquete-puntos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.paquete-puntos li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--gray-80);
}
.paquete-destacado .paquete-puntos li { color: var(--black); }
.paquete-puntos li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 8px;
  top: 5px;
}
.paquete-destacado .paquete-puntos li::before { color: var(--black); }

.empresas-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--white);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.empresas-card {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--white);
}
.empresas-card:last-child { border-right: none; }
.empresas-card-eyebrow {
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--yellow);
  margin-bottom: 16px;
  font-weight: 500;
}
.empresas-card h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: var(--tight);
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--white);
}
.empresas-card p {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--gray-80);
}

/* ============================================
   ACERCA
   ============================================ */
.acerca-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sec-pad-x);
}
.acerca-foto {
  position: relative;
  background: var(--black);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.acerca-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.acerca-foto-meta {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: var(--tight-soft);
  color: var(--white);
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.acerca-bio {
  margin: 24px 0;
}
.acerca-bio p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  letter-spacing: var(--tight-soft);
  margin-bottom: 16px;
}
.acerca-bio strong {
  background: var(--yellow);
  padding: 0 4px;
  font-weight: 500;
}
.acerca-pull {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 1.1;
  padding: 24px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  margin: 32px 0;
}
.credenciales-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--black);
}
.credenciales-label:first-of-type { margin-top: 16px; }
.credenciales {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--black);
  gap: 0;
  margin-bottom: 8px;
}
.credenciales-metodos .credencial:nth-last-child(1) {
  grid-column: 1 / -1;
  border-right: none;
}
.credencial {
  padding: 20px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.credencial:nth-child(2n) { border-right: none; }
.credencial:nth-last-child(-n+2) { border-bottom: none; }
.credencial-empresa {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: var(--tight-soft);
  color: var(--black);
}
.credencial-desc {
  font-size: 12px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-40);
  line-height: 1.3;
}

/* ============================================
   PRUEBA
   ============================================ */
#prueba {
  background: var(--white);
  padding: 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.prueba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--black);
}
.prueba-item {
  padding: clamp(36px, 4vw, 56px) clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--black);
}
.prueba-item:last-child { border-right: none; }
.prueba-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 1;
  margin-bottom: 12px;
}
.prueba-num em {
  font-family: var(--font-italic);
  font-style: italic;
  background: var(--yellow);
  padding: 0 6px;
}
.prueba-label {
  font-size: 12px;
  letter-spacing: var(--tight-soft);
  line-height: 1.3;
  color: var(--black);
}

.clientes {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px var(--sec-pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.clientes-label {
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  text-transform: uppercase;
  font-weight: 600;
}
.cliente-tag {
  font-size: 14px;
  letter-spacing: var(--tight-soft);
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--black);
  border-radius: 100px;
}

/* ============================================
   CTA FINAL
   ============================================ */
#contacto {
  background: var(--black);
  color: var(--white);
  padding: var(--sec-pad-y) var(--sec-pad-x);
  text-align: left;
}
#contacto .container {
  text-align: left;
  max-width: var(--container);
}
.contacto-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  background: var(--yellow);
  color: var(--black);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-weight: 500;
}
.contacto-titulo {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 400;
  letter-spacing: var(--tight);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 32px;
}
.contacto-titulo em {
  font-family: var(--font-italic);
  font-style: italic;
  background: var(--yellow);
  color: var(--black);
  padding: 0 14px;
  display: inline-block;
}
.contacto-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.4;
  letter-spacing: var(--tight-soft);
  color: var(--gray-80);
  max-width: 640px;
  margin-bottom: 40px;
}
.contacto-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.contacto-cta-btn {
  background: var(--yellow);
  color: var(--black);
  padding: 20px 36px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--tight-soft);
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contacto-cta-btn::after { content: '→'; }
.contacto-cta-btn:hover { background: var(--white); }
.contacto-cta-alt {
  background: transparent;
  color: var(--white);
  padding: 19px 36px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--tight-soft);
  border: 1px solid var(--white);
  transition: all 0.15s;
}
.contacto-cta-alt:hover { background: var(--white); color: var(--black); }
.contacto-email {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: var(--tight-soft);
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 2px;
  display: inline-block;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--gray-40);
  padding: clamp(48px, 6vw, 72px) var(--sec-pad-x) 24px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: var(--tight-soft);
  margin-bottom: 12px;
  color: var(--white);
}
.footer-brand .ia {
  background: var(--yellow);
  color: var(--black);
  padding: 0 6px;
  font-weight: 700;
}
  font-weight: 600;
  letter-spacing: var(--tight);
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--gray-80);
  letter-spacing: var(--tight-soft);
  max-width: 280px;
  line-height: 1.4;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--yellow);
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 13px;
  color: var(--gray-80);
  letter-spacing: var(--tight-soft);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--gray-40);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: var(--tight-soft);
  color: var(--gray-60);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--black); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid var(--gray-40); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-row { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo-frame { max-width: 280px; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badge { border-right: none; border-bottom: 1px solid var(--black); }
  .hero-badge:last-child { border-bottom: none; }
  .problema-grid, .acerca-grid { grid-template-columns: 1fr; }
  .tres-puertas, .formatos-grid, .paquetes-grid { grid-template-columns: 1fr; }
  .puerta, .formato, .paquete { border-right: none; border-bottom: 1px solid var(--black); }
  .paquete { border-bottom-color: var(--white); }
  .puerta:last-child, .formato:last-child, .paquete:last-child { border-bottom: none; }
  .curso-grid { grid-template-columns: 1fr; }
  .curso-sidebar { position: static; }
  .etapas { grid-template-columns: repeat(2, 1fr); }
  .etapa:nth-child(2) { border-right: none; }
  .etapa:nth-child(1), .etapa:nth-child(2) { border-bottom: 1px solid var(--white); }
  .empresas-extras { grid-template-columns: 1fr; }
  .empresas-card { border-right: none; border-bottom: 1px solid var(--white); }
  .empresas-card:last-child { border-bottom: none; }
  .prueba-grid { grid-template-columns: repeat(2, 1fr); }
  .prueba-item:nth-child(2) { border-right: none; }
  .prueba-item:nth-child(1), .prueba-item:nth-child(2) { border-bottom: 1px solid var(--black); }
  .credenciales { grid-template-columns: 1fr; }
  .credencial { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .semana { grid-template-columns: 1fr; gap: 12px; }
  .semana-num { flex-direction: row; align-items: baseline; gap: 12px; }
}

/* ===== RECURSOS ===== */
#recursos {
  padding: 120px 0;
  background: var(--cream);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.recursos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--black);
  margin-top: 56px;
}
.recurso {
  padding: 36px 32px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  transition: background 0.25s ease;
}
.recurso:hover { background: var(--cream); }
.recurso:nth-child(2n) { border-right: none; }
.recurso:nth-last-child(-n+2) { border-bottom: none; }
.recurso-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.7;
  margin: 0;
}
.recurso-titulo {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: var(--tight-soft);
  margin: 0;
  text-wrap: pretty;
}
.recurso-titulo em { font-style: italic; }
.recurso-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--black);
  opacity: 0.78;
  margin: 0;
  text-wrap: pretty;
}
.recurso-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.recurso-link:hover { opacity: 0.6; }

.recursos-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--black);
  border-top: none;
  margin-top: 0;
}
.recurso-extra {
  padding: 28px 32px;
  border-right: 1px solid var(--black);
  background: transparent;
}
.recurso-extra:last-child { border-right: none; }
.recurso-extra-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 8px;
  opacity: 0.6;
}
.recurso-extra-titulo {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px;
}
.recurso-extra-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.75;
}

.newsletter {
  margin-top: 64px;
  padding: 56px 48px;
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: 0.7;
}
.newsletter-titulo {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  letter-spacing: var(--tight-hard);
  margin: 0 0 16px;
  text-wrap: balance;
}
.newsletter-desc {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.78;
  max-width: 48ch;
}
.newsletter-form { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.newsletter-btn {
  display: inline-block;
  padding: 18px 32px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--white);
  transition: background 0.2s ease, color 0.2s ease;
}
.newsletter-btn:hover { background: transparent; color: var(--white); }
.newsletter-fineprint {
  font-size: 12px;
  margin: 0;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .recursos-grid { grid-template-columns: 1fr; }
  .recurso { border-right: none; border-bottom: 1px solid var(--black); }
  .recurso:last-child { border-bottom: none; }
  .recursos-extras { grid-template-columns: 1fr; }
  .recurso-extra { border-right: none; border-bottom: 1px solid var(--black); }
  .recurso-extra:last-child { border-bottom: none; }
  .newsletter { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .prueba-grid { grid-template-columns: 1fr; }
  .prueba-item { border-right: none; border-bottom: 1px solid var(--black); }
  .prueba-item:last-child { border-bottom: none; }
  .hero-tagline { font-size: clamp(40px, 13vw, 64px); }
}

/* ── Newsletter form (producción) ── */
.nl-form { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.nl-label { font: 500 12px/1 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft, #555); }
.nl-form input[type="email"] {
  width: 100%; padding: 14px 16px; border: 1px solid var(--black, #0b0b0b);
  background: #fff; font: 400 16px/1.2 'Inter', sans-serif; color: var(--black, #0b0b0b);
  border-radius: 0; outline: none;
}
.nl-form input[type="email"]:focus { box-shadow: 0 0 0 3px var(--yellow, #FFD700); }
.nl-form .newsletter-btn {
  display: inline-block; padding: 14px 22px; background: var(--black, #0b0b0b); color: #fff;
  border: none; cursor: pointer; font: 600 14px/1 'Inter', sans-serif; letter-spacing: 0.04em;
  text-transform: uppercase; transition: background .2s;
}
.nl-form .newsletter-btn:hover { background: var(--yellow, #FFD700); color: var(--black, #0b0b0b); }
.newsletter-btn--lg {
  display: inline-block; padding: 18px 28px; background: var(--yellow, #FFC000); color: var(--black, #0b0b0b);
  font: 600 15px/1 'Inter', sans-serif; letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid var(--black, #0b0b0b); text-decoration: none; transition: background .2s, color .2s;
}
.newsletter-btn--lg:hover { background: var(--black, #0b0b0b); color: var(--yellow, #FFC000); }
.nl-consent { display: flex; gap: 8px; align-items: flex-start; font: 400 13px/1.4 'Inter', sans-serif; color: var(--ink-soft, #555); }
.nl-consent input { margin-top: 3px; flex: 0 0 auto; }
.nl-consent a { color: inherit; text-decoration: underline; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  background: #0b0b0b; color: #fff; padding: 18px 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transform: translateY(20px); opacity: 0; transition: transform .3s ease, opacity .3s ease;
  font: 400 14px/1.5 'Inter', sans-serif;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner a { color: var(--yellow, #FFD700); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { padding: 10px 18px; border: 1px solid #fff; background: transparent; color: #fff; cursor: pointer; font: 600 13px/1 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
.cookie-btn--primary { background: var(--yellow, #FFD700); color: #0b0b0b; border-color: var(--yellow, #FFD700); }
.cookie-btn--primary:hover { background: #fff; border-color: #fff; }
.cookie-btn--ghost:hover { background: rgba(255,255,255,0.08); }
@media (max-width: 720px) {
  .cookie-banner { grid-template-columns: 1fr; left: 8px; right: 8px; bottom: 8px; padding: 16px; }
}

/* Print-friendly legal pages */
.legal-page { max-width: 760px; margin: 0 auto; padding: 80px 24px 120px; font: 400 16px/1.7 'Inter', sans-serif; color: var(--black, #0b0b0b); }
.legal-page h1 { font: 400 clamp(32px, 5vw, 48px)/1.1 'Fraunces', serif; margin: 0 0 8px; }
.legal-page .legal-meta { color: var(--ink-soft, #666); font-size: 13px; margin-bottom: 40px; }
.legal-page h2 { font: 500 22px/1.2 'Fraunces', serif; margin: 40px 0 12px; }
.legal-page p, .legal-page li { color: #1a1a1a; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--black, #0b0b0b); text-decoration: underline; }
.legal-back { display: inline-block; margin-top: 40px; font: 600 13px/1 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }

