@font-face {
  font-family: "Open Sans";
  src: url("assets/b30d36fe166e9f21.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/65105bb0b534450b.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/91e9b60a146d8218.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/0f16569d9dbeda35.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #27282d;
  --charcoal-deep: #17181b;
  --charcoal-soft: #35363b;
  --ink: #1d1e21;
  --paper: #f5f3ed;
  --paper-deep: #e9e5dc;
  --white: #ffffff;
  --yellow: #f0df13;
  --yellow-soft: #f5e96b;
  --green: #278b3d;
  --muted: #6e6e6b;
  --line: rgba(29, 30, 33, 0.16);
  --header-height: 82px;
  --section-x: clamp(24px, 5vw, 78px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
summary {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--charcoal-deep);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--yellow);
}

.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;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 1000;
  padding: 11px 17px;
  color: var(--charcoal-deep);
  background: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.section-shell {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding-inline: var(--section-x);
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 58px;
}

.section-heading h2,
.program-intro h2,
.memory-copy h2,
.coverage-copy h2,
.project-copy h2,
.sound-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.content-section {
  padding-block: clamp(90px, 11vw, 165px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 13px clamp(20px, 3.4vw, 54px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(15, 15, 17, 0.72), transparent);
  transition: min-height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  min-height: 68px;
  background: rgba(23, 24, 27, 0.96);
  box-shadow: 0 7px 26px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 116px;
  height: auto;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 31px);
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--yellow);
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.header-cta {
  min-width: 108px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  color: var(--charcoal-deep);
  background: var(--yellow);
  border-color: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 31px;
  height: 26px;
  padding: 2px 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal-deep);
}

.hero-background,
.contact-background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(12, 13, 15, 0.92) 0%, rgba(12, 13, 15, 0.48) 52%, rgba(12, 13, 15, 0.72) 100%),
    url("assets/pax/orquesta-desenfocada.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 73% 39%, rgba(240, 223, 19, 0.11), transparent 34%);
}

.score-lines {
  position: absolute;
  inset: 27% 0 auto;
  height: 22%;
  opacity: 0.12;
  background: repeating-linear-gradient(to bottom, transparent 0 19px, var(--white) 20px 21px);
  transform: rotate(-3deg) scale(1.1);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 48px));
  padding: calc(var(--header-height) + 36px) 0 86px;
  text-align: center;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero-logo {
  width: clamp(340px, 48vw, 680px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.32));
}

.hero-tagline {
  width: fit-content;
  margin: -1px auto 22px;
  padding: 4px 18px;
  color: var(--charcoal-deep);
  background: var(--yellow);
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 690px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(19px, 2.1vw, 29px);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 37px;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--charcoal-deep);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-primary:hover {
  background: var(--yellow-soft);
  border-color: var(--yellow-soft);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 25px;
  background: var(--yellow);
  animation: scroll-pulse 1.7s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.index-section {
  padding-block: 90px;
  color: var(--white);
  background: var(--charcoal);
  border-top: 9px solid var(--yellow);
}

.index-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.chapter-number {
  color: rgba(255, 255, 255, 0.08);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.75;
}

.index-title-block .kicker {
  margin-top: -7px;
  color: var(--yellow);
}

.index-title-block h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 400;
  line-height: 1;
}

.index-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.index-list a {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(19px, 2.2vw, 30px);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.index-list a span {
  color: var(--yellow);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.index-list a:hover {
  padding-left: 10px;
  color: var(--yellow);
}

.chapter {
  position: relative;
  min-height: 74vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.chapter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(22, 23, 26, 0.92), rgba(22, 23, 26, 0.49));
}

.chapter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: var(--yellow);
}

.chapter-project { background-image: url("assets/pax/manos-unidas.jpeg"); }
.chapter-symphony { background-image: url("assets/pax/tierra-espacio.jpeg"); }
.chapter-program { background-image: url("assets/pax/orquesta-desenfocada.jpeg"); }
.chapter-participants { background-image: url("assets/pax/concierto-colectivo.jpeg"); }
.chapter-contribution { background-image: url("assets/pax/paz-en-el-paisaje.jpeg"); }

.chapter-program::before {
  background: linear-gradient(100deg, rgba(22, 23, 26, 0.85), rgba(22, 23, 26, 0.34));
}

.chapter-inner {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(1380px, 100%);
  padding: 110px var(--section-x) 90px;
}

.chapter-index {
  display: block;
  margin-bottom: 35px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.chapter-inner p {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.chapter-inner h2 {
  max-width: 1100px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 10vw, 150px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.project-intro {
  background: var(--paper);
}

.project-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.project-copy > p:not(.kicker) {
  max-width: 650px;
  color: #4e4f4d;
  font-size: 17px;
}

.project-copy > p:nth-of-type(2) {
  margin-top: 34px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.5;
}

.project-visual {
  position: relative;
  margin: 0;
}

.project-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  background: var(--yellow);
}

.project-visual blockquote {
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: min(390px, 85%);
  margin: 0;
  padding: 30px 35px;
  color: var(--white);
  background: var(--charcoal);
}

.project-visual blockquote p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2.3vw, 31px);
  font-style: italic;
  line-height: 1.45;
}

.objectives-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 4%, rgba(240, 223, 19, 0.1), transparent 28rem),
    linear-gradient(180deg, #292a30 0%, #222328 100%);
}

.objectives-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(20% - 1px),
    rgba(255, 255, 255, 0.025) 20%
  );
}

.objectives-section .section-shell {
  position: relative;
  z-index: 1;
}

.objectives-section .section-heading {
  display: grid;
  grid-template-columns: auto minmax(4rem, 1fr);
  column-gap: clamp(28px, 4vw, 72px);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.objectives-section .section-heading::after {
  height: 1px;
  margin-bottom: clamp(8px, 1vw, 15px);
  content: "";
  background: linear-gradient(90deg, rgba(240, 223, 19, 0.62), rgba(255, 255, 255, 0.12));
}

.objectives-section .section-heading .kicker {
  grid-column: 1 / -1;
}

.objectives-section .kicker,
.section-heading.light .kicker {
  color: var(--yellow);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.objectives-grid li {
  position: relative;
  isolation: isolate;
  grid-column: span 2;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(24px, 2.5vw, 36px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.objectives-grid li:nth-child(n + 4) {
  grid-column: span 3;
  min-height: 250px;
}

.objectives-grid li::before {
  position: absolute;
  z-index: -1;
  top: -74px;
  right: -74px;
  width: 148px;
  height: 148px;
  content: "";
  border: 1px solid rgba(240, 223, 19, 0.2);
  border-radius: 50%;
  transition: border-color 0.25s ease, transform 0.35s ease;
}

.objectives-grid li::after {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 72px;
  height: 3px;
  content: "";
  background: var(--yellow);
  transition: width 0.25s ease, background 0.25s ease;
}

.objectives-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid rgba(240, 223, 19, 0.42);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.objectives-grid p {
  max-width: 34ch;
  margin: 52px 0 0;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1.55;
}

@media (hover: hover) {
  .objectives-grid li:hover {
    color: var(--charcoal-deep);
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    transform: translateY(-6px);
  }

  .objectives-grid li:hover span {
    color: var(--charcoal-deep);
    border-color: rgba(32, 33, 36, 0.45);
  }

  .objectives-grid li:hover::before {
    border-color: rgba(32, 33, 36, 0.28);
    transform: scale(1.18);
  }

  .objectives-grid li:hover::after {
    width: 100%;
    background: var(--charcoal-deep);
  }
}

.sound-section {
  background: var(--paper);
}

.sound-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1.22fr;
  gap: clamp(48px, 8vw, 125px);
  align-items: center;
}

.sound-visual {
  position: relative;
}

.sound-visual img {
  width: 100%;
  min-height: 630px;
  object-fit: cover;
}

.sound-visual::after {
  content: "El sonido de la paz";
  position: absolute;
  left: -24px;
  bottom: 45px;
  max-width: 320px;
  color: var(--yellow);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 5vw, 72px);
  font-style: italic;
  line-height: 0.92;
  transform: rotate(-4deg);
}

.sound-copy .lead {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.45;
}

.sound-copy > p:not(.kicker, .lead) {
  color: #555652;
  font-size: 15px;
}

.lyrics-section {
  color: var(--white);
  background:
    linear-gradient(rgba(20, 21, 24, 0.93), rgba(20, 21, 24, 0.97)),
    url("assets/pax/tierra-espacio.jpeg") center / cover fixed;
}

.editorial-details,
.program-block {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.editorial-details summary,
.program-block summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
}

.editorial-details summary::-webkit-details-marker,
.program-block summary::-webkit-details-marker {
  display: none;
}

.editorial-details summary span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-details summary i,
.program-block summary i {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.editorial-details summary i::before,
.editorial-details summary i::after,
.program-block summary i::before,
.program-block summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.editorial-details summary i::after,
.program-block summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.editorial-details[open] summary i::after,
.program-block[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.lyrics-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.45fr;
  gap: 50px;
  padding: 40px 0 25px;
}

.lyrics-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lyrics-columns > div {
  padding-left: 19px;
  border-left: 3px solid var(--yellow);
}

.lyrics-columns p {
  margin: 0 0 28px;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  line-height: 1.7;
}

.translation {
  padding: 30px;
  color: var(--charcoal-deep);
  background: var(--yellow);
}

.translation h3 {
  margin: 0 0 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.translation dl {
  margin: 0;
}

.translation dt {
  margin-top: 14px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.translation dd {
  margin: 2px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  line-height: 1.4;
}

.creators-section {
  background: var(--paper);
}

.creators-grid {
  display: grid;
  gap: 46px;
}

.creator-card {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(25, 26, 29, 0.08);
}

.creator-card.reverse {
  grid-template-columns: 1fr 0.42fr;
}

.creator-card.reverse > img {
  order: 2;
}

.creator-card > img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.creator-card > div {
  position: relative;
  padding: clamp(36px, 5.5vw, 76px);
}

.creator-card .role {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.creator-card h3 {
  margin: 0 0 30px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 57px);
  font-weight: 400;
  line-height: 1;
}

.creator-card p:not(.role) {
  margin: 0 0 13px;
  color: #565652;
  font-size: 14px;
}

.creator-note {
  margin-top: 32px;
  padding: 22px 25px;
  color: var(--white);
  background: var(--charcoal);
}

.creator-note span,
.creator-note small {
  display: block;
}

.creator-note span {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.creator-note strong {
  display: block;
  margin: 4px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.creator-note small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.program-section {
  background: var(--charcoal);
  color: var(--white);
}

.program-intro {
  max-width: 980px;
  margin-bottom: 70px;
}

.program-intro .kicker {
  color: var(--yellow);
}

.program-intro > p:last-child {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.62);
}

.program-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.program-block {
  border-top: 0;
}

.program-block summary {
  display: grid;
  grid-template-columns: 62px 1fr 30px;
  min-height: 92px;
  padding-inline: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.program-block summary:hover {
  color: var(--charcoal-deep);
  background: var(--yellow);
}

.program-block summary span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.program-block summary:hover span {
  color: var(--charcoal-deep);
}

.program-block summary strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 3.1vw, 45px);
  font-weight: 400;
}

.program-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 0 0 45px 76px;
}

.program-items.three {
  grid-template-columns: repeat(3, 1fr);
}

.program-items article {
  min-height: 250px;
  padding: 32px;
  color: var(--ink);
  background: var(--paper);
}

.program-items h3 {
  margin: 0 0 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.12;
}

.program-items .work-author {
  color: var(--green);
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
}

.program-items p:not(.work-author) {
  color: #585956;
  font-size: 14px;
}

.participants-section {
  background: var(--paper);
}

.participant-row {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
}

.participant-row.reverse {
  grid-template-columns: 0.93fr 1.07fr;
}

.participant-row.reverse .participant-image {
  order: 2;
}

.participant-image {
  min-height: 580px;
  overflow: hidden;
  background: var(--charcoal);
}

.participant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.participant-row:hover .participant-image img {
  transform: scale(1.025);
}

.participant-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 105px);
  background: var(--white);
}

.participant-row:nth-child(4n + 3) .participant-copy,
.participant-row:nth-child(4n + 4) .participant-copy {
  background: var(--paper-deep);
}

.participant-number {
  position: absolute;
  right: clamp(24px, 4vw, 60px);
  top: 34px;
  color: rgba(29, 30, 33, 0.09);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 96px;
  line-height: 1;
}

.participant-logos {
  width: 108px;
  min-height: 85px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
}

.participant-logos.dual {
  width: 185px;
}

.participant-logos img {
  width: 100%;
  max-height: 96px;
  object-fit: contain;
}

.participant-logos.dual img {
  width: calc(50% - 5px);
}

.participant-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 25px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.participant-copy > p {
  max-width: 670px;
  margin: 0 0 15px;
  color: #585956;
  font-size: 14px;
}

.participant-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 23px;
}

.participant-links a,
.contact-groups a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.participant-links span,
.contact-groups span {
  color: inherit;
  font-size: 13px;
}

.value-section {
  background: var(--paper);
}

.value-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(35px, 6vw, 85px);
  align-items: center;
}

.value-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.value-list li {
  position: relative;
  padding: 17px 10px 17px 41px;
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.35;
}

.value-list li::before {
  content: "✓";
  position: absolute;
  left: 7px;
  top: 18px;
  color: var(--green);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.value-image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  background: var(--charcoal);
  box-shadow: 0 28px 70px rgba(29, 30, 33, 0.18);
}

.value-image::before {
  position: absolute;
  z-index: 2;
  inset: 18px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.value-image::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  pointer-events: none;
  content: "";
  background: var(--yellow);
}

.value-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.08);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 95px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.impact-grid article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-grid span {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.impact-grid h3 {
  margin: 65px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  font-weight: 400;
}

.impact-grid p {
  color: #5a5b58;
  font-size: 14px;
}

.coverage-section {
  min-height: 750px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.coverage-image {
  min-height: 620px;
}

.coverage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
  color: var(--white);
  background: var(--charcoal);
}

.coverage-copy .kicker {
  color: var(--yellow);
}

.coverage-copy > p:not(.kicker) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.coverage-copy > p:nth-of-type(2) {
  margin-top: 30px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
}

.manifesto-section {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal-deep);
}

.manifesto-map {
  position: absolute;
  inset: 0;
  opacity: 0.23;
}

.manifesto-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(1) grayscale(1);
}

.manifesto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 21, 24, 0.98) 0%, rgba(20, 21, 24, 0.8) 68%, rgba(20, 21, 24, 0.96) 100%);
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  padding-block: 130px;
}

.manifesto-inner .kicker {
  color: var(--yellow);
}

.manifesto-inner h2 {
  max-width: 1000px;
  margin: 0 0 60px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(55px, 9vw, 125px);
  font-weight: 700;
  line-height: 0.87;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.manifesto-copy {
  max-width: 850px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.manifesto-quote {
  max-width: 1040px;
  margin: 65px 0 0;
  padding: 34px 42px;
  border-left: 6px solid var(--yellow);
  background: rgba(0, 0, 0, 0.28);
}

.manifesto-quote p {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.45;
}

.manifesto-quote strong {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
}

.memory-section {
  background: var(--paper);
}

.memory-copy {
  max-width: 850px;
  margin-bottom: clamp(45px, 7vw, 90px);
}

.memory-copy p:last-child {
  max-width: 670px;
  margin: 28px 0 0;
  color: #5a5b58;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "black black white white badges badges"
    "black black white white notebook notebook"
    "dove dove keyring keyring notebook notebook"
    "logo-mug logo-mug peace-mug peace-mug bookmark bookmark";
  grid-auto-rows: clamp(170px, 15vw, 235px);
  gap: clamp(10px, 1.4vw, 20px);
}

.merch-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 18px 42px rgba(29, 30, 33, 0.12);
}

.merch-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.merch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.merch-card:hover img {
  transform: scale(1.03);
}

.merch-card-black-shirt { grid-area: black; }
.merch-card-white-shirt { grid-area: white; }
.merch-card-badges { grid-area: badges; }
.merch-card-notebook { grid-area: notebook; }
.merch-card-dove { grid-area: dove; }
.merch-card-keyring { grid-area: keyring; }
.merch-card-logo-mug { grid-area: logo-mug; }
.merch-card-peace-mug { grid-area: peace-mug; }
.merch-card-bookmark { grid-area: bookmark; }

.merch-card-black-shirt img,
.merch-card-white-shirt img {
  object-position: center 42%;
}

.contact-section {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal-deep);
}

.contact-background {
  background-image:
    linear-gradient(90deg, rgba(17, 18, 20, 0.98) 0%, rgba(17, 18, 20, 0.76) 55%, rgba(17, 18, 20, 0.35) 100%),
    url("assets/pax/paz-en-el-paisaje.jpeg");
  background-position: center;
}

.contact-inner {
  position: relative;
  z-index: 1;
  padding-block: 140px;
}

.contact-logo {
  width: clamp(160px, 15vw, 205px);
  margin-bottom: 45px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

.contact-inner .kicker {
  color: var(--yellow);
}

.contact-inner h2 {
  max-width: 950px;
  margin: 0 0 42px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 8.5vw, 125px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.contact-email {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--yellow);
  font-size: clamp(15px, 2vw, 27px);
}

.contact-groups {
  max-width: 610px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 65px;
}

.contact-groups p {
  width: 100%;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.contact-groups a {
  color: var(--yellow);
}

.site-footer {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 32px var(--section-x);
  color: rgba(255, 255, 255, 0.64);
  background: #0d0e10;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-mark {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-mark img {
  width: 144px;
  height: auto;
  object-fit: contain;
}

.site-footer > p {
  color: var(--white);
}

.site-footer > a {
  justify-self: end;
}

.site-footer > a span {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 19px;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .main-nav {
    justify-self: end;
  }

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

  .objectives-grid li,
  .objectives-grid li:nth-child(n + 4) {
    grid-column: auto;
  }

  .objectives-grid li:last-child {
    grid-column: 1 / -1;
  }

  .lyrics-layout {
    grid-template-columns: 1fr;
  }

  .translation {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 30px;
  }

  .program-items.three {
    grid-template-columns: 1fr;
  }

  .participant-row,
  .participant-row.reverse {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .participant-copy {
    padding: 60px 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .brand span {
    display: block;
  }

  .menu-toggle {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    justify-self: stretch;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    padding: calc(var(--header-height) + 24px) max(24px, 10vw) 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--white);
    background: rgba(20, 21, 24, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .brand {
    position: relative;
    z-index: 2;
  }

  .main-nav a {
    width: 100%;
    padding: 8px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(27px, 6vw, 42px);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .main-nav a::after {
    display: none;
  }

  .index-layout,
  .project-grid,
  .sound-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .project-visual {
    margin-top: 35px;
  }

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

  .objectives-grid li {
    min-height: 250px;
  }

  .sound-visual {
    order: 2;
  }

  .sound-visual img {
    min-height: 520px;
  }

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

  .creator-card,
  .creator-card.reverse {
    grid-template-columns: 0.56fr 1fr;
  }

  .creator-card.reverse > img {
    order: 0;
  }

  .program-items,
  .program-items.three {
    grid-template-columns: 1fr;
  }

  .participant-row,
  .participant-row.reverse {
    grid-template-columns: 1fr;
  }

  .participant-row.reverse .participant-image {
    order: 0;
  }

  .participant-image {
    min-height: 520px;
  }

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

  .impact-grid article {
    min-height: 240px;
  }

  .impact-grid h3 {
    margin-top: 38px;
  }

  .coverage-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .coverage-image {
    min-height: 500px;
  }

  .manifesto-copy {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "black white"
      "black white"
      "badges badges"
      "notebook dove"
      "notebook keyring"
      "logo-mug peace-mug"
      "bookmark bookmark";
    grid-auto-rows: clamp(155px, 28vw, 230px);
  }
}

@media (max-width: 600px) {
  :root {
    --section-x: 20px;
  }

  body {
    font-size: 15px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-inner {
    width: calc(100% - 30px);
    padding-top: 110px;
  }

  .hero-logo {
    width: min(380px, 96%);
  }

  .contact-logo {
    width: 135px;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-tagline {
    letter-spacing: 0.1em;
  }

  .index-section {
    padding-block: 70px;
  }

  .chapter-number {
    font-size: 85px;
  }

  .index-list a {
    grid-template-columns: 58px 1fr;
  }

  .chapter {
    min-height: 590px;
    background-attachment: scroll;
  }

  .chapter-inner h2 {
    font-size: clamp(54px, 20vw, 92px);
  }

  .chapter-participants .chapter-inner h2,
  .chapter-contribution .chapter-inner h2 {
    font-size: clamp(48px, 15vw, 60px);
  }

  .content-section {
    padding-block: 80px;
  }

  .project-copy > p:not(.kicker) {
    font-size: 15px;
  }

  .project-visual::before {
    inset: -10px 10px 10px -10px;
  }

  .project-visual blockquote {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 20px);
    margin: -35px 0 0 20px;
  }

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

  .objectives-grid li,
  .objectives-grid li:nth-child(n + 4),
  .objectives-grid li:last-child {
    grid-column: auto;
    min-height: 220px;
  }

  .objectives-section .section-heading {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .objectives-section .section-heading::after {
    display: none;
  }

  .sound-visual img {
    min-height: 400px;
  }

  .sound-visual::after {
    left: 12px;
  }

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

  .lyrics-columns p {
    font-size: 13px;
  }

  .translation dt {
    font-size: 10px;
  }

  .translation {
    display: block;
  }

  .creator-card,
  .creator-card.reverse {
    grid-template-columns: 1fr;
  }

  .creator-card > img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .creator-card > div {
    padding: 34px 24px;
  }

  .creator-card .role,
  .creator-note span {
    font-size: 10px;
  }

  .creator-card p:not(.role),
  .program-items p:not(.work-author),
  .participant-copy > p,
  .impact-grid p,
  .manifesto-copy {
    font-size: 14px;
  }

  .program-block summary {
    grid-template-columns: 38px 1fr 25px;
    padding-inline: 6px;
  }

  .program-items {
    padding-left: 0;
  }

  .program-items article {
    min-height: 0;
    padding: 27px 22px;
  }

  .participant-image {
    min-height: 370px;
  }

  .participant-copy {
    padding: 58px 23px;
  }

  .participant-links a,
  .contact-groups a {
    min-height: 44px;
    font-size: 11px;
  }

  .participant-number {
    right: 17px;
    top: 20px;
    font-size: 67px;
  }

  .impact-grid {
    margin-top: 70px;
  }

  .coverage-image {
    min-height: 360px;
  }

  .coverage-copy {
    padding: 70px 23px;
  }

  .manifesto-section {
    min-height: 0;
  }

  .manifesto-inner {
    padding-block: 95px;
  }

  .manifesto-quote {
    margin-top: 42px;
    padding: 25px 23px;
  }

  .merch-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-auto-rows: auto;
  }

  .merch-card,
  .merch-card-black-shirt,
  .merch-card-white-shirt,
  .merch-card-badges,
  .merch-card-notebook,
  .merch-card-dove,
  .merch-card-keyring,
  .merch-card-logo-mug,
  .merch-card-peace-mug,
  .merch-card-bookmark {
    grid-area: auto;
    aspect-ratio: 4 / 3;
  }

  .merch-card-black-shirt,
  .merch-card-white-shirt,
  .merch-card-notebook {
    aspect-ratio: 4 / 5;
  }

  .contact-section {
    min-height: 790px;
  }

  .contact-inner {
    padding-block: 100px;
  }

  .contact-email {
    font-size: 14px;
  }

  .contact-groups {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-groups p {
    font-size: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer > a {
    justify-self: start;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .chapter {
    background-attachment: scroll;
  }
}
