@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("assets/fonts/nunito-latin-wght-normal.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Nunito";
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("assets/fonts/nunito-latin-wght-italic.woff2") format("woff2-variations");
}

:root {
  --ink: #211817;
  --ink-soft: #514441;
  --paper: #f2eddf;
  --paper-light: #fbf8ef;
  --line: rgba(33, 24, 23, 0.18);
  --blue: #173f4d;
  --blue-deep: #0d2b37;
  --teal: #177b78;
  --plum: #6b2f58;
  --coral: #df5b4f;
  --sun: #efb54f;
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(30, 22, 20, 0.17);
  --shell: min(1240px, calc(100vw - 64px));
  --title-weight: 900;
  --serif: "Nunito", "Segoe UI", Helvetica, Arial, sans-serif;
  --sans: "Nunito", "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  color: var(--white);
  background: var(--plum);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    color 280ms ease,
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 248, 239, 0.94);
  border-color: var(--line);
  box-shadow: 0 7px 28px rgba(26, 20, 18, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 34px;
  height: auto;
  padding: 3px 5px;
  object-fit: contain;
  background: rgba(255, 253, 247, 0.96);
  border-radius: 4px;
  box-shadow: 0 5px 16px rgba(21, 17, 19, 0.12);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  transform: rotate(-6deg);
}

.brand-mark i {
  position: absolute;
  display: block;
  border: 2px solid currentColor;
  border-radius: 50% 50% 45% 55%;
}

.brand-mark i:nth-child(1) {
  inset: 2px 9px 14px 1px;
}

.brand-mark i:nth-child(2) {
  inset: 10px 0 6px 13px;
}

.brand-mark i:nth-child(3) {
  inset: 19px 14px 0 6px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
}

.brand-name small {
  margin-top: 4px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.main-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 24px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-button__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-button__icon {
  position: relative;
  width: 28px;
  height: 20px;
}

.menu-button__icon i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition:
    top 220ms ease,
    transform 220ms ease;
}

.menu-button__icon i:first-child {
  top: 5px;
}

.menu-button__icon i:last-child {
  top: 13px;
}

.site-header.is-open .menu-button__icon i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.site-header.is-open .menu-button__icon i:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 25, 33, 0.91) 0%, rgba(7, 25, 33, 0.65) 48%, rgba(7, 25, 33, 0.26) 100%),
    linear-gradient(0deg, rgba(7, 25, 33, 0.54) 0%, transparent 45%);
}

.hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-art__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(239, 181, 79, 0.18), transparent 26%),
    linear-gradient(140deg, var(--blue-deep), #214e58);
}

.hero-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #183a46;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  will-change: transform;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image--main {
  top: 12%;
  right: -3%;
  width: min(62vw, 900px);
  height: min(54vw, 660px);
  opacity: 0.88;
  transform: rotate(1.5deg);
}

.hero-image--main img {
  object-position: 55% 50%;
}

.hero-image--detail {
  right: 34%;
  bottom: 10%;
  width: clamp(210px, 23vw, 360px);
  aspect-ratio: 4 / 5;
  border: 10px solid rgba(242, 237, 223, 0.92);
  transform: rotate(-5deg);
}

.hero-image--detail img {
  object-position: 63% center;
}

.hero-image--figure {
  right: 5%;
  bottom: -4%;
  width: clamp(230px, 27vw, 430px);
  aspect-ratio: 5 / 4;
  border: 10px solid rgba(242, 237, 223, 0.92);
  transform: rotate(5deg);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 253, 247, 0.27);
  border-radius: 50%;
}

.hero-orbit--one {
  top: 15%;
  right: 4%;
  width: 430px;
  height: 430px;
}

.hero-orbit--two {
  right: 18%;
  bottom: 4%;
  width: 240px;
  height: 240px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  padding-top: 150px;
  padding-bottom: 120px;
  flex-direction: column;
  justify-content: center;
}

.kicker,
.eyebrow {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
}

.kicker::before {
  display: block;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--sun);
}

.hero h1 {
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(4rem, 9.5vw, 8.8rem);
  font-weight: var(--title-weight);
  letter-spacing: -0.07em;
  line-height: 0.77;
}

.hero h1 span {
  display: block;
  width: max-content;
  margin: 0.12em 0 0.13em 0.32em;
  color: var(--sun);
  font-style: italic;
  letter-spacing: -0.045em;
}

.hero-bottom {
  display: flex;
  width: min(670px, 60vw);
  align-items: flex-end;
  justify-content: space-between;
  gap: 46px;
  margin-top: 38px;
}

.hero-bottom p {
  max-width: 485px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.round-link {
  display: grid;
  width: 122px;
  height: 122px;
  flex: 0 0 122px;
  place-content: center;
  gap: 10px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-7deg);
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.round-link b {
  font-size: 1.15rem;
}

.round-link:hover,
.round-link:focus-visible {
  background: var(--white);
  transform: rotate(0) scale(1.04);
}

.hero-ticker {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--sun);
  border-top: 1px solid rgba(33, 24, 23, 0.15);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 56px;
  align-items: center;
  gap: 26px;
  padding-inline: 24px;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track strong {
  margin-right: 5px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.ticker-track i {
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: clamp(100px, 11vw, 168px) 0;
}

.section-number {
  margin-bottom: 38px;
  color: rgba(33, 24, 23, 0.4);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.section-number::after {
  display: inline-block;
  width: min(25vw, 250px);
  height: 1px;
  margin: 0 0 5px 18px;
  content: "";
  background: currentColor;
}

.section-number--light {
  color: rgba(255, 253, 247, 0.62);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--coral);
}

.eyebrow--light {
  color: var(--sun);
}

.section-heading h2,
.themes-heading h2,
.winners-heading h2,
.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
  font-weight: var(--title-weight);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro {
  background:
    radial-gradient(circle at 80% 15%, rgba(239, 181, 79, 0.2), transparent 22%),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(48px, 9vw, 130px);
}

.intro-copy {
  padding-top: 48px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.intro-copy p + p {
  margin-top: 22px;
}

.intro-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.38;
}

.edition-card {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1.4fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin-top: clamp(76px, 9vw, 128px);
  padding: clamp(34px, 5vw, 66px);
  color: var(--white);
  background: var(--plum);
  box-shadow: var(--shadow);
}

.edition-card__title {
  display: flex;
  flex-direction: column;
}

.edition-card__title span,
.edition-card__dates span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.edition-card__title strong {
  margin-top: -5px;
  color: var(--sun);
  font-family: var(--serif);
  font-size: clamp(4.3rem, 7vw, 7rem);
  font-weight: var(--title-weight);
  line-height: 1;
}

.edition-card__dates {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 13px;
  padding-block: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.edition-card__dates span {
  grid-column: 1 / -1;
}

.edition-card__dates strong {
  font-size: 0.94rem;
}

.edition-card p {
  color: rgba(255, 253, 247, 0.8);
  font-size: 0.95rem;
}

.themes {
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  isolation: isolate;
}

.themes-media,
.themes-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.themes-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 38%;
  will-change: transform;
}

.themes-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 43, 55, 0.97), rgba(13, 43, 55, 0.74) 56%, rgba(13, 43, 55, 0.53)),
    linear-gradient(0deg, rgba(13, 43, 55, 0.82), transparent 60%);
}

.themes-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: clamp(60px, 10vw, 150px);
}

.themes-content .section-number {
  grid-column: 1 / -1;
}

.themes-heading {
  max-width: 600px;
}

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

.theme-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.theme-list span {
  color: var(--sun);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.theme-list h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: var(--title-weight);
  line-height: 1.18;
}

.themes-note {
  grid-column: 2;
  max-width: 540px;
  margin-top: 44px;
  color: rgba(255, 253, 247, 0.78);
}

.winners {
  background: var(--paper-light);
}

.winners-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(270px, 0.58fr);
  align-items: end;
  gap: clamp(52px, 9vw, 130px);
}

.winners-heading > p {
  padding-top: 38px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.catalog {
  background: var(--paper);
}

.catalog-toolbar {
  position: relative;
  z-index: 10;
  padding: 42px 0 28px;
  background: var(--sun);
  border-top: 1px solid rgba(33, 24, 23, 0.14);
  border-bottom: 1px solid rgba(33, 24, 23, 0.14);
}

.toolbar-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.toolbar-inner .eyebrow {
  margin-bottom: 5px;
  color: var(--ink);
}

.toolbar-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  font-weight: var(--title-weight);
  letter-spacing: -0.045em;
  line-height: 1;
}

.search-control {
  position: relative;
  width: min(100%, 440px);
}

.search-control input {
  width: 100%;
  height: 54px;
  padding: 0 54px 0 18px;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid rgba(33, 24, 23, 0.55);
  border-radius: 0;
  outline: 0;
}

.search-control input:focus {
  box-shadow: 0 0 0 3px rgba(107, 47, 88, 0.28);
}

.search-control > span:last-child {
  position: absolute;
  top: 50%;
  right: 19px;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-56%);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(33, 24, 23, 0.55);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

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

.filter-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.filter-button span {
  margin-left: 7px;
  opacity: 0.7;
}

.catalog-status {
  display: flex;
  min-height: 40px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}

.catalog-status p {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.catalog-status button {
  padding: 3px 0;
  color: var(--ink);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.catalog-status button[hidden] {
  display: none;
}

.discipline-section {
  --discipline-color: var(--coral);
  padding: clamp(80px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--line);
}

.discipline-section:nth-child(even) {
  background: var(--paper-light);
}

.discipline-section[hidden] {
  display: none;
}

.discipline-heading {
  display: grid;
  grid-template-columns: 110px 1fr minmax(260px, 0.55fr);
  align-items: start;
  gap: 34px;
  margin-bottom: 48px;
}

.discipline-index {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--white);
  background: var(--discipline-color);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.discipline-heading h3 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: var(--title-weight);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.discipline-heading p {
  padding-top: 19px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.work-card {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(33, 24, 23, 0.14);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.work-card:hover,
.work-card:focus-within {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.work-card.is-featured {
  grid-column: span 2;
}

.work-card[hidden] {
  display: none;
}

.work-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--blue);
  background: color-mix(in srgb, var(--discipline-color) 65%, var(--ink));
}

.work-card.is-featured .work-card__media {
  aspect-ratio: 2 / 1;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-card:hover .work-card__media img,
.work-card:focus-within .work-card__media img {
  transform: scale(1.045);
}

.work-card__placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, var(--discipline-color), var(--blue-deep));
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-style: italic;
}

.work-card__placeholder::before,
.work-card__placeholder::after {
  position: absolute;
  width: 65%;
  height: 65%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.work-card__placeholder::after {
  width: 38%;
  height: 38%;
  transform: translate(75%, 65%);
}

.work-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--sun);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.work-card__info {
  display: flex;
  padding: 25px;
  flex: 1;
  flex-direction: column;
}

.work-card__title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: var(--title-weight);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.work-card__author {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.work-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.work-card__meta {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-card__open {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--discipline-color);
  border: 0;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease;
}

.work-card__open::before {
  position: absolute;
  inset: 0;
  content: "";
}

.work-card__open:hover {
  transform: rotate(45deg);
}

.catalog-empty {
  display: none;
  width: var(--shell);
  margin: 0 auto;
  padding: 100px 0 130px;
  text-align: center;
}

.catalog-empty.is-visible {
  display: block;
}

.catalog-empty strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: var(--title-weight);
  letter-spacing: -0.04em;
}

.catalog-empty span {
  display: block;
  margin-top: 15px;
  color: var(--ink-soft);
}

.closing {
  position: relative;
  display: grid;
  min-height: 820px;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  background: var(--blue-deep);
  isolation: isolate;
}

.closing-media,
.closing-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.closing-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}

.closing-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 30%, rgba(239, 181, 79, 0.17), transparent 27%),
    linear-gradient(90deg, rgba(13, 43, 55, 0.96) 4%, rgba(13, 43, 55, 0.65) 58%, rgba(13, 43, 55, 0.48));
}

.closing-content {
  padding: 120px 0;
}

.closing h2 {
  max-width: 850px;
}

.closing-content > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 30px;
  color: rgba(255, 253, 247, 0.8);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: var(--sun);
}

.site-footer {
  padding: 62px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.6fr;
  align-items: center;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.footer-logo {
  width: 46px;
  height: auto;
  padding: 4px 6px;
  object-fit: contain;
  background: var(--white);
  border-radius: 5px;
}

.footer-grid p {
  max-width: 630px;
  color: rgba(255, 253, 247, 0.65);
  font-size: 0.85rem;
}

.footer-grid > a {
  justify-self: end;
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.consent-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: grid;
  width: min(620px, calc(100vw - 44px));
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 60px rgba(26, 20, 18, 0.26);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
}

.consent-banner p {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  line-height: 1.55;
}

.consent-banner a {
  color: var(--sun);
}

.consent-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consent-banner__actions button {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.consent-banner__actions button.is-primary {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
}

.consent-banner__actions button:hover,
.consent-banner__actions button:focus-visible {
  border-color: var(--coral);
  outline: 2px solid transparent;
}

.work-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-height: min(90vh, 920px);
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: var(--paper-light);
  border: 0;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.42);
}

.work-dialog::backdrop {
  background: rgba(11, 30, 37, 0.84);
  backdrop-filter: blur(9px);
}

.work-dialog[open] {
  animation: dialog-in 240ms ease both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}

.dialog-shell {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 640px;
  max-height: min(90vh, 920px);
  grid-template-columns: 0.92fr 1.08fr;
  overflow-x: hidden;
  overflow-y: auto;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 17px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.dialog-close span {
  margin-top: -4px;
  font-size: 2rem;
  font-weight: 300;
}

.dialog-media {
  position: sticky;
  top: 0;
  width: 100%;
  min-width: 0;
  min-height: 640px;
  max-width: 100%;
  max-height: 90vh;
  overflow: hidden;
  background: var(--blue-deep);
}

.dialog-media > img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.dialog-media .work-card__placeholder {
  min-height: 640px;
}

.dialog-media.is-gallery {
  display: flex;
  flex-direction: column;
}

.dialog-gallery {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 640px;
  flex: 1;
  flex-direction: column;
  background: var(--blue-deep);
}

.dialog-gallery__stage {
  position: relative;
  display: grid;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  place-items: center;
}

.dialog-gallery__image {
  width: 100%;
  height: 100%;
  max-height: calc(90vh - 106px);
  object-fit: contain;
}

.dialog-gallery__nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(13, 43, 55, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.dialog-gallery__nav:hover,
.dialog-gallery__nav:focus-visible {
  color: var(--ink);
  background: var(--sun);
  transform: translateY(-50%) scale(1.06);
}

.dialog-gallery__nav--previous {
  left: 14px;
}

.dialog-gallery__nav--next {
  right: 14px;
}

.dialog-gallery__counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(13, 43, 55, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dialog-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  background: rgba(5, 20, 27, 0.94);
  scrollbar-width: thin;
}

.dialog-gallery__thumb {
  width: 74px;
  height: 70px;
  flex: 0 0 74px;
  padding: 0;
  overflow: hidden;
  background: var(--blue-deep);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.58;
  transition:
    border-color 160ms ease,
    opacity 160ms ease;
}

.dialog-gallery__thumb:hover,
.dialog-gallery__thumb:focus-visible,
.dialog-gallery__thumb.is-active {
  border-color: var(--sun);
  opacity: 1;
}

.dialog-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-content {
  min-width: 0;
  padding: clamp(54px, 6vw, 84px) clamp(34px, 6vw, 76px) 40px;
}

.dialog-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  font-weight: var(--title-weight);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.dialog-author {
  margin-top: 20px;
  color: var(--plum);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.dialog-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-meta div {
  min-width: 0;
}

.dialog-meta dt {
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-meta dd {
  margin-top: 3px;
  font-size: 0.86rem;
  font-weight: 750;
}

.dialog-summary {
  margin-top: 30px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.58;
}

.dialog-actions {
  margin-top: 30px;
}

.dialog-actions[hidden] {
  display: none;
}

.dialog-resource-link {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  padding: 11px 17px;
  color: var(--white);
  background: var(--plum);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.dialog-resource-link:hover,
.dialog-resource-link:focus-visible {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.dialog-resource-link b {
  margin-left: 5px;
  font-size: 1rem;
}

.dialog-document {
  margin-top: 34px;
}

.dialog-document[hidden] {
  display: none;
}

.dialog-document__panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.dialog-document__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  color: var(--white);
  background: var(--blue-deep);
}

.dialog-document__header > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dialog-document__header span,
.dialog-document__header small {
  color: rgba(255, 253, 247, 0.65);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-document__header strong {
  margin: 3px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.15;
}

.dialog-document__header > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  color: var(--sun);
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.dialog-document__frame {
  display: block;
  width: 100%;
  height: 520px;
  background: #ece8df;
  border: 0;
}

.dialog-people {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.dialog-person {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 11px;
}

.dialog-person img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: cover;
  border-radius: 50%;
}

.dialog-person img[src$="julio-meneses.webp"] {
  object-position: 50% 20%;
}

.dialog-person span {
  max-width: 190px;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
}

.dialog-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.dialog-nav button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: var(--ink);
  background: none;
  border: 0;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.dialog-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--plum);
  box-shadow: var(--shadow);
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax] {
  translate: 0 var(--parallax-y, 0);
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 44px, 900px);
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--paper-light);
    box-shadow: 0 24px 40px rgba(25, 18, 16, 0.12);
    transition: max-height 300ms ease;
  }

  .site-header.is-open .main-nav {
    max-height: 390px;
    border-top: 1px solid var(--line);
  }

  .main-nav a {
    width: var(--shell);
    margin-inline: auto;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .nav-cta {
    display: flex;
    width: var(--shell);
    height: auto;
    margin: 14px auto 20px;
    padding: 14px 18px;
    justify-content: space-between;
    border: 0;
    border-radius: 0;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero h1 {
    max-width: 660px;
  }

  .hero-image--main {
    top: 17%;
    width: 70vw;
    opacity: 0.66;
  }

  .hero-image--detail {
    right: 28%;
  }

  .intro-grid,
  .themes-content,
  .winners-heading {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 720px;
    padding-top: 30px;
  }

  .edition-card {
    grid-template-columns: 0.55fr 1fr;
  }

  .edition-card p {
    grid-column: 1 / -1;
  }

  .themes-heading {
    margin-bottom: 54px;
  }

  .themes-note {
    grid-column: 1;
  }

  .winners-heading > p {
    max-width: 650px;
  }

  .discipline-heading {
    grid-template-columns: 90px 1fr;
  }

  .discipline-heading p {
    grid-column: 2;
  }

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

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

  .footer-grid > a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 740px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 30px;
  }

  .brand-name strong {
    font-size: 1.45rem;
  }

  .brand-name small {
    font-size: 0.56rem;
  }

  .hero {
    min-height: 880px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 25, 33, 0.98) 0%, rgba(7, 25, 33, 0.75) 54%, rgba(7, 25, 33, 0.47)),
      linear-gradient(90deg, rgba(7, 25, 33, 0.68), rgba(7, 25, 33, 0.25));
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 102px;
    justify-content: flex-start;
  }

  .hero h1 {
    margin-top: 4px;
    font-size: clamp(3.7rem, 18vw, 6.5rem);
    line-height: 0.83;
  }

  .hero h1 span {
    margin-left: 0.13em;
  }

  .hero-bottom {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    margin-top: 30px;
  }

  .round-link {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
  }

  .hero-image--main {
    top: 43%;
    right: -16%;
    width: 105vw;
    height: 52%;
  }

  .hero-image--detail {
    right: auto;
    bottom: 8%;
    left: -10%;
    width: 45vw;
    border-width: 6px;
    opacity: 0.78;
  }

  .hero-image--figure {
    right: -6%;
    bottom: 5%;
    width: 53vw;
    border-width: 6px;
    opacity: 0.82;
  }

  .hero-orbit--one {
    top: 40%;
    right: -50%;
  }

  .ticker-track {
    min-height: 50px;
  }

  .section {
    padding: 88px 0;
  }

  .section-number {
    margin-bottom: 28px;
  }

  .section-number::after {
    width: 35vw;
  }

  .section-heading h2,
  .themes-heading h2,
  .winners-heading h2,
  .closing h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .intro-grid {
    gap: 42px;
  }

  .edition-card {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 72px;
    padding: 34px 28px;
  }

  .edition-card p {
    grid-column: 1;
  }

  .themes {
    min-height: 980px;
  }

  .themes-media img {
    object-position: 58% center;
  }

  .themes-overlay {
    background: linear-gradient(0deg, rgba(13, 43, 55, 0.97), rgba(13, 43, 55, 0.65));
  }

  .theme-list li {
    grid-template-columns: 42px 1fr;
  }

  .toolbar-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .search-control {
    width: 100%;
  }

  .filter-row {
    flex-wrap: nowrap;
    padding-bottom: 9px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar,
  .dialog-gallery__thumbs::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .discipline-heading {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .discipline-index {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .discipline-heading h3 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .discipline-heading p {
    grid-column: 1 / -1;
  }

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

  .work-card.is-featured {
    grid-column: auto;
  }

  .work-card.is-featured .work-card__media {
    aspect-ratio: 4 / 3;
  }

  .closing {
    min-height: 740px;
  }

  .closing-media img {
    object-position: 60% center;
  }

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

  .footer-grid > a {
    grid-column: auto;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .consent-banner__actions {
    flex-flow: row wrap;
  }

  .consent-banner__actions button {
    flex: 1 1 150px;
  }

  .work-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .dialog-shell {
    display: block;
    min-height: 0;
    max-height: calc(100dvh - 20px);
  }

  .dialog-media {
    position: relative;
    width: 100%;
    min-height: 300px;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .dialog-gallery__thumbs {
    scrollbar-width: none;
  }

  .dialog-media.is-gallery {
    min-height: 480px;
    aspect-ratio: auto;
  }

  .dialog-gallery {
    min-height: 480px;
  }

  .dialog-gallery__stage {
    min-height: 380px;
  }

  .dialog-gallery__image {
    max-height: 380px;
  }

  .dialog-media > img,
  .dialog-media .work-card__placeholder {
    min-height: 0;
  }

  .dialog-content {
    padding: 40px 24px 28px;
  }

  .dialog-meta {
    grid-template-columns: 1fr;
  }

  .dialog-summary {
    font-size: 1.08rem;
  }

  .dialog-document__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-document__frame {
    height: 430px;
  }
}

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

  [data-parallax] {
    translate: none !important;
  }

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