@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/public/montserrat-latin-variable.woff2") format("woff2");
}

:root {
  --red: #d91f36;
  --red-dark: #a70e22;
  --rose: #ffc2ca;
  --ink: #111519;
  --ink-soft: #1b2025;
  --paper: #ffffff;
  --surface: #f3f5f7;
  --muted: #566068;
  --line: rgba(17, 21, 25, 0.14);
  --white: #ffffff;
  --font-sans: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1240px;
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(217, 31, 54, 0.42); outline-offset: 5px; }
::selection { color: var(--white); background: var(--red); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  background: transparent;
  transition: color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(17, 21, 25, 0.1);
  backdrop-filter: blur(18px);
}
.header-home {
  position: relative;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.header-home span { font-weight: 400; }
.header-home::after { content: "."; color: var(--red); }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header nav a { position: relative; padding: 8px 0; }
.site-header nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.site-header nav a:hover::after,
.site-header nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-header .nav-cta {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header .nav-cta:hover { border-color: var(--red); color: var(--white); background: var(--red); }
.site-header.is-scrolled .nav-cta { border-color: var(--ink); }
.site-header.is-scrolled .nav-cta:hover { border-color: var(--red); }
.scroll-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; overflow: hidden; }
.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--red);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}
.menu-toggle {
  position: relative;
  z-index: 3;
  padding: 8px 0;
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.menu-label { font-size: 9px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.menu-lines { position: relative; width: 24px; height: 14px; display: block; }
.menu-lines i {
  position: absolute;
  right: 0;
  width: 24px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transition: top 0.3s var(--ease), transform 0.3s var(--ease);
}
.menu-lines i:first-child { top: 3px; }
.menu-lines i:last-child { top: 10px; }
.menu-open .menu-lines i:first-child { top: 7px; transform: rotate(45deg); }
.menu-open .menu-lines i:last-child { top: 7px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #293037;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 14, 0.55) 0%, rgba(7, 11, 14, 0.12) 64%, rgba(7, 11, 14, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 11, 14, 0.48) 0%, rgba(7, 11, 14, 0.04) 37%, rgba(7, 11, 14, 0.88) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: clamp(90px, 13vw, 210px);
  height: 7px;
  background: var(--red);
}
.hero-photo { position: absolute; z-index: 0; inset: -4%; margin: 0; overflow: hidden; }
.hero-photo img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.82) contrast(1.04);
  transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.045);
  transform-origin: center;
  animation: hero-image-in 1.8s var(--ease) both;
  will-change: transform;
}
.hero-photo figcaption {
  position: absolute;
  z-index: 3;
  right: calc(4% + 30px);
  bottom: calc(4% + 28px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 56px));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 46px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  column-gap: 22px;
}
.eyebrow, .section-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before, .section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  display: block;
  flex: 0 0 28px;
  background: currentColor;
}
.hero-eyebrow {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.8);
  animation: hero-fade 0.9s 0.2s var(--ease) both;
}
h1, h2 { margin: 0; }
h1 {
  grid-column: 1 / -1;
  min-width: 0;
  max-width: 100%;
  align-self: end;
  margin: clamp(80px, 14vh, 170px) 0 40px;
  display: flex;
  align-items: baseline;
  gap: 0.17em;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: clamp(68px, 8.2vw, 126px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
}
h1 .hero-name-first,
h1 .hero-name-last,
h1 .hero-name-dot {
  position: relative;
  display: inline-block;
  line-height: 0.9;
  animation: title-reveal 1.05s 0.18s var(--ease) both;
}
h1 .hero-name-surname {
  max-width: 100%;
  display: inline-flex;
  align-items: baseline;
}
h1 .hero-name-first {
  z-index: 2;
  font-weight: 400;
}
h1 .hero-name-last {
  z-index: 2;
  font-weight: 800;
  animation-delay: 0.3s;
}
h1 .hero-name-dot {
  z-index: 2;
  margin-left: 0.04em;
  color: var(--red);
  font-style: normal;
  font-weight: 800;
  animation-delay: 0.42s;
}
.hero-bottom {
  grid-column: 1 / span 9;
  align-self: end;
  padding-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  animation: hero-fade 0.9s 0.72s var(--ease) both;
}
.hero-lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 13px; }
.hero-socials {
  padding-top: 2px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-socials a {
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.3s var(--ease);
}
.hero-socials a:hover { color: var(--ink); border-color: var(--white); background: var(--white); transform: translateY(-2px); }
.hero-socials .external-icon { width: 8px; height: 8px; margin-left: 2px; }
.button {
  min-height: 47px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), color 0.3s ease, background 0.3s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { color: var(--red); background: var(--white); }
.text-link {
  position: relative;
  padding: 4px 0 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
  transform-origin: left;
}
.text-link:hover::after { transform: scaleX(0.35); }
.text-link span { margin-left: 12px; color: var(--rose); }
.hero-roles {
  grid-column: 9 / -1;
  align-self: end;
  padding: 2px 0 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
  animation: hero-fade 0.9s 0.9s var(--ease) both;
}
.hero-roles p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-roles span {
  margin-top: 11px;
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.25;
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.scroll-cue span {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: scroll-cue 2s ease-in-out infinite;
}

.section { width: min(var(--max), calc(100% - 56px)); margin-right: auto; margin-left: auto; }
h2 {
  font-family: var(--font-sans);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.048em;
}
.bio { padding-top: clamp(82px, 8vw, 112px); padding-bottom: clamp(86px, 8.5vw, 118px); }
.section-heading { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 22px; }
.section-heading .section-label { grid-column: 1 / span 3; padding-top: 13px; }
.section-heading h2 { grid-column: 4 / -1; max-width: 950px; }
.bio-layout {
  margin-top: clamp(40px, 5vw, 62px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 22px;
}
.bio-copy { grid-column: 1 / span 5; max-width: 58ch; }
.bio-copy p {
  margin: 0;
  padding: 0;
  border-top: 0;
  color: #4d565c;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.64;
}
.bio-copy p + p { margin-top: 14px; }
.bio-copy .bio-opening {
  margin-bottom: 23px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(23px, 2.35vw, 34px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.bio-copy .bio-opening + p { margin-top: 0; }
.bio-recorrido {
  grid-column: 7 / -1;
  padding-left: clamp(28px, 4vw, 58px);
  border-left: 1px solid var(--line);
}
.bio-recorrido .section-label { margin-bottom: 28px; }
.bio-recorrido h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 550;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.bio-recorrido p {
  max-width: 64ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}
.bio-recorrido strong {
  max-width: 60ch;
  margin-top: 25px;
  padding: 18px 0 0 20px;
  display: block;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--red);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.62;
}

.legacy {
  padding: clamp(92px, 10vw, 140px) 0 clamp(98px, 11vw, 150px);
  overflow: hidden;
  background: var(--surface);
}
.legacy-marquee {
  width: max-content;
  margin-bottom: clamp(72px, 8vw, 108px);
  display: flex;
  animation: legacy-flow 38s linear infinite;
  will-change: transform;
}
.legacy-marquee-group {
  padding-right: clamp(28px, 3.5vw, 54px);
  display: flex;
  align-items: center;
  flex: none;
  gap: clamp(28px, 3.5vw, 54px);
  color: transparent;
  font-size: clamp(72px, 10.5vw, 150px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.065em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(217, 31, 54, 0.35);
}
.legacy-marquee-group i {
  color: var(--red);
  font-size: 0.48em;
  font-style: normal;
  -webkit-text-stroke: 0;
}
.legacy-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 22px;
}
.legacy-inner > .section-label { grid-column: 1 / span 3; align-self: start; padding-top: 13px; }
.legacy-copy { grid-column: 4 / -1; }
.legacy-copy h2 { max-width: 970px; }
.legacy-lead {
  max-width: 69ch;
  margin: clamp(42px, 5vw, 65px) 0 0;
  color: #434b51;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.66;
}
.legacy-note {
  max-width: 63ch;
  margin: 28px 0 0 auto;
  padding: 2px 0 2px 28px;
  border-left: 3px solid var(--red);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.positioning {
  width: 100%;
  max-width: none;
  padding: clamp(86px, 8.5vw, 118px) max(28px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 22px;
  color: var(--white);
  background: var(--ink);
}
.positioning-heading {
  grid-column: 1 / span 5;
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 42px);
  padding-right: clamp(30px, 5vw, 70px);
}
.positioning .section-label { color: var(--rose); }
.positioning-heading h2 { max-width: 550px; margin-top: 35px; font-size: clamp(42px, 4.7vw, 64px); }
.positioning-heading > p {
  max-width: 52ch;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}
.position-list {
  grid-column: 6 / -1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.position-list article {
  position: relative;
  min-height: 0;
  padding: 29px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
}
.position-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(217, 31, 54, 0.16), transparent 75%);
  transform: translateX(-105%);
  transition: transform 0.65s var(--ease);
}
.position-list article:hover::before { transform: translateX(0); }
.position-list article > span {
  position: relative;
  z-index: 1;
  padding-top: 5px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
}
.position-list article > div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(250px, 1.18fr);
  gap: clamp(28px, 4vw, 60px);
}
.position-list h3 {
  margin: 0;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 550;
  line-height: 1.04;
  letter-spacing: -0.045em;
  transition: color 0.3s ease, transform 0.45s var(--ease);
}
.position-list article:hover h3 { color: var(--rose); transform: translateX(6px); }
.position-list p {
  max-width: 48ch;
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.68;
}

.present { padding: clamp(86px, 8.5vw, 118px) 0; background: var(--surface); }
.section-label-light { color: var(--red); }
.present-heading {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(50px, 9vw, 125px);
}
.present-heading > * { min-width: 0; }
.present-heading h2 { max-width: 760px; }
.present-heading p { max-width: 520px; margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.role-cards {
  margin-top: clamp(48px, 5.5vw, 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.role-cards > a {
  position: relative;
  min-height: 390px;
  padding: 38px 34px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s ease;
}
.role-cards > a:first-child { border-right: 1px solid var(--line); }
.role-cards > a::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.62s var(--ease);
}
.role-cards > a:nth-child(2)::before { background: var(--ink); }
.role-cards > a:hover { color: var(--white); }
.role-cards > a:hover::before { transform: scaleY(1); }
.role-number {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  transition: color 0.35s ease;
}
.role-cards > a:hover .role-number { color: var(--rose); }
.role-content { position: relative; z-index: 1; min-width: 0; display: flex; flex-direction: column; }
.role-content > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.role-cards > a:hover .role-content > span { color: var(--rose); }
.role-content h3 {
  max-width: 530px;
  margin: 48px 0 20px;
  font-family: var(--font-sans);
  font-size: clamp(33px, 3.5vw, 49px);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.048em;
}
.role-content p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
  transition: color 0.35s ease;
}
.role-cards > a:hover .role-content p { color: rgba(255, 255, 255, 0.72); }
.role-content b {
  margin-top: auto;
  padding-top: 30px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.35s ease, transform 0.35s var(--ease);
}
.role-cards > a:hover .role-content b { color: var(--white); transform: translateX(8px); }
.external-icon { position: relative; width: 12px; height: 12px; margin-left: 9px; display: inline-block; flex: 0 0 12px; }
.external-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 1px;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}
.external-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.city-project {
  position: relative;
  margin-top: clamp(70px, 8vw, 105px);
  padding: clamp(48px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: end;
  gap: clamp(50px, 8vw, 115px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 5%, rgba(217, 31, 54, 0.22), transparent 34%),
    var(--ink);
}
.city-project::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(34%, 350px);
  height: 6px;
  background: var(--red);
}
.city-project > div:first-child > span {
  color: var(--rose);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.city-project h3 {
  max-width: 670px;
  margin: 34px 0 0;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 550;
  line-height: 0.98;
  letter-spacing: -0.052em;
}
.city-project p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.72;
}
.city-project a {
  position: relative;
  margin-top: 34px;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--rose);
  border-bottom: 1px solid rgba(255, 194, 202, 0.55);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.35s var(--ease), color 0.25s ease;
}
.city-project a:hover { gap: 26px; color: var(--white); }

.participate {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(105px, 12vw, 165px) max(28px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 22px;
  color: var(--white);
  background: var(--red);
}
.participate-intro { grid-column: 1 / span 5; padding-right: clamp(20px, 5vw, 68px); }
.participate .section-label { color: var(--rose); }
.participate-intro h2 { margin-top: 35px; font-size: clamp(58px, 7vw, 96px); }
.participate-intro > p {
  max-width: 480px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.74;
}
.social-links {
  margin-top: 38px;
  display: flex;
  gap: 25px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.social-links a {
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}
.social-links a:hover { border-color: var(--white); transform: translateY(-2px); }
.join-form {
  grid-column: 6 / -1;
  padding: clamp(34px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 32px 80px rgba(93, 8, 21, 0.24);
}
.join-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #42494e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.join-form label > span { color: var(--muted); font-weight: 500; }
.join-form input, .join-form select, .join-form textarea {
  width: 100%;
  padding: 14px 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(17, 21, 25, 0.28);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.25s ease, padding 0.3s var(--ease);
}
.join-form input::placeholder, .join-form textarea::placeholder { color: #92979a; }
.join-form input:focus, .join-form select:focus, .join-form textarea:focus { padding-left: 8px; border-color: var(--red); }
.join-form textarea { min-height: 95px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.join-form button {
  min-height: 56px;
  margin-top: 4px;
  padding: 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.join-form button:hover { background: var(--red); transform: translateY(-2px); }
.join-form button:disabled { cursor: wait; opacity: 0.62; }
.join-form .website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.join-form .consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 11px;
  letter-spacing: 0;
  text-transform: none;
}
.join-form .consent-field input { width: 18px; height: 18px; padding: 0; border: 0; accent-color: var(--red); }
.join-form .consent-field span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.form-note, .form-status { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.form-status { padding: 11px 13px; color: var(--red-dark); background: #f7e0e4; font-weight: 800; }
.form-status.is-error { color: #7d0d1c; background: #ffe1e6; }

footer {
  min-height: 230px;
  margin: 0;
  padding: 60px max(28px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 36px;
  color: var(--white);
  background: var(--ink);
}
.footer-name { font-family: var(--font-sans); font-size: 24px; font-weight: 700; letter-spacing: -0.045em; }
.footer-name::after { content: "."; color: var(--red); }
footer > p {
  max-width: 540px;
  justify-self: end;
  margin: 0;
  text-align: right;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}
footer small {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.82s var(--ease), transform 0.82s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

@keyframes hero-image-in {
  from { opacity: 0.35; transform: translate3d(0, 0, 0) scale(1.12); }
  to { opacity: 1; }
}
@keyframes title-reveal {
  from { opacity: 0; clip-path: inset(0 -0.08em 100% -0.08em); transform: translateY(38px); }
  to { opacity: 1; clip-path: inset(-0.08em -0.08em -0.24em -0.08em); transform: translateY(0); }
}
@keyframes hero-fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-cue {
  0% { transform: translateY(-105%); }
  45%, 100% { transform: translateY(105%); }
}
@keyframes legacy-flow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 1080px) {
  .hero-bottom { grid-column: 1 / span 9; }
  .hero-roles { grid-column: 9 / -1; }
  .section-heading .section-label { grid-column: 1 / span 2; }
  .section-heading h2 { grid-column: 3 / -1; }
  .bio-copy { grid-column: 1 / span 5; }
  .bio-recorrido { grid-column: 6 / -1; }
  .legacy-inner > .section-label { grid-column: 1 / span 2; }
  .legacy-copy { grid-column: 3 / -1; }
  .positioning { row-gap: 75px; }
  .positioning-heading, .position-list { grid-column: 1 / -1; }
  .positioning-heading { position: static; padding-right: 0; }
  .positioning-heading h2 { max-width: 820px; }
  .present-heading { grid-template-columns: 1fr; gap: 35px; }
  .city-project { grid-template-columns: 1fr; align-items: start; }
  .city-project p { max-width: 68ch; }
  .participate { row-gap: 65px; }
  .participate-intro, .join-form { grid-column: 1 / -1; }
  .participate-intro { padding-right: 0; }
  .participate-intro > p { max-width: 670px; }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; }
  .site-header { padding: 0 18px; }
  .site-header.is-scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .site-header.menu-open { color: var(--white); background: var(--ink); box-shadow: none; }
  .header-home { font-size: 18px; }
  .menu-toggle { display: flex; }
  .site-header nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    padding: 125px 24px 46px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    color: var(--white);
    background: linear-gradient(145deg, rgba(217, 31, 54, 0.16), transparent 48%), var(--ink);
    transform: translate3d(0, -105%, 0);
    transition:
      transform 0.62s var(--ease),
      opacity 0.2s ease,
      visibility 0s 0.62s;
  }
  .site-header.menu-open nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }
  .site-header nav a {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--font-sans);
    font-size: clamp(29px, 9vw, 44px);
    font-weight: 600;
    letter-spacing: -0.045em;
    text-transform: none;
  }
  .site-header nav a:not(.nav-cta)::after { display: none; }
  .site-header .nav-cta, .site-header.is-scrolled .nav-cta {
    min-height: auto;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
  }
  .site-header .nav-cta:hover { color: var(--rose); background: transparent; }
  .scroll-progress { z-index: 4; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 11, 14, 0.46), rgba(7, 11, 14, 0.12)),
      linear-gradient(180deg, rgba(7, 11, 14, 0.54), rgba(7, 11, 14, 0.04) 34%, rgba(7, 11, 14, 0.92) 78%);
  }
  .hero-photo { inset: -2%; }
  .hero-photo img { object-position: 48% center; }
  .hero-photo figcaption, .scroll-cue { display: none; }
  .hero-copy {
    width: calc(100% - 36px);
    padding: calc(var(--header-height) + 30px) 0 28px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    column-gap: 0;
  }
  .hero-eyebrow, h1, .hero-bottom, .hero-roles { grid-column: 1; }
  h1 {
    align-self: end;
    margin: 54px 0 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.14em;
    font-size: clamp(40px, 11.7vw, 58px);
    line-height: 0.92;
    white-space: normal;
  }
  h1 .hero-name-first,
  h1 .hero-name-last,
  h1 .hero-name-dot { line-height: 0.92; }
  h1 .hero-name-first,
  h1 .hero-name-surname { max-width: 100%; }
  .hero-bottom { padding-top: 20px; grid-template-columns: 1fr; gap: 21px; }
  .hero-lead { max-width: 500px; font-size: 14px; line-height: 1.58; }
  .hero-actions { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .hero-socials { width: 100%; padding-top: 0; gap: 8px; }
  .hero-socials a { min-height: 38px; padding: 0 13px; }
  .button { min-height: 44px; padding: 0 16px; font-size: 8px; }
  .hero-roles {
    margin-top: 24px;
    padding: 18px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }
  .hero-roles p { grid-column: 1 / -1; margin-bottom: 2px; }
  .hero-roles span { margin: 0; font-size: 13px; }
  .section { width: calc(100% - 36px); }
  .positioning,
  .participate {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
  h2 { font-size: clamp(40px, 11vw, 52px); }
  .bio { padding-top: 92px; padding-bottom: 105px; }
  .section-heading { grid-template-columns: 1fr; row-gap: 35px; }
  .section-heading .section-label, .section-heading h2 { grid-column: 1; }
  .section-heading .section-label { padding-top: 0; }
  .bio-layout { margin-top: 70px; grid-template-columns: 1fr; row-gap: 38px; }
  .bio-copy { grid-column: 1; }
  .bio-recorrido {
    grid-column: 1;
    padding: 38px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .bio-recorrido h3 { font-size: 29px; }
  .bio-recorrido strong { padding-left: 16px; }
  .bio-copy p { padding: 0; font-size: 15px; line-height: 1.68; }
  .bio-copy p + p { margin-top: 14px; }
  .bio-copy .bio-opening { margin-bottom: 24px; font-size: 24px; line-height: 1.45; }
  .bio-copy .bio-opening + p { margin-top: 0; }
  .legacy { padding: 82px 0 96px; }
  .legacy-marquee { margin-bottom: 66px; animation-duration: 28s; }
  .legacy-marquee-group {
    gap: 25px;
    padding-right: 25px;
    font-size: clamp(62px, 18vw, 82px);
    letter-spacing: -0.055em;
  }
  .legacy-inner { grid-template-columns: 1fr; row-gap: 34px; }
  .legacy-inner > .section-label,
  .legacy-copy { grid-column: 1; }
  .legacy-inner > .section-label { padding-top: 0; }
  .legacy-copy h2 { font-size: clamp(42px, 12.7vw, 58px); }
  .legacy-lead { margin-top: 39px; font-size: 16px; line-height: 1.66; }
  .legacy-note { margin: 24px 0 0; padding-left: 20px; font-size: 14px; }
  .positioning { padding: 98px 18px 105px; grid-template-columns: 1fr; row-gap: 60px; }
  .positioning-heading, .position-list { grid-column: 1; }
  .positioning-heading h2 { font-size: clamp(43px, 12.8vw, 60px); }
  .positioning-heading > p { margin-top: 26px; font-size: 13px; }
  .position-list article { min-height: 0; padding: 28px 0 31px; grid-template-columns: 34px 1fr; gap: 9px; }
  .position-list article > div { grid-template-columns: 1fr; gap: 17px; }
  .position-list h3 { font-size: 31px; }
  .position-list p { font-size: 13px; }
  .present { padding: 98px 0 105px; }
  .present-heading { margin-top: 35px; }
  .present-heading p { font-size: 15px; }
  .role-cards { margin-top: 65px; grid-template-columns: 1fr; }
  .role-cards > a {
    min-height: 0;
    padding: 31px 24px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .role-cards > a:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .role-number { margin-bottom: 34px; }
  .role-content h3 { margin-top: 28px; font-size: clamp(34px, 10.6vw, 47px); }
  .city-project {
    margin-top: 64px;
    padding: 42px 24px 48px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .city-project h3 { margin-top: 25px; font-size: clamp(40px, 12.5vw, 56px); }
  .city-project p { font-size: 14px; line-height: 1.68; }
  .participate { padding: 95px 18px 100px; grid-template-columns: 1fr; row-gap: 55px; }
  .participate-intro, .join-form { grid-column: 1; }
  .participate-intro h2 { font-size: clamp(53px, 16vw, 72px); }
  .join-form { padding: 34px 20px; gap: 20px; }
  .field-row { grid-template-columns: 1fr; gap: 20px; }
  footer { min-height: 260px; padding: 50px 18px; grid-template-columns: 1fr; }
  footer > p { justify-self: start; text-align: left; }
  footer small { grid-column: 1; }
}

@media (max-width: 359px) {
  h1 { font-size: 39px; }
}

@media (max-width: 420px) and (max-height: 760px) {
  .hero-copy { padding-top: calc(var(--header-height) + 20px); }
  .hero-eyebrow { font-size: 7px; }
  h1 { margin-bottom: 22px; font-size: clamp(40px, 11.7vw, 58px); }
  .hero-lead { font-size: 13px; }
  .hero-roles { margin-top: 18px; padding-top: 14px; }
}

@media (hover: none) {
  .role-cards > a:first-child { color: var(--white); background: var(--red); }
  .role-cards > a:first-child .role-number,
  .role-cards > a:first-child .role-content > span { color: var(--rose); }
  .role-cards > a:first-child .role-content p { color: rgba(255, 255, 255, 0.75); }
  .role-cards > a:first-child .role-content b { color: var(--white); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-photo img { transform: scale(1.045) !important; }
  .legacy-marquee { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
