:root {
  --aub: #791b4b;
  --aub2: #4a102f;
  --gold: #e4b94d;
  --ink: #14171b;
  --paper: #f7f3ec;
  --cream: #ece3d5;
  --white: #fffdf8;
  --muted: #68645f;
  --line: #14171b25;
  --serif: "Fraunces", serif;
  --sans: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font: 16px/1.55 var(--sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.progress {
  position: fixed;
  z-index: 999;
  top: 0;
  height: 3px;
  background: var(--gold);
}
header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background: #f7f3eceb;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  border-color: var(--line);
}
.navwrap {
  width: min(1280px, calc(100% - 48px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 142px;
  height: 60px;
  position: relative;
  overflow: hidden;
}
.logo img {
  width: 142px;
  height: 60px;
  object-fit: contain;
}
.logo i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 49px;
  height: 20px;
  background: var(--paper);
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.subscribe {
  background: var(--ink);
  color: white;
  padding: 12px 18px;
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 22px;
}
.hero {
  min-height: 100svh;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 90px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.eyebrow,
.index {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--aub);
}
.hero h1 {
  font: 300 clamp(58px, 7.2vw, 112px)/0.89 var(--serif);
  letter-spacing: -0.045em;
  max-width: 860px;
}
.hero h1 em,
.services h2 em,
.blog h2 em,
.newsletter h2 em {
  color: var(--aub);
}
.hero h2 {
  font: italic 300 clamp(29px, 4vw, 58px)/1 var(--serif);
  color: var(--aub);
  margin: 20px 0 34px;
}
.lead {
  font-size: clamp(18px, 1.7vw, 22px);
  max-width: 720px;
}
.muted {
  color: var(--muted);
  margin-top: 12px;
}
.actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 30px 0 17px;
}
.btn {
  background: var(--aub);
  color: white;
  padding: 16px 21px;
  box-shadow: 8px 8px 0 var(--gold);
  font-weight: 600;
  display: inline-block;
  transition: 0.25s;
}
.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px var(--gold);
}
.hero small {
  color: var(--muted);
}
.note {
  background: var(--white);
  padding: 28px;
  transform: rotate(2deg);
  box-shadow: 0 25px 60px #4a102f25;
  position: relative;
}
.note > b {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  top: -9px;
  left: 48%;
}
.note p {
  font: 300 24px/1.25 var(--serif);
  margin: 24px 0;
}
.note strong {
  color: var(--aub);
}
.note a {
  color: var(--aub);
  font-size: 12px;
  font-weight: 700;
}
.orbit {
  position: absolute;
  width: 570px;
  height: 570px;
  border: 1px solid #791b4b30;
  border-radius: 50%;
  right: -180px;
  top: 8%;
  animation: spin 30s linear infinite;
}
.orbit span {
  position: absolute;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--aub);
}
.orbit span:nth-child(1) {
  top: 4%;
  left: 34%;
}
.orbit span:nth-child(2) {
  top: 60%;
  left: -6%;
}
.orbit span:nth-child(3) {
  bottom: 10%;
  right: 16%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.manifesto {
  padding: 130px 0;
  background: var(--cream);
}
.split {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 70px;
}
.manifesto h2,
.roles h2,
.services h2,
.situations h2,
.blog h2,
.newsletter h2 {
  font: 300 clamp(44px, 5.5vw, 76px)/1 var(--serif);
  margin: 28px 0 48px;
}
.manifesto ol {
  list-style: none;
  counter-reset: x;
  border-top: 1px solid var(--line);
  margin-bottom: 45px;
}
.manifesto li {
  counter-increment: x;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.manifesto li:before {
  content: "0" counter(x);
  display: inline-block;
  width: 55px;
  color: var(--aub);
  font-size: 10px;
}
.manifesto a,
.honest a {
  color: var(--aub);
  border-bottom: 1px solid;
}
.roles {
  padding: 140px 0;
  background: var(--ink);
  color: white;
}
.roles-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 110px;
}
.roles-sticky {
  position: sticky;
  top: 140px;
  height: max-content;
}
.roles .index,
.situations .index,
.newsletter .index {
  color: var(--gold);
}
.roles h2 em {
  color: var(--gold);
}
.roles-sticky > p:last-of-type {
  color: #aaa;
}
.active-role {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}
.active-role > span {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--aub);
  color: var(--gold);
  font: 300 50px var(--serif);
}
.active-role small {
  display: block;
  color: #888;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.15em;
}
.active-role b {
  font: 300 25px var(--serif);
}
.role {
  min-height: 180px;
  border-top: 1px solid #ffffff25;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  opacity: 0.3;
  transition: 0.4s;
}
.role.active {
  opacity: 1;
  transform: translateX(12px);
}
.role i {
  color: var(--gold);
  font-size: 10px;
}
.role h3 {
  font: 300 36px var(--serif);
  margin-bottom: 10px;
}
.role p {
  color: #aaa;
}
.role.never {
  opacity: 1;
  border: 1px solid #e4b94d80;
  margin-top: 50px;
  padding: 28px;
  min-height: auto;
}
.role.never h3 {
  color: var(--gold);
  font-size: 28px;
}
.services,
.situations,
.blog,
.newsletter {
  padding: 140px 0;
}
.head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 75px;
}
.head > p {
  max-width: 400px;
  color: var(--muted);
  font-size: 18px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cards article {
  min-height: 460px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.cards article:nth-child(even) {
  margin-top: 42px;
}
.cards article:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--aub);
  z-index: 0;
  transition: 0.4s;
}
.cards article > * {
  position: relative;
  z-index: 1;
}
.cards article:hover {
  color: white;
  transform: translateY(-10px);
}
.cards article:hover:before {
  height: 100%;
}
.cards h3 {
  font: 300 33px/1.08 var(--serif);
  margin: 65px 0 35px;
}
.cards p {
  font-size: 13px;
  margin-top: 15px;
  opacity: 0;
  transition: 0.4s;
}
.cards article:hover p {
  opacity: 1;
}
.cards b {
  display: block;
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
}
.honest {
  max-width: 760px;
  margin: 60px auto 0;
  padding-left: 25px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
}
.situations {
  background: var(--aub);
  color: white;
}
.situations .head > p {
  color: #e0cbd5;
}
.situ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #ffffff3a;
}
.situ-grid article {
  min-height: 360px;
  padding: 38px;
  border-right: 1px solid #ffffff3a;
  border-bottom: 1px solid #ffffff3a;
  display: flex;
  flex-direction: column;
  transition: 0.35s;
}
.situ-grid article:hover {
  background: var(--gold);
  color: var(--ink);
}
.situ-grid small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.situ-grid blockquote {
  font: 300 clamp(25px, 3vw, 37px)/1.18 var(--serif);
  margin: 42px 0;
}
.situ-grid p {
  margin-top: auto;
  border-top: 1px solid;
  padding-top: 15px;
}
.situ-grid b {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.blog {
  background: var(--white);
}
.blog .head > a {
  color: var(--aub);
  border-bottom: 1px solid;
}
.posts {
  border-top: 1px solid var(--line);
}
.posts a {
  display: grid;
  grid-template-columns: 55px 150px 1fr 30px;
  gap: 20px;
  align-items: center;
  padding: 32px 12px;
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}
.posts a:hover {
  background: var(--cream);
  padding-left: 25px;
}
.posts i,
.posts small {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--aub);
}
.posts h3 {
  font: 300 clamp(24px, 3vw, 38px) var(--serif);
}
.newsletter {
  background: var(--ink);
  color: white;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}
.newsletter h2 {
  margin-bottom: 0;
}
.newsletter h2 em {
  color: var(--gold);
}
.newsletter p {
  color: #bbb;
}
.btn.gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 8px 8px var(--aub);
  margin: 28px 0;
}
.newsletter small {
  display: block;
  color: #777;
}
footer {
  background: #0b0d10;
  color: white;
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 70px;
}
.footlogo {
  background: var(--paper);
}
.footlogo i {
  background: var(--paper);
}
.footer-grid p,
.footer-grid a {
  color: #888;
}
.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 10px 0;
}
.footer-grid small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}
.base {
  border-top: 1px solid #ffffff20;
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 10px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s;
}
.reveal.on {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  nav > a:not(.subscribe) {
    display: none;
  }
  .hero-grid,
  .split,
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .note {
    display: none;
  }
  .roles-sticky {
    position: relative;
    top: auto;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .news-grid {
    gap: 40px;
  }
}

/* V5.3 · ajustes validados de tipografía, logos y filas editoriales */
.hero h1,
.manifesto h2,
.services h2,
.situations h2,
.roles h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 92;
  letter-spacing: -0.035em;
}
.navwrap .logo,
.footlogo {
  width: 175px;
  height: 72px;
  flex: 0 0 175px;
  overflow: hidden;
}
.navwrap .logo img,
.footlogo img {
  width: 260px;
  height: 173px;
  left: -42px;
  top: -48px;
}
.footlogo {
  display: block;
  margin-bottom: 28px;
  background: transparent;
}
.footer-grid > div:first-child p {
  margin-top: 0;
}
.manifesto ol {
  overflow: hidden;
}
.manifesto li {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 82px;
  padding: 18px 14px;
  font-size: 18px;
  transition:
    background 0.3s,
    padding-left 0.3s,
    color 0.3s;
}
.manifesto li:before {
  width: auto;
}
.manifesto li:hover {
  background: var(--white);
  padding-left: 28px;
  color: var(--aub);
}
@media (max-width: 650px) {
  .navwrap .logo {
    width: 145px;
    height: 62px;
    flex-basis: 145px;
  }
  .navwrap .logo img {
    width: 225px;
    height: 150px;
    left: -40px;
    top: -43px;
  }
  .manifesto li {
    grid-template-columns: 48px 1fr;
    font-size: 16px;
    padding-inline: 8px;
  }
}

/* V6 · cabecera compacta y hero visible en primera pantalla */
header {
  min-height: 64px;
}
.navwrap {
  height: 64px;
}
.navwrap .logo {
  width: 130px;
  height: 54px;
  flex-basis: 130px;
}
.navwrap .logo img {
  width: 205px;
  height: 137px;
  left: -35px;
  top: -39px;
}
.subscribe {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}
.hero {
  min-height: 100svh;
  padding: 98px 0 34px;
}
.hero h1 {
  max-width: 850px;
  font-family: var(--serif);
  font-size: clamp(52px, 6.1vw, 88px);
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "opsz" 72;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero h1 em {
  color: var(--aub);
  font-style: normal;
  font-weight: 600;
}
.hero h2 {
  font-size: clamp(27px, 3.4vw, 48px);
  margin: 16px 0 25px;
}
.hero .eyebrow {
  color: var(--gold);
}
.hero .lead {
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.48;
}
.hero .muted {
  font-size: 15px;
}
.hero .actions {
  margin: 25px 0 15px;
}
.hero .note {
  padding: 25px;
}
.manifesto-quote {
  margin: 0 0 42px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  font: italic 300 clamp(28px, 3.3vw, 44px)/1.2 var(--serif);
  color: #514d47;
}
.manifesto-quote strong {
  color: var(--aub);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 650px) {
  header {
    min-height: 58px;
  }
  .navwrap {
    height: 58px;
  }
  .navwrap .logo {
    width: 112px;
    height: 50px;
    flex-basis: 112px;
  }
  .navwrap .logo img {
    width: 184px;
    height: 123px;
    left: -35px;
    top: -36px;
  }
  .hero {
    padding: 88px 0 48px;
  }
  .hero h1 {
    font-size: 48px;
  }
}

footer .footlogo {
  background: transparent;
}
@media (max-width: 650px) {
  .shell,
  .navwrap {
    width: calc(100% - 32px);
  }
  .navwrap {
    height: 70px;
  }
  .menu {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  nav.open,
  nav.open a {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .actions,
  .head {
    align-items: flex-start;
    flex-direction: column;
  }
  .manifesto,
  .roles,
  .services,
  .situations,
  .blog,
  .newsletter {
    padding: 90px 0;
  }
  .cards,
  .situ-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards article,
  .cards article:nth-child(even) {
    margin: 0;
    min-height: 380px;
  }
  .cards p {
    opacity: 1;
  }
  .posts a {
    grid-template-columns: 35px 1fr 24px;
  }
  .posts small {
    display: none;
  }
  .footer-grid {
    gap: 35px;
  }
  .base {
    flex-direction: column;
    gap: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V5.1 · dirección tipográfica y navegación parallax */
.manifesto h2 em,
.services h2 em,
.situations h2 em,
.blog h2 em,
.newsletter h2 em {
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
}
.logo {
  background: transparent;
}
.logo img {
  position: absolute;
  max-width: none;
  width: 270px;
  height: 180px;
  left: -55px;
  top: -53px;
  object-fit: contain;
  mix-blend-mode: normal;
}
.logo i {
  display: none;
}
.footlogo {
  background: var(--paper);
}
.navwrap {
  position: relative;
  z-index: 2;
}
.navwrap .logo {
  transform: translate3d(0, var(--logo-shift, 0), 0);
  transition: transform 0.12s linear;
}
.navwrap nav {
  transform: translate3d(0, var(--nav-shift, 0), 0);
  transition: transform 0.12s linear;
}
.nav-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 8%,
    rgba(121, 27, 75, 0.06) 50%,
    transparent 92%
  );
  transform: translate3d(var(--shadow-shift, 0), 0, 0);
  pointer-events: none;
}
@media (max-width: 650px) {
  .logo img {
    width: 222px;
    height: 148px;
    left: -45px;
    top: -45px;
  }
  .orbit span {
    display: none;
  }
  .orbit {
    opacity: 0.55;
  }
}

/* Situaciones · misma lógica dinámica que "Muchos papeles" */
.situations .shell {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 110px;
}
.situations .head {
  position: sticky;
  top: 132px;
  height: max-content;
  display: block;
  margin: 0;
}
.situations .head > p {
  margin-top: 28px;
  max-width: 440px;
}
.situations .situ-grid {
  display: block;
  border: 0;
}
.situations .situ-grid article {
  min-height: 245px;
  padding: 38px 14px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0.28;
  transform: translateX(0);
  transition:
    opacity 0.45s,
    transform 0.45s,
    background 0.45s;
}
.situations .situ-grid article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.situations .situ-grid article:hover {
  background: transparent;
  color: white;
}
.situations .situ-grid article.active {
  opacity: 1;
  transform: translateX(14px);
}
.situations .situ-grid blockquote {
  margin: 24px 0 32px;
}
.situation-active {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
}
.situation-active > span {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font: 300 35px var(--serif);
}
.situation-active small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}
.situation-active b {
  display: block;
  max-width: 240px;
  font: 300 23px/1.15 var(--serif);
}
@media (max-width: 900px) {
  .situations .shell {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .situations .head {
    position: relative;
    top: auto;
  }
}
@media (max-width: 650px) {
  .situations .situ-grid article {
    min-height: 230px;
    padding-inline: 0;
  }
  .situation-active {
    display: none;
  }
}

/* V6.1 · narrativa del punto de partida y animación de papeles */
.hero-roles {
  position: relative;
  width: 330px;
  height: 330px;
  align-self: center;
  border-radius: 50%;
  border: 1px solid rgba(121, 27, 75, 0.18);
}
.hero-roles::before,
.hero-roles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(121, 27, 75, 0.13);
  animation: roleBreath 4.5s ease-in-out infinite;
}
.hero-roles::before {
  inset: 52px;
}
.hero-roles::after {
  inset: 105px;
  animation-delay: -1.5s;
}
.role-core {
  position: absolute;
  inset: 50%;
  width: 98px;
  height: 98px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--aub);
  color: white;
  box-shadow: 0 18px 45px rgba(121, 27, 75, 0.25);
  z-index: 2;
}
.role-core small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 8px;
}
.role-core strong {
  font: 600 34px/1 var(--serif);
}
.hero-role {
  position: absolute;
  padding: 7px 11px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  border: 1px solid var(--line);
  opacity: 0.42;
  animation: roleFocus 8s ease-in-out infinite;
}
.role-one {
  top: 22px;
  left: 102px;
}
.role-two {
  top: 142px;
  right: -20px;
  animation-delay: -6s;
}
.role-three {
  bottom: 20px;
  left: 122px;
  animation-delay: -4s;
}
.role-four {
  top: 142px;
  left: -22px;
  animation-delay: -2s;
}
@keyframes roleBreath {
  50% {
    transform: scale(1.08);
    border-color: rgba(228, 185, 77, 0.55);
  }
}
@keyframes roleFocus {
  0%,
  20% {
    opacity: 1;
    color: var(--aub);
    border-color: var(--gold);
    transform: scale(1.08);
  }
  30%,
  100% {
    opacity: 0.42;
    transform: scale(1);
  }
}
.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 90px;
  align-items: start;
}
.manifesto-intro .index {
  margin-bottom: 34px;
}
.manifesto-intro .manifesto-quote {
  margin-bottom: 30px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}
.manifesto-quote span,
.manifesto-quote strong {
  display: block;
}
.manifesto-quote strong {
  margin-top: 6px;
}
.manifesto-intro > p:not(.index) {
  max-width: 560px;
}
.manifesto-intro h2 {
  font-size: clamp(38px, 4.1vw, 59px);
  margin: 30px 0;
}
.manifesto-layout > ol {
  margin: 54px 0 0;
  align-self: start;
}
@media (max-width: 900px) {
  .hero-roles {
    width: 290px;
    height: 290px;
    margin: 10px auto 0;
  }
  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .manifesto-layout > ol {
    margin-top: 0;
  }
}
@media (max-width: 650px) {
  .hero-roles {
    display: none;
  }
  .manifesto-intro h2 {
    font-size: 40px;
  }
}

/* V6.2 · equilibrio del punto de partida y hover editorial del menú */
.manifesto-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 72px;
}
.manifesto-quote {
  font-size: clamp(27px, 2.75vw, 39px);
}
.manifesto-quote strong {
  display: inline;
  margin: 0;
}
.manifesto-intro h2 {
  font-size: clamp(36px, 3.7vw, 52px);
  line-height: 1.02;
}
.manifesto-layout > ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
  border: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.manifesto-layout > ol li {
  grid-template-columns: 1fr;
  align-content: space-between;
  min-height: 190px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: 600 clamp(18px, 1.5vw, 22px)/1.3 var(--sans);
}
.manifesto-layout > ol li::before {
  width: auto;
}
.manifesto-layout > ol li:hover {
  padding: 24px 24px 24px 32px;
  background: var(--aub);
  color: white;
}
.manifesto-layout > ol li:hover::before {
  color: var(--gold);
}
nav > a:not(.subscribe) {
  position: relative;
  padding: 8px 2px;
  transition:
    color 0.25s,
    transform 0.25s;
}
nav > a:not(.subscribe)::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
nav > a:not(.subscribe):hover {
  color: var(--aub);
  transform: translateY(-2px);
}
nav > a:not(.subscribe):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.subscribe {
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.subscribe:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(121, 27, 75, 0.16);
  background: #edc75f;
}
.v6-newsletter-form { margin-top: 28px; max-width: 540px; }
.v6-newsletter-form__row { display: flex; gap: 10px; align-items: stretch; }
.v6-newsletter-form input[type="email"] { min-width: 0; flex: 1; border: 1px solid var(--line); background: var(--white); color: var(--ink); padding: 13px 15px; font: 16px var(--sans); }
.v6-newsletter-form .btn { border: 0; cursor: pointer; white-space: nowrap; }
.v6-newsletter-form .newsletter-consent { display: flex; gap: 9px; align-items: flex-start; margin-top: 15px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.v6-newsletter-form .newsletter-consent input { margin-top: 3px; }
.v6-newsletter-form .newsletter-consent a { color: var(--aub); text-decoration: underline; }
.v6-newsletter-form .newsletter-rgpd { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.v6-newsletter-form .newsletter-status { margin-top: 10px; color: var(--aub); font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 900px) {
  .manifesto-layout {
    grid-template-columns: 1fr;
  }
  .manifesto-layout > ol {
    margin-top: 0;
  }
}
@media (max-width: 650px) {
  .manifesto-layout > ol {
    grid-template-columns: 1fr;
  }
  .manifesto-layout > ol li {
    min-height: 130px;
  }
  .v6-newsletter-form__row { flex-direction: column; }
}
