:root {
  --ink: #090909;
  --ink-soft: #141414;
  --paper: #f0eee7;
  --paper-dim: #d7d5ce;
  --blue: #174dff;
  --blue-dark: #0d32ad;
  --acid: #d9ff38;
  --red: #ff3b23;
  --white: #fff;
  --line-dark: rgba(255, 255, 255, 0.19);
  --line-light: rgba(9, 9, 9, 0.22);
  --display: "Syne", "Arial Black", sans-serif;
  --body: "Archivo", system-ui, sans-serif;
  --mono: "Space Mono", monospace;
  --pad: clamp(20px, 3.3vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

html:not(.is-es) .es,
html.is-es .en {
  display: none !important;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px var(--pad);
  background: rgba(9, 9, 9, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.brand,
.nav-actions,
.nav-center,
.language {
  display: flex;
  align-items: center;
}

.brand {
  width: max-content;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
}

.brand-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name i {
  color: #a8a8a8;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
}

.nav-center {
  gap: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-center a,
.footer-links a,
.booking-direct a {
  position: relative;
}

.nav-center a::after,
.footer-links a::after,
.booking-direct a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-center a:hover::after,
.footer-links a:hover::after,
.booking-direct a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  justify-content: flex-end;
  gap: 18px;
}

.language {
  gap: 2px;
}

.language button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  color: #858585;
  font-family: var(--mono);
  font-size: 10px;
}

.language button[aria-pressed="true"] {
  border-color: #777;
  color: var(--paper);
}

.nav-cta {
  padding: 11px 15px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.nav-cta:hover {
  background: var(--acid);
}

.nav-cta.is-event-live {
  background: var(--acid);
}

.nav-cta.is-event-live:hover {
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: #070707;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: 48% 50%;
  filter: saturate(0.78) contrast(1.07);
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.03) 55%, rgba(0, 0, 0, 0.3)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 55%);
}

.hero-meta {
  position: absolute;
  top: 110px;
  right: var(--pad);
  left: var(--pad);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  position: absolute;
  right: var(--pad);
  bottom: 42px;
  left: var(--pad);
  z-index: 2;
}

.kicker {
  margin: 0 0 10px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: clamp(10px, 0.8vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 15vw, 236px);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  padding-left: 0.32em;
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  justify-content: end;
  align-items: end;
  gap: 48px;
  margin-top: 42px;
}

.hero-intro {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.35;
}

.circle-link {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--paper);
  border-radius: 50%;
  font-size: 24px;
  transition: background 180ms ease, color 180ms ease;
}

.circle-link:hover {
  background: var(--acid);
  color: var(--ink);
}

.signal {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 30px;
  padding: 20px var(--pad);
  background: var(--acid);
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-title,
.signal-items {
  display: flex;
  align-items: center;
}

.signal-title {
  gap: 10px;
  font-weight: 700;
}

.live-dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 59, 35, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}

.signal-items {
  justify-content: space-between;
  gap: 20px;
}

.section-index {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-index::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 10px;
  background: currentColor;
  vertical-align: middle;
  content: "";
}

.section-index.light {
  color: rgba(255, 255, 255, 0.7);
}

.manifesto {
  position: relative;
  padding: 70px var(--pad) 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
  padding: clamp(70px, 9vw, 150px) 0 clamp(70px, 8vw, 130px);
}

.manifesto h2,
.set-heading h2,
.formats h2,
.booking h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 8.6vw, 138px);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.manifesto h2 {
  font-size: clamp(54px, 5.8vw, 94px);
}

.set-heading h2 {
  font-size: clamp(54px, 7vw, 112px);
}

html.is-es .manifesto h2 {
  font-size: clamp(50px, 5.2vw, 84px);
}

html.is-es .set-heading h2 {
  font-size: clamp(52px, 6.4vw, 98px);
}

.manifesto-copy {
  padding-top: 10px;
}

.manifesto-copy p {
  margin: 0 0 28px;
  max-width: 48ch;
  color: #363633;
  font-size: 15px;
  line-height: 1.7;
}

.manifesto-copy p.lead {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
}

.proof-line {
  display: grid;
  gap: 10px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.manifesto-photo {
  position: relative;
  width: min(64vw, 960px);
  margin: 0 0 0 auto;
}

.manifesto-photo::before {
  position: absolute;
  top: -5vw;
  right: calc(100% - 6vw);
  width: 28vw;
  height: 28vw;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.manifesto-photo img {
  position: relative;
  height: min(82vw, 1120px);
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.1) contrast(1.04);
}

.manifesto-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.set-section {
  background: var(--blue);
  color: var(--white);
}

.set-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.45fr);
  gap: clamp(40px, 8vw, 150px);
  align-items: end;
  padding: clamp(72px, 9vw, 140px) var(--pad);
}

.set-heading h2 {
  margin-top: 56px;
}

.set-heading > p {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.movements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.movement {
  min-height: 520px;
  padding: 24px clamp(18px, 2.2vw, 36px) 36px;
  border-right: 1px solid var(--line-dark);
  transition: background 180ms ease;
}

.movement:last-child {
  border-right: 0;
}

.movement:not(.hot):hover {
  background: var(--blue-dark);
}

.movement.hot {
  background: var(--acid);
  color: var(--ink);
}

.movement-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.energy {
  opacity: 0.68;
}

.meter {
  display: flex;
  height: 110px;
  align-items: end;
  gap: 5px;
  margin: 60px 0 52px;
}

.meter i {
  display: block;
  width: calc(12.5% - 5px);
  height: 18%;
  background: currentColor;
  opacity: 0.85;
  transition: height 220ms ease;
}

.meter i:nth-child(2) { height: 27%; }
.meter i:nth-child(3) { height: 42%; }
.meter i:nth-child(4) { height: 35%; }
.meter i:nth-child(5) { height: 48%; }
.meter i:nth-child(6) { height: 32%; }
.meter i:nth-child(7) { height: 39%; }
.meter i:nth-child(8) { height: 25%; }
.meter.rise i:nth-child(1) { height: 22%; }
.meter.rise i:nth-child(2) { height: 31%; }
.meter.rise i:nth-child(3) { height: 42%; }
.meter.rise i:nth-child(4) { height: 55%; }
.meter.rise i:nth-child(5) { height: 63%; }
.meter.rise i:nth-child(6) { height: 78%; }
.meter.rise i:nth-child(7) { height: 69%; }
.meter.rise i:nth-child(8) { height: 91%; }
.meter.peak i:nth-child(1) { height: 73%; }
.meter.peak i:nth-child(2) { height: 92%; }
.meter.peak i:nth-child(3) { height: 68%; }
.meter.peak i:nth-child(4) { height: 100%; }
.meter.peak i:nth-child(5) { height: 82%; }
.meter.peak i:nth-child(6) { height: 95%; }
.meter.peak i:nth-child(7) { height: 72%; }
.meter.peak i:nth-child(8) { height: 88%; }
.meter.land i:nth-child(1) { height: 88%; }
.meter.land i:nth-child(2) { height: 74%; }
.meter.land i:nth-child(3) { height: 62%; }
.meter.land i:nth-child(4) { height: 48%; }
.meter.land i:nth-child(5) { height: 59%; }
.meter.land i:nth-child(6) { height: 38%; }
.meter.land i:nth-child(7) { height: 29%; }
.meter.land i:nth-child(8) { height: 16%; }

.movement:hover .meter i:nth-child(odd) {
  height: 94%;
}

.movement h3 {
  min-height: 2.2em;
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.movement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.movement.hot p {
  color: rgba(9, 9, 9, 0.68);
}

.formats {
  padding: clamp(72px, 8vw, 120px) var(--pad);
  background: var(--paper);
  color: var(--ink);
}

.formats-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.5fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
  margin: clamp(58px, 7vw, 110px) 0 70px;
}

.formats h2 {
  font-size: clamp(48px, 7.2vw, 112px);
}

.formats-intro p {
  margin: 0;
  color: #44443f;
  font-size: 14px;
  line-height: 1.7;
}

.format-list {
  border-top: 2px solid var(--ink);
}

.format-list article {
  display: grid;
  grid-template-columns: 0.25fr 1.15fr 0.6fr;
  gap: 30px;
  align-items: baseline;
  padding: clamp(28px, 3vw, 48px) 0;
  border-bottom: 1px solid var(--line-light);
}

.format-num {
  font-family: var(--mono);
  font-size: 10px;
}

.format-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 70px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.format-list p {
  margin: 0;
  color: #484844;
  font-size: 13px;
  line-height: 1.65;
}

.selected {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  line-height: 1.7;
  text-transform: uppercase;
}

.selected > span {
  color: #66665f;
}

.noche {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #07161e;
}

.noche-bg,
.noche-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.noche-bg {
  object-fit: cover;
  object-position: 50% 33%;
}

.noche-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0.08) 66%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 50%);
}

.noche-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 6vw, 90px) var(--pad);
}

.noche-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.noche h2 {
  width: fit-content;
  max-width: 100%;
  margin: auto 0 10px;
  font-family: var(--display);
  font-size: clamp(88px, 14.5vw, 232px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.68;
  text-transform: uppercase;
}

.noche h2 i {
  padding-left: 0.4em;
  color: var(--red);
  font-weight: 500;
  font-style: italic;
}

.noche-copy {
  display: grid;
  grid-template-columns: minmax(280px, 580px) auto;
  gap: 50px;
  align-items: end;
  justify-content: end;
}

.noche-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.5;
}

.noche-copy a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.noche-actions {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.noche-copy .noche-ticket {
  display: grid;
  width: min(360px, 100%);
  min-height: 126px;
  align-content: space-between;
  gap: 28px;
  padding: 16px;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  transition: background 160ms ease, border-color 160ms ease;
}

.noche-copy .noche-ticket:hover {
  border-color: var(--paper);
  background: var(--paper);
}

.noche-ticket-meta,
.noche-ticket strong {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.noche-ticket-meta {
  font-size: 9px;
  line-height: 1.4;
}

.noche-ticket strong {
  align-items: end;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.noche-copy .noche-venue {
  width: max-content;
  max-width: 100%;
}

.reels {
  padding: clamp(80px, 9vw, 140px) 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.reels-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 1.25fr) minmax(0, 0.4fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  padding: 0 var(--pad) clamp(54px, 7vw, 100px);
}

.reels-heading .kicker {
  margin-bottom: 18px;
}

.reels-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8.8vw, 138px);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.reels-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

html.is-es .reels-heading h2 {
  font-size: clamp(52px, 5.5vw, 82px);
}

.reel-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--acid);
}

.reel-item {
  min-width: 0;
  padding: clamp(16px, 2.3vw, 36px);
  background: var(--ink);
}

.reel-item:nth-child(2) {
  padding-top: clamp(80px, 8vw, 130px);
}

.reel-item:nth-child(3) {
  padding-top: clamp(42px, 4vw, 70px);
}

.reel-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reel-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line-dark);
}

.reel-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.reels-link {
  display: flex;
  min-height: 44px;
  width: max-content;
  max-width: calc(100% - (var(--pad) * 2));
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin: clamp(48px, 6vw, 88px) var(--pad) 0 auto;
  padding: 14px 0;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.photo-score {
  padding: clamp(80px, 10vw, 160px) var(--pad);
  background: var(--paper);
  color: var(--ink);
}

.photo-score-intro {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1.15fr) minmax(260px, 0.5fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 100px);
}

.photo-score-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 4.5vw, 82px);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

html.is-es .photo-score-intro h2 {
  font-size: clamp(46px, 4.2vw, 78px);
}

.photo-score-copy p {
  margin: 0;
  color: #363633;
  font-size: 15px;
  line-height: 1.7;
}

.photo-score-copy a {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  margin-top: 28px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.photo-score-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(76px, 8.5vw, 132px);
  gap: clamp(6px, 0.9vw, 14px);
}

.photo-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #cbc8bf;
}

.photo-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-frame:hover img {
  transform: scale(1.018);
}

.photo-frame figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.photo-jump {
  grid-column: 1 / 7;
  grid-row: 1 / span 3;
}

.photo-blue {
  grid-column: 7 / 10;
  grid-row: 1 / span 4;
}

.photo-amber {
  grid-column: 10 / 13;
  grid-row: 1 / span 2;
}

.photo-red {
  grid-column: 10 / 13;
  grid-row: 3 / span 2;
}

.photo-crowd {
  grid-column: 1 / 8;
  grid-row: 4 / span 3;
}

.photo-portrait {
  grid-column: 8 / 13;
  grid-row: 5 / span 3;
}

.photo-jump img {
  object-position: 50% 38%;
}

.photo-blue img,
.photo-amber img,
.photo-red img {
  object-position: 50% 35%;
}

.photo-crowd img {
  object-position: 50% 48%;
}

.photo-portrait img {
  object-position: 50% 28%;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(50px, 8vw, 140px);
  padding: clamp(80px, 10vw, 160px) var(--pad);
  background: var(--blue);
  color: var(--white);
}

.booking h2 {
  max-width: 10ch;
  margin: clamp(50px, 6vw, 90px) 0 40px;
  font-size: clamp(48px, 6.5vw, 104px);
}

html.is-es .booking h2 {
  font-size: clamp(48px, 5.2vw, 82px);
}

.booking-heading > p {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

.booking-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 54px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.booking-direct a,
.footer-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.booking-form {
  align-self: center;
  padding: clamp(24px, 3vw, 44px);
  background: var(--paper);
  color: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  min-width: 0;
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #99978f;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  text-transform: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 2px 0 var(--blue);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 18px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.booking-form button:hover {
  background: var(--acid);
  color: var(--ink);
}

.form-note {
  margin: 12px 0 0;
  color: #65635d;
  font-size: 10px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 40px;
  align-items: end;
  padding: clamp(60px, 8vw, 120px) var(--pad) 42px;
  background: var(--ink);
}

.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 126px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.footer-meta,
.footer-links {
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-transform: uppercase;
}

.footer-meta {
  flex-direction: column;
  color: #8b8b8b;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.88); opacity: 0.74; }
  50% { transform: scale(1); opacity: 1; }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-center {
    display: none;
  }

  .manifesto-grid,
  .set-heading,
  .formats-intro,
  .booking {
    grid-template-columns: minmax(0, 1fr);
  }

  .manifesto-grid > *,
  .set-heading > *,
  .formats-intro > *,
  .booking > * {
    min-width: 0;
  }

  .manifesto-copy {
    width: min(620px, 80%);
    margin-left: auto;
  }

  .set-heading > p,
  .formats-intro p {
    max-width: 54ch;
    margin-left: auto;
  }

  .movements {
    grid-template-columns: repeat(2, 1fr);
  }

  .movement:nth-child(2) {
    border-right: 0;
  }

  .movement:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .noche h2 {
    line-height: 0.68;
  }

  .noche-copy {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 24px;
  }

  .photo-score-intro {
    grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
    align-items: start;
  }

  .photo-score-copy {
    grid-column: 2;
  }

  .reels-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .reels-heading > p {
    max-width: 52ch;
    margin-left: auto;
  }

  .booking-form {
    width: min(720px, 100%);
    margin-left: auto;
  }

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

  .footer-wordmark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 70px;
  }

  .nav {
    min-height: 66px;
  }

  .brand-name {
    display: none;
  }

  .brand,
  .language button,
  .nav-cta {
    min-height: 44px;
  }

  .brand {
    min-width: 44px;
    margin-left: -5px;
    padding: 5px;
  }

  .language button {
    width: 44px;
    height: 44px;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    padding: 10px 11px;
  }

  .nav-actions {
    gap: 8px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-meta {
    top: 94px;
  }

  .hero-meta span:nth-child(2) {
    display: none;
  }

  .hero-photo {
    object-position: 60% 50%;
  }

  .hero-copy {
    bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 74px);
    line-height: 0.78;
  }

  .hero h1 span:last-child {
    padding-left: 0;
    -webkit-text-stroke-width: 1.4px;
  }

  .hero-bottom {
    grid-template-columns: 1fr auto;
    gap: 20px;
    margin-top: 34px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .circle-link {
    width: 48px;
    height: 48px;
  }

  .signal {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .signal-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto {
    padding-top: 48px;
  }

  .manifesto-grid {
    gap: 44px;
    padding: 58px 0 70px;
  }

  .manifesto h2,
  .set-heading h2,
  .formats h2,
  .booking h2 {
    font-size: clamp(32px, 9.5vw, 50px);
  }

  .manifesto-copy {
    width: 100%;
  }

  .manifesto-copy p.lead {
    font-size: 20px;
  }

  html.is-es .manifesto h2,
  html.is-es .set-heading h2,
  html.is-es .formats h2 {
    font-size: clamp(29px, 8.5vw, 44px);
  }

  .manifesto-photo {
    width: calc(100% + var(--pad));
    margin-right: calc(var(--pad) * -1);
  }

  .manifesto-photo img {
    height: 135vw;
  }

  .manifesto-photo::before {
    top: -12vw;
    width: 44vw;
    height: 44vw;
  }

  .set-heading {
    gap: 38px;
  }

  .set-heading h2 {
    margin-top: 44px;
  }

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

  .movement,
  .movement:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .movement:last-child {
    border-bottom: 0;
  }

  .meter {
    height: 80px;
    margin: 42px 0;
  }

  .movement h3 {
    min-height: 0;
  }

  .formats-intro {
    gap: 30px;
    margin: 48px 0;
  }

  .format-list article {
    grid-template-columns: auto 1fr;
  }

  .format-list p {
    grid-column: 2;
  }

  .selected {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .noche {
    min-height: 780px;
  }

  .noche-content {
    min-height: 780px;
  }

  .noche h2 {
    font-size: clamp(44px, 14.5vw, 72px);
    line-height: 0.7;
  }

  .noche h2 i {
    padding-left: 0.13em;
  }

  .noche-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .noche-actions {
    justify-items: start;
  }

  .noche-copy .noche-ticket {
    width: 100%;
  }

  .noche-copy a {
    width: max-content;
    max-width: 100%;
  }

  .reels-heading {
    gap: 28px;
    padding-bottom: 44px;
  }

  .reels-heading h2 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .reels-heading > p {
    margin-left: 0;
  }

  .reel-rail {
    display: flex;
    gap: 12px;
    padding: 0 var(--pad) 18px;
    overflow-x: auto;
    background: transparent;
    scroll-padding-left: var(--pad);
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--acid) transparent;
  }

  .reel-item,
  .reel-item:nth-child(2),
  .reel-item:nth-child(3) {
    width: min(82vw, 360px);
    min-width: min(82vw, 360px);
    padding: 0;
    scroll-snap-align: start;
  }

  .reels-link {
    width: auto;
    margin-left: var(--pad);
  }

  .photo-score {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .photo-score-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    margin-bottom: 46px;
  }

  .photo-score-intro h2,
  html.is-es .photo-score-intro h2 {
    font-size: clamp(25px, 7.8vw, 40px);
  }

  .photo-score-copy {
    grid-column: auto;
  }

  .photo-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 7px;
  }

  .photo-frame {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .photo-crowd {
    grid-column: 1 / -1;
    aspect-ratio: 3 / 2;
  }

  .photo-portrait {
    grid-column: 2;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form {
    padding: 24px 20px;
  }

  .footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-wordmark {
    grid-column: auto;
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .footer > * {
    min-width: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .booking h2 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 58px);
  }

  .reels-heading h2 {
    font-size: clamp(46px, 13vw, 62px);
  }

  html.is-es .booking h2,
  html.is-es .reels-heading h2 {
    font-size: clamp(34px, 9.4vw, 46px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
