/* ============================================
   eleven® V2 — Sistema de Diseño Premium-Brutalista
   Arquitectura Digital e Innovación Comercial
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── TOKENS ── */
:root {
  /* paleta tri-color */
  --yellow: #ffcc03;
  --yellow-dark: #e6b800;
  --black: #000000;
  --gray-950: #060606;
  --gray-900: #0a0a0a;
  --gray-800: #141414;
  --gray-700: #1f1f1f;
  --gray-600: #2a2a2a;
  --gray-500: #3a3a3a;
  --gray-400: #6a6a6a;
  --gray-300: #9a9a9a;
  --gray-200: #d0d0d0;
  --gray-100: #ececec;
  --gray-50:  #f5f5f5;
  --white: #ffffff;

  /* fuentes */
  --font-head: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* radios */
  --radius-sm: 0;       /* brutalista: sin radios por defecto */
  --radius-md: 4px;
  --radius-lg: 8px;

  /* timing */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* layout */
  --container: 1320px;
  --gap: clamp(16px, 3vw, 32px);
  --section-py: clamp(80px, 11vw, 160px);
  --header-h: 76px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── SECTIONS THEMED ── */
section { padding: var(--section-py) 0; position: relative; }

.theme-dark  { background: var(--black); color: var(--white); }
.theme-light { background: var(--white); color: var(--black); }
.theme-yellow { background: var(--yellow); color: var(--black); }

.theme-light .muted { color: var(--gray-400); }
.theme-dark  .muted { color: var(--gray-300); }
.theme-yellow .muted { color: var(--gray-700); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
}
h1 { font-size: clamp(44px, 8.5vw, 124px); font-weight: 700; }
h2 { font-size: clamp(36px, 6.2vw, 88px); }
h3 { font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -0.02em; }
h4 { font-size: clamp(16px, 1.8vw, 22px); font-weight: 600; letter-spacing: -0.01em; }

p {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: inherit;
}

.theme-dark p { color: var(--gray-200); }
.theme-light p { color: var(--gray-500); }
.theme-yellow p { color: var(--gray-700); }

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  max-width: 60ch;
}

/* ── EYEBROWS / SECTION LABELS ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.theme-dark .eyebrow { color: var(--yellow); }
.theme-light .eyebrow { color: var(--black); }
.theme-yellow .eyebrow { color: var(--black); }

.eyebrow .dash {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(4px); }

/* primary: amarillo sobre cualquier fondo */
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

/* secondary on dark: outline blanco */
.theme-dark .btn-secondary,
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.theme-dark .btn-secondary:hover,
.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

/* secondary on light */
.theme-light .btn-secondary {
  color: var(--black);
  border-color: var(--black);
}
.theme-light .btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* primary on yellow bg */
.theme-yellow .btn-primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.theme-yellow .btn-primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-sm { padding: 12px 20px; font-size: 13px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-700);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo-img { height: 28px; width: auto; }

.nav-desktop {
  display: none;
  gap: 36px;
}
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-200);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a:hover { color: var(--yellow); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav-desktop a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }

.hamburger {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--black);
  padding: 32px clamp(20px, 5vw, 60px) 48px;
  border-bottom: 1px solid var(--gray-700);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-110%);
  transition: transform var(--transition-slow);
  z-index: 99;
}
.nav-mobile.active { transform: translateY(0); }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-800);
}
.nav-mobile a:hover { color: var(--yellow); }
.nav-mobile .nav-cta-mobile { margin-top: 24px; }

/* ============================================
   1. HERO  (imagen full-bleed izquierda + texto derecha)
   ============================================ */
.hero {
  padding: calc(var(--header-h) + clamp(40px, 8vw, 100px)) 0 clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-800);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,204,3,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,204,3,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  z-index: 0;
}

/* IMAGEN HERO - mitad izquierda, full alto */
.hero-image {
  display: none;
}
@media (min-width: 980px) {
  .hero-image {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 50vw;
    height: calc(100% - var(--header-h));
    background-image: url('./hero-eye.jpg');
    background-size: 140%;
    background-position: 35% center;
    background-repeat: no-repeat;
    background-color: #000;
    z-index: 1;
  }
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  min-height: clamp(420px, 72vh, 780px);
}

.hero h1 {
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 1.06;
  margin: 16px 0 28px;
}
.hero h1 .accent,
.accent {
  color: var(--yellow);
  display: inline;
}
.hero-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gray-300);
  text-transform: uppercase;
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .hero-content {
    grid-column: 2;
  }
}

/* ============================================
   2. TICKER (banda amarilla animada)
   ============================================ */
.ticker {
  background: var(--yellow);
  color: var(--black);
  padding: 22px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  font-family: var(--font-head);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.ticker-item .sep {
  font-size: 0.7em;
  opacity: 0.4;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   IMAGE PLACEHOLDER (reusable, ambos themes)
   ============================================ */
.img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background-image:
    linear-gradient(rgba(255,204,3,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,204,3,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
}
.theme-dark .img-placeholder {
  background-color: var(--gray-900);
  color: var(--gray-400);
}
.theme-light .img-placeholder {
  background-color: var(--gray-50);
  color: var(--gray-400);
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
}
.theme-yellow .img-placeholder {
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--gray-700);
  background-image:
    linear-gradient(rgba(0,0,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.07) 1px, transparent 1px);
}
.img-placeholder span {
  position: relative;
  padding: 0 16px;
}

/* ============================================
   QUOTE SECTION (cita del director · negra)
   ============================================ */
.quote-section { padding: clamp(80px, 10vw, 140px) 0; }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .quote-grid { grid-template-columns: 1.5fr 1fr; gap: 80px; }
}

.quote-block {
  position: relative;
  padding-left: 0;
}
.quote-block--solo {
  max-width: 880px;
}
.quote-mark {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 800;
  color: var(--yellow);
  line-height: 0.7;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
  user-select: none;
}
.quote-text {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
}
.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  max-width: 360px;
}
.quote-author {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: -0.01em;
}
.quote-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   ABOUT (sección blanca · manifesto)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.about-content h2 {
  color: var(--black);
  margin-bottom: 28px;
  font-size: clamp(31px, 3.74vw, 52px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.about-content .lead { color: var(--gray-500); }

.about-tagline {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--black);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-transform: uppercase;
  max-width: 56ch;
}

/* ============================================
   PILLARS (4 frases finales del método)
   ============================================ */
.pillars {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gray-800);
  border: 1px solid var(--gray-800);
}
@media (min-width: 720px)  { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pillars { grid-template-columns: repeat(4, 1fr); } }

.pillar {
  padding: 28px 24px;
  background: var(--black);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: background var(--transition);
}
.pillar:hover { background: var(--gray-900); }
.pillar::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ============================================
   SCOPE — ALCANCE (sección blanca · grid 8 items)
   ============================================ */
.scope-header {
  margin-bottom: 80px;
  max-width: 940px;
}
.scope-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.scope-header h2 {
  color: var(--black);
  margin-bottom: 24px;
}
.scope-header .lead { color: var(--gray-500); max-width: 56ch; }

.scope-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--black);
  border: 1px solid var(--black);
}
@media (min-width: 720px)  { .scope-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .scope-grid { grid-template-columns: repeat(4, 1fr); } }

.scope-item {
  padding: 36px 28px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: background var(--transition);
  cursor: default;
}
.scope-item:hover { background: var(--yellow); }

.scope-num {
  font-family: var(--font-head);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  transition: color var(--transition);
}
.scope-item:hover .scope-num { color: var(--black); }

.scope-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
}

.scope-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-top: auto;
  transition: color var(--transition);
}
.scope-item:hover .scope-desc { color: var(--gray-700); }

/* ============================================
   CONTACT (sección amarilla · cierre)
   ============================================ */
.contact-section { padding: clamp(80px, 10vw, 140px) 0; }
.contact-section h2 {
  color: var(--black);
  max-width: 18ch;
  margin-bottom: 56px;
}

.contact-data {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 56px;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
@media (min-width: 720px)  { .contact-data { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .contact-data { grid-template-columns: repeat(3, 1fr); } }

.contact-item {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
@media (min-width: 720px) {
  .contact-item { border-right: 1px solid rgba(0,0,0,0.18); border-bottom: none; padding: 28px 32px; }
  .contact-item:last-child { border-right: none; }
}
@media (max-width: 1099px) {
  .contact-item:nth-last-child(-n+1) { border-bottom: none; }
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.contact-value {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.35;
  display: block;
  text-decoration: none;
  transition: opacity var(--transition);
}
a.contact-value:hover { opacity: 0.7; }

.contact-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
}


/* ============================================
   4. MÉTODO (sección negra · 4 pasos)
   ============================================ */
.method-header { margin-bottom: 80px; }

.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-800);
}
@media (min-width: 720px) { .method-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px){ .method-grid { grid-template-columns: repeat(4, 1fr); } }

.method-step {
  padding: 40px 28px;
  border-bottom: 1px solid var(--gray-800);
  border-right: 1px solid var(--gray-800);
  position: relative;
  transition: background var(--transition);
}
.method-step:last-child { border-right: 1px solid var(--gray-800); }
.method-step:hover { background: var(--gray-900); }

@media (min-width: 1100px) {
  .method-step:nth-child(4) { border-right: none; }
}

.method-num {
  font-family: var(--font-head);
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  display: block;
}
.method-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.method-desc {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

.method-ai-note {
  margin-top: 48px;
  padding: 24px 28px;
  border: 1px solid var(--yellow);
  background: rgba(255, 204, 3, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.method-ai-note .ai-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   7. CTA AMARILLO GIGANTE (legacy, se conserva por si se reutiliza)
   ============================================ */
.cta-final {
  text-align: center;
  padding: clamp(100px, 12vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  max-width: 16ch;
  margin: 0 auto 32px;
  color: var(--black);
}
.cta-final .lead {
  margin: 0 auto 48px;
  color: var(--gray-700);
  max-width: 50ch;
}
.cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 32px;
  border-top: 1px solid var(--gray-800);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--gray-800);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 64px; }
}

.footer-brand .logo-img {
  height: 32px;
  margin-bottom: 24px;
}
.footer-brand p {
  max-width: 380px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col li a {
  font-size: 14px;
  color: var(--gray-200);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--yellow); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--gray-200);
}
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}
.footer-tagline {
  color: var(--yellow);
  font-weight: 500;
  text-transform: uppercase;
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================
   RESPONSIVE - mobile menu visibility
   ============================================ */
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
  .nav-mobile { display: none; }
}

@media (max-width: 720px) {
  .header-cta .btn { display: none; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   BRAND MARK INLINE (wordmark eleven® como SVG)
   ============================================ */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.brand-mark {
  display: inline-block;
  height: 0.78em;
  width: auto;
  aspect-ratio: 272.52 / 94.05;
  fill: currentColor;
  vertical-align: -0.08em;
  flex-shrink: 0;
}
/* En H1/H2 el lettering debe igualar la altura cap del texto que lo rodea */
h1 .brand-mark,
h2 .brand-mark { height: 0.95em; vertical-align: -0.05em; }
/* En el quote-role y eyebrow */
.quote-role .brand-mark { height: 0.95em; vertical-align: -0.18em; }
.eyebrow .brand-mark { height: 1em; vertical-align: -0.22em; }
/* Visually hidden — para SEO/screen readers donde reemplazamos texto por SVG */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   DIRECTOR CAROUSEL (sección quote)
   ============================================ */
.director-carousel {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--gray-100, #efefef);
  isolation: isolate;
}
.theme-dark .director-carousel { background: #000; }
.theme-light .director-carousel { background: var(--gray-100, #efefef); }
.director-carousel .carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 600ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.director-carousel .carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.director-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.director-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 200ms ease, opacity 200ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.director-carousel .carousel-btn:hover,
.director-carousel .carousel-btn:focus-visible {
  background: var(--yellow);
  color: var(--gray-900);
  outline: none;
}
.director-carousel .carousel-prev { left: 12px; }
.director-carousel .carousel-next { right: 12px; }
.director-carousel .carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.director-carousel .carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.director-carousel .carousel-dot:hover,
.director-carousel .carousel-dot:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  outline: none;
}
.director-carousel .carousel-dot.is-active {
  background: var(--yellow);
  transform: scale(1.3);
}
@media (hover: none) {
  .director-carousel .carousel-btn { opacity: 0.7; }
}
@media (max-width: 600px) {
  .director-carousel .carousel-btn { width: 36px; height: 36px; }
  .director-carousel .carousel-prev { left: 8px; }
  .director-carousel .carousel-next { right: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .director-carousel .carousel-track { transition: none; }
}
