/* ============================================================
   ORÓZCO & ASOCIADOS — Sistema visual contemporáneo (v2)
   Tokens + componentes compartidos
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600&family=Inter+Tight:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Color */
  --navy: #0a1428;
  --navy-2: #0f1d3a;
  --ink: #0b0f1a;
  --bone: #f5f1e8;
  --bone-2: #fbfaf6;
  --paper: #ffffff;
  --brass: #b8935a;
  --brass-deep: #9c7943;
  --brass-soft: rgba(184, 147, 90, 0.08);
  --smoke: rgba(10, 20, 40, 0.08);
  --smoke-strong: rgba(10, 20, 40, 0.14);
  --smoke-dark: rgba(255, 255, 255, 0.10);
  --smoke-dark-strong: rgba(255, 255, 255, 0.18);
  --text: #16202f;
  --text-muted: #5b6478;
  --text-soft: #8a91a0;

  /* Type */
  --display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;
  --container-prose: 680px;
  --gutter: 24px;

  /* Scale */
  --fs-hero: clamp(48px, 7vw, 96px);
  --fs-h1: clamp(40px, 5.5vw, 72px);
  --fs-h2: clamp(32px, 4.2vw, 56px);
  --fs-h3: clamp(22px, 2vw, 28px);
  --fs-lead: clamp(18px, 1.5vw, 22px);
  --fs-body: 16px;
  --fs-eye: 11px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bone-2);
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 300;
  color: var(--navy);
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-feature-settings: "ss01" on;
}
h3, h4 { font-weight: 400; line-height: 1.18; }
p { margin: 0; }
strong { font-weight: 600; color: var(--navy); }

::selection { background: var(--brass); color: var(--bone-2); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
  border-radius: 1px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* LAYOUT */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.container--prose { max-width: var(--container-prose); }

.section { padding-block: clamp(80px, 11vw, 160px); }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--bone); }
.section--bone { background: var(--bone); }
.section--paper { background: var(--paper); }

/* EYEBROW */
.eye {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--fs-eye);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section--ink .eye { color: var(--brass); }
.eye--brass { color: var(--brass); }

.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--smoke);
  border: 0;
  margin: 0;
}
.section--ink .rule { background: var(--smoke-dark); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 32px;
  border-radius: 2px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--bone-2);
  transition: background-color .28s ease, color .28s ease, border-color .28s ease;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible { background: var(--brass); border-color: var(--brass); color: var(--navy); }
.btn .arrow { font-family: var(--sans); font-size: 14px; letter-spacing: 0; transition: transform .28s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--outline { background: transparent; color: var(--navy); }
.btn--outline:hover, .btn--outline:focus-visible { background: var(--navy); color: var(--bone-2); border-color: var(--navy); }

.btn--brass {
  background: transparent;
  border-color: var(--brass);
  color: var(--brass);
}
.btn--brass:hover, .btn--brass:focus-visible { background: var(--brass); color: var(--navy); border-color: var(--brass); }

/* LINK animado */
.link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 6px;
  letter-spacing: -0.005em;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--brass);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.link:hover::after, .link:focus-visible::after { transform: scaleX(1); }
.link .arrow { transition: transform .3s ease; }
.link:hover .arrow { transform: translateX(4px); }
.section--ink .link { color: var(--bone); }

.a-inline {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
  transition: color .2s ease;
}
.a-inline:hover { color: var(--brass-deep); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--smoke);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand__dot { color: var(--brass); margin-left: 2px; }
.brand__amp { color: var(--brass); font-style: normal; padding: 0 4px; font-weight: 300; }

.nav {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px;
  width: 100%;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }
.header-cta.btn { padding: 14px 22px; font-size: 12px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--smoke-strong);
  color: var(--navy);
  border-radius: 2px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 18px; height: 18px; }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--bone-2);
  z-index: 100;
  padding: 28px var(--gutter);
  flex-direction: column;
  gap: 24px;
}
.mobile-nav[data-open="true"] { display: flex; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.mobile-nav__links a {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--smoke);
  letter-spacing: -0.02em;
}

/* BREADCRUMB */
.breadcrumb {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  padding-block: 32px 0;
}
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.breadcrumb a { color: var(--text-soft); text-decoration: none; transition: color .2s ease; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb li[aria-current="page"] { color: var(--navy); font-weight: 500; }
.breadcrumb__sep {
  display: inline-block;
  font-family: var(--mono);
  color: var(--brass);
  font-size: 13px;
}

/* HERO */
.hero { padding-block: clamp(72px, 10vw, 140px) clamp(56px, 8vw, 120px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid--split { grid-template-columns: 7fr 4fr; gap: 80px; align-items: stretch; }
}
.hero__media { max-width: 480px; width: 100%; }
@media (min-width: 1024px) { .hero__media { max-width: none; } }
.hero__copy { display: flex; flex-direction: column; justify-content: center; }
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 300;
  margin: 24px 0 32px;
  letter-spacing: -0.028em;
  text-wrap: balance;
  line-height: 0.98;
}
.hero h1 .accent { color: var(--brass); font-weight: 300; }
.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero__actions { display: flex; gap: 28px 32px; flex-wrap: wrap; align-items: center; }
.hero__media { position: relative; }
@media (min-width: 1024px) {
  .hero__media--offset { transform: translateY(40px); }
}

/* HERO compact (blog/casos/honorarios/etc) */
.hero--compact { padding-block: clamp(56px, 8vw, 96px) clamp(40px, 5vw, 64px); }
.hero--compact h1 { font-size: var(--fs-h1); margin: 16px 0 24px; }
.hero--compact .hero__lead { max-width: 60ch; margin-bottom: 0; }

/* MEDIA placeholder duotone */
.media {
  position: relative;
  width: 100%;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
  border-radius: 2px;
}
.media--portrait { aspect-ratio: 4/5; }
.media--landscape { aspect-ratio: 4/3; }
.media--wide { aspect-ratio: 16/9; }
.media--square { aspect-ratio: 1/1; }
.media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(at 30% 25%, rgba(245,241,232,0.18), transparent 55%),
    radial-gradient(at 80% 75%, rgba(184,147,90,0.22), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--ink) 100%);
}
.media::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(245,241,232,0.025) 0 1px, transparent 1px 16px);
}
.media__label {
  position: absolute;
  left: 20px; top: 18px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.45);
}
.media__caption {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 1;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(3, 1fr); gap: 48px; align-items: end; }
}
.stat { padding-top: 28px; border-top: 1px solid var(--smoke); }
.stat__num {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 300;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.stat__num sup {
  font-size: 0.28em;
  vertical-align: 1.8em;
  color: var(--brass);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.stat__label {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* MANIFIESTO */
.manifest__head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: baseline;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.manifest__body {
  max-width: 56ch;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--text);
  font-weight: 300;
  font-family: var(--display);
  letter-spacing: -0.012em;
}
.manifest__body p + p { margin-top: 1em; }
.manifest__body .accent { color: var(--brass); }
.section--ink .manifest__body { color: var(--bone); }

/* SECTION HEAD */
.s-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.s-head__lede { max-width: 38ch; margin-top: 12px; color: var(--text-muted); }
.s-head h2 {
  font-size: var(--fs-h2);
  font-weight: 300;
  margin-top: 18px;
  letter-spacing: -0.024em;
  text-wrap: balance;
}
.section--ink .s-head h2 { color: var(--bone); }
.section--ink .s-head__lede { color: rgba(245,241,232,0.6); }

/* ÁREAS */
.areas { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 64px; }
@media (min-width: 1024px) { .areas { grid-template-columns: 7fr 5fr; gap: 28px; } }
.area {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--smoke);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .3s ease, transform .3s ease;
  border-radius: 2px;
}
.area:hover { border-color: var(--brass); transform: translateY(-2px); }
.area__num {
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 300;
  color: var(--brass);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.area__head { display: flex; flex-direction: column; gap: 8px; }
.area h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  letter-spacing: -0.024em;
  margin-top: 8px;
  text-wrap: balance;
}
.area__desc { color: var(--text-muted); max-width: 50ch; }
.area__list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; }
.area__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid var(--smoke);
}
.area__list li:last-child { border-bottom: 1px solid var(--smoke); }
.area__list .dash { font-family: var(--mono); color: var(--brass); font-size: 14px; line-height: 1.6; }
.area__list .item-title { font-weight: 500; font-size: 16px; color: var(--navy); margin: 0; }
.area__list .item-desc { font-size: 14px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }
.area__foot { margin-top: 16px; }

/* SUBSERVICIOS ALTERNADOS (en área de práctica) */
.subservices { display: flex; flex-direction: column; gap: clamp(64px, 9vw, 120px); }
.subservice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .subservice { grid-template-columns: 1fr 1fr; gap: 80px; }
  .subservice--reverse > .media { order: 2; }
  .subservice--reverse > .subservice__body { order: 1; }
}
.subservice__num {
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 300;
  color: var(--brass);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.subservice__body h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.022em;
  margin: 12px 0 20px;
  text-wrap: balance;
}
.subservice__body p { color: var(--text-muted); margin-bottom: 28px; max-width: 50ch; }

/* PROCESO */
.process { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 56px; border-top: 1px solid var(--smoke-dark); }
.section--ink .process { border-top-color: var(--smoke-dark); }
@media (min-width: 900px) {
  .process { grid-template-columns: repeat(4, 1fr); border-top: 0; }
}
.process__step {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--smoke-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 900px) {
  .process__step { border-bottom: 0; border-right: 1px solid var(--smoke-dark); padding: 0 32px; }
  .process__step:first-child { padding-left: 0; }
  .process__step:last-child { border-right: 0; padding-right: 0; }
}
.process__num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.04em;
}
.process__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.process__body { color: rgba(245,241,232,0.65); font-size: 14px; line-height: 1.55; }

/* Variant: process on light bg (honorarios) */
.process--light { border-top-color: var(--smoke); }
.process--light .process__step { border-color: var(--smoke); }
.process--light .process__title { color: var(--navy); }
.process--light .process__body { color: var(--text-muted); }

/* TIMELINE vertical (subservicio, sobre) */
.timeline { position: relative; padding-left: 32px; margin: 0; padding-top: 8px; list-style: none; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 12px; bottom: 12px;
  width: 1px;
  background: var(--smoke);
}
.section--ink .timeline::before { background: var(--smoke-dark); }
.timeline__item { position: relative; padding-block: 28px; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -32px; top: 36px;
  width: 11px; height: 11px;
  background: var(--bone-2);
  border: 1px solid var(--brass);
  border-radius: 50%;
}
.timeline__year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.timeline__title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  margin: 10px 0 8px;
  color: var(--navy);
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.timeline__body { color: var(--text-muted); margin: 0; max-width: 60ch; font-size: 15px; line-height: 1.6; }

/* CASOS — card grid */
.cases { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .cases { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.case {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--smoke);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .3s ease, transform .3s ease;
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
}
.case:hover { border-color: var(--brass); transform: translateY(-3px); }
.case__ref {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.case__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.018em;
  line-height: 1.2;
  text-wrap: balance;
}
.case__result {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding: 8px 12px;
  border: 1px solid var(--brass);
  background: var(--brass-soft);
  border-radius: 2px;
  font-weight: 500;
}
.case__summary { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }
.case__footer { margin-top: auto; padding-top: 8px; }

/* CASOS — fila editorial ancha (listado /casos/) */
.case-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding-block: 56px;
  border-bottom: 1px solid var(--smoke);
}
.case-row:first-of-type { border-top: 1px solid var(--smoke); }
@media (min-width: 900px) {
  .case-row { grid-template-columns: 220px 1fr auto; gap: 64px; align-items: start; }
}
.case-row__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}
.case-row__meta strong { color: var(--brass-deep); font-weight: 500; font-size: 12px; }
.case-row__title {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 300;
  letter-spacing: -0.022em;
  margin: 0 0 16px;
  color: var(--navy);
  text-wrap: balance;
  line-height: 1.15;
}
.case-row__result {
  align-self: flex-start;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding: 8px 12px;
  border: 1px solid var(--brass);
  background: var(--brass-soft);
  border-radius: 2px;
  font-weight: 500;
  margin: 0 0 20px;
}
.case-row__summary { color: var(--text-muted); margin: 0 0 20px; max-width: 64ch; font-size: 15px; line-height: 1.6; }

/* ARTÍCULOS / BLOG */
.card-article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.card-article .media { aspect-ratio: 4/5; transition: transform .35s ease; }
.card-article:hover .media { transform: translateY(-2px); }
.card-article__cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.card-article__title {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0;
  text-wrap: balance;
  transition: color .25s ease;
}
.card-article:hover .card-article__title { color: var(--brass-deep); }
.card-article__excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }
.card-article__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  text-transform: uppercase;
}

/* PULL QUOTE */
.quote { text-align: left; }
.quote__text {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--bone);
  letter-spacing: -0.022em;
  max-width: 24ch;
  text-wrap: balance;
  margin: 0;
}
.quote__text .accent { color: var(--brass); }
.quote__cite {
  margin-top: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
}

/* ABOUT (split with image) */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .about { grid-template-columns: 5fr 6fr; gap: 88px; }
}

/* CTA BANNER */
.cta {
  background: var(--navy);
  color: var(--bone);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 64px);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .cta { grid-template-columns: 1.4fr auto; gap: 56px; }
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  color: var(--bone);
  letter-spacing: -0.022em;
  line-height: 1.1;
  text-wrap: balance;
  margin-top: 16px;
}
.cta p { color: rgba(245,241,232,0.7); max-width: 48ch; margin-top: 14px; font-size: 15px; line-height: 1.55; }
.cta .btn { background: var(--bone-2); color: var(--navy); border-color: var(--bone-2); }
.cta .btn:hover { background: var(--brass); border-color: var(--brass); color: var(--navy); }

/* CTA FINAL asimétrico */
.cta-final {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(96px, 14vw, 200px) 0;
}
.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}
@media (min-width: 900px) {
  .cta-final__grid { grid-template-columns: 1.5fr auto; gap: 56px; align-items: end; }
}
.cta-final h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  color: var(--bone);
  letter-spacing: -0.028em;
  line-height: 0.98;
  text-wrap: balance;
  margin: 0;
}
.cta-final h2 .accent { color: var(--brass); }
.cta-final__actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

/* FAQ */
.faq { display: flex; flex-direction: column; margin-top: 40px; border-top: 1px solid var(--smoke); }
.faq__item { border-bottom: 1px solid var(--smoke); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 32px;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.018em;
  transition: color .25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--brass-deep); }
.faq__plus {
  position: relative;
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: inline-block;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--brass);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__plus::before { width: 18px; height: 1px; }
.faq__plus::after { width: 1px; height: 18px; }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__body {
  padding: 0 60px 32px 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 64ch;
}

/* CHIPS (filtros blog/casos) */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy);
  padding: 12px 20px;
  border: 1px solid var(--smoke-strong);
  background: transparent;
  text-decoration: none;
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
}
.chip:hover { border-color: var(--brass); color: var(--brass-deep); }
.chip[aria-current="true"], .chip--active {
  background: var(--navy);
  color: var(--bone-2);
  border-color: var(--navy);
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 72px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; height: 44px;
  padding: 0 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--smoke);
  border-radius: 2px;
  transition: all .2s ease;
}
.pagination a:hover { border-color: var(--brass); color: var(--brass-deep); }
.pagination [aria-current="page"] { background: var(--navy); color: var(--bone-2); border-color: var(--navy); }

/* PROSE (cuerpo de blog post) */
.prose { font-size: 18px; line-height: 1.7; color: var(--text); }
.prose > p { margin: 0 0 1.4em; }
.prose > p:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 300;
  font-size: 72px;
  line-height: 0.85;
  float: left;
  padding-right: 14px;
  padding-top: 8px;
  color: var(--brass);
}
.prose h2 {
  position: relative;
  padding-top: 0;
  margin-top: 64px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.prose h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 24px;
}
.prose h3 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.018em;
}
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.4em; }
.prose ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.prose ul li::before {
  content: "—";
  font-family: var(--mono);
  position: absolute;
  left: 0; top: 0;
  color: var(--brass);
}
.prose ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.prose ol li { margin-bottom: 8px; }
.prose figure { margin: 48px 0; }
.prose figcaption {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  border-left: 1px solid var(--brass);
  padding-left: 14px;
  letter-spacing: 0.02em;
}

/* CITAS LEGALES — bloque artículo articulado */
.cite-legal {
  position: relative;
  padding: 28px 32px;
  margin: 36px 0;
  background: var(--bone);
  border-left: 2px solid var(--brass);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.012em;
  border-radius: 2px;
}
.cite-legal__ref {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 14px;
  font-weight: 500;
}

/* INLINE PULLQUOTE in prose */
.prose .quote-inline {
  margin: 56px 0;
  padding: 0;
  border: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 28ch;
}
.prose .quote-inline .accent { color: var(--brass); }
.prose .quote-inline cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 24px;
  font-weight: 500;
}

/* SIDEBAR de blog */
.layout-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 1024px) {
  .layout-post { grid-template-columns: minmax(0, 1fr) 300px; gap: 96px; }
}
.post-sidebar { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 1024px) {
  .post-sidebar { position: sticky; top: 110px; align-self: start; }
}
.post-sidebar h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--smoke);
}
.sidebar-author { display: flex; gap: 18px; align-items: flex-start; }
.sidebar-author__img { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%; overflow: hidden; }
.sidebar-author__img .media { aspect-ratio: 1/1; height: 100%; border-radius: 50%; }
.sidebar-author__name { font-family: var(--display); font-size: 18px; margin: 0 0 4px; color: var(--navy); font-weight: 400; letter-spacing: -0.012em; }
.sidebar-author__role { font-family: var(--mono); font-size: 11px; color: var(--text-muted); margin: 0 0 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.sidebar-author__bio { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.sidebar-list { display: flex; flex-direction: column; gap: 18px; }
.sidebar-list a {
  display: block;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.25;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--smoke);
  letter-spacing: -0.012em;
  font-weight: 400;
  transition: color .25s ease;
}
.sidebar-list a:last-child { border-bottom: 0; padding-bottom: 0; }
.sidebar-list a:hover { color: var(--brass-deep); }
.sidebar-list small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

/* HONORARIOS — tabla */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--smoke);
}
.fee-table th, .fee-table td {
  text-align: left;
  padding: 28px 0;
  border-bottom: 1px solid var(--smoke);
  vertical-align: top;
  font-size: 15px;
}
.fee-table th {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  width: 60%;
  letter-spacing: -0.012em;
}
.fee-table th p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 8px 0 0;
  letter-spacing: 0;
}
.fee-table .fee {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
  font-weight: 300;
  text-align: right;
  white-space: nowrap;
  letter-spacing: -0.022em;
}
.fee-table .fee small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* HONORARIOS — modalidades */
.modalities { display: flex; flex-direction: column; margin-top: 40px; }
.modality {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding-block: 36px;
  border-top: 1px solid var(--smoke);
}
.modality:last-child { border-bottom: 1px solid var(--smoke); }
.modality__num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.04em;
}
.modality h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.modality p { color: var(--text-muted); max-width: 64ch; font-size: 15px; line-height: 1.6; margin: 0; }

/* FORM */
.form { display: flex; flex-direction: column; gap: 24px; }
.form__row { display: flex; flex-direction: column; gap: 10px; }
.form__row--split { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .form__row--split { grid-template-columns: 1fr 1fr; } }
.form label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form input,
.form select,
.form textarea {
  font: inherit;
  font-size: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--smoke-strong);
  border-radius: 2px;
  color: var(--text);
  transition: border-color .2s ease, background-color .2s ease;
  width: 100%;
  font-family: var(--sans);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--brass);
  outline: none;
  background: var(--paper);
}
.form textarea { min-height: 160px; resize: vertical; line-height: 1.55; }
.form select { background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 17px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; appearance: none; padding-right: 40px; }
.form__check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.form__check input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--smoke-strong);
  background: var(--paper);
  display: inline-block;
  margin-top: 2px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.form__check input[type="checkbox"]:checked {
  border-color: var(--brass);
  background: var(--brass);
  background-image: linear-gradient(45deg, transparent 40%, var(--navy) 40%, var(--navy) 50%, transparent 50%);
}
.form .btn { align-self: flex-start; margin-top: 8px; }

/* CONTACT GRID */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; } }
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info__item h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 10px;
  font-weight: 500;
}
.contact-info__item p {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.018em;
}
.contact-info__item p span {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0;
}

/* CASO DETALLE — extracto cabecera */
.case-extract {
  padding-top: 40px;
  padding-bottom: 56px;
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .case-extract { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.case-extract__cell .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.case-extract__cell .value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.case-extract__cell .value--mono { font-family: var(--mono); font-size: 18px; font-weight: 500; letter-spacing: 0.02em; }

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(245,241,232,0.66);
  padding-block: 88px 28px;
  font-size: 14px;
}
.site-footer a { color: rgba(245,241,232,0.78); text-decoration: none; transition: color .2s ease; }
.site-footer a:hover { color: var(--brass); }
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--smoke-dark);
}
@media (min-width: 768px) {
  .site-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; align-items: start; }
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 24px;
}
.site-footer__brand .brand { color: var(--bone-2); font-size: 26px; }
.site-footer__lede {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 300;
  color: var(--bone);
  line-height: 1.35;
  margin: 24px 0 24px;
  max-width: 32ch;
  letter-spacing: -0.012em;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12px;
  color: rgba(245,241,232,0.45);
  letter-spacing: 0.02em;
}
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.site-footer__legal a { color: rgba(245,241,232,0.5); }

/* UTILITIES */
.flow > * + * { margin-top: 18px; }
.muted { color: var(--text-muted); }
.text-balance { text-wrap: balance; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }


/* ============================================================
   IMAGE SUPPORT — real photos within .media wrappers
   ============================================================ */
.media--photo { background: var(--bone); }
.media--photo::before, .media--photo::after { display: none; }
.media--photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.media--duotone { background: var(--navy); }
.media--duotone > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: luminosity;
  opacity: 0.82;
  filter: contrast(1.06) brightness(0.92) saturate(0);
}
.media--duotone::before { z-index: 0; }
.media--duotone::after {
  background:
    radial-gradient(at 80% 80%, rgba(184,147,90,0.32), transparent 60%),
    linear-gradient(180deg, rgba(10,20,40,0.30) 0%, rgba(10,20,40,0.55) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
}
.media--photo .media__label,
.media--duotone .media__label {
  z-index: 3;
  color: rgba(255,255,255,0.72);
  background: rgba(10,20,40,0.42);
  padding: 5px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.media--photo .media__caption,
.media--duotone .media__caption {
  z-index: 3;
  text-shadow: 0 1px 14px rgba(10,20,40,0.5);
}

/* Plain (no overlays) variant */
.media--clean { background: transparent; }
.media--clean::before, .media--clean::after { display: none; }
.media--clean > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   MODULE LIBRARY — additional components
   ============================================================ */

/* Module label for the showcase page */
.module-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-block: 22px;
  border-top: 1px solid var(--smoke);
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.module-label__id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
}
.module-label__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.module-label__use {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  max-width: 40ch;
  text-align: right;
}

/* Hero centered */
.hero-centered { text-align: center; padding-block: clamp(80px, 10vw, 140px); }
.hero-centered .container { max-width: 880px; }
.hero-centered .eye { color: var(--brass-deep); }
.hero-centered h1 {
  font-size: var(--fs-hero);
  font-weight: 300;
  margin: 24px auto 28px;
  letter-spacing: -0.028em;
  line-height: 0.98;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-centered h1 .accent { color: var(--brass); }
.hero-centered .lead {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.45;
}
.hero-centered .actions { display: inline-flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* Logo bar — instituciones */
.logo-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--smoke);
  border: 1px solid var(--smoke);
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 768px) { .logo-bar { grid-template-columns: repeat(5, 1fr); } }
.logo-bar__item {
  padding: 36px 24px;
  background: var(--bone-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
}
.logo-bar__name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.logo-bar__name small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 400;
}

/* Testimonio destacado */
.testimonial {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(36px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--smoke);
  border-radius: 2px;
}
@media (min-width: 768px) { .testimonial { grid-template-columns: 140px 1fr; gap: 40px; } }
.testimonial__photo { width: 100%; }
.testimonial__photo .media { aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; width: 100%; }
.testimonial__quote {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.testimonial__cite {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.testimonial__cite strong { color: var(--brass-deep); font-weight: 500; }

/* Testimonios grid */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--smoke);
  padding: 36px 32px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .3s ease;
}
.testimonial-card:hover { border-color: var(--brass); }
.testimonial-card__quote {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.012em;
  margin: 0;
}
.testimonial-card__cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--smoke);
}
.testimonial-card__cite strong { color: var(--brass-deep); font-weight: 500; }

/* Comparativa */
.comparison { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .comparison { grid-template-columns: 1fr 1fr; gap: 24px; } }
.comparison__col {
  padding: 40px 36px;
  border: 1px solid var(--smoke);
  border-radius: 2px;
  background: var(--paper);
}
.comparison__col--no { background: var(--bone); }
.comparison__head {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: -0.018em;
}
.comparison__col--no .comparison__head { color: var(--text-muted); }
.comparison__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.comparison__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}
.comparison__list .icon {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.4;
  color: var(--brass);
}
.comparison__col--no .comparison__list .icon { color: var(--text-soft); }

/* Galería mosaico */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    aspect-ratio: 21/9;
    max-height: 460px;
  }
  .gallery-mosaic > :nth-child(1) { grid-row: 1 / span 2; aspect-ratio: auto; height: 100%; }
  .gallery-mosaic > :nth-child(2) { aspect-ratio: auto; height: 100%; }
  .gallery-mosaic > :nth-child(3) { aspect-ratio: auto; height: 100%; }
}

/* Métricas split */
.metric-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}
@media (min-width: 768px) { .metric-split { grid-template-columns: 1fr 1.2fr; gap: 80px; } }
.metric-split__big {
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 300;
  line-height: 0.85;
  color: var(--navy);
  letter-spacing: -0.05em;
  margin: 0;
}
.metric-split__big sup {
  font-size: 0.16em;
  vertical-align: 4em;
  color: var(--brass);
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.metric-split__caption {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 18px;
}
.metric-split__sub {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--smoke);
  padding-top: 32px;
}
.metric-split__sub-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--smoke);
}
.metric-split__sub-item:last-child { border-bottom: 0; padding-bottom: 0; }
.metric-split__sub-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.03em;
}
.metric-split__sub-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.metric-split__sub-label strong { color: var(--navy); font-weight: 500; display: block; margin-bottom: 4px; font-size: 16px; font-family: var(--display); letter-spacing: -0.012em; }

/* Press / menciones */
.press-list { display: flex; flex-direction: column; border-top: 1px solid var(--smoke); }
.press-list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-block: 28px;
  border-bottom: 1px solid var(--smoke);
  text-decoration: none;
  color: inherit;
  transition: background-color .25s ease;
}
@media (min-width: 768px) {
  .press-list__item { grid-template-columns: 160px 1fr auto; gap: 48px; align-items: center; }
}
.press-list__item:hover { background: var(--bone); }
.press-list__source {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
}
.press-list__title {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
  max-width: 60ch;
}
.press-list__date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Recursos descargables */
.resources { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .resources { grid-template-columns: 1fr 1fr; gap: 16px; } }
.resource {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--smoke);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: border-color .3s ease, transform .3s ease;
}
.resource:hover { border-color: var(--brass); transform: translateY(-2px); }
.resource__type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}
.resource__title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0 0 6px;
}
.resource__meta { font-family: var(--mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; }
.resource__arrow {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--brass);
  transition: transform .3s ease;
}
.resource:hover .resource__arrow { transform: translateX(4px); }

/* Newsletter */
.newsletter {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(56px, 8vw, 96px) clamp(32px, 5vw, 80px);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .newsletter { grid-template-columns: 1fr 1fr; gap: 64px; } }
.newsletter h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  color: var(--bone);
  letter-spacing: -0.022em;
  margin: 14px 0 16px;
  line-height: 1.05;
  text-wrap: balance;
}
.newsletter p { color: rgba(245,241,232,0.65); font-size: 15px; line-height: 1.55; max-width: 44ch; margin: 0; }
.newsletter__form { display: flex; flex-direction: column; gap: 14px; }
.newsletter__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.newsletter__row input {
  font: inherit;
  font-family: var(--sans);
  font-size: 15px;
  padding: 18px 20px;
  background: rgba(245,241,232,0.06);
  border: 1px solid rgba(245,241,232,0.18);
  color: var(--bone);
  border-radius: 2px;
  transition: border-color .2s ease;
}
.newsletter__row input::placeholder { color: rgba(245,241,232,0.45); }
.newsletter__row input:focus { outline: none; border-color: var(--brass); }
.newsletter__row .btn {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--navy);
  padding: 16px 24px;
}
.newsletter__row .btn:hover { background: var(--bone); border-color: var(--bone); color: var(--navy); }
.newsletter__note {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(245,241,232,0.45);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* Video block */
.video-block {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 480px;
  background: var(--navy);
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  isolation: isolate;
}
.video-block > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.85;
  filter: contrast(1.05) brightness(0.9) saturate(0);
}
.video-block::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,0.2) 0%, rgba(10,20,40,0.55) 100%);
  z-index: 1;
}
.video-block__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background-color .3s ease;
  border: 0;
  cursor: pointer;
}
.video-block:hover .video-block__play { transform: translate(-50%, -50%) scale(1.05); background: var(--bone-2); }
.video-block__play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-block__meta {
  position: absolute;
  left: 28px; bottom: 28px;
  z-index: 2;
  color: var(--bone);
}
.video-block__meta .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.video-block__meta h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--bone);
  margin: 8px 0 0;
  letter-spacing: -0.018em;
  max-width: 30ch;
}

/* Quote with portrait */
.quote-portrait {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .quote-portrait { grid-template-columns: 320px 1fr; gap: 64px; } }
.quote-portrait__photo { width: 100%; max-width: 280px; }
@media (min-width: 900px) { .quote-portrait__photo { max-width: none; } }
.quote-portrait__photo .media { aspect-ratio: 4/5; }
.quote-portrait__text {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.022em;
  line-height: 1.25;
  margin: 0 0 32px;
  text-wrap: balance;
}
.quote-portrait__text .accent { color: var(--brass); }
.quote-portrait__cite {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.quote-portrait__cite strong { color: var(--brass-deep); font-weight: 500; display: block; margin-bottom: 4px; }


/* ============================================================
   HERO VARIATIONS
   ============================================================ */

/* HERO full-bleed: imagen ocupando toda la sección, overlay oscuro */
.hero-fullbleed {
  position: relative;
  padding: clamp(140px, 20vw, 240px) 0;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
  border-radius: 2px;
}
.hero-fullbleed > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  mix-blend-mode: luminosity;
  opacity: 0.7;
  filter: contrast(1.05) brightness(0.82) saturate(0);
}
.hero-fullbleed::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(at 80% 80%, rgba(184,147,90,0.18), transparent 60%),
    linear-gradient(180deg, rgba(10,20,40,0.55) 0%, rgba(11,15,26,0.86) 100%);
  z-index: 1;
}
.hero-fullbleed .container { position: relative; z-index: 2; }
.hero-fullbleed .eye { color: var(--brass); }
.hero-fullbleed h1 {
  font-size: var(--fs-hero);
  font-weight: 300;
  color: var(--bone);
  letter-spacing: -0.028em;
  margin: 24px 0 28px;
  max-width: 20ch;
  line-height: 0.98;
  text-wrap: balance;
}
.hero-fullbleed h1 .accent { color: var(--brass); }
.hero-fullbleed .lead {
  color: rgba(245,241,232,0.78);
  max-width: 56ch;
  font-size: var(--fs-lead);
  margin: 0 0 36px;
  line-height: 1.45;
}
.hero-fullbleed .actions { display: inline-flex; gap: 28px 32px; align-items: center; flex-wrap: wrap; }

/* HERO minimal: sin fondo, mucho aire, izquierda */
.hero-minimal {
  background: var(--bone-2);
  padding-block: clamp(140px, 18vw, 220px);
}
.hero-minimal .container { max-width: 1080px; }
.hero-minimal h1 {
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin: 28px 0 0;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-minimal h1 .accent { color: var(--brass); }
.hero-minimal__sub {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--smoke);
}
@media (min-width: 768px) { .hero-minimal__sub { grid-template-columns: 1fr auto; align-items: end; gap: 56px; } }
.hero-minimal__sub p { max-width: 52ch; color: var(--text-muted); font-size: var(--fs-lead); line-height: 1.45; margin: 0; }

/* HERO ink: fondo oscuro sólido sin imagen, tipografía grande */
.hero-ink {
  background: var(--ink);
  color: var(--bone);
  padding-block: clamp(120px, 15vw, 200px);
  position: relative;
  overflow: hidden;
}
.hero-ink::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(245,241,232,0.025) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.hero-ink::after {
  content: "";
  position: absolute;
  width: 60vw; height: 60vw;
  right: -20vw; top: -20vw;
  background: radial-gradient(circle, rgba(184,147,90,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-ink .container { position: relative; z-index: 1; }
.hero-ink .eye { color: var(--brass); }
.hero-ink h1 {
  font-size: var(--fs-hero);
  font-weight: 300;
  color: var(--bone);
  letter-spacing: -0.028em;
  margin: 24px 0 28px;
  max-width: 20ch;
  line-height: 0.98;
  text-wrap: balance;
}
.hero-ink h1 .accent { color: var(--brass); }
.hero-ink .lead { color: rgba(245,241,232,0.7); max-width: 56ch; font-size: var(--fs-lead); margin: 0 0 36px; line-height: 1.45; }
.hero-ink .actions { display: inline-flex; gap: 28px 32px; align-items: center; flex-wrap: wrap; }

/* HERO con número decorativo gigante detrás */
.hero-metric {
  position: relative;
  padding-block: clamp(96px, 12vw, 160px);
  overflow: hidden;
  isolation: isolate;
}
.hero-metric__back {
  position: absolute;
  right: -3vw; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(220px, 38vw, 540px);
  font-weight: 300;
  color: var(--brass);
  opacity: 0.10;
  line-height: 0.85;
  letter-spacing: -0.06em;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}
.hero-metric h1 {
  font-size: var(--fs-hero);
  font-weight: 300;
  letter-spacing: -0.028em;
  margin: 24px 0 28px;
  max-width: 22ch;
  line-height: 0.98;
  text-wrap: balance;
}
.hero-metric h1 .accent { color: var(--brass); }
.hero-metric .lead { color: var(--text-muted); max-width: 50ch; font-size: var(--fs-lead); margin: 0 0 36px; line-height: 1.45; }
.hero-metric .actions { display: inline-flex; gap: 28px 32px; align-items: center; flex-wrap: wrap; }

/* SPLIT REVERSE: foto a la izquierda, texto a la derecha */
@media (min-width: 1024px) {
  .hero__grid--split-reverse { grid-template-columns: 4fr 7fr; gap: 80px; align-items: stretch; }
  .hero__grid--split-reverse .hero__copy { order: 2; }
  .hero__grid--split-reverse .hero__media { order: 1; }
}

/* HERO editorial: eyebrow grande tipo manchette + subtitle largo */
.hero-editorial {
  padding-block: clamp(96px, 12vw, 160px);
  background: var(--bone);
}
.hero-editorial__head {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--smoke);
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-editorial h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 300;
  letter-spacing: -0.028em;
  line-height: 0.96;
  max-width: 20ch;
  margin: 0 0 40px;
  text-wrap: balance;
}
.hero-editorial h1 .accent { color: var(--brass); }
.hero-editorial__sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .hero-editorial__sub { grid-template-columns: 1fr 1fr; gap: 64px; } }
.hero-editorial__sub p { font-size: 17px; line-height: 1.6; color: var(--text-muted); margin: 0; max-width: 56ch; }
.hero-editorial__sub p strong { color: var(--navy); font-weight: 500; }


/* === ELEVATION LAYER === */
/* ============================================================
   LANDING ELEVATOR — Capa de elevación sobre Orozco & Asociados
   Respeta paleta original: navy + bone + brass
   ============================================================ */
:root{
  --le-brand: var(--navy);
  --le-accent: var(--brass);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-cinema: cubic-bezier(.7, 0, .3, 1);
}

/* Cursor custom (oculto en touch) */
body { cursor: none; }
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none; z-index: 9998;
  will-change: transform;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--brass);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(184,147,90,.6);
}
#cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(10,20,40,.32);
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s, background .3s;
}
#cursor-ring.hot {
  width: 58px; height: 58px;
  border-color: var(--brass);
  background: rgba(184,147,90,.08);
}

/* Grain texture global */
body::after{
  content: '';
  position: fixed; inset: 0;
  z-index: 9999; pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress bar */
#pgbar{
  position: fixed; top: 0; left: 0;
  width: 2px; height: 0%;
  background: linear-gradient(to bottom, var(--navy), var(--brass));
  z-index: 9000;
  box-shadow: 0 0 10px rgba(184,147,90,.4);
  transition: height .08s linear;
}

/* ============================================================
   INTRO HÍBRIDA (Portal + Manifiesto)
   Cortinas + anillos + wordmark + frase palabra a palabra
   ============================================================ */
#intro{
  position: fixed; inset: 0;
  z-index: 9997;
  background: #05060e;
  overflow: hidden;
  transition: opacity .5s var(--ease-cinema), visibility .5s;
}
#intro.out{ opacity: 0; visibility: hidden; pointer-events: none; }

/* Aura background */
.i-bg{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%,
    rgba(184,147,90,.14) 0%,
    rgba(10,20,40,.20) 40%,
    transparent 72%);
  opacity: 0;
  animation: iRIn .5s ease forwards;
}
@keyframes iRIn{ to{ opacity: 1; } }

/* Grid sutil */
.i-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,241,232,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,241,232,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0;
  animation: iRIn .4s ease forwards;
}

/* Cortinas */
.i-curtain{
  position: absolute; top: 0;
  width: 50%; height: 100%;
  background: #000;
  z-index: 5;
}
.i-curtain-l{ left: 0; animation: cL .6s var(--ease-cinema) .05s forwards; }
.i-curtain-r{ right: 0; animation: cR .6s var(--ease-cinema) .05s forwards; }
@keyframes cL{ to{ transform: translateX(-100%); } }
@keyframes cR{ to{ transform: translateX(100%); } }

/* Anillos */
.i-ring{
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.i-ring-1{
  width: 280px; height: 280px;
  border: 1px solid rgba(245,241,232,.10);
  animation: iRotateIn .5s ease .5s forwards, iRotate 35s linear infinite .5s;
}
.i-ring-2{
  width: 440px; height: 440px;
  border: 1px dashed var(--brass);
  opacity: .35;
  animation: iRotateIn .5s ease .6s forwards, iRotateRev 45s linear infinite .6s;
}
.i-ring-3{
  width: 620px; height: 620px;
  border: 1px solid rgba(184,147,90,.15);
  animation: iRotateIn .5s ease .7s forwards, iRotate 55s linear infinite .7s;
}
@keyframes iRotateIn{ to{ opacity: 1; } }
@keyframes iRotate{
  from{ transform: translate(-50%, -50%) rotate(0deg); }
  to{ transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes iRotateRev{
  from{ transform: translate(-50%, -50%) rotate(0deg); }
  to{ transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Esquinas crosshair */
.i-frame{
  position: absolute;
  width: 36px; height: 36px;
  border-color: rgba(184,147,90,.5);
  border-style: solid;
  opacity: 0;
  animation: iFI .3s ease .25s forwards;
}
.i-frame-tl{ top: 28px; left: 28px; border-width: 1px 0 0 1px; }
.i-frame-tr{ top: 28px; right: 28px; border-width: 1px 1px 0 0; }
.i-frame-bl{ bottom: 28px; left: 28px; border-width: 0 0 1px 1px; }
.i-frame-br{ bottom: 28px; right: 28px; border-width: 0 1px 1px 0; }

/* Stage central */
.i-st{
  position: relative; z-index: 10;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px;
}
.i-eye{
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: rgba(245,241,232,.55);
  margin-bottom: 42px;
  opacity: 0;
  animation: iFI .35s ease .3s forwards;
}
.i-wm{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -.03em;
  color: #f5f1e8;
  opacity: 0;
  filter: blur(14px);
  transform: scale(.85);
  animation: iLI .55s var(--ease-cinema) .35s forwards;
  text-shadow: 0 0 40px rgba(184,147,90,.25);
}
.i-wm__amp{ color: var(--brass); font-style: italic; padding: 0 4px; }
.i-wm__dot{ color: var(--brass); }
@keyframes iLI{
  0%{ opacity: 0; transform: scale(.85); filter: blur(14px); }
  60%{ opacity: 1; transform: scale(1.02); filter: blur(0); }
  100%{ opacity: 1; transform: scale(1); filter: blur(0); }
}

/* Frase manifiesto palabra a palabra */
.i-words{
  margin-top: 36px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245,241,232,.78);
  letter-spacing: .01em;
  max-width: 620px;
}
.i-w{
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(8px);
  margin: 0 4px;
  animation: wIn .35s var(--ease-out-expo) forwards;
}
.i-w-accent{
  color: var(--brass);
  font-style: italic;
}
@keyframes wIn{
  to{ opacity: 1; filter: blur(0); transform: translateY(0); }
}
.i-w:nth-child(1){ animation-delay: .65s; }
.i-w:nth-child(2){ animation-delay: .72s; }
.i-w:nth-child(3){ animation-delay: .79s; }
.i-w:nth-child(4){ animation-delay: .86s; }
.i-w:nth-child(5){ animation-delay: .93s; }
.i-w:nth-child(6){ animation-delay: 1.0s; }
.i-w:nth-child(7){ animation-delay: 1.07s; }

/* Botón skip */
.i-sk{
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 20;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(245,241,232,.4);
  background: none;
  border: 1px solid rgba(245,241,232,.15);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s;
}
.i-sk:hover{
  color: #f5f1e8;
  border-color: rgba(184,147,90,.6);
  background: rgba(184,147,90,.06);
}

/* ============================================================
   AURA BLOBS EN HERO + GRID SUTIL
   ============================================================ */
.hero-fullbleed{ position: relative; overflow: hidden; }
.hero-aura{
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-aura .blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-aura .blob.b1{
  width: 680px; height: 680px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(10,20,40,.18) 0%, transparent 70%);
  animation: bf 12s ease-in-out infinite;
}
.hero-aura .blob.b2{
  width: 580px; height: 580px;
  top: -60px; right: -100px;
  background: radial-gradient(circle, rgba(184,147,90,.20) 0%, transparent 70%);
  animation: bf 12s ease-in-out infinite;
  animation-delay: -6s;
}
@keyframes bf{
  0%, 100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(22px,-30px) scale(1.04); }
}
.hero-grid{
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(10,20,40,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,20,40,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 15%, transparent 80%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 15%, transparent 80%);
}
/* Stacking del hero: foto fondo → overlay original → aura/grid → contenido
   IMPORTANTE: el CSS original ya pone img en z-index:0 y ::before en z-index:1.
   Aquí solo subimos las capas nuevas SIN tocar la imagen. */
.hero-fullbleed .hero-grid{ z-index: 1; }      /* sobre la foto, mezclado con el overlay */
.hero-fullbleed .hero-aura{ z-index: 1; }      /* idem */
.hero-fullbleed .container{ position: relative; z-index: 3; }  /* siempre arriba */
.hero-fullbleed .seal{ z-index: 3; }           /* sello al nivel del contenido */
/* La img mantiene z-index:0 del CSS original. NO la tocamos. */

/* ============================================================
   SELLO ROTATORIO EDITORIAL
   ============================================================ */
.seal{
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  top: clamp(80px, 12vw, 140px);
  width: 138px; height: 138px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  animation: sealAppear 1.2s var(--ease-out-expo) .9s forwards;
}
@keyframes sealAppear{
  from{ opacity: 0; transform: scale(.8); }
  to{ opacity: 1; transform: scale(1); }
}
.seal__rotor{
  position: absolute; inset: 0;
  animation: sealRotate 32s linear infinite;
  color: var(--navy);
}
.seal__rotor svg{ width: 100%; height: 100%; }
.seal__center{
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--navy);
  line-height: 1;
}
.seal__center .o{
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.02em;
}
.seal__center .o em{ color: var(--brass); font-style: italic; }
.seal__center .yr{
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--brass-deep);
  margin-top: 6px;
}
@keyframes sealRotate{ to{ transform: rotate(360deg); } }
@media (max-width: 900px){ .seal{ display: none; } }

/* ============================================================
   KINETIC TYPOGRAPHY EN H1 (subtipos técnicos)
   ============================================================ */
.h1-kinetic-wrap{
  display: block;
  margin-top: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-muted);
  letter-spacing: -.01em;
}
.h1-kinetic-wrap .lab{
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-right: 14px;
  display: inline-block;
  vertical-align: middle;
}
.h1-kinetic{
  display: inline-block;
  vertical-align: middle;
  font-style: italic;
  color: var(--navy);
  position: relative;
  min-width: 320px;
  transition: opacity .4s var(--ease-out-expo), transform .4s var(--ease-out-expo);
}
.h1-kinetic.swap{
  opacity: 0;
  transform: translateY(-8px);
}
.h1-kinetic::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
  opacity: .35;
}

/* ============================================================
   STAGGER ENTRADA HERO (entra después de la intro)
   ============================================================ */
.hero-fullbleed .eye{ animation: wU .9s var(--ease-out-expo) .2s both; }
.hero-fullbleed h1{ animation: wU .9s var(--ease-out-expo) .35s both; }
.hero-fullbleed .lead{ animation: wU .9s var(--ease-out-expo) .55s both; }
.hero-fullbleed .actions{ animation: wU .9s var(--ease-out-expo) .75s both; }
@keyframes wU{
  from{ opacity: 0; transform: translateY(28px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
.rv{
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .9s var(--ease-out-expo),
    transform .9s var(--ease-out-expo);
}
.rv.in{ opacity: 1; transform: translateY(0); }
.rv-stagger > * { transition-delay: 0s; }
.rv.in.rv-stagger > *:nth-child(1){ transition-delay: 0s; }
.rv.in.rv-stagger > *:nth-child(2){ transition-delay: .12s; }
.rv.in.rv-stagger > *:nth-child(3){ transition-delay: .24s; }
.rv.in.rv-stagger > *:nth-child(4){ transition-delay: .36s; }

/* ============================================================
   HEADER REFINADO: blur backdrop + dot live de exclusividad
   ============================================================ */
.site-header{
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  transition: background .3s, border-color .3s, padding .3s;
}
.site-header.on{
  background: rgba(245,241,232,.86);
  border-bottom-color: var(--smoke-strong);
}
.hdr-live{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 18px;
}
.hdr-live .live-d{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
  animation: beat 2s infinite;
}
@keyframes beat{
  0%{ box-shadow: 0 0 0 0 rgba(184,147,90,.6); }
  70%{ box-shadow: 0 0 0 8px rgba(184,147,90,0); }
  100%{ box-shadow: 0 0 0 0 rgba(184,147,90,0); }
}
@media (max-width: 980px){ .hdr-live{ display: none; } }

/* ============================================================
   HOVER REFINADOS EN CARDS (áreas, casos, proceso, FAQ)
   ============================================================ */
.area, .case{
  position: relative;
  isolation: isolate;
  transition: transform .5s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo), border-color .4s;
}
.area::before, .case::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--brass));
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.area:hover, .case:hover{
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px rgba(10,20,40,.10),
    0 4px 14px rgba(10,20,40,.04);
}
.area:hover::before, .case:hover::before{ opacity: 1; }

.process__step{
  transition: transform .5s var(--ease-out-expo), border-color .4s;
}
.process__step:hover{
  transform: translateY(-3px);
  border-color: rgba(184,147,90,.5);
}

/* CTAs con shimmer */
.btn{
  position: relative;
  overflow: hidden;
}
.btn::before{
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .65s ease;
  pointer-events: none;
}
.btn:hover::before{ left: 100%; }

/* Brillo sutil en stats */
.stat__num{
  background: linear-gradient(170deg, var(--navy) 0%, var(--brass-deep) 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FAQ refinado: bordes en hover */
.faq__item{
  transition: border-color .3s, background .3s;
}
.faq__item:hover{
  border-color: rgba(184,147,90,.4);
  background: rgba(184,147,90,.025);
}

/* Cita pull con marca lateral elegante */
.quote{ position: relative; padding-left: 32px; }
.quote::before{
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brass), transparent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px){
  .seal{ display: none; }
  .h1-kinetic{ min-width: 0; display: block; margin-top: 8px; }
  .h1-kinetic-wrap{ font-size: 18px; }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .i-curtain{ display: none; }
}

/* Touch: desactivar cursor custom */
@media (hover: none) and (pointer: coarse){
  body{ cursor: auto; }
  #cursor-dot, #cursor-ring{ display: none; }
}



/* === Jerarquía hero SEO-friendly v3 ===
   - <h1> semántico pero pequeño visualmente (estilo subtítulo del eyebrow)
   - <p.hero-display> es lo grande visualmente (la promesa de toda la vida)
   - Kinetic typo unificada en Bricolage Grotesque italic
*/
.hero-fullbleed .hero-h1-seo{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 400;
  letter-spacing: .02em;
  color: rgba(245,241,232,.62);
  margin: 14px 0 0;
  line-height: 1.4;
  max-width: none;
  text-transform: none;
}
.hero-fullbleed .hero-h1-seo .h1-dot{
  color: var(--brass);
  margin: 0 .35em;
  font-style: normal;
}

.hero-fullbleed .hero-display{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--fs-hero);
  font-weight: 300;
  color: var(--bone);
  letter-spacing: -.028em;
  margin: 32px 0 36px;
  max-width: 20ch;
  line-height: .98;
  text-wrap: balance;
  animation: wU .9s var(--ease-out-expo) .45s both;
}
.hero-fullbleed .hero-display .accent{
  color: var(--brass);
  font-style: italic;
  font-weight: 300;
}

/* Kinetic typo unificada — ambas en Bricolage Grotesque italic */
.hero-fullbleed .h1-kinetic-wrap{
  display: block;
  margin: -14px 0 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: rgba(245,241,232,.78);
}
.hero-fullbleed .h1-kinetic-wrap .lab{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0;
  text-transform: none;
  color: var(--brass);
  margin-right: 12px;
  display: inline-block;
  vertical-align: baseline;
}
.hero-fullbleed .h1-kinetic{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  color: #f5f1e8;
  letter-spacing: 0;
  vertical-align: baseline;
  min-width: 280px;
}

@media (max-width: 640px){
  .hero-fullbleed .hero-display{ font-size: clamp(38px, 11vw, 60px); }
  .hero-fullbleed .hero-h1-seo{ font-size: 13px; }
  .hero-fullbleed .h1-kinetic{ min-width: 0; display: block; margin-top: 4px; }
}
/* ============================================================
   ADICIONES PARA TEMPLATE-PACK
   (patterns nuevos no presentes en el styles original)
   ============================================================ */

/* Hero standard (páginas internas, sin foto fullscreen) */
.hero-std{
  position: relative;
  padding: clamp(140px, 14vw, 200px) 0 clamp(60px, 7vw, 96px);
  background: var(--bone);
  border-bottom: 1px solid var(--smoke);
  overflow: hidden;
}
.hero-std::before{
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,20,40,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,20,40,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 25%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 25%, transparent 80%);
  pointer-events: none;
}
.hero-std .container{ position: relative; z-index: 2; }
.hero-std h1{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.02;
  color: var(--navy);
  margin: 18px 0 22px;
  max-width: 22ch;
  text-wrap: balance;
}
.hero-std .lead--hero{
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 56ch;
  color: var(--text-muted);
  margin: 0 0 28px;
}

/* Breadcrumbs */
.breadcrumbs{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.breadcrumbs ol{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}
.breadcrumbs li{
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
}
.breadcrumbs li + li::before{
  content: '→';
  margin-right: 14px;
  color: var(--brass);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}
.breadcrumbs a{
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.breadcrumbs a:hover{
  color: var(--navy);
  border-color: var(--brass);
}
.breadcrumbs li[aria-current="page"] span{
  color: var(--navy);
}

/* Container narrow (para prose) */
.container--narrow{ max-width: 720px; }

/* Prose */
.prose{
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.prose > * + *{ margin-top: 1.1em; }
.prose h2{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -.018em;
  margin-top: 2.4em;
  color: var(--navy);
}
.prose h3{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-top: 2em;
  color: var(--navy);
}
.prose a{
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  transition: background .2s;
}
.prose a:hover{ background: rgba(184,147,90,.08); }
.prose ul, .prose ol{ padding-left: 22px; }
.prose li + li{ margin-top: .35em; }
.prose blockquote{
  border-left: 2px solid var(--brass);
  padding: 4px 0 4px 24px;
  font-style: italic;
  color: var(--text-muted);
}

/* H2 display (manifiesto, etc.) */
.h2--display{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.025em;
  max-width: 22ch;
  text-wrap: balance;
}

/* Sobre grid */
.sobre__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
.sobre__media img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(20%);
  transition: filter .6s;
}
.sobre__media img:hover{ filter: grayscale(0%); }
@media (max-width: 840px){
  .sobre__grid{ grid-template-columns: 1fr; }
}

/* CTA mid */
.cta-mid{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, var(--bone) 0%, #efe9dd 100%);
  border: 1px solid var(--smoke);
  border-radius: 6px;
}
.cta-mid__copy h3{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--navy);
  letter-spacing: -.015em;
}
.cta-mid__copy p{ color: var(--text-muted); margin: 0; }

/* Section head */
.section__head{
  margin-bottom: clamp(36px, 4vw, 60px);
  max-width: 56ch;
}
.section__head h2{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  letter-spacing: -.022em;
  line-height: 1.05;
  margin: 10px 0 14px;
}
.section__desc{
  color: var(--text-muted);
  font-size: 17px;
}

/* CTA final más grande */
.btn--xl{
  padding: 22px 36px;
  font-size: 16px;
}
