/* ==========================================================================
   NORTE — Consultoría estratégica
   Editorial design system
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --bg:        #EFE7D4;   /* warm paper */
  --bg-2:      #E6DCC4;   /* paper deeper */
  --bg-3:      #DCD0B4;   /* paper deeper still */
  --ink:       #14110E;   /* deep ink */
  --ink-2:     #2A241E;   /* soft ink */
  --paper:     #F5F0E1;   /* light text on dark */
  --line:      rgba(20, 17, 14, 0.18);
  --line-2:    rgba(20, 17, 14, 0.10);
  --line-on-dark: rgba(245, 240, 225, 0.22);
  --accent:    #D2451E;   /* terracotta */
  --accent-2:  #B03312;   /* terracotta deep */
  --gold:      #C49E4A;
  --green:     #3D5A40;
  --blue:      #2A4365;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter Tight', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Scale */
  --step--2: clamp(0.7rem, 0.66rem + 0.2vw, 0.78rem);
  --step--1: clamp(0.78rem, 0.74rem + 0.22vw, 0.88rem);
  --step-0:  clamp(0.94rem, 0.88rem + 0.3vw, 1.06rem);
  --step-1:  clamp(1.12rem, 1.04rem + 0.45vw, 1.32rem);
  --step-2:  clamp(1.35rem, 1.22rem + 0.7vw, 1.65rem);
  --step-3:  clamp(1.7rem, 1.45rem + 1.2vw, 2.2rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.2vw, 3rem);
  --step-5:  clamp(3rem, 2rem + 4vw, 5rem);
  --step-6:  clamp(3.6rem, 2rem + 7vw, 8.5rem);
  --step-7:  clamp(4.4rem, 2rem + 11vw, 12rem);

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;
  --space-8: 14rem;

  --gutter: clamp(1.25rem, 0.8rem + 2.4vw, 2.5rem);
  --max-w:  1480px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px), (pointer: coarse) {
  body { cursor: auto; }
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; background: transparent; border: 0; outline: 0; }
::selection { background: var(--accent); color: var(--paper); }

/* Subtle film grain on the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Type ---------- */
.mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.02em; text-transform: lowercase; font-weight: 400; }

em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0 var(--gutter);
  margin-bottom: var(--space-4);
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}
.section-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--ink-2);
}
.section-meta {
  color: var(--ink-2);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-size: var(--step-5);
  line-height: 0.96;
  letter-spacing: -0.025em;
  padding: 0 var(--gutter);
  margin-bottom: var(--space-6);
  max-width: 24ch;
}
.section-title em {
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.section-title-wrap {
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}
.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.3s;
}
.cursor__text {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #fff;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.cursor.is-hover .cursor__ring {
  transform: translate(-50%, -50%) scale(1.6);
  border-color: rgba(255,255,255,0.9);
}
.cursor.is-hover .cursor__dot {
  width: 0; height: 0;
}
.cursor.is-hover.is-text .cursor__text {
  transform: translate(-50%, -50%) scale(1);
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 0.9s cubic-bezier(.8,.05,.2,1);
  clip-path: inset(0 0 0 0);
}
.loader.is-done {
  clip-path: inset(0 0 100% 0);
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loader__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  line-height: 1;
}
.loader__bar {
  width: 220px;
  height: 1px;
  background: rgba(245, 240, 225, 0.2);
  position: relative;
  overflow: hidden;
}
.loader__bar-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--paper);
  transition: right 0.2s linear;
}
.loader__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem var(--gutter);
  transition: background-color 0.4s, color 0.4s, padding 0.3s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(239, 231, 212, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.header[data-theme="dark"] {
  color: var(--paper);
}
.header[data-theme="dark"].is-stuck {
  background: rgba(20, 17, 14, 0.86);
  border-bottom-color: var(--line-on-dark);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 30;
}
.header__brand sup {
  font-size: 0.55em;
  color: var(--accent);
  margin-left: -0.2em;
}
.header__mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  gap: 1.6rem;
  justify-self: start;
  padding-left: 2.2rem;
}
.header__nav a {
  font-size: 0.86rem;
  font-weight: 400;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  position: relative;
  transition: color 0.3s;
}
.header__nav a span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right 0.4s cubic-bezier(.2,.8,.2,1);
}
.header__nav a:hover::after { right: 0; }

.header__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.header__dot { font-size: 0.5rem; color: var(--accent); animation: pulse 2s infinite; }
.header__time { color: var(--ink-2); }
.header[data-theme="dark"] .header__time { color: var(--paper); opacity: 0.7; }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 0.86rem;
  transition: background-color 0.3s, color 0.3s;
  will-change: transform;
}
.header__cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.header[data-theme="dark"] .header__cta:hover {
  background: var(--paper);
  color: var(--ink);
}
.header__cta-arrow { transition: transform 0.4s; }
.header__cta:hover .header__cta-arrow { transform: translateX(4px); }

.header__menu {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__menu span {
  width: 22px;
  height: 1px;
  background: currentColor;
  display: block;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s, transform 0.4s;
  position: relative;
  will-change: transform;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--accent);
}
.btn--primary svg { width: 16px; height: 16px; transition: transform 0.4s; }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--bg-2);
}

.btn--link {
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.3rem;
}
.btn--link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.btn--text {
  background: transparent;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--text:hover { color: var(--accent); border-bottom-color: var(--accent); }

.btn--xl {
  padding: 1.2rem 2rem;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  padding: 6rem var(--gutter) 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 6rem var(--gutter) 0;
  background-image:
    linear-gradient(to right, var(--line-2) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-2) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  opacity: 0.5;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}
.hero__meta-row--right { text-align: right; }

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow-bullet {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-size: var(--step-7);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 3rem;
  max-width: 14ch;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: heroRise 1.2s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__title .line:nth-child(1) .word { animation-delay: 0.6s; }
.hero__title .line:nth-child(2) .word { animation-delay: 0.75s; }
.hero__italic {
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--accent);
  font-weight: 380;
}

@keyframes heroRise {
  to { transform: translateY(0); }
}

.hero__sub-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: end;
  max-width: 1100px;
}
.hero__sub {
  font-size: var(--step-2);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink);
  max-width: 36ch;
}
.hero__dash { color: var(--accent); margin: 0 0.3em; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Hero marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
  margin: 0 calc(-1 * var(--gutter));
}
.marquee--hero {
  margin-top: 2rem;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink-2);
}
.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee__track--reverse {
  animation-direction: reverse;
  animation-duration: 60s;
}
.marquee--hero .marquee__track {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 350;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.01em;
}
.marquee--hero .marquee__track span {
  padding-right: 0.8em;
}
.marquee--clients .marquee__track {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 320;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.015em;
  align-items: center;
}
.marquee__logo {
  padding: 0 1.6rem;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid var(--line);
}
.marquee__logo em {
  font-size: 0.65em;
  font-variation-settings: "opsz" 30, "SOFT" 100, "WONK" 1;
  color: var(--accent);
  margin-right: 0.3em;
  font-style: italic;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 320;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-block;
}
.stat__num-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
}
.stat__plus {
  font-family: var(--font-display);
  font-size: 0.6em;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: var(--ink-2);
  max-width: 22ch;
}
.stat--accent .stat__num { color: var(--accent); }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30px;
  background: var(--accent);
  animation: scrollLine 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ---------- Generic sections ---------- */
section {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}
section + section { border-top: 1px solid var(--line); padding-top: var(--space-6); }

/* ---------- Manifesto ---------- */
.manifesto {
  display: block;
  padding-left: 0;
  padding-right: 0;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  padding: 0 var(--gutter);
  margin-top: var(--space-3);
}
.manifesto__lead {
  font-family: var(--font-display);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: var(--step-5);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.manifesto__lead p { margin-bottom: 0.5em; }
.manifesto__lead em { font-style: italic; font-weight: 380; font-variation-settings: "SOFT" 100, "WONK" 1; }

.manifesto__body {
  font-size: var(--step-1);
  line-height: 1.6;
  max-width: 42ch;
}
.manifesto__body p { margin-bottom: 1.4em; }

.manifesto__quote {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.25;
  font-weight: 340;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-style: italic;
  color: var(--ink);
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  letter-spacing: -0.015em;
}
.manifesto__quote em { color: var(--ink); }
.quote-mark {
  font-family: var(--font-display);
  color: var(--accent);
  font-style: normal;
  margin-right: 0.05em;
}
.quote-mark--close { margin-left: 0.05em; margin-right: 0; }
.manifesto__sign {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-2);
  margin-top: 1.5rem !important;
}

.manifesto__strike {
  position: relative;
  color: var(--ink-2);
}
.manifesto__strike::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 55%;
  height: 1.5px;
  background: var(--accent);
  transform: rotate(-3deg);
}

/* ---------- Bento (Servicios) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0 var(--gutter);
  padding: 1px;
}
.bento__item {
  background: var(--bg);
  padding: 2.4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  min-width: 0;
  transition: background-color 0.5s;
}
.bento__item--strategy { grid-column: span 7; background: var(--ink); color: var(--paper); }
.bento__item--intel    { grid-column: span 5; }
.bento__item--digital  { grid-column: span 5; background: var(--bg-2); }
.bento__item--green    { grid-column: span 4; }
.bento__item--academy  { grid-column: span 3; background: var(--ink); color: var(--paper); }
.bento__item--cta      {
  grid-column: span 12;
  background: var(--accent);
  color: var(--paper);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem var(--gutter);
  min-height: auto;
}

.bento__item--strategy .bento__num,
.bento__item--strategy .bento__tag { color: var(--paper); opacity: 0.6; }
.bento__item--academy  .bento__num,
.bento__item--academy  .bento__tag { color: var(--paper); opacity: 0.6; }
.bento__item--cta .bento__cta-eyebrow { color: var(--paper); opacity: 0.6; }

.bento__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
.bento__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.bento__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-2);
}

.bento__title {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: var(--step-4);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.bento__desc {
  font-size: var(--step-1);
  line-height: 1.4;
  margin-bottom: 1.8rem;
  max-width: 32ch;
}
.bento__list {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid currentColor;
  opacity: 0.85;
}
.bento__list li {
  padding: 0.35rem 0;
  display: flex;
  gap: 0.6rem;
}
.bento__list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
}
.bento__item--strategy .bento__list li::before,
.bento__item--academy  .bento__list li::before {
  color: var(--accent);
}

.bento__visual {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 240px;
  height: 240px;
  opacity: 0.18;
  pointer-events: none;
  color: var(--paper);
}
.bento__item--green .bento__visual { color: var(--green); opacity: 0.3; }
.bento__visual svg { width: 100%; height: 100%; }

.bento__cta-eyebrow { margin-bottom: 0.8rem; }
.bento__cta-title {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: var(--step-4);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.bento__cta-title em { color: var(--paper); }
.bento__item--cta .btn--link {
  border-color: var(--paper);
  color: var(--paper);
  flex-shrink: 0;
}
.bento__item--cta .btn--link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ---------- Método ---------- */
.metodo__intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding: 0 var(--gutter);
  margin-bottom: var(--space-6);
  align-items: end;
}
.metodo__intro .section-title { padding: 0; margin-bottom: 0; max-width: 18ch; }
.metodo__lede {
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 42ch;
  color: var(--ink-2);
}

.metodo__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding: 0 var(--gutter);
}
.metodo__step {
  padding: 2.5rem 1.5rem 2.5rem 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.metodo__step:last-child { border-right: 0; padding-right: 0; }
.metodo__step:not(:first-child) { padding-left: 1.5rem; }
.metodo__step-num {
  font-family: var(--font-display);
  font-size: var(--step-6);
  font-weight: 280;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.metodo__step-body h3 {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 380;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.metodo__step-body p {
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 32ch;
}
.metodo__step-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-2);
  margin-top: auto;
}

/* ---------- Proyectos ---------- */
.projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0 var(--gutter) var(--space-5);
  padding: 1px;
}
.project {
  background: var(--bg);
  padding: 2.4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: background-color 0.4s;
  min-height: 420px;
}
.project:hover { background: var(--bg-2); }
.project:nth-child(1) { grid-column: span 7; }
.project:nth-child(2) { grid-column: span 5; }
.project:nth-child(3) { grid-column: span 5; }
.project:nth-child(4) { grid-column: span 12; background: var(--ink); color: var(--paper); min-height: auto; padding: 3rem; flex-direction: row; align-items: center; gap: 3rem; flex-wrap: wrap; }
.project:nth-child(4) .project__title { max-width: 24ch; }
.project:nth-child(4) .project__desc { color: rgba(245,240,225,0.7); }

.project__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  opacity: 0.7;
}
.project:nth-child(4) .project__num { color: var(--paper); opacity: 0.5; }

.project__meta {
  display: flex;
  gap: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-2);
}
.project__cat { color: var(--accent); }
.project:nth-child(4) .project__meta { color: var(--paper); opacity: 0.6; }
.project:nth-child(4) .project__cat { color: var(--accent); }

.project__title {
  font-family: var(--font-display);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  font-size: var(--step-4);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-top: auto;
  max-width: 22ch;
}
.project__title em { font-weight: 380; font-variation-settings: "SOFT" 100, "WONK" 1; }
.project:nth-child(4) .project__title { font-size: var(--step-5); }

.project__desc {
  font-size: var(--step-0);
  line-height: 1.55;
  max-width: 42ch;
  color: var(--ink-2);
}

.project__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.project:nth-child(4) .project__foot { border-top-color: rgba(245,240,225,0.2); }
.project__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.project__tags span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  padding: 0.3rem 0.6rem;
  border: 1px solid currentColor;
  border-radius: 100px;
  opacity: 0.7;
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s, border-color 0.3s;
}
.project__link svg { width: 14px; height: 14px; transition: transform 0.4s; }
.project__link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.project__link:hover svg { transform: translate(2px, -2px); }

.proyectos .btn--text { margin: 0 var(--gutter); }

/* ---------- Strip (big number) ---------- */
.strip {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  padding: var(--space-7) var(--gutter);
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(210,69,30,0.25), transparent 50%);
  pointer-events: none;
}
.strip__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.strip__col { display: flex; flex-direction: column; gap: 2rem; }
.strip__col--main { align-items: center; text-align: center; }
.strip__label { color: var(--paper); opacity: 0.6; }

.strip__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}
.strip__number--sm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.strip__num {
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 16rem);
  font-weight: 220;
  font-variation-settings: "opsz" 144;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--accent);
}
.strip__pct {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.strip__num-small {
  font-family: var(--font-display);
  font-size: 0.5em;
  color: var(--paper);
  opacity: 0.5;
  vertical-align: top;
}
.strip__caption {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 20ch;
  font-weight: 380;
}
.strip__caption em { color: var(--accent); }

/* ---------- Insights ---------- */
.insights__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0 var(--gutter) var(--space-5);
  padding: 1px;
}
.insight {
  background: var(--bg);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 360px;
  transition: background-color 0.4s;
}
.insight:hover { background: var(--bg-2); }
.insight--featured { grid-column: span 6; background: var(--bg-2); }
.insight:not(.insight--featured):not(.insight--wide) { grid-column: span 3; }
.insight--wide { grid-column: 1 / -1; background: var(--bg-2); padding: 2.4rem 3rem; }
.insight--wide__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
  gap: 2rem;
}
.insight--wide__head .insight__meta {
  border-top: 0;
  padding-top: 0;
  gap: 1.5rem;
}
.insight--wide__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: end;
}
.insight--wide .insight__title { font-size: var(--step-5); margin-top: 0; max-width: 18ch; }
.insight--wide .insight__excerpt { font-size: var(--step-1); margin-bottom: 1.5rem; max-width: 36ch; }
.insight--wide__side { display: flex; flex-direction: column; }
.insight--wide > * { min-width: 0; }

.insight__cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--accent);
}
.insight__title {
  font-family: var(--font-display);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  font-size: var(--step-3);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: auto;
}
.insight--featured .insight__title { font-size: var(--step-4); }
.insight__title em { font-weight: 380; font-variation-settings: "SOFT" 100, "WONK" 1; }
.insight__excerpt {
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--ink-2);
}
.insight--featured .insight__excerpt {
  font-size: var(--step-1);
  max-width: 48ch;
}
.insight__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-2);
}
.insight__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.2rem;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}
.insight__link:hover { color: var(--accent); border-bottom-color: var(--accent); }

.insights .btn--text { margin: 0 var(--gutter); }

/* ---------- Eventos ---------- */
.eventos__list {
  border-top: 1px solid var(--line);
  margin: 0 var(--gutter);
}
.evento {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background-color 0.4s;
}
.evento:hover { background: var(--bg-2); }
.evento:hover { padding-left: 1rem; padding-right: 1rem; }

.evento__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}
.evento__day {
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 280;
  font-variation-settings: "opsz" 144;
  line-height: 0.85;
  letter-spacing: -0.03em;
}
.evento__month {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.evento__body { max-width: 64ch; }
.evento__tag { color: var(--accent); }
.evento__title {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 380;
  font-variation-settings: "opsz" 144;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0.8rem;
}
.evento__desc {
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 1rem;
  max-width: 60ch;
}
.evento__foot {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-2);
}
.evento__status { color: var(--accent); }

.evento__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
}
.evento__cta:hover { background: var(--ink); color: var(--paper); }

/* ---------- Conocimiento ---------- */
.conocimiento__wrap {
  display: grid;
  grid-template-columns: 5fr 12fr;
  gap: 4rem;
  padding: 0 var(--gutter);
  margin-top: var(--space-3);
}
.conocimiento__intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}
.conocimiento__intro .section-title { padding: 0; margin-bottom: 1.5rem; }
.conocimiento__lede {
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 36ch;
  color: var(--ink-2);
}

.conocimiento__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.pub {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.pub:last-child { border-bottom: 0; }

.pub__cover {
  aspect-ratio: 3 / 4;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  font-family: var(--font-display);
  color: var(--paper);
  overflow: hidden;
  border: 1px solid var(--ink);
}
.pub__cover--a { background: var(--ink); }
.pub__cover--b { background: var(--accent); }
.pub__cover--c { background: var(--green); }
.pub__cover--d { background: var(--gold); color: var(--ink); }
.pub__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 100%;
  pointer-events: none;
}
.pub__cover-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  position: relative;
  z-index: 2;
}
.pub__cover-title {
  font-size: var(--step-3);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.pub__cover-year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  position: relative;
  z-index: 2;
}

.pub__body { padding-top: 0.5rem; }
.pub__tag { color: var(--accent); display: block; margin-bottom: 1rem; }
.pub__title {
  font-family: var(--font-display);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  font-size: var(--step-3);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.pub__desc {
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
  max-width: 50ch;
}
.pub__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s, border-color 0.3s;
}
.pub__link:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---------- Clientes ---------- */
.clientes__intro {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 50ch;
  padding: 0 var(--gutter);
  margin-bottom: var(--space-4);
}
.clientes__intro em { font-weight: 380; font-variation-settings: "SOFT" 100, "WONK" 1; }

.marquee--clients {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee--clients + .marquee--clients {
  border-top: 0;
  background: var(--ink);
  color: var(--paper);
}
.marquee--clients + .marquee--clients .marquee__logo {
  border-right-color: rgba(245,240,225,0.18);
}

/* ---------- Contacto ---------- */
.contacto__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  padding: 0 var(--gutter);
  align-items: start;
}
.contacto__title {
  font-family: var(--font-display);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: var(--step-6);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.contacto__title em {
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.contacto__lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 36ch;
  margin-bottom: 3rem;
}
.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: var(--step-1);
  margin-bottom: 3rem;
  max-width: 36ch;
}
.contacto__info li { display: flex; flex-direction: column; gap: 0.3rem; }
.contacto__info-label { color: var(--ink-2); display: block; margin-bottom: 0.2rem; }
.contacto__info a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}
.contacto__info a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.contacto__presence {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
}
.contacto__dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  animation: pulse 2s infinite;
}
.contacto__presence em { color: var(--accent); font-style: italic; }

/* Form */
.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.6rem;
  transition: border-color 0.3s;
}
.form-field:focus-within { border-color: var(--accent); }
.form-field--full { grid-column: 1 / -1; }
.form-label { color: var(--ink-2); }
.form-field input,
.form-field select,
.form-field textarea {
  font-size: var(--step-1);
  font-family: var(--font-body);
  padding: 0.4rem 0;
  width: 100%;
  border: 0;
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-body);
}
.form-field select { appearance: none; padding-right: 1.5rem;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: right 0.5rem center, right 0.2rem center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field--checks { border-bottom: 0; padding-bottom: 0; }
.form-field--checks legend {
  padding-bottom: 0.8rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--ink);
  width: 100%;
}
.checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: border-color 0.3s, background-color 0.3s;
}
.check:hover { border-color: var(--ink); }
.check input { accent-color: var(--accent); width: 14px; height: 14px; }
.check:has(input:checked) { border-color: var(--accent); background: rgba(210,69,30,0.08); }

.form-foot {
  font-size: 0.7rem;
  color: var(--ink-2);
  text-align: center;
  margin-top: 0.5rem;
}
.form-foot a { border-bottom: 1px solid currentColor; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-7) var(--gutter) 0;
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line-on-dark);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 320;
  font-variation-settings: "opsz" 144;
  margin-bottom: 1rem;
}
.footer__brand svg { width: 36px; height: 36px; }
.footer__brand sup {
  color: var(--accent);
  font-size: 0.5em;
  margin-left: -0.2em;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col-title { color: var(--paper); opacity: 0.5; margin-bottom: 0.8rem; }
.footer__col a {
  font-size: 0.95rem;
  color: var(--paper);
  opacity: 0.9;
  transition: opacity 0.3s, color 0.3s;
  align-self: flex-start;
}
.footer__col a:hover { opacity: 1; color: var(--accent); }

.footer__newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer__newsletter h3 {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.footer__newsletter h3 em { color: var(--accent); }
.footer__newsletter p { color: var(--paper); opacity: 0.6; }
.footer__newsletter-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--paper);
  padding-bottom: 0.6rem;
}
.footer__newsletter-form input {
  flex: 1;
  font-size: var(--step-1);
  color: var(--paper);
  padding: 0.5rem 0;
}
.footer__newsletter-form .btn--primary {
  background: var(--paper);
  color: var(--ink);
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}
.footer__newsletter-form .btn--primary:hover { background: var(--accent); color: var(--paper); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  font-size: 0.74rem;
  color: var(--paper);
  opacity: 0.6;
  flex-wrap: wrap;
}
.footer__legal { display: flex; gap: 1rem; }
.footer__legal a { border-bottom: 1px solid currentColor; }

.footer__giant {
  font-family: var(--font-display);
  font-weight: 220;
  font-variation-settings: "opsz" 144;
  font-size: clamp(8rem, 22vw, 26rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,240,225,0.18);
  margin-top: -2rem;
  margin-bottom: -2.5rem;
  pointer-events: none;
  user-select: none;
}

/* ---------- Reveal Animations ---------- */
.reveal-up,
.reveal-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.reveal-fade { transform: translateY(8px); transition-duration: 1.6s; }
.reveal-up.is-in,
.reveal-fade.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger: apply via data-stagger on parent */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
[data-stagger].is-in > * {
  opacity: 1;
  transform: translateY(0);
}
[data-stagger].is-in > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].is-in > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: 0.3s; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: 0.4s; }
[data-stagger].is-in > *:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .header__nav { display: none; }
  .header__meta { display: none; }
  .header { grid-template-columns: 1fr auto; }
  .header__menu { display: flex; }

  .hero__sub-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { display: none; }

  .manifesto__grid { grid-template-columns: 1fr; gap: 2rem; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--strategy,
  .bento__item--intel,
  .bento__item--digital,
  .bento__item--green,
  .bento__item--academy { grid-column: 1 / -1; min-height: 280px; }
  .bento__item--cta { flex-direction: column; align-items: flex-start; }

  .metodo__intro { grid-template-columns: 1fr; gap: 2rem; }
  .metodo__steps { grid-template-columns: repeat(2, 1fr); }
  .metodo__step { border-right: 0; border-bottom: 1px solid var(--line); padding: 2rem 0; }
  .metodo__step:not(:first-child) { padding-left: 1.5rem; }
  .metodo__step:nth-child(2n) { padding-left: 1.5rem; border-right: 0; }
  .metodo__step:nth-child(2n+1) { padding-left: 0; padding-right: 1.5rem; border-right: 1px solid var(--line); }
  .metodo__step:last-child { border-bottom: 0; }

  .project:nth-child(1),
  .project:nth-child(2),
  .project:nth-child(3),
  .project:nth-child(4) { grid-column: span 12; }
  .project:nth-child(4) { flex-direction: column; align-items: flex-start; padding: 2rem; }

  .strip__inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .strip__col--main { align-items: center; }
  .strip__number--sm { align-items: center; }

  .insight--featured { grid-column: span 12; }
  .insight:not(.insight--featured) { grid-column: span 6; }

  .evento { grid-template-columns: 100px 1fr; gap: 1.5rem; }
  .evento__cta { grid-column: 1 / -1; justify-self: start; }

  .conocimiento__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .conocimiento__intro { position: static; }
  .pub { grid-template-columns: 160px 1fr; gap: 1.5rem; }

  .contacto__grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .checks { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__newsletter { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 700px) {
  :root {
    --space-7: 5rem;
    --space-6: 4rem;
  }
  section { padding-top: var(--space-6); padding-bottom: var(--space-6); }
  .section-title { font-size: var(--step-4); }

  .hero { padding-top: 7rem; }
  .hero__meta { grid-template-columns: 1fr; }
  .hero__meta-row--right { text-align: left; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .bento__item { padding: 1.8rem 1.5rem; min-height: auto; }
  .bento__item--cta { padding: 2rem 1.5rem; }
  .bento__cta-title { font-size: var(--step-3); }

  .metodo__steps { grid-template-columns: 1fr; }
  .metodo__step, .metodo__step:nth-child(2n), .metodo__step:nth-child(2n+1) {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project, .project:nth-child(4) { padding: 1.5rem; min-height: auto; }

  .insight--featured,
  .insight:not(.insight--featured) { grid-column: span 12; min-height: auto; }

  .evento { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .evento__date { flex-direction: row; gap: 1rem; align-items: baseline; padding-left: 0.8rem; }

  .pub { grid-template-columns: 1fr; }
  .pub__cover { max-width: 200px; }

  .checks { grid-template-columns: 1fr; }

  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .header__cta { display: none; }
}
