@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Great+Vibes&family=Montserrat:wght@500;600&display=swap");

:root {
  --page-bg: #fff8ea;
  --text: #1f1a17;
  --accent-green: #97ab4a;
  --menu-bar: #1a3e2a;
  --surface: #fffdf7;
  --surface-border: rgba(47, 33, 27, 0.08);
  --muted: #6d5f58;
  --card-shadow: 0 26px 52px rgba(39, 24, 18, 0.09);
  --desktop-page-width: 100vw;
  --desktop-page-height: 100vh;
  --fluid-vw: 1vw;
}

* {
  box-sizing: border-box;
}

html {
  background: #173322;
  scroll-behavior: smooth;
}

body {
  position: relative;
  z-index: 0;
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Georgia", "Times New Roman", serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -4rem;
  z-index: -1;
  background: url("Headers/court.jpg") center center / cover no-repeat;
  filter: blur(34px) saturate(0.72) brightness(0.48);
  transform: scale(1.06);
  pointer-events: none;
}

@media (min-width: 1025px) {
  body {
    width: var(--desktop-page-width);
    max-width: 100%;
    margin-inline: auto;
  }
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.hero {
  position: relative;
  background: var(--page-bg);
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  z-index: 5;
}

.hero--detail {
  height: 66vh;
  min-height: 520px;
}

@media (min-width: 1025px) {
  .hero {
    height: var(--desktop-page-height);
  }

  .hero--detail {
    height: calc(var(--desktop-page-height) * 0.66);
    min-height: min(520px, calc(var(--desktop-page-height) * 0.66));
  }
}

.topbar {
  --menu-progress: 0;
  --topbar-link-color: color-mix(
    in srgb,
    #fffdf7 calc((1 - var(--menu-progress)) * 100%),
    #1f1a17 calc(var(--menu-progress) * 100%)
  );
  --topbar-link-hover: color-mix(
    in srgb,
    #ffe4d5 calc((1 - var(--menu-progress)) * 100%),
    #6f4b39 calc(var(--menu-progress) * 100%)
  );
  --topbar-text-shadow:
    0 0 1px rgba(0, 0, 0, calc((1 - var(--menu-progress)) * 0.9)),
    0 1px 1px rgba(0, 0, 0, calc((1 - var(--menu-progress)) * 0.72)),
    0 2px 8px rgba(0, 0, 0, calc((1 - var(--menu-progress)) * 0.42));
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.9rem clamp(1rem, calc(3 * var(--fluid-vw)), 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 253, 247, calc(var(--menu-progress) * 0.96));
  border: 0;
  border-bottom: 1px solid rgba(31, 26, 23, calc(var(--menu-progress) * 0.1));
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(24, 19, 16, calc(var(--menu-progress) * 0.12));
  backdrop-filter: blur(calc(var(--menu-progress) * 14px));
  -webkit-backdrop-filter: blur(calc(var(--menu-progress) * 14px));
  opacity: 1;
  transform: none;
  transform-origin: top center;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    border-radius 220ms ease,
    width 220ms ease,
    left 220ms ease,
    top 220ms ease,
    padding 220ms ease;
  z-index: 30;
}

@media (min-width: 1025px) {
  .topbar {
    left: 50%;
    width: var(--desktop-page-width);
    max-width: 100%;
    transform: translateX(-50%);
  }
}

.topbar__brand,
.topbar__menu a,
.topbar__dropdown summary,
.topbar__toggle {
  color: var(--topbar-link-color);
  text-decoration: none;
  text-shadow: var(--topbar-text-shadow);
}

.topbar__brand {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: clamp(0.88rem, calc(1.05 * var(--fluid-vw)), 1rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.55rem 1rem;
}

.topbar__dropdown {
  position: relative;
}

.topbar__dropdown::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  bottom: -0.9rem;
  left: -0.75rem;
  height: 1rem;
}

.topbar__dropdown summary {
  display: inline-flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.topbar__dropdown summary::-webkit-details-marker {
  display: none;
}

.topbar__dropdown summary::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.48rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 180ms ease;
}

.topbar__dropdown[open] summary::after {
  transform: translateY(0.08rem) rotate(225deg);
}

.topbar__dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.45rem);
  left: 50%;
  min-width: 12rem;
  padding: 0.45rem;
  display: grid;
  gap: 0.12rem;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(31, 26, 23, 0.1);
  box-shadow: 0 18px 45px rgba(20, 18, 16, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.35rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.topbar__dropdown[open] .topbar__dropdown-menu,
.topbar__dropdown:hover .topbar__dropdown-menu,
.topbar__dropdown:focus-within .topbar__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.topbar__dropdown:hover summary,
.topbar__dropdown:focus-within summary,
.topbar__dropdown--active summary {
  color: var(--topbar-link-hover);
  opacity: 1;
}

.topbar__menu a[aria-current="page"] {
  color: var(--topbar-link-hover);
  opacity: 1;
}

.topbar__menu > a:first-child {
  transform: none;
}

.topbar__menu > .topbar__dropdown > summary {
  transform: translateY(-0.08rem);
}

.topbar__dropdown-menu a {
  display: grid;
  gap: 0.08rem;
  padding: 0.65rem 0.7rem;
  color: #1f1a17;
  text-shadow: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.topbar__dropdown-menu a:hover,
.topbar__dropdown-menu a:focus-visible,
.topbar__dropdown-menu a[aria-current="page"] {
  background: #14482d;
  color: #fff8ea;
}

.topbar__dropdown-menu a span {
  font-size: 0.86rem;
}

.topbar__dropdown-menu a small {
  color: #65736a;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__dropdown-menu a:hover small,
.topbar__dropdown-menu a:focus-visible small,
.topbar__dropdown-menu a[aria-current="page"] small {
  color: rgba(255, 248, 234, 0.76);
}

.topbar__toggle {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  border: 1px solid color-mix(in srgb, var(--topbar-link-color) 32%, transparent);
  border-radius: 999px;
  background: rgba(255, 253, 247, calc(0.08 + (var(--menu-progress) * 0.82)));
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.topbar__toggle span {
  width: 1.1rem;
  height: 1px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.topbar__toggle:hover,
.topbar__toggle:focus-visible {
  color: var(--topbar-link-hover);
  border-color: color-mix(in srgb, var(--topbar-link-hover) 46%, transparent);
}

.topbar--collapsed {
  align-items: center;
  justify-content: flex-end;
}

.topbar--collapsed .topbar__brand {
  position: absolute;
  left: 50%;
  max-width: calc(100% - 7rem);
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  transform: translateX(-50%);
}

.topbar--collapsed .topbar__toggle {
  display: flex;
}

.topbar--collapsed .topbar__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: clamp(1rem, calc(3 * var(--fluid-vw)), 2.5rem);
  width: min(18rem, calc(calc(100 * var(--fluid-vw)) - 2rem));
  max-height: calc(100vh - 5.5rem);
  overflow-y: auto;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(31, 26, 23, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 18px 42px rgba(24, 19, 16, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0ms linear 180ms;
}

.topbar--collapsed .topbar__menu a,
.topbar--collapsed .topbar__dropdown summary {
  width: 100%;
  padding: 0.78rem 0.7rem;
  color: #1f1a17;
  text-shadow: none;
  opacity: 1;
  transform: none;
}

.topbar--collapsed .topbar__menu > a:first-child {
  transform: none;
}

.topbar--collapsed .topbar__menu > .topbar__dropdown > summary {
  transform: none;
}

.topbar--collapsed .topbar__menu a:hover,
.topbar--collapsed .topbar__menu a:focus-visible,
.topbar--collapsed .topbar__dropdown summary:hover,
.topbar--collapsed .topbar__dropdown summary:focus-visible {
  letter-spacing: 0.15em;
  transform: none;
}

.topbar--collapsed .topbar__dropdown-menu {
  position: static;
  min-width: 0;
  padding: 0 0 0.35rem 0.75rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.topbar--collapsed .topbar__dropdown[open] .topbar__dropdown-menu,
.topbar--collapsed .topbar__dropdown:hover .topbar__dropdown-menu,
.topbar--collapsed .topbar__dropdown:focus-within .topbar__dropdown-menu {
  transform: none;
}

.topbar--collapsed .topbar__dropdown:not([open]) .topbar__dropdown-menu {
  display: none;
}

.topbar--menu-open .topbar__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0ms;
}

.topbar--menu-open .topbar__toggle span:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.topbar--menu-open .topbar__toggle span:nth-child(2) {
  opacity: 0;
}

.topbar--menu-open .topbar__toggle span:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.topbar__menu a,
.topbar__dropdown summary {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: calc(0.92 + (var(--menu-progress) * 0.08));
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    letter-spacing 180ms ease;
}

.topbar__menu a:hover,
.topbar__menu a:focus-visible,
.topbar__dropdown summary:hover,
.topbar__dropdown summary:focus-visible {
  color: var(--topbar-link-hover);
  opacity: 1;
  transform: translateY(-1px);
  letter-spacing: 0.2em;
}

.topbar__menu > a:first-child:hover,
.topbar__menu > a:first-child:focus-visible {
  transform: translateY(-1px);
}

.topbar__menu > .topbar__dropdown > summary:hover,
.topbar__menu > .topbar__dropdown > summary:focus-visible {
  transform: translateY(calc(-0.08rem - 1px));
}

.hero__image {
  position: absolute;
  inset: 0;
  --parallax-x: 0px;
  --parallax-y: 0px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.16) contrast(1.06) brightness(1.02);
  transform: translate(var(--parallax-x), var(--parallax-y)) scale(1.04);
  transform-origin: center center;
  will-change: transform;
  z-index: -1;
}

.hero__image--alternate {
  opacity: 0;
  animation: hero-image-fade 32s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.14) 100%
  );
  z-index: 0;
}

@keyframes hero-image-fade {
  0%,
  28% {
    opacity: 0;
  }

  44%,
  64% {
    opacity: 1;
  }

  82%,
  100% {
    opacity: 0;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0 auto 0 50%;
  left: 50%;
  width: min(100% - 2rem, 900px);
  height: 100%;
  padding: 5.5rem 1rem 2.4rem;
  transform: translateX(-50%);
  color: #fffdf7;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
  z-index: 2;
  pointer-events: none;
}

.hero__primary {
  margin-top: clamp(5.5rem, 12vh, 8.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__crest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, calc(2 * var(--fluid-vw)), 1.7rem);
  margin-bottom: 1rem;
}

.hero__crest-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(0.9rem, calc(1.5 * var(--fluid-vw)), 1.25rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
}

.hero__logo {
  width: auto;
  height: clamp(58px, calc(7 * var(--fluid-vw)), 96px);
  display: block;
}

.hero h1 {
  margin: 0;
  font-family: "Great Vibes", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(4rem, calc(10 * var(--fluid-vw)), 8.75rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.hero__location {
  margin: 0.6rem 0 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.2rem, calc(2.1 * var(--fluid-vw)), 2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero__image--detail {
  object-position: center 42%;
  filter: saturate(1.04) contrast(1.02) brightness(0.92);
}

.hero__image--detail-2023 {
  object-position: center 27%;
}

.hero__image--detail-2024 {
  object-position: center 52%;
}

.hero__image--detail-2025 {
  object-position: center 28%;
}

.hero__image--about {
  object-position: center 7%;
}

.hero__image--impressum {
  object-position: center 45%;
}

.hero__image--news {
  object-position: center 42%;
}

.hero__overlay--detail {
  justify-content: flex-end;
  padding-bottom: clamp(3rem, calc(7 * var(--fluid-vw)), 5.5rem);
}

.hero__primary--detail {
  margin-top: 0;
}

.hero__primary--detail h1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(3.5rem, calc(8 * var(--fluid-vw)), 7rem);
  font-weight: 600;
  line-height: 0.9;
}

.hero__primary--contact h1 {
  max-width: min(calc(92 * var(--fluid-vw)), 980px);
  margin-inline: auto;
  font-size: clamp(2.9rem, calc(5.4 * var(--fluid-vw)), 4.9rem);
  line-height: 0.94;
}

.detail-hero__year {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: clamp(0.82rem, calc(1.3 * var(--fluid-vw)), 1.05rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.manifesto {
  background: #fff8ea;
  color: #211914;
  padding: clamp(3.6rem, calc(6.2 * var(--fluid-vw)), 6rem) 1.25rem clamp(3.4rem, calc(5.8 * var(--fluid-vw)), 5.4rem);
}

.manifesto__inner {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.manifesto__title {
  margin: 0 auto clamp(2rem, calc(4 * var(--fluid-vw)), 3.4rem);
  max-width: 900px;
  color: #201813;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.65rem, calc(3.25 * var(--fluid-vw)), 2.85rem);
  font-weight: 600;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
}

.manifesto__title span,
.manifesto__title em {
  display: block;
}

.manifesto__title em {
  margin: -0.08em 0 -0.04em;
  font-family: "Great Vibes", "Times New Roman", serif;
  font-size: clamp(1.95rem, calc(4.35 * var(--fluid-vw)), 3.85rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.72;
  text-transform: none;
}

.manifesto__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, calc(3.4 * var(--fluid-vw)), 3.5rem);
  max-width: 980px;
  margin: 0 auto;
}

.manifesto__column {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.manifesto__copy .manifesto__column:only-child {
  max-width: 780px;
  margin-inline: auto;
  grid-column: 1 / -1;
}

.manifesto__column p {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.12rem, calc(1.35 * var(--fluid-vw)), 1.38rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.manifesto__column strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.event-detail {
  background: #fff8ea;
  color: #211914;
  padding: clamp(3.8rem, calc(7 * var(--fluid-vw)), 6.5rem) clamp(1.1rem, calc(4 * var(--fluid-vw)), 3rem);
}

.event-detail__intro,
.event-detail__body,
.event-detail__report,
.event-detail__winners,
.event-detail__gallery {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.event-detail__intro {
  max-width: 780px;
  text-align: center;
}

.event-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.4rem;
  padding: 0.58rem 0.92rem;
  border: 1.5px solid #1a3e2a;
  border-radius: 999px;
  color: #1a3e2a;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.event-detail__back:hover,
.event-detail__back:focus-visible {
  background: #1a3e2a;
  color: #fff8ea;
  transform: translateY(-1px);
}

.event-detail__eyebrow {
  margin: 0 0 0.7rem;
  color: #6f4b39;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-detail h2 {
  margin: 0;
  color: #201813;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.1rem, calc(3.5 * var(--fluid-vw)), 3.7rem);
  font-weight: 600;
  line-height: 0.95;
}

.event-detail__intro > p:last-child {
  margin: 1.35rem auto 0;
  max-width: 680px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.12rem, calc(1.35 * var(--fluid-vw)), 1.35rem);
  font-weight: 500;
  line-height: 1.45;
}

.event-detail__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, calc(2.4 * var(--fluid-vw)), 2rem);
  margin-top: clamp(2.4rem, calc(5 * var(--fluid-vw)), 4.2rem);
}

.event-detail__panel {
  padding: clamp(1.25rem, calc(2.5 * var(--fluid-vw)), 2rem);
  border: 1px solid rgba(20, 72, 45, 0.2);
  border-radius: 8px;
  background: #14482d;
  box-shadow: 0 18px 42px rgba(20, 72, 45, 0.18);
}

.event-detail__panel h3 {
  margin: 0;
  color: #fff8ea;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.55rem, calc(2.4 * var(--fluid-vw)), 2.35rem);
  font-weight: 600;
  line-height: 1;
}

.event-detail__panel p {
  margin: 0.9rem 0 0;
  color: rgba(255, 248, 234, 0.88);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.02rem, calc(1.15 * var(--fluid-vw)), 1.16rem);
  font-weight: 500;
  line-height: 1.48;
}

.event-detail__report,
.event-detail__placements,
.event-detail__winners {
  margin-top: clamp(3.2rem, calc(6 * var(--fluid-vw)), 5rem);
}

.event-detail__text {
  columns: 2 320px;
  column-gap: clamp(2rem, calc(5 * var(--fluid-vw)), 4.5rem);
  margin-top: 1.2rem;
}

.event-detail__text p {
  break-inside: avoid;
  margin: 0 0 1rem;
  color: #3f3d38;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.04rem, calc(1.16 * var(--fluid-vw)), 1.18rem);
  font-weight: 500;
  line-height: 1.48;
}

.impressum-page .event-detail__text {
  columns: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.impressum-page .event-detail__report {
  text-align: center;
}

.impressum-page .event-detail__report h2 {
  max-width: 820px;
  margin-inline: auto;
}

.event-map {
  margin-top: clamp(1.5rem, calc(3 * var(--fluid-vw)), 2.4rem);
  overflow: hidden;
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 18px 42px rgba(39, 24, 18, 0.12);
  display: block;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.event-map:hover,
.event-map:focus-visible {
  box-shadow: 0 24px 52px rgba(39, 24, 18, 0.18);
  transform: translateY(-2px);
}

.event-map img {
  width: 100%;
  height: auto;
  display: block;
}

.event-detail__placements {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, calc(2 * var(--fluid-vw)), 1.4rem);
  align-items: stretch;
}

.event-detail__placement {
  margin: 0;
}

.event-detail__placements--single {
  max-width: 560px;
  grid-template-columns: 1fr;
}

.event-detail__placement img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  display: block;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 8px;
  filter: sepia(0.08) saturate(0.92) contrast(0.98) brightness(1.01);
  box-shadow: 0 16px 34px rgba(39, 24, 18, 0.12);
}

.event-detail__placement img.event-detail__placement-image--vivid {
  filter: sepia(0.03) saturate(1.18) contrast(1.04) brightness(1.02);
}

.event-detail__placement figcaption {
  margin: 0.58rem 0 0;
  color: #6f4b39;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

.event-detail__results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.4rem 0 0;
}

.event-detail__results div {
  padding: 1rem;
  border: 1px solid rgba(47, 33, 27, 0.1);
  border-radius: 8px;
  background: #fffdf7;
}

.event-detail__results dt {
  color: #1a3e2a;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-detail__results dd,
.event-detail__thanks {
  margin: 0.45rem 0 0;
  color: #4e4d47;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.02rem, calc(1.12 * var(--fluid-vw)), 1.14rem);
  font-weight: 500;
  line-height: 1.42;
}

.event-detail__thanks {
  max-width: 820px;
  margin-top: 1.4rem;
}

.about-editorial__intro,
.about-editorial,
.about-archive {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.about-editorial__intro {
  max-width: 900px;
  text-align: left;
}

.about-editorial__intro h2 {
  margin: 0.35rem 0 0;
  color: #211914;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(3rem, calc(7 * var(--fluid-vw)), 6.7rem);
  font-weight: 600;
  line-height: 0.82;
}

.about-editorial__intro > p:last-child {
  max-width: 620px;
  margin: 1rem 0 0 auto;
  color: #4e4d47;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.14rem, calc(1.55 * var(--fluid-vw)), 1.52rem);
  font-weight: 500;
  line-height: 1.28;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: clamp(1.8rem, calc(4.8 * var(--fluid-vw)), 5.2rem);
  align-items: start;
  margin-top: clamp(2.5rem, calc(5 * var(--fluid-vw)), 4.4rem);
}

.about-editorial__paper {
  padding: clamp(1.6rem, calc(3 * var(--fluid-vw)), 2.5rem);
  border-top: 4px double rgba(33, 25, 20, 0.34);
  border-bottom: 1px solid rgba(33, 25, 20, 0.18);
  background:
    linear-gradient(rgba(255, 253, 247, 0.78), rgba(255, 253, 247, 0.78)),
    repeating-linear-gradient(0deg, rgba(33, 25, 20, 0.035) 0 1px, transparent 1px 11px);
  box-shadow: 0 18px 46px rgba(39, 24, 18, 0.08);
}

.about-editorial__kicker,
.about-editorial__facts > p {
  margin: 0 0 0.75rem;
  color: #6f4b39;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-editorial__paper h2 {
  margin: 0 0 1.1rem;
  color: #201813;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.2rem, calc(4 * var(--fluid-vw)), 4rem);
  font-weight: 600;
  line-height: 0.88;
}

.about-editorial__paper p:not(.about-editorial__kicker) {
  margin: 0;
  color: #332821;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.08rem, calc(1.25 * var(--fluid-vw)), 1.22rem);
  font-weight: 500;
  line-height: 1.42;
  text-align: justify;
}

.about-editorial__paper p:not(.about-editorial__kicker) + p {
  margin-top: 1rem;
}

.about-editorial__paper p:not(.about-editorial__kicker):first-of-type::first-letter {
  float: left;
  margin: 0.1rem 0.42rem 0 0;
  color: #14482d;
  font-size: 4.8rem;
  line-height: 0.72;
}

.about-editorial__facts {
  padding: clamp(1.1rem, calc(2 * var(--fluid-vw)), 1.55rem);
  border: 1px solid rgba(20, 72, 45, 0.2);
  background: #14482d;
  color: #fff8ea;
  box-shadow: 0 18px 36px rgba(20, 72, 45, 0.14);
}

.about-editorial__facts > p {
  color: rgba(255, 248, 234, 0.72);
}

.about-editorial__facts ul {
  display: grid;
  gap: 0.68rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-editorial__facts li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(255, 248, 234, 0.9);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1rem, calc(1.08 * var(--fluid-vw)), 1.12rem);
  font-weight: 600;
  line-height: 1.22;
}

.about-editorial__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8c690;
}

.about-archive {
  position: relative;
  min-height: clamp(64rem, calc(92 * var(--fluid-vw)), 88rem);
  margin-top: clamp(2.8rem, calc(6 * var(--fluid-vw)), 5rem);
}

.about-archive__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fffdf7;
  background: #fffdf7;
  box-shadow: 0 18px 46px rgba(39, 24, 18, 0.16);
  transform: rotate(var(--archive-rotate, 0deg));
  transform-origin: center center;
  transition:
    transform 360ms ease,
    box-shadow 360ms ease,
    filter 360ms ease;
  will-change: transform;
  z-index: 1;
}

.about-archive__photo:hover,
.about-archive__photo:focus-within {
  z-index: 12;
  transform: translateY(-18px) scale(1.055) rotate(var(--archive-rotate, 0deg));
  box-shadow: 0 34px 72px rgba(31, 19, 13, 0.28);
}

.about-archive__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.04) brightness(1.02);
}

.about-archive__photo--one {
  left: 0;
  top: 6%;
  width: min(calc(46 * var(--fluid-vw)), 440px);
  aspect-ratio: 0.86 / 1;
  --archive-rotate: -3deg;
}

.about-archive__photo--two {
  left: 29%;
  top: 0;
  width: min(calc(35 * var(--fluid-vw)), 360px);
  aspect-ratio: 1.18 / 1;
  --archive-rotate: 2.5deg;
}

.about-archive__photo--three {
  right: 1%;
  top: 8%;
  width: min(calc(32 * var(--fluid-vw)), 330px);
  aspect-ratio: 0.9 / 1;
  --archive-rotate: -1.5deg;
}

.about-archive__photo--four {
  right: 22%;
  top: 25%;
  width: min(calc(38 * var(--fluid-vw)), 390px);
  aspect-ratio: 1.12 / 1;
  --archive-rotate: 3deg;
}

.about-archive__photo--five {
  left: 7%;
  top: 31%;
  width: min(calc(34 * var(--fluid-vw)), 350px);
  aspect-ratio: 1 / 1.18;
  --archive-rotate: 2deg;
}

.about-archive__photo--six {
  left: 39%;
  top: 37%;
  width: min(calc(31 * var(--fluid-vw)), 315px);
  aspect-ratio: 0.9 / 1;
  --archive-rotate: -2.5deg;
}

.about-archive__photo--seven {
  right: 1%;
  top: 42%;
  width: min(calc(36 * var(--fluid-vw)), 370px);
  aspect-ratio: 1.16 / 1;
  --archive-rotate: 1.5deg;
}

.about-archive__photo--eight {
  left: 18%;
  top: 55%;
  width: min(calc(29 * var(--fluid-vw)), 300px);
  aspect-ratio: 0.84 / 1;
  --archive-rotate: -3deg;
}

.about-archive__photo--nine {
  right: 25%;
  top: 59%;
  width: min(calc(33 * var(--fluid-vw)), 340px);
  aspect-ratio: 1.05 / 1;
  --archive-rotate: 2.8deg;
}

.about-archive__photo--ten {
  left: 2%;
  top: 72%;
  width: min(calc(37 * var(--fluid-vw)), 380px);
  aspect-ratio: 1.18 / 1;
  --archive-rotate: 2deg;
}

.about-archive__photo--eleven {
  left: 37%;
  top: 75%;
  width: min(calc(28 * var(--fluid-vw)), 285px);
  aspect-ratio: 0.9 / 1;
  --archive-rotate: -1.8deg;
}

.about-archive__photo--twelve {
  right: 3%;
  top: 74%;
  width: min(calc(32 * var(--fluid-vw)), 330px);
  aspect-ratio: 1 / 1.12;
  --archive-rotate: 3.4deg;
}

.about-archive__note {
  position: absolute;
  left: 7%;
  top: 21%;
  width: min(calc(78 * var(--fluid-vw)), 360px);
  padding: 1rem 1.1rem;
  background: rgba(255, 248, 234, 0.92);
  box-shadow: 0 14px 30px rgba(39, 24, 18, 0.1);
  transform: rotate(-1deg);
}

.about-archive__note p {
  margin: 0;
  color: #4e4d47;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-page--layout-two .about-editorial__intro {
  max-width: 760px;
  text-align: center;
}

.about-page--layout-two .about-editorial__intro > p:last-child {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.about-page--layout-two .about-layout-stage {
  position: relative;
  width: min(100%, 1240px);
  min-height: clamp(78rem, calc(104 * var(--fluid-vw)), 98rem);
  margin: clamp(1rem, calc(2.6 * var(--fluid-vw)), 2.2rem) auto 0;
}

.about-page--layout-two .about-editorial {
  --about-layout-column-gap: clamp(3rem, calc(9 * var(--fluid-vw)), 7rem);
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.88fr);
  gap: clamp(0.9rem, calc(2 * var(--fluid-vw)), 1.5rem) var(--about-layout-column-gap);
  margin-top: 0;
  padding-top: 1rem;
  align-items: start;
  pointer-events: none;
}

.about-page--layout-two .about-editorial::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(33, 25, 20, 0.26);
}

.about-page--layout-two .about-editorial__paper {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  position: relative;
  padding: 0 0 1.55rem;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: auto;
}

.about-page--layout-two .about-editorial__facts {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  position: relative;
  width: 100%;
  margin-top: clamp(7rem, calc(12 * var(--fluid-vw)), 10rem);
  margin-right: 0;
  margin-left: 0;
  padding: 1.2rem 0 0;
  border: 0;
  background: transparent;
  color: #211914;
  box-shadow: none;
  pointer-events: auto;
}

.about-page--layout-two .about-editorial__facts > p {
  color: #6f4b39;
}

.about-page--layout-two .about-editorial__facts ul {
  grid-template-columns: 1fr;
  gap: 0.52rem;
}

.about-page--layout-two .about-editorial__facts li {
  color: #3f3d38;
}

.about-page--layout-two .about-editorial__facts li::before {
  background: #14482d;
}

.about-page--layout-two .about-archive {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  margin: 0;
  pointer-events: none;
}

.about-page--layout-two .about-archive__photo {
  pointer-events: auto;
  border-width: 8px;
}

.about-page--layout-two .about-archive__photo:hover,
.about-page--layout-two .about-archive__photo:focus-within {
  z-index: 30;
}

.about-page--layout-two .about-archive__note {
  display: none;
}

.about-page--layout-two .about-archive__photo--one {
  left: auto;
  right: 19%;
  top: 4.6%;
  width: min(calc(23 * var(--fluid-vw)), 300px);
}

.about-page--layout-two .about-archive__photo--two {
  left: auto;
  right: 1%;
  top: 10.5%;
  width: min(calc(21 * var(--fluid-vw)), 275px);
}

.about-page--layout-two .about-archive__photo--three {
  left: auto;
  right: 12%;
  top: 22%;
  width: min(calc(19 * var(--fluid-vw)), 250px);
}

.about-page--layout-two .about-archive__photo--four {
  left: 7%;
  right: auto;
  top: 39%;
  width: min(calc(20 * var(--fluid-vw)), 260px);
  z-index: 4;
}

.about-page--layout-two .about-archive__photo--five {
  left: 23%;
  top: 35%;
  width: min(calc(20 * var(--fluid-vw)), 260px);
  z-index: 2;
}

.about-page--layout-two .about-archive__photo--six {
  left: 29%;
  top: 49%;
  width: min(calc(18 * var(--fluid-vw)), 235px);
  z-index: 3;
}

.about-page--layout-two .about-archive__photo--seven {
  left: auto;
  right: 4%;
  top: 68%;
  width: min(calc(23 * var(--fluid-vw)), 300px);
  z-index: 2;
}

.about-page--layout-two .about-archive__photo--eight {
  left: 4%;
  top: 54%;
  width: min(calc(18 * var(--fluid-vw)), 235px);
  z-index: 1;
}

.about-page--layout-two .about-archive__photo--nine {
  left: auto;
  right: 34%;
  top: 72%;
  width: min(calc(20 * var(--fluid-vw)), 260px);
  z-index: 3;
}

.about-page--layout-two .about-archive__photo--ten {
  left: 29%;
  top: 76%;
  width: min(calc(21 * var(--fluid-vw)), 275px);
  z-index: 2;
}

.about-page--layout-two .about-archive__photo--eleven {
  left: auto;
  right: 17%;
  top: 78%;
  width: min(calc(18 * var(--fluid-vw)), 235px);
  z-index: 4;
}

.about-page--layout-two .about-archive__photo--twelve {
  left: 8%;
  right: auto;
  top: 74%;
  width: min(calc(20 * var(--fluid-vw)), 260px);
  z-index: 1;
}

@media (max-width: 980px) {
  .about-page--layout-two .about-layout-stage {
    min-height: auto;
    display: block;
  }

  .about-page--layout-two .about-editorial {
    width: min(100%, 1120px);
    max-width: none;
  }

  .about-page--layout-two .about-archive {
    position: relative;
    inset: auto;
    min-height: auto;
    margin-top: clamp(2.8rem, calc(6 * var(--fluid-vw)), 5rem);
    pointer-events: auto;
  }

  .about-page--layout-two .about-archive__note {
    display: block;
  }

}

.event-detail__gallery {
  display: grid;
  gap: clamp(1.2rem, calc(3 * var(--fluid-vw)), 2rem);
  margin-top: clamp(3.5rem, calc(7 * var(--fluid-vw)), 5.5rem);
}

.event-detail__gallery-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.event-detail__gallery-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.68rem 0.95rem;
  border: 1.5px solid #1a3e2a;
  border-radius: 999px;
  background: transparent;
  color: #1a3e2a;
  cursor: pointer;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.event-detail__gallery-toggle:hover,
.event-detail__gallery-toggle:focus-visible,
.event-detail__gallery-toggle[aria-pressed="true"] {
  background: #1a3e2a;
  color: #fff8ea;
  box-shadow: 0 12px 24px rgba(26, 62, 42, 0.16);
}

.event-detail__gallery-toggle:hover,
.event-detail__gallery-toggle:focus-visible {
  transform: translateY(-1px);
}

.event-detail__photos {
  --event-photo-columns: 4;
  overflow: hidden;
}

.event-detail__photos-track {
  width: max-content;
  display: flex;
  gap: 0;
  animation: event-photos-carousel 86s linear infinite;
  will-change: transform;
}

.event-detail__photos:hover .event-detail__photos-track,
.event-detail__photos:focus-within .event-detail__photos-track {
  animation-play-state: paused;
}

.event-detail__photos-set {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(
    0,
    calc(
      (min(calc((100 * var(--fluid-vw)) - 2.2rem), 1120px) - (clamp(0.75rem, calc(1.6 * var(--fluid-vw)), 1.2rem) * (var(--event-photo-columns) - 1))) /
        var(--event-photo-columns)
    )
  );
  gap: clamp(0.75rem, calc(1.6 * var(--fluid-vw)), 1.2rem);
  padding-right: clamp(0.75rem, calc(1.6 * var(--fluid-vw)), 1.2rem);
}

.event-detail__photos img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 8px;
  filter: sepia(0.08) saturate(0.92) contrast(0.98) brightness(1.01);
  box-shadow: 0 16px 34px rgba(39, 24, 18, 0.12);
}

.event-detail__photos.is-collage {
  overflow: visible;
}

.event-detail__photos.is-collage .event-detail__photos-track {
  width: 100%;
  display: block;
  animation: none;
}

.event-detail__photos.is-collage .event-detail__photos-set {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, calc(1.8 * var(--fluid-vw)), 1.35rem);
  padding-right: 0;
}

.event-detail__photos.is-collage .event-detail__photos-set[aria-hidden="true"] {
  display: none;
}

.event-detail__photos.is-collage img {
  cursor: zoom-in;
  object-position: center 20%;
  transition:
    filter 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.event-detail__photos.is-collage img:hover,
.event-detail__photos.is-collage img:focus-visible {
  filter: sepia(0.02) saturate(1.04) contrast(1.02) brightness(1.02);
  box-shadow: 0 20px 42px rgba(39, 24, 18, 0.18);
  transform: translateY(-2px);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, calc(3 * var(--fluid-vw)), 2rem);
  background: rgba(12, 18, 14, 0.86);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox__button {
  position: absolute;
  top: clamp(0.8rem, calc(2 * var(--fluid-vw)), 1.4rem);
  right: clamp(0.8rem, calc(2 * var(--fluid-vw)), 1.4rem);
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 248, 234, 0.52);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.12);
  color: #fff8ea;
  cursor: pointer;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.image-lightbox img {
  max-width: min(100%, 1180px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

body.is-lightbox-open {
  overflow: hidden;
}

.hero__image--detail-gallery {
  object-position: center 58%;
}

.gallery-page {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.gallery-page__intro {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(1.8rem, calc(4 * var(--fluid-vw)), 3rem);
  margin-inline: auto;
  text-align: center;
}

.gallery-page__intro::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(calc(48 * var(--fluid-vw)), 520px);
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 62, 42, 0), rgba(26, 62, 42, 0.55), rgba(26, 62, 42, 0));
  transform: translateX(-50%);
}

.gallery-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, calc(2 * var(--fluid-vw)), 1.45rem);
  justify-content: center;
  margin-top: clamp(2.5rem, calc(5 * var(--fluid-vw)), 4.5rem);
}

.gallery-year-card {
  position: relative;
  min-height: clamp(18rem, calc(29 * var(--fluid-vw)), 24rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(1rem, calc(2 * var(--fluid-vw)), 1.35rem);
  border: 1px solid rgba(26, 62, 42, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(26, 62, 42, 0.94), rgba(77, 97, 57, 0.82)),
    #1a3e2a;
  color: #fff8ea;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 22px 52px rgba(39, 24, 18, 0.13);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.gallery-year-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 248, 234, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 234, 0.04), rgba(13, 33, 21, 0.5));
  pointer-events: none;
}

.gallery-year-card:hover,
.gallery-year-card:focus-visible,
.gallery-year-card[aria-expanded="true"] {
  border-color: rgba(255, 248, 234, 0.48);
  box-shadow: 0 28px 70px rgba(26, 62, 42, 0.2);
  transform: translateY(-4px);
}

.gallery-year-card__meta {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.3rem;
}

.gallery-year-card__meta span,
.gallery-year-card__meta small {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.gallery-year-card__meta strong {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(3.2rem, calc(7 * var(--fluid-vw)), 5.8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.gallery-year-card__meta .gallery-year-card__title--long {
  font-size: clamp(2.55rem, calc(4.7 * var(--fluid-vw)), 4.25rem);
}

.gallery-year-card__meta small {
  color: rgba(255, 248, 234, 0.74);
}

.gallery-year-card__stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery-year-card__stack img {
  position: absolute;
  width: 48%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  object-position: center 24%;
  border: 5px solid rgba(255, 248, 234, 0.86);
  border-radius: 4px;
  box-shadow: 0 18px 34px rgba(13, 33, 21, 0.24);
  filter: sepia(0.12) saturate(0.86) contrast(0.96);
  opacity: 0.82;
}

.gallery-year-card__stack img:nth-child(1) {
  top: 9%;
  right: 8%;
  transform: rotate(4deg);
}

.gallery-year-card__stack img:nth-child(2) {
  top: 24%;
  left: 9%;
  transform: rotate(-5deg);
}

.gallery-year-card__stack img:nth-child(3) {
  right: 15%;
  bottom: 16%;
  transform: rotate(-2deg);
}

.gallery-panels {
  display: grid;
  gap: clamp(2.5rem, calc(5 * var(--fluid-vw)), 4rem);
  margin-top: clamp(2.6rem, calc(5 * var(--fluid-vw)), 4.4rem);
}

.gallery-year-panel {
  scroll-margin-top: 6rem;
  padding-top: clamp(1.4rem, calc(3 * var(--fluid-vw)), 2.4rem);
  border-top: 1px solid rgba(26, 62, 42, 0.22);
}

.gallery-year-panel[hidden] {
  display: none;
}

.gallery-year-panel__header p:last-child {
  max-width: 44rem;
  margin-top: 0.7rem;
  color: rgba(39, 24, 18, 0.72);
}

.hero__image--partners {
  object-position: center 58%;
}

.partner-page {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.partner-page__intro {
  text-align: center;
}

.partner-masonry {
  width: min(100%, 1160px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, calc(2.4 * var(--fluid-vw)), 1.7rem);
  align-items: start;
  margin: clamp(3rem, calc(6 * var(--fluid-vw)), 5.5rem) auto 0;
}

.partner-tile {
  position: relative;
  min-height: clamp(34rem, calc(55 * var(--fluid-vw)), 44rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  color: #fff8ea;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(39, 24, 18, 0.16);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.partner-tile--lese {
  margin-top: 0;
}

.partner-tile:hover,
.partner-tile:focus-visible {
  box-shadow: 0 34px 82px rgba(26, 62, 42, 0.25);
  transform: translateY(-5px);
}

.partner-tile__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.partner-tile__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.08) saturate(0.92) contrast(0.98) brightness(0.92);
  transition:
    filter 260ms ease,
    transform 420ms ease;
}

.partner-tile--atos .partner-tile__image img {
  object-position: center 46%;
}

.partner-tile--lese .partner-tile__image img {
  object-position: center 45%;
}

.partner-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 28, 18, 0.03) 0%, rgba(11, 28, 18, 0.62) 62%, rgba(11, 28, 18, 0.9) 100%),
    linear-gradient(90deg, rgba(26, 62, 42, 0.58), rgba(26, 62, 42, 0.08));
}

.partner-tile:hover .partner-tile__image img,
.partner-tile:focus-visible .partner-tile__image img {
  filter: sepia(0.02) saturate(1.05) contrast(1.03) brightness(1);
  transform: scale(1.035);
}

.partner-tile__content {
  display: grid;
  gap: clamp(1rem, calc(2 * var(--fluid-vw)), 1.4rem);
  padding: clamp(1.1rem, calc(3 * var(--fluid-vw)), 2rem);
}

.partner-tile__logo {
  width: min(72%, 360px);
  min-height: 6.4rem;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, calc(2 * var(--fluid-vw)), 1.25rem);
  border: 1px solid rgba(255, 248, 234, 0.42);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.9);
  box-shadow: 0 18px 46px rgba(13, 33, 21, 0.24);
  backdrop-filter: blur(8px);
}

.partner-tile__logo img {
  max-width: 100%;
  max-height: 5.2rem;
  display: block;
  object-fit: contain;
}

.partner-tile__logo--lese {
  width: min(48%, 180px);
  min-height: 7.2rem;
  justify-self: end;
}

.partner-tile__logo--lese img {
  max-height: 6.1rem;
}

.partner-tile__text {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  max-width: 34rem;
}

.partner-tile__eyebrow {
  color: rgba(255, 248, 234, 0.78);
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partner-tile__text strong {
  color: #fffdf7;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.25rem, calc(4.2 * var(--fluid-vw)), 4.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.partner-tile__text span:last-child {
  color: rgba(255, 248, 234, 0.84);
  font-size: clamp(1rem, calc(1.35 * var(--fluid-vw)), 1.16rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero__image--contact {
  object-position: center 54%;
}

.contact-page {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.contact-page__inner {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.2rem, calc(6 * var(--fluid-vw)), 6.5rem);
  align-items: start;
  margin: 0 auto;
}

.contact-page__aside {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1.2rem;
  padding-top: clamp(0.35rem, calc(2 * var(--fluid-vw)), 1rem);
}

.contact-page__aside h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, calc(4.8 * var(--fluid-vw)), 4.2rem);
  line-height: 0.9;
}

.contact-page__aside > p:not(.event-detail__eyebrow) {
  max-width: 24rem;
  margin: 0;
  color: rgba(39, 24, 18, 0.72);
  font-size: clamp(1.02rem, calc(1.45 * var(--fluid-vw)), 1.18rem);
  line-height: 1.62;
}

.contact-page__direct {
  display: grid;
  gap: 0.35rem;
  margin-top: clamp(0.8rem, calc(2 * var(--fluid-vw)), 1.5rem);
  padding-top: 1.3rem;
  border-top: 1px solid rgba(26, 62, 42, 0.22);
}

.contact-page__direct span {
  color: #6f4b39;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page__direct a {
  color: #1a3e2a;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.35rem, calc(2 * var(--fluid-vw)), 1.85rem);
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-page__direct a:hover,
.contact-page__direct a:focus-visible {
  color: #6f4b39;
}

.contact-form {
  position: relative;
  display: grid;
  gap: clamp(1.6rem, calc(3.6 * var(--fluid-vw)), 3rem);
  padding: clamp(1.3rem, calc(3.6 * var(--fluid-vw)), 3rem) 0 clamp(1rem, calc(2.5 * var(--fluid-vw)), 2rem)
    clamp(1.3rem, calc(3 * var(--fluid-vw)), 3.4rem);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(26, 62, 42, 0), rgba(26, 62, 42, 0.34), rgba(26, 62, 42, 0));
}

.contact-form__field {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  color: #17120f;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: clamp(0.82rem, calc(1 * var(--fluid-vw)), 0.98rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form label span {
  color: #1a3e2a;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(26, 62, 42, 0.3);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #211914;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.25rem, calc(2 * var(--fluid-vw)), 1.7rem);
  line-height: 1.35;
  padding: 0.25rem 0 0.55rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: clamp(9rem, calc(20 * var(--fluid-vw)), 14rem);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1a3e2a;
  box-shadow: 0 1px 0 #1a3e2a;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(0.8rem, calc(2 * var(--fluid-vw)), 1.3rem);
}

.contact-form__footer p {
  margin: 0;
  color: #211914;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: clamp(1rem, calc(1.5 * var(--fluid-vw)), 1.2rem);
  line-height: 1.2;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid #1a3e2a;
  border-radius: 999px;
  background: #1a3e2a;
  color: #fff8ea;
  cursor: pointer;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: transparent;
  color: #1a3e2a;
  box-shadow: 0 14px 28px rgba(26, 62, 42, 0.14);
  transform: translateY(-1px);
}

.year-rail {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 40;
  display: flex;
  align-items: stretch;
  color: #fff8ea;
  transform: translate(calc(-100% + 42px), -50%);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
}

.year-rail:hover,
.year-rail:focus-within {
  filter: drop-shadow(0 22px 38px rgba(20, 72, 45, 0.22));
  transform: translate(0, -50%);
}

.year-rail__tab {
  order: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 8.4rem;
  padding: 0.9rem 0.65rem;
  border: 1px solid rgba(255, 248, 234, 0.28);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(180deg, rgba(20, 72, 45, 0.98), rgba(26, 62, 42, 0.96)),
    #14482d;
  box-shadow: 0 14px 30px rgba(20, 72, 45, 0.18);
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.year-rail__panel {
  width: min(calc(74 * var(--fluid-vw)), 238px);
  padding: 1.05rem;
  border: 1px solid rgba(255, 248, 234, 0.18);
  border-left: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 248, 234, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(20, 72, 45, 0.98), rgba(13, 44, 29, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.18),
    0 18px 36px rgba(17, 17, 17, 0.18);
}

.year-rail__panel p {
  margin: 0 0 0.72rem;
  color: rgba(255, 248, 234, 0.74);
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.year-rail__link {
  position: relative;
  display: grid;
  gap: 0.08rem;
  padding: 0.76rem 0.78rem 0.74rem 1rem;
  border-top: 1px solid rgba(255, 248, 234, 0.14);
  color: rgba(255, 248, 234, 0.8);
  text-decoration: none;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.year-rail__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.42);
  transform: translateY(-50%);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.year-rail__link span {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 0.95;
}

.year-rail__link small {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.year-rail__link:hover,
.year-rail__link:focus-visible,
.year-rail__link--active {
  background: rgba(255, 248, 234, 0.1);
  color: #fff8ea;
  transform: translateX(4px);
}

.year-rail__link:hover::before,
.year-rail__link:focus-visible::before,
.year-rail__link--active::before {
  background: #d8c690;
  box-shadow: 0 0 18px rgba(216, 198, 144, 0.58);
  transform: translateY(-50%) scale(1.7);
}

@keyframes event-photos-carousel {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.chronicle {
  position: relative;
  overflow: hidden;
  background: #fbfff7;
  color: #111;
  padding: 0 1.25rem clamp(5rem, calc(8 * var(--fluid-vw)), 8rem);
}

.chronicle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.chronicle__start {
  position: relative;
  width: min(100%, 1120px);
  height: 5.5rem;
  margin: 0 auto;
}

.chronicle__start span {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  width: 17px;
  height: 17px;
  background: #050505;
  border: 4px solid #fbfff7;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px #050505;
}

.chronicle__inner {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.chronicle__intro {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto clamp(2.8rem, calc(5 * var(--fluid-vw)), 4.5rem);
  padding: 0 0.8rem;
  background: #fbfff7;
  text-align: center;
}

.chronicle__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.85rem;
  padding: 0.44rem 0.82rem;
  border: 2px solid #111;
  border-radius: 8px;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chronicle__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.1rem, calc(3.5 * var(--fluid-vw)), 3.7rem);
  font-weight: 600;
  line-height: 0.95;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0 0 1rem;
  list-style: none;
}

.timeline::before {
  content: none;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: start;
  min-height: 0;
  margin: 0;
}

.timeline__item:not(.timeline__item--feature)::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  bottom: -1.25rem;
  left: calc(50% - calc(50 * var(--fluid-vw)));
  right: calc(50% - calc(50 * var(--fluid-vw)));
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(20, 72, 45, 0.88) 0%,
    rgba(20, 72, 45, 0.22) 18%,
    rgba(20, 72, 45, 0) 38%,
    rgba(20, 72, 45, 0) 62%,
    rgba(20, 72, 45, 0.22) 82%,
    rgba(20, 72, 45, 0.88) 100%
  );
  transition: opacity 420ms ease;
}

.timeline__item:not(.timeline__item--feature):hover::before,
.timeline__item:not(.timeline__item--feature):focus-within::before {
  opacity: 1;
}

.timeline__item + .timeline__item {
  margin-top: clamp(2.6rem, calc(5.5 * var(--fluid-vw)), 4.8rem);
}

.timeline__item--feature {
  display: block;
  min-height: 0;
  margin-bottom: clamp(3rem, calc(6 * var(--fluid-vw)), 5rem);
  padding-top: 2.2rem;
}

.timeline__item--feature + .timeline__item {
  margin-top: 0;
}

.timeline__item--feature .timeline__marker {
  top: 0;
  width: 24px;
  height: 24px;
  border-width: 5px;
  z-index: 4;
}

.timeline__item--feature::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 3px;
  height: 3.2rem;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline__marker {
  position: absolute;
  left: 50%;
  top: 1.05rem;
  width: 18px;
  height: 18px;
  background: #050505;
  border: 4px solid #fbfff7;
  border-radius: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

.timeline-feature {
  --banner-parallax-x: 0px;
  --banner-parallax-y: 0px;
  position: relative;
  z-index: 3;
  width: var(--desktop-page-width);
  margin: 0.9rem auto 0;
  margin-left: 50%;
  padding: clamp(1.15rem, calc(1.9 * var(--fluid-vw)), 1.6rem) max(1.25rem, calc((var(--desktop-page-width) - 1040px) / 2));
  overflow: hidden;
  background: #111;
  color: #fffdf7;
  border-top: 1px solid rgba(255, 253, 247, 0.22);
  border-bottom: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 0;
  box-shadow: 0 18px 36px rgba(16, 31, 22, 0.18);
  transform: translateX(-50%);
}

.timeline-feature::before,
.timeline-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.timeline-feature::before {
  background: url("2026/event.png") center center / cover no-repeat;
  filter: blur(2px) saturate(0.9) contrast(1.04);
  transform: scale(1.06);
  transform-origin: center center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.timeline-feature::after {
  background:
    linear-gradient(90deg, rgba(8, 9, 7, 0.82) 0%, rgba(8, 9, 7, 0.7) 46%, rgba(8, 9, 7, 0.78) 100%),
    rgba(26, 62, 42, 0.18);
  opacity: 1;
  transition: opacity 650ms ease;
}

.timeline-feature:hover::before,
.timeline-feature:focus-within::before {
  transform: scale(1.1);
}

.timeline-feature:hover::after,
.timeline-feature:focus-within::after {
  opacity: 0.46;
}

.timeline-feature__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 1040px);
  margin: 0 auto clamp(0.65rem, calc(1.15 * var(--fluid-vw)), 0.9rem);
}

.timeline-feature__year {
  margin: 0 0 0.35rem;
  color: rgba(255, 253, 247, 0.94);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(3rem, calc(6 * var(--fluid-vw)), 5.7rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.timeline-feature__kicker {
  display: flex;
  align-items: flex-end;
  gap: 0.9rem;
  margin: 0 0 0.35rem;
}

.timeline-feature__status {
  margin: 0 0 0.45rem;
  color: rgba(255, 253, 247, 0.78);
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.timeline-feature__body {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(1.4rem, calc(3.2 * var(--fluid-vw)), 3.1rem);
  align-items: start;
  transition:
    filter 220ms ease,
    transform 300ms ease;
  transform-origin: center center;
}

.timeline-feature h3 {
  margin: 0;
  max-width: 600px;
  color: #fffdf7;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.65rem, calc(2.55 * var(--fluid-vw)), 2.55rem);
  font-weight: 600;
  line-height: 0.98;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.timeline-feature p {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(0.98rem, calc(1.08 * var(--fluid-vw)), 1.08rem);
  font-weight: 500;
  line-height: 1.34;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.timeline-feature .timeline-feature__year {
  margin: 0;
  color: rgba(255, 253, 247, 0.94);
  font-size: clamp(3rem, calc(6 * var(--fluid-vw)), 5.7rem);
  font-weight: 600;
  line-height: 0.82;
}

.timeline-feature__body > div > p {
  margin: 0.6rem 0 0;
  max-width: 710px;
  color: rgba(255, 253, 247, 0.94);
}

.timeline-feature__details {
  display: grid;
  gap: 0.52rem;
  padding-top: clamp(2.5rem, calc(5 * var(--fluid-vw)), 4.9rem);
}

.timeline-feature__details p {
  margin: 0;
  padding-bottom: 0.52rem;
  border-bottom: 1px solid rgba(255, 253, 247, 0.28);
  color: rgba(255, 253, 247, 0.94);
}

.timeline-feature__details strong {
  display: block;
  margin-bottom: 0.12rem;
  color: #fffdf7;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-feature__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.72rem 0.95rem;
  background: rgba(255, 248, 234, 0.08);
  color: #fffdf7;
  border: 1.5px solid rgba(255, 253, 247, 0.88);
  border-radius: 999px;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.timeline-feature__button:hover,
.timeline-feature__button:focus-visible {
  background: #fff8ea;
  color: #1a3e2a;
  transform: translateY(-1px);
}

.timeline-feature:hover .timeline-feature__body,
.timeline-feature:focus-within .timeline-feature__body {
  filter: drop-shadow(0 0 8px rgba(255, 253, 247, 0.18));
  transform: scale(1.025);
}

.timeline-feature:hover h3,
.timeline-feature:focus-within h3,
.timeline-feature:hover p,
.timeline-feature:focus-within p,
.timeline-feature:hover .timeline-feature__details strong,
.timeline-feature:focus-within .timeline-feature__details strong {
  color: #fffdf7;
  text-shadow: 0 0 7px rgba(255, 253, 247, 0.26);
}

.timeline-feature:hover .timeline-feature__button,
.timeline-feature:focus-within .timeline-feature__button {
  border-color: #fffdf7;
  box-shadow: 0 0 10px rgba(255, 253, 247, 0.2);
}

.timeline__stem {
  position: absolute;
  top: calc(1.05rem + 8px);
  width: clamp(1.9rem, calc(4 * var(--fluid-vw)), 3.7rem);
  height: 2px;
  background: #050505;
  z-index: 2;
}

.timeline__stem::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  background: #050505;
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline__item--right .timeline__stem {
  left: 50%;
}

.timeline__item--right .timeline__stem::after {
  right: 0;
}

.timeline__item--left .timeline__stem {
  right: 50%;
}

.timeline__item--left .timeline__stem::after {
  left: 0;
}

.timeline__content {
  position: relative;
  z-index: 2;
  grid-row: 1;
  max-width: 340px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  transition:
    color 220ms ease,
    filter 220ms ease,
    text-shadow 220ms ease,
    transform 300ms ease;
  transform-origin: center center;
}

.timeline__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.7rem;
  padding: 0.36rem 0.72rem;
  border: 2px solid #111;
  border-radius: 8px;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.timeline__content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.55rem, calc(2 * var(--fluid-vw)), 2.05rem);
  font-weight: 600;
  line-height: 1;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.timeline__content p:not(.timeline__year) {
  margin: 0.55rem 0 0;
  color: #5e625c;
  font-size: clamp(0.94rem, calc(1.05 * var(--fluid-vw)), 1.04rem);
  font-weight: 500;
  line-height: 1.38;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.timeline__read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.78rem;
  padding: 0.5rem 0.78rem;
  border: 1.5px solid #1a3e2a;
  border-radius: 999px;
  color: #1a3e2a;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.timeline__read-more:hover,
.timeline__read-more:focus-visible {
  background: #1a3e2a;
  color: #fff8ea;
}

.timeline__image-frame {
  position: relative;
  z-index: 2;
  grid-row: 1;
  width: min(100%, 360px);
  aspect-ratio: 1.32 / 1;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.1);
  transition:
    filter 260ms ease,
    box-shadow 260ms ease,
    transform 360ms ease;
  transform-origin: center center;
}

.timeline__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: sepia(0.08) saturate(0.92) contrast(0.98) brightness(1.01);
  transition: filter 260ms ease;
}

.timeline__image--winner {
  opacity: 0;
  animation: timeline-winner-fade 34s ease-in-out infinite;
}

.timeline__image--winner-2025,
.timeline__image--winner-2023 {
  object-position: center 20%;
}

.timeline__image--winner-2022 {
  object-position: center 12%;
}

.timeline__image--winner-2022-a {
  animation: timeline-winner-2022-a 136s ease-in-out infinite;
}

.timeline__image--winner-2022-b {
  animation: timeline-winner-2022-b 136s ease-in-out infinite;
}

.timeline__image--winner-2022-c {
  animation: timeline-winner-2022-c 136s ease-in-out infinite;
}

.timeline__image--winner-2022-d {
  animation: timeline-winner-2022-d 136s ease-in-out infinite;
}

.timeline__image--winner-2024 {
  filter: sepia(0.02) saturate(1.26) contrast(1.06) brightness(1.03);
}

@keyframes timeline-winner-fade {
  0%,
  32% {
    opacity: 0;
  }

  48%,
  66% {
    opacity: 1;
  }

  84%,
  100% {
    opacity: 0;
  }
}

@keyframes timeline-winner-2022-a {
  0%,
  8%,
  100% {
    opacity: 0;
  }

  12%,
  16.5% {
    opacity: 1;
  }

  21% {
    opacity: 0;
  }
}

@keyframes timeline-winner-2022-b {
  0%,
  33%,
  100% {
    opacity: 0;
  }

  37%,
  41.5% {
    opacity: 1;
  }

  46% {
    opacity: 0;
  }
}

@keyframes timeline-winner-2022-c {
  0%,
  58%,
  100% {
    opacity: 0;
  }

  62%,
  66.5% {
    opacity: 1;
  }

  71% {
    opacity: 0;
  }
}

@keyframes timeline-winner-2022-d {
  0%,
  83%,
  100% {
    opacity: 0;
  }

  87%,
  91.5% {
    opacity: 1;
  }

  96% {
    opacity: 0;
  }
}

.timeline__item:not(.timeline__item--feature):hover .timeline__image-frame,
.timeline__item:not(.timeline__item--feature):focus-within .timeline__image-frame {
  filter: sepia(0.06) saturate(0.98) contrast(1.02) brightness(1.03);
  box-shadow:
    0 18px 38px rgba(26, 62, 42, 0.22),
    0 0 28px rgba(151, 171, 74, 0.28);
  transform: scale(1.035);
}

.timeline__item:not(.timeline__item--feature):hover .timeline__content,
.timeline__item:not(.timeline__item--feature):focus-within .timeline__content {
  transform: scale(1.025);
}

.timeline__item:not(.timeline__item--feature):hover .timeline__content h3,
.timeline__item:not(.timeline__item--feature):focus-within .timeline__content h3 {
  color: #1a3e2a;
  text-shadow: 0 0 18px rgba(151, 171, 74, 0.34);
}

.timeline__item:not(.timeline__item--feature):hover .timeline__content p:not(.timeline__year),
.timeline__item:not(.timeline__item--feature):focus-within .timeline__content p:not(.timeline__year) {
  color: #334236;
  text-shadow: 0 0 14px rgba(151, 171, 74, 0.2);
}

.timeline__item:not(.timeline__item--feature):hover .timeline__year,
.timeline__item:not(.timeline__item--feature):focus-within .timeline__year {
  background: #1a3e2a;
  border-color: #1a3e2a;
  color: #fff8ea;
  box-shadow: 0 0 22px rgba(151, 171, 74, 0.36);
}

.timeline__item:not(.timeline__item--feature):hover .timeline__read-more,
.timeline__item:not(.timeline__item--feature):focus-within .timeline__read-more {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.timeline__item--right .timeline__content {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.timeline__item--right .timeline__image-frame {
  grid-column: 3;
  justify-self: start;
}

.timeline__item--left .timeline__content {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

.timeline__item--left .timeline__image-frame {
  grid-column: 1;
  justify-self: end;
}

.memory-gallery {
  --gallery-gap: clamp(0.85rem, calc(2 * var(--fluid-vw)), 1.65rem);
  --gallery-row: clamp(8.5rem, calc(16 * var(--fluid-vw)), 16.5rem);
  padding: clamp(4.5rem, calc(8 * var(--fluid-vw)), 7.5rem) 0 clamp(5rem, calc(9 * var(--fluid-vw)), 8rem);
  overflow: hidden;
  background: #fff8ea;
}

.memory-gallery__intro {
  width: min(100% - 2rem, 980px);
  margin: 0 auto clamp(2.3rem, calc(5 * var(--fluid-vw)), 4.2rem);
  text-align: center;
}

.memory-gallery__intro-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.memory-gallery__intro-link:hover,
.memory-gallery__intro-link:focus-visible {
  color: #1a3e2a;
  transform: translateY(-2px);
}

.memory-gallery__eyebrow {
  margin: 0 0 0.65rem;
  color: #6f4b39;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.memory-gallery h2 {
  margin: 0;
  color: #201a16;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.1rem, calc(3.5 * var(--fluid-vw)), 3.7rem);
  font-weight: 600;
  line-height: 0.95;
}

.memory-gallery__viewport {
  width: 100%;
  min-height: calc((var(--gallery-row) * 2) + var(--gallery-gap));
  overflow: hidden;
  outline: none;
}

.memory-gallery__track {
  width: max-content;
  display: flex;
  gap: 0;
  animation: gallery-marquee 260s linear infinite;
  will-change: transform;
}

.memory-gallery__viewport:hover .memory-gallery__track,
.memory-gallery__viewport:focus-within .memory-gallery__track {
  animation-play-state: paused;
}

.memory-gallery__set {
  display: grid;
  grid-auto-flow: column dense;
  grid-auto-columns: clamp(10rem, calc(15 * var(--fluid-vw)), 18rem);
  grid-template-rows: repeat(2, var(--gallery-row));
  gap: var(--gallery-gap);
  padding-right: var(--gallery-gap);
  align-items: stretch;
}

.memory-gallery__tile {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 18px 42px rgba(39, 24, 18, 0.12);
}

.memory-gallery__tile:nth-child(5n + 2),
.memory-gallery__tile:nth-child(7n + 4) {
  grid-row: span 2;
}

.memory-gallery__tile:nth-child(6n + 3),
.memory-gallery__tile:nth-child(8n + 6) {
  grid-column: span 2;
}

.memory-gallery__tile--small {
  grid-column: auto;
  grid-row: auto;
}

.memory-gallery__tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) sepia(0.12) saturate(0.72) contrast(0.94) brightness(1.04);
  transform-origin: center 18%;
  transform: scale(1);
  transition:
    filter 360ms ease,
    transform 420ms ease;
}

.memory-gallery__tile:hover img,
.memory-gallery__tile:focus-within img {
  filter: grayscale(0) sepia(0.03) saturate(1.02) contrast(1) brightness(1);
  transform: scale(1.02);
}

@keyframes gallery-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.site-footer {
  background: #f4f0e7;
  color: #193326;
  font-family: "Montserrat", "Arial", sans-serif;
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 190px;
}

.footer-contact,
.footer-partners {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: clamp(1.2rem, calc(3 * var(--fluid-vw)), 3rem);
  align-items: center;
  padding: clamp(1.45rem, calc(2.8 * var(--fluid-vw)), 2.3rem) clamp(1.5rem, calc(4.5 * var(--fluid-vw)), 4.8rem);
}

.footer-contact {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footer-partners {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-partners__logos {
  align-self: center;
  justify-self: center;
  width: min(100%, 420px);
}

.footer-contact {
  background: #173d2c;
  color: #fff8ea;
}

.footer-partners {
  background: #efb697;
  color: #173326;
}

.footer-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.footer-contact h2,
.footer-partners h2 {
  margin: 0;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: clamp(0.88rem, calc(1.05 * var(--fluid-vw)), 1rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-partners h2 a {
  color: inherit;
  text-decoration: none;
}

.footer-partners h2 a:hover,
.footer-partners h2 a:focus-visible {
  color: #0c3c2c;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.footer-contact p:not(.footer-kicker),
.footer-partners p:not(.footer-kicker) {
  margin: 0.55rem 0 0;
  max-width: 24rem;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: clamp(0.82rem, calc(1 * var(--fluid-vw)), 0.96rem);
  font-weight: 500;
  line-height: 1.45;
}

.footer-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 26rem);
  min-height: 48px;
  justify-self: start;
  padding: 0.75rem 1.2rem;
  background: transparent;
  border: 1.5px solid rgba(255, 248, 234, 0.86);
  color: #fff8ea;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-contact__button:hover,
.footer-contact__button:focus-visible {
  background: #efb697;
  border-color: #efb697;
  color: #173d2c;
  transform: translateY(-1px);
}

.footer-partners__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.footer-partners__logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.footer-partners__logos img {
  width: auto;
  max-width: 100%;
  height: 82px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 0;
}

.footer-partners__logos a:first-child img {
  height: 100px;
}

.site-footer__main {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(25, 51, 38, 0.08);
  border-bottom: 1px solid rgba(25, 51, 38, 0.08);
  overflow: hidden;
}

.site-footer__brand,
.site-footer__links {
  position: relative;
  z-index: 1;
  padding: clamp(2.3rem, calc(5 * var(--fluid-vw)), 4.5rem) clamp(1.5rem, calc(4.5 * var(--fluid-vw)), 4.8rem);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(25, 51, 38, 0.08);
}

.site-footer__statement {
  position: absolute;
  z-index: 0;
  top: clamp(0.2rem, calc(1 * var(--fluid-vw)), 1rem);
  left: clamp(1rem, calc(3 * var(--fluid-vw)), 3rem);
  width: min(calc(140 * var(--fluid-vw)), 1180px);
  max-width: none;
  margin: 0;
  color: rgba(23, 61, 44, 0.13);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(3.7rem, calc(8 * var(--fluid-vw)), 8.8rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.78;
  pointer-events: none;
  text-transform: none;
}

.site-footer__identity {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, calc(4 * var(--fluid-vw)), 3rem);
  margin-top: calc(1.2rem + 9px);
}

.site-footer__logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-footer__identity img {
  width: clamp(86px, calc(10 * var(--fluid-vw)), 150px);
  height: auto;
  display: block;
  filter: brightness(0) invert(18%) sepia(29%) saturate(743%) hue-rotate(94deg) brightness(91%) contrast(89%);
}

.site-footer__contact-group {
  display: grid;
  gap: 1rem;
}

.site-footer__identity address {
  display: grid;
  gap: 0.75rem;
  color: #32483d;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.site-footer__identity a {
  color: inherit;
  text-decoration: none;
}

.site-footer__identity a:hover,
.site-footer__identity a:focus-visible {
  color: #173d2c;
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.35rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #21392d;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid currentColor;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: #6f4b39;
}

.site-footer__links {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) repeat(2, minmax(110px, 1fr));
  gap: 0 clamp(1.4rem, calc(2.8 * var(--fluid-vw)), 3rem);
  align-content: center;
  justify-content: stretch;
  padding-top: clamp(2.3rem, calc(5 * var(--fluid-vw)), 4.5rem);
}

.site-footer__link-group {
  position: relative;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.site-footer__link-group:not(:has(h2)) {
  padding-top: calc(0.68rem + 0.35rem + 0.55rem);
}

.site-footer__link-group--divided {
  padding-left: 0;
}

.site-footer__link-group--divided::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((clamp(1.4rem, calc(2.8 * var(--fluid-vw)), 3rem) * -1) - 0.5px);
  width: 1px;
  background: rgba(25, 51, 38, 0.16);
}

.site-footer__link-group h2 {
  margin: 0 0 0.35rem;
  color: #5c685f;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__links a {
  color: #173326;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.25rem, calc(1.7 * var(--fluid-vw)), 1.6rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
  text-decoration: none;
  text-transform: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #6f4b39;
}

.site-footer__links a[aria-current="page"] {
  color: #6f4b39;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  padding: 1.2rem clamp(1.5rem, calc(4.5 * var(--fluid-vw)), 4.8rem);
  color: #536257;
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__credit a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.site-footer__credit img {
  width: auto;
  height: 2.35rem;
  display: block;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
  color: #1a3e2a;
  opacity: 0.74;
}

@media (max-width: 900px) {
  .hero--detail {
    height: 64vh;
    min-height: 460px;
  }

  .event-detail__body {
    grid-template-columns: 1fr;
  }

  .about-editorial {
    grid-template-columns: 1fr;
  }

  .about-archive {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .about-archive__photo,
  .about-archive__note {
    position: relative;
    inset: auto;
    width: auto;
  }

  .about-archive__photo--one,
  .about-archive__photo--two,
  .about-archive__photo--three,
  .about-archive__photo--four,
  .about-archive__photo--five,
  .about-archive__photo--six,
  .about-archive__photo--seven,
  .about-archive__photo--eight,
  .about-archive__photo--nine,
  .about-archive__photo--ten,
  .about-archive__photo--eleven,
  .about-archive__photo--twelve,
  .about-archive__note {
    transform: none;
  }

  .about-archive__note {
    grid-column: 1 / -1;
  }

  .about-page--layout-two .about-editorial__intro {
    max-width: 100%;
    text-align: left;
  }

  .about-page--layout-two .about-editorial__intro > p:last-child {
    max-width: 100%;
    margin-left: 0;
  }

  .about-page--layout-two .about-layout-stage {
    width: min(100%, 1120px);
    min-height: auto;
    display: block;
  }

  .about-page--layout-two .about-editorial {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-top: 0;
    pointer-events: auto;
  }

  .about-page--layout-two .about-editorial::before {
    content: none;
  }

  .about-page--layout-two .about-editorial__paper,
  .about-page--layout-two .about-editorial__facts {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin: 0;
    pointer-events: auto;
  }

  .about-page--layout-two .about-editorial__facts {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(33, 25, 20, 0.18);
  }

  .about-page--layout-two .about-archive {
    position: relative;
    inset: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    pointer-events: auto;
  }

  .about-page--layout-two .about-archive__photo,
  .about-page--layout-two .about-archive__note {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    z-index: auto;
  }

  .about-page--layout-two .about-archive__photo--one,
  .about-page--layout-two .about-archive__photo--two,
  .about-page--layout-two .about-archive__photo--three,
  .about-page--layout-two .about-archive__photo--four,
  .about-page--layout-two .about-archive__photo--five,
  .about-page--layout-two .about-archive__photo--six,
  .about-page--layout-two .about-archive__photo--seven,
  .about-page--layout-two .about-archive__photo--eight,
  .about-page--layout-two .about-archive__photo--nine,
  .about-page--layout-two .about-archive__photo--ten,
  .about-page--layout-two .about-archive__photo--eleven,
  .about-page--layout-two .about-archive__photo--twelve,
  .about-page--layout-two .about-archive__note {
    transform: none;
  }

  .about-page--layout-two .about-archive__note {
    display: block;
    grid-column: 1 / -1;
  }

  .event-detail__results {
    grid-template-columns: 1fr;
  }

  .event-detail__placements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-detail__photos {
    --event-photo-columns: 2;
  }

  .event-detail__photos.is-collage .event-detail__photos-set {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .footer-contact,
  .footer-partners,
  .site-footer__brand,
  .site-footer__links {
    padding-right: clamp(1rem, calc(4 * var(--fluid-vw)), 2rem);
    padding-left: clamp(1rem, calc(4 * var(--fluid-vw)), 2rem);
  }

  .site-footer__brand {
    display: flex;
    min-height: 19rem;
    overflow: hidden;
    border-right: 0;
    border-bottom: 1px solid rgba(25, 51, 38, 0.08);
  }

  .site-footer__statement {
    top: 1.4rem;
    left: clamp(1rem, calc(4 * var(--fluid-vw)), 2rem);
    right: clamp(1rem, calc(4 * var(--fluid-vw)), 2rem);
    bottom: auto;
    width: auto;
    max-width: 100%;
    font-size: clamp(4.2rem, calc(11 * var(--fluid-vw)), 6rem);
  }

  .site-footer__identity {
    min-width: 0;
  }

  .site-footer__contact-group,
  .site-footer__identity address {
    min-width: 0;
  }

  .site-footer__identity address,
  .site-footer__identity a {
    overflow-wrap: anywhere;
  }

  .site-footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .site-footer__link-group:not(:has(h2)) {
    padding-top: calc(0.68rem + 0.35rem + 0.55rem);
  }

  .site-footer__link-group--divided::before {
    content: none;
  }

  .site-footer__bottom {
    justify-content: flex-start;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero {
    height: calc(46 * var(--fluid-vw));
  }

  .hero__image {
    transform: scale(1.04);
  }

  .hero:not(.hero--detail) {
    height: min(64svh, calc(56 * var(--fluid-vw)));
  }

  .hero:not(.hero--detail) .hero__overlay {
    justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero:not(.hero--detail) .hero__primary {
    margin-top: 0;
  }

  .hero__overlay--detail {
    padding-bottom: clamp(2rem, calc(4 * var(--fluid-vw)), 3.25rem);
  }

  .hero__primary--detail h1 {
    font-size: clamp(3.1rem, calc(6.4 * var(--fluid-vw)), 5.4rem);
  }
}

@media (min-width: 641px) and (max-width: 1366px) and (min-height: 900px) {
  .hero {
    height: 38svh;
  }

  .hero--detail {
    height: 38svh;
    min-height: 0;
  }

  .hero:not(.hero--detail) {
    height: 75svh;
  }

  .hero__overlay,
  .hero__overlay--detail,
  .hero:not(.hero--detail) .hero__overlay {
    justify-content: center;
    padding-top: clamp(4.25rem, 8svh, 5.5rem);
    padding-bottom: clamp(1rem, 2svh, 1.8rem);
  }

  .hero__primary,
  .hero__primary--detail,
  .hero:not(.hero--detail) .hero__primary {
    margin-top: 0;
  }

  .hero__primary--detail h1 {
    font-size: clamp(3rem, calc(5.8 * var(--fluid-vw)), 5rem);
  }

  .hero__primary--contact h1 {
    font-size: clamp(2.45rem, calc(4.8 * var(--fluid-vw)), 4rem);
  }
}

@media (min-width: 1025px) {
  .hero:not(.hero--detail) {
    height: var(--desktop-page-height);
  }

  .hero--detail {
    height: calc(var(--desktop-page-height) * 0.66);
  }
}

@media (max-width: 640px) {
  .hero {
    height: calc(64 * var(--fluid-vw));
  }

  .hero__image {
    transform: scale(1.04);
  }

  .hero:not(.hero--detail) {
    height: 68svh;
  }

  .hero:not(.hero--detail) .hero__overlay {
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero:not(.hero--detail) .hero__primary {
    margin-top: 0;
  }

  .topbar {
    padding: 0.7rem 0.9rem;
    gap: 0.45rem;
  }

  .topbar__brand {
    font-size: 0.88rem;
  }

  .topbar--collapsed .topbar__menu {
    right: 0.9rem;
  }

  .topbar__menu a,
  .topbar__dropdown summary {
    font-size: 0.74rem;
  }

  .hero__overlay {
    width: min(100% - 1.5rem, 900px);
    height: 100%;
    padding: 4.4rem 0.75rem 1rem;
    transform: translateX(-50%);
  }

  .hero__primary {
    margin-top: clamp(1rem, calc(5 * var(--fluid-vw)), 2.1rem);
  }

  .hero h1 {
    font-size: clamp(2.8rem, calc(13 * var(--fluid-vw)), 4.4rem);
  }

  .hero__crest {
    gap: 0.8rem;
    margin-bottom: 0.85rem;
  }

  .hero__crest-text {
    font-size: clamp(0.68rem, calc(3 * var(--fluid-vw)), 0.88rem);
    letter-spacing: 0.18em;
  }

  .hero__logo {
    height: clamp(38px, calc(11 * var(--fluid-vw)), 52px);
  }

  .hero__location {
    margin-top: 0.35rem;
    font-size: clamp(0.92rem, calc(4 * var(--fluid-vw)), 1.22rem);
    letter-spacing: 0.14em;
  }

  .manifesto {
    min-height: auto;
    padding: 3.6rem 1rem 3.4rem;
    display: block;
  }

  .manifesto__title {
    max-width: 23rem;
    margin-bottom: 2rem;
    font-size: clamp(1.45rem, calc(7.8 * var(--fluid-vw)), 2.35rem);
    line-height: 0.86;
  }

  .manifesto__title em {
    font-size: clamp(2rem, calc(10.5 * var(--fluid-vw)), 3.2rem);
  }

  .manifesto__copy {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .manifesto__column p {
    font-size: 1.02rem;
    line-height: 1.48;
    text-align: center;
  }

  .chronicle {
    padding: 0 1rem 4rem;
  }

  .chronicle__start {
    height: 4.4rem;
  }

  .chronicle::before {
    left: 2.05rem;
    width: 5px;
  }

  .chronicle__start span {
    left: 1.05rem;
  }

  .chronicle__intro {
    margin: 0 0 2.4rem 2.6rem;
    text-align: left;
  }

  .timeline {
    padding-left: 2.6rem;
  }

  .timeline::before {
    top: -0.8rem;
  }

  .timeline__item {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 0 0 0.3rem;
  }

  .timeline__item:not(.timeline__item--feature)::before {
    content: none;
  }

  .timeline__item--feature {
    margin-left: -2.6rem;
    padding-left: 0;
    padding-top: 2rem;
  }

  .timeline__item--feature .timeline__marker {
    left: 1.05rem;
    top: 0;
  }

  .timeline__item--feature::after {
    left: 1.05rem;
    top: 20px;
    height: 3rem;
  }

  .timeline-feature {
    width: 100%;
    max-width: 100%;
    margin-top: 1.3rem;
    padding: 1.1rem 1rem;
    margin-left: 0;
    transform: none;
  }

  .timeline-feature__kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .timeline-feature__body {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
    min-width: 0;
    transform: none;
  }

  .timeline-feature__details {
    padding-top: 0;
  }

  .timeline-feature h3 {
    font-size: clamp(1.85rem, calc(8.5 * var(--fluid-vw)), 2.45rem);
  }

  .timeline-feature p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .timeline-feature__body > div,
  .timeline-feature__details {
    min-width: 0;
  }

  .timeline-feature__button {
    max-width: 100%;
    width: 100%;
    padding-inline: 0.8rem;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .timeline-feature:hover .timeline-feature__body,
  .timeline-feature:focus-within .timeline-feature__body {
    transform: none;
  }

  .timeline__item + .timeline__item {
    margin-top: 3.4rem;
  }

  .timeline__marker {
    left: -1.55rem;
    top: 0.65rem;
    width: 17px;
    height: 17px;
    transform: translate(-50%, 0);
  }

  .timeline__stem {
    left: -1.35rem;
    right: auto;
    top: 1.18rem;
    width: 1.75rem;
  }

  .timeline__item--right .timeline__stem,
  .timeline__item--left .timeline__stem {
    left: -1.35rem;
    right: auto;
  }

  .timeline__item--right .timeline__stem::after,
  .timeline__item--left .timeline__stem::after {
    right: 0;
    left: auto;
  }

  .timeline__content,
  .timeline__item--right .timeline__content,
  .timeline__item--left .timeline__content {
    max-width: none;
    padding-top: 2.7rem;
    text-align: left;
  }

  .timeline__year {
    position: absolute;
    top: 0.25rem;
    left: 0.6rem;
    margin: 0;
    z-index: 3;
  }

  .timeline__read-more {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .timeline__image-frame,
  .timeline__item--right .timeline__image-frame,
  .timeline__item--left .timeline__image-frame {
    width: 100%;
    order: 2;
    justify-self: auto;
  }

  .hero--detail {
    height: calc(64 * var(--fluid-vw));
    min-height: 0;
  }

  .hero__overlay--detail {
    padding-bottom: 1.4rem;
  }

  .hero__primary--detail h1 {
    font-size: clamp(2.3rem, calc(11 * var(--fluid-vw)), 3.7rem);
  }

  .hero__primary--contact h1 {
    max-width: min(calc(88 * var(--fluid-vw)), 680px);
    font-size: clamp(2rem, calc(8.8 * var(--fluid-vw)), 3rem);
  }

  .hero:not(.hero--detail) {
    height: 68svh;
  }

  .hero--detail {
    height: min(46svh, calc(64 * var(--fluid-vw)));
  }

  .event-detail {
    padding-top: 3rem;
  }

  .event-detail__intro {
    text-align: left;
  }

  .about-editorial__intro h2 {
    font-size: clamp(2.65rem, calc(16 * var(--fluid-vw)), 4.5rem);
  }

  .about-editorial__intro > p:last-child {
    margin-left: 0;
  }

  .about-editorial__paper {
    padding: 1.2rem;
  }

  .about-editorial__paper p:not(.about-editorial__kicker) {
    text-align: left;
  }

  .about-editorial__paper p:not(.about-editorial__kicker):first-of-type::first-letter {
    font-size: 3.8rem;
  }

  .about-archive {
    grid-template-columns: 1fr;
  }

  .about-page--layout-two .about-archive {
    grid-template-columns: 1fr;
  }

  .about-page--layout-two .about-editorial__facts ul {
    gap: 0.62rem;
  }

  .event-detail__placements {
    grid-template-columns: 1fr;
  }

  .event-detail__photos {
    --event-photo-columns: 1;
  }

  .event-detail__gallery-header {
    align-items: start;
    flex-direction: column;
  }

  .event-detail__gallery-toggle {
    width: 100%;
  }

  .event-detail__photos.is-collage .event-detail__photos-set {
    grid-template-columns: 1fr;
  }

  .memory-gallery {
    --gallery-gap: 0.8rem;
    --gallery-row: clamp(7.2rem, calc(33 * var(--fluid-vw)), 10.5rem);
    padding-top: 4rem;
  }

  .memory-gallery__intro {
    margin-bottom: 2.1rem;
    text-align: left;
  }

  .memory-gallery h2 {
    font-size: clamp(2rem, calc(9 * var(--fluid-vw)), 3rem);
  }

  .memory-gallery__track {
    animation-duration: 220s;
  }

  .memory-gallery__set {
    grid-auto-columns: clamp(8.2rem, calc(38 * var(--fluid-vw)), 12rem);
  }

  .year-rail {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
    top: auto;
    display: block;
    transform: none;
  }

  .year-rail:hover,
  .year-rail:focus-within {
    transform: none;
  }

  .year-rail__tab {
    display: none;
  }

  .year-rail__panel {
    width: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.45rem;
    border: 1px solid rgba(255, 248, 234, 0.18);
    border-radius: 999px;
  }

  .year-rail__panel p,
  .year-rail__link small {
    display: none;
  }

  .year-rail__link {
    place-items: center;
    padding: 0.45rem 0.2rem;
    border: 0;
    border-radius: 999px;
  }

  .year-rail__link::before {
    content: none;
  }

  .year-rail__link span {
    font-size: 1.05rem;
    line-height: 1;
  }

  .year-rail__link:hover,
  .year-rail__link:focus-visible,
  .year-rail__link--active {
    transform: none;
  }

  .site-footer__top,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .footer-contact,
  .footer-partners {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    align-items: center;
    padding: 1.6rem 1rem;
    text-align: center;
  }

  .footer-contact__button {
    width: 100%;
    justify-self: stretch;
  }

  .footer-partners__logos {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    justify-items: center;
  }

  .footer-partners__logos img {
    width: auto;
    max-width: min(100%, 210px);
    height: 64px;
  }

  .footer-partners__logos img:first-child {
    height: 76px;
  }

  .site-footer__brand,
  .site-footer__links {
    padding: 2rem 1rem;
  }

  .site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 19rem;
    overflow: hidden;
    padding-bottom: 3.4rem;
    border-right: 0;
    border-bottom: 1px solid rgba(25, 51, 38, 0.08);
  }

  .site-footer__statement {
    position: absolute;
    top: auto;
    left: 1rem;
    right: 1rem;
    bottom: 0.95rem;
    width: auto;
    max-width: 100%;
    margin: 0;
    color: rgba(23, 61, 44, 0.13);
    font-size: clamp(3rem, calc(14 * var(--fluid-vw)), 4.35rem);
    line-height: 0.82;
    pointer-events: none;
    overflow-wrap: normal;
  }

  .site-footer__identity {
    margin-top: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .site-footer__identity img {
    width: 92px;
  }

  .site-footer__contact-group,
  .site-footer__identity address {
    width: 100%;
  }

  .site-footer__social {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    gap: 1.7rem;
    padding-top: 1.45rem;
  }

  .site-footer__link-group {
    gap: 0.65rem;
  }

  .site-footer__link-group:not(:has(h2)) {
    padding-top: 0;
  }

  .site-footer__link-group--divided::before {
    content: none;
  }

  .site-footer__links a {
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .site-footer__bottom {
    justify-content: flex-start;
    padding: 1.1rem 1rem;
    text-align: left;
  }
}

@media (max-width: 920px) {
  .contact-page {
    max-width: 100%;
  }

  .contact-page__inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .contact-page__aside {
    position: relative;
    top: auto;
    text-align: center;
  }

  .contact-page__aside h2,
  .contact-page__aside > p:not(.event-detail__eyebrow) {
    max-width: 100%;
    margin-inline: auto;
  }

  .contact-page__direct {
    width: min(100%, 28rem);
    margin-inline: auto;
  }

  .contact-form {
    padding-left: 0;
  }

  .contact-form::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(26, 62, 42, 0), rgba(26, 62, 42, 0.34), rgba(26, 62, 42, 0));
  }

  .partner-page {
    max-width: 100%;
  }

  .partner-masonry {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
  }

  .partner-tile,
  .partner-tile--lese {
    min-height: 33rem;
    margin-top: 0;
  }

  .partner-tile__logo--lese {
    width: min(72%, 360px);
    min-height: 6.4rem;
    justify-self: start;
  }

  .gallery-page {
    max-width: 100%;
  }

  .gallery-overview {
    width: min(100%, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
  }

  .gallery-year-panel__header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .contact-page {
    max-width: 100%;
    padding-inline: clamp(0.9rem, calc(4 * var(--fluid-vw)), 1rem);
  }

  .contact-page__aside h2 {
    font-size: clamp(2.1rem, calc(11 * var(--fluid-vw)), 3rem);
    line-height: 0.92;
  }

  .contact-form {
    gap: 1.65rem;
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .contact-form label {
    font-size: 0.82rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.12rem;
  }

  .contact-form textarea {
    min-height: 10rem;
  }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form button {
    width: 100%;
  }

  .partner-page {
    max-width: 100%;
    padding-inline: clamp(0.75rem, calc(4 * var(--fluid-vw)), 1rem);
  }

  .partner-masonry {
    gap: 1rem;
    margin-top: 2.4rem;
  }

  .partner-tile {
    min-height: 29rem;
  }

  .partner-tile__content {
    align-content: end;
    padding: 1rem;
  }

  .partner-tile__logo {
    width: min(86%, 310px);
    min-height: 5.4rem;
  }

  .partner-tile__logo--lese {
    width: min(86%, 310px);
    min-height: 5.4rem;
    justify-self: start;
  }

  .partner-tile__text strong {
    font-size: clamp(2rem, calc(11 * var(--fluid-vw)), 3.15rem);
    line-height: 0.96;
  }

  .partner-tile__text span:last-child {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .gallery-page {
    max-width: 100%;
    padding-inline: clamp(0.75rem, calc(4 * var(--fluid-vw)), 1rem);
  }

  .gallery-page__intro {
    padding-bottom: 1.6rem;
  }

  .gallery-page__intro::after {
    width: min(calc(78 * var(--fluid-vw)), 330px);
  }

  .gallery-overview {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
  }

  .gallery-year-card {
    min-height: 15.5rem;
    padding: 1rem;
  }

  .gallery-year-card__meta span,
  .gallery-year-card__meta small {
    font-size: 0.58rem;
  }

  .gallery-year-card__meta strong {
    font-size: clamp(2.85rem, calc(17 * var(--fluid-vw)), 4rem);
  }

  .gallery-year-card__meta .gallery-year-card__title--long {
    font-size: clamp(2.25rem, calc(11 * var(--fluid-vw)), 3.15rem);
  }

  .gallery-year-card__stack img {
    width: 43%;
    border-width: 4px;
    opacity: 0.76;
  }

  .gallery-year-card__stack img:nth-child(1) {
    right: 6%;
  }

  .gallery-year-card__stack img:nth-child(2) {
    left: 6%;
  }

  .gallery-panels {
    gap: 2.2rem;
    margin-top: 2.2rem;
  }

  .gallery-year-panel {
    scroll-margin-top: 5rem;
    padding-top: 1.4rem;
  }

  .gallery-year-panel__header p:last-child {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .gallery-page .event-detail__photos.is-collage .event-detail__photos-set {
    gap: 0.8rem;
  }

  .gallery-page .event-detail__photos.is-collage img {
    aspect-ratio: 1 / 1.08;
  }
}

/* Final hero sizing contract: homepage header is always taller than detail headers. */
.hero__overlay,
.hero__overlay--detail {
  justify-content: center;
}

.hero__primary,
.hero__primary--detail {
  margin-top: 0;
}

@media (min-width: 1025px) {
  .hero:not(.hero--detail) {
    height: var(--desktop-page-height);
  }

  .hero--detail {
    height: calc(var(--desktop-page-height) * 0.66);
    min-height: 0;
  }

  .hero__overlay,
  .hero__overlay--detail {
    padding-top: clamp(4.75rem, calc(5.6 * var(--fluid-vw)), 5.75rem);
    padding-bottom: clamp(4.75rem, calc(5.6 * var(--fluid-vw)), 5.75rem);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero:not(.hero--detail) {
    height: min(75svh, calc(64 * var(--fluid-vw)));
  }

  .hero--detail {
    height: min(46svh, calc(46 * var(--fluid-vw)));
    min-height: 0;
  }

  .hero__overlay,
  .hero__overlay--detail {
    padding-top: clamp(3.6rem, 6svh, 4.8rem);
    padding-bottom: clamp(3.6rem, 6svh, 4.8rem);
  }
}

@media (min-width: 641px) and (max-width: 1366px) and (min-height: 900px) {
  .hero:not(.hero--detail) {
    height: 75svh;
  }

  .hero--detail {
    height: 38svh;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero:not(.hero--detail) {
    height: 68svh;
  }

  .hero--detail {
    height: min(46svh, calc(64 * var(--fluid-vw)));
    min-height: 0;
  }

  .hero__overlay,
  .hero__overlay--detail {
    padding-top: clamp(3.1rem, 13svw, 4.2rem);
    padding-bottom: clamp(3.1rem, 13svw, 4.2rem);
  }
}
