:root {
  --ink: #111820;
  --ink-soft: #34404a;
  --paper: #f7f3eb;
  --paper-deep: #ece3d4;
  --gold: #b98a3a;
  --gold-dark: #8f6826;
  --red: #d0101b;
  --sky: #b9dcf5;
  --blue: #0f3557;
  --white: #fff;
  --line: rgba(17, 24, 32, .16);
  --shadow: 0 24px 70px rgba(17, 24, 32, .18);
  --sans: "Roboto", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --condensed: "Arial Narrow", "HelveticaNeue-CondensedBold", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 5.25rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
  font-optical-sizing: auto;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(208, 16, 27, .76);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: .85rem clamp(1.25rem, 4vw, 4.5rem);
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 20, 31, .62), rgba(9, 20, 31, 0));
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}

.site-header:not(.is-scrolled) .brand__text,
.site-header:not(.is-scrolled) .main-nav,
.site-header:not(.is-scrolled) .language-switch {
  color: rgba(255, 255, 255, .98);
  font-weight: 300;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 243, 235, .94);
  box-shadow: 0 12px 34px rgba(17, 24, 32, .08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .brand__mark {
  filter: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand__mark {
  width: clamp(4.3rem, 7vw, 6.8rem);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .28));
}

.brand__text {
  font-size: .68rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3.4rem);
  font-size: .86rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav a,
.language-switch a {
  opacity: .9;
}

.main-nav .main-nav__shop {
  margin: -.55rem 0;
  padding: .5rem .8rem;
  border: 1px solid rgba(240, 199, 120, .78);
  color: #f0c778;
  opacity: 1;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.main-nav .main-nav__shop:hover {
  border-color: #f0c778;
  background: rgba(240, 199, 120, .14);
  transform: translateY(-1px);
}

.site-header.is-scrolled .main-nav__shop {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: var(--white);
}

.site-header.is-scrolled .main-nav__shop:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.main-nav a:hover,
.language-switch a:hover {
  color: #f0c778;
}

.language-switch {
  display: flex;
  gap: .72rem;
  align-items: center;
  font-size: 1.03rem;
  font-weight: 400;
  letter-spacing: .14em;
}

.language-switch__divider {
  display: block;
  width: 1px;
  height: 1.15em;
  background: rgba(255, 255, 255, .72);
}

.site-header.is-scrolled .language-switch__divider {
  background: rgba(17, 24, 32, .36);
}

.language-switch [aria-current="true"] {
  color: #f0c778;
}

.hero {
  position: relative;
  height: min(100svh, 920px);
  min-height: min(100svh, 920px);
  max-height: 920px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero__media,
.hero__shade,
.hero__fallback,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: 0;
}

.hero__video,
.hero__fallback {
  object-fit: cover;
  object-position: 58% center;
}

.hero__fallback {
  opacity: 1;
  transition: opacity 1.1s ease;
}

.hero__video {
  opacity: 0;
  transition: opacity .6s ease;
}

.hero.video-ready .hero__video {
  opacity: 1;
}

.hero.video-ready .hero__fallback {
  opacity: 0;
}

.hero.video-complete .hero__fallback {
  opacity: 1;
}

.hero.video-complete .hero__video {
  opacity: 0;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 16, 27, .78) 0%, rgba(4, 16, 27, .58) 32%, rgba(4, 16, 27, .16) 52%, rgba(4, 16, 27, 0) 72%),
    linear-gradient(0deg, rgba(4, 16, 27, .2), rgba(4, 16, 27, 0) 58%);
}

.hero__rail {
  position: absolute;
  left: clamp(1rem, 3vw, 3.2rem);
  top: clamp(12rem, 30vh, 18rem);
  bottom: clamp(4.5rem, 8vh, 7rem);
  height: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(240, 199, 120, .8);
  color: rgba(240, 199, 120, .92);
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.hero__content {
  position: absolute;
  z-index: 3;
  left: clamp(6.25rem, 8vw, 9rem);
  bottom: clamp(4.5rem, 8vh, 7rem);
  width: min(900px, 54vw);
  margin: 0;
  padding: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 6.2vw, 7rem);
  font-weight: 520;
  line-height: .9;
  letter-spacing: -0.02em;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  text-wrap: balance;
  text-shadow: 0 18px 55px rgba(0, 0, 0, .42);
}

.hero h1 span {
  display: inline;
  color: #d0a557;
  white-space: nowrap;
}

.hero h1,
.hero__subtitle,
.intro-band h2,
.section-heading h2,
.events-feature h2,
.year-section h2,
.history-media h2,
.facts strong,
.sky-stage__title h2,
.events-feature::after,
.event-card h3,
.calendar-item__title,
.timeline-list time,
.media-grid a {
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 1rem 0 0;
  color: #d8b168;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-kerning: normal;
}

.hero__copy {
  width: min(640px, 100%);
  margin: 2rem 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .96);
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.4rem 1.8rem;
  margin-top: 2.4rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
}

.button {
  gap: 0;
  padding: .95rem 4.4rem .95rem 1.45rem;
  border: 1px solid currentColor;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.button:hover,
.text-link:hover,
.filter-chip:hover {
  transform: translateY(-1px);
}

.button:active,
.text-link:active,
.filter-chip:active {
  transform: translateY(1px);
}

.button::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 1.42rem;
  top: 50%;
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.button::before,
.text-link::before {
  content: "";
  position: absolute;
  right: 1.42rem;
  top: 50%;
  width: .62rem;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.button::after,
.text-link::after {
  order: 1;
}

.button--primary {
  border-color: #d3ad63;
  background: linear-gradient(135deg, #d9b46d, #b98a3a);
  color: var(--white);
  font-weight: 300;
}

.button--red {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  font-weight: 300;
}

.button--line {
  border-color: transparent;
  border-bottom-color: var(--gold);
  color: var(--white);
}

.hero .button--line {
  min-height: 2.7rem;
  padding: .4rem 3rem .28rem 0;
  border-bottom: 1px solid var(--gold);
}

.hero .button--line::after {
  right: 0;
  background: var(--gold);
}

.hero .button--line::before {
  right: 0;
  background: var(--gold);
}

.button--dark {
  color: var(--ink);
}

.button--pdf {
  min-height: 2.45rem;
  gap: .52rem;
  padding: .52rem .92rem;
  border-color: rgba(216, 177, 104, .68);
  background: rgba(216, 177, 104, .12);
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  letter-spacing: .11em;
}

.button--pdf::before,
.button--pdf::after {
  display: none;
}

.button--pdf svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--pdf:hover {
  background: rgba(216, 177, 104, .2);
  color: var(--white);
}

.text-link {
  min-height: auto;
  padding-right: 3rem;
  color: var(--gold-dark);
  border-bottom: 1px solid currentColor;
}

.text-link::after {
  right: 0;
}

.text-link::before {
  right: 0;
}

.text-link--strong {
  color: var(--ink);
  margin-left: auto;
}

.calendar-tools__divider {
  width: 1px;
  height: 2.2rem;
  margin: 0 .55rem;
  background: rgba(17, 24, 32, .18);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 43vw);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(5.5rem, 9vw, 8.5rem) clamp(1.25rem, 6vw, 7rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, 0) 45%),
    var(--paper);
}

.intro-band h2,
.section-heading h2,
.events-feature h2,
.year-section h2,
.history-media h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -0.02em;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
}

.intro-band h2 {
  font-size: clamp(3.2rem, 6.5vw, 7.2rem);
}

.intro-band h2 + p {
  margin-top: clamp(1.4rem, 2.4vw, 2.2rem);
}

.intro-band p:not(.eyebrow),
.section-heading p,
.history-copy p,
.media-products p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 24, 32, .12);
  border: 1px solid rgba(17, 24, 32, .12);
  box-shadow: 0 22px 70px rgba(65, 46, 26, .07);
}

.facts div {
  min-height: 8.4rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, .54);
}

.facts strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: .9;
}

.facts strong .editable-field {
  display: inline;
  margin-top: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.facts div > span {
  display: block;
  margin-top: .75rem;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sky-stage {
  position: relative;
  overflow: hidden;
  min-height: 57rem;
  padding: clamp(4rem, 6vw, 6rem) clamp(1rem, 3vw, 3rem) clamp(3.2rem, 5vw, 4.5rem);
  background: #bfe4fb;
  isolation: isolate;
}

.sky-stage__background,
.sky-stage__background::before,
.sky-stage__cloud {
  position: absolute;
  inset: 0;
}

.sky-stage__background {
  z-index: -2;
  background: url("../images/sky-background%20copy.webp") center / cover no-repeat;
}

.sky-stage__background::before {
  content: "";
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .82), rgba(255, 255, 255, .04) 46%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 28%, rgba(255,255,255,.18));
}

.sky-stage__cloud {
  z-index: 1;
  inset: 0 -14%;
  background-position: 66% center;
  background-size: auto 100%;
  background-repeat: repeat-x;
  will-change: background-position;
}

.sky-stage__cloud--back {
  background-image: url("../images/sky-back-clouds.webp");
  animation: cloudDrift 95s linear infinite;
  opacity: .72;
}

.sky-stage__cloud--front {
  background-image: url("../images/sky-front-clouds.webp");
  animation: cloudDrift 70s linear infinite;
  opacity: .82;
}

@keyframes cloudDrift {
  from { transform: translate3d(-6%, 0, 0); }
  to { transform: translate3d(6%, 0, 0); }
}

.sky-stage__title {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sky-stage__title img {
  width: min(520px, 82vw);
  margin: 0 auto .6rem;
}

.sky-stage__title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5.2vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
}

.sky-stage__title p {
  margin: 1rem 0 0;
  color: var(--gold-dark);
  font-size: clamp(.95rem, 1.4vw, 1.35rem);
  letter-spacing: .12em;
}

.sky-stage__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, .82fr) minmax(300px, 36vw) minmax(240px, .82fr);
  gap: clamp(1.2rem, 2.5vw, 3rem);
  align-items: center;
  max-width: 1500px;
  margin: clamp(1rem, 2vw, 2rem) auto 0;
}

.sky-stage__logo img {
  width: min(520px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 20px 42px rgba(79, 48, 9, .26));
}

.sky-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 2.2rem) clamp(1rem, 2vw, 1.8rem);
  align-items: center;
}

.sky-link {
  display: grid;
  justify-items: center;
  gap: 0;
  min-height: clamp(7rem, 8.8vw, 9.2rem);
  color: #12213d;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  transition: transform .3s ease;
}

.sky-link img {
  width: clamp(5.4rem, 7.4vw, 8.4rem);
  border-radius: 50%;
  filter: none;
  transition: transform .35s ease;
}

.sky-link span {
  margin-top: -.15rem;
  font-size: clamp(.84rem, .98vw, 1rem);
  white-space: pre-line;
  transition: transform .35s ease, font-size .35s ease;
}

.sky-link:hover img {
  transform: translateY(-5px) scale(1.12);
}

.sky-link:hover span {
  transform: translateY(2px) scale(1.1);
}

.sky-link:hover {
  transform: none;
}

.sky-links--left .sky-link:nth-child(even),
.sky-links--right .sky-link:nth-child(odd) {
  transform: translateY(50%);
}

.sky-links--left .sky-link:nth-child(even):hover,
.sky-links--right .sky-link:nth-child(odd):hover {
  transform: translateY(50%);
}

@media (min-width: 1500px) {
  .sky-stage__grid {
    grid-template-columns: minmax(320px, .9fr) minmax(420px, 34vw) minmax(320px, .9fr);
    max-width: 1740px;
    gap: clamp(2rem, 3vw, 4.2rem);
  }

  .sky-stage__logo img {
    width: min(620px, 100%);
  }

  .sky-link {
    min-height: clamp(9.4rem, 9.6vw, 11.6rem);
  }

  .sky-link img {
    width: clamp(7.8rem, 7.8vw, 10.6rem);
  }

  .sky-link span {
    font-size: clamp(.95rem, .78vw, 1.12rem);
  }
}

.events-feature,
.year-section,
.history-media {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 6rem);
}

.events-feature {
  position: relative;
  overflow: hidden;
  padding-top: calc(clamp(5rem, 9vw, 9rem) + 100px);
  padding-bottom: clamp(3.5rem, 6vw, 6.5rem);
  background-color: #f4efe6;
  background-image:
    url("../images/embossed-background.webp"),
    url("../images/paper-texture.webp");
  background-position:
    center top,
    left top;
  background-repeat: no-repeat, repeat;
  background-size:
    100% auto,
    360px auto;
}

.events-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .114) 0%, rgba(255, 255, 255, .036) 42%, rgba(18, 26, 35, .02) 78%, rgba(18, 26, 35, .032) 100%),
    radial-gradient(circle at 19% 4%, rgba(255, 255, 255, .102), transparent 31rem);
  pointer-events: none;
}

.events-feature::before {
  content: "";
  display: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  max-width: 1180px;
}

.section-heading h2,
.events-feature h2,
.history-media h2 {
  font-size: clamp(3rem, 6vw, 4.7rem);
}

.year-section h2 {
  font-size: clamp(3.2rem, 3.8vw, 4.3rem);
}

.event-cards {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.2rem, 2vw, 2rem);
}

.event-cards--featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.event-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(17, 24, 32, .12);
}

.event-card--primary {
  box-shadow: 0 22px 70px rgba(65, 46, 26, .1);
}

.event-card__image {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.035);
}

.event-card__body {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.event-card__date {
  margin: 0 0 .75rem;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4.9rem);
  font-weight: 500;
  line-height: .95;
}

.event-card__place {
  margin: .85rem 0 1.2rem;
  color: var(--gold-dark);
  font-size: .85rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2rem;
  align-items: center;
  margin-top: 1.6rem;
}

.event-card__actions .button,
.event-card__actions .text-link {
  flex: 0 0 auto;
  min-width: 15rem;
}

.event-card__actions .button--red {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.year-section {
  padding-top: clamp(3.2rem, 5.5vw, 5.8rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .2)),
    var(--paper);
}

.year-section__top {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.austria-map {
  position: relative;
  align-self: center;
  padding: 0;
  background: transparent;
}

.austria-map__base {
  width: 100%;
  height: auto;
}

.austria-map__pins {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.map-pin {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .62rem;
  color: var(--gold-dark);
  font-size: clamp(.7rem, .9vw, .92rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, calc(-1 * (2.64rem * 1.207)));
  z-index: 1;
}

.map-pin:focus {
  outline: none;
}

.map-pin i {
  position: relative;
  width: 2.64rem;
  height: 2.64rem;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(17, 24, 32, .18);
  transform: rotate(-45deg);
}

.map-pin i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: .6rem;
  height: .6rem;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.map-pin b {
  position: absolute;
  left: 50%;
  top: calc(100% + .42rem);
  padding: .32rem .48rem;
  border-radius: 2px;
  background: rgba(248, 244, 236, .94);
  box-shadow: 0 6px 16px rgba(17, 24, 32, .12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -.15rem);
  transition: opacity .16s ease, transform .16s ease;
  font: inherit;
}

.map-pin:hover,
.map-pin:focus {
  z-index: 10;
}

.map-pin:hover b,
.map-pin:focus b {
  opacity: 1;
  transform: translate(-50%, 0);
}

.calendar-tools {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1rem;
  align-items: center;
  margin: clamp(3rem, 5vw, 4.5rem) 0 1.8rem;
}

.filter-chip {
  min-width: 7.4rem;
  min-height: 2.8rem;
  padding: .6rem 1.1rem;
  border: 1px solid rgba(17, 24, 32, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
  font: 800 .9rem var(--sans);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, #d4aa57, #ae7d27);
  color: var(--white);
}

.calendar-list {
  display: grid;
  gap: .58rem;
  transition: height .42s ease;
}

.calendar-status {
  display: flex;
  gap: 1.15rem;
  justify-content: flex-end;
  align-items: center;
  margin: .95rem 0 1.2rem;
  color: var(--ink);
  font: 300 .76rem var(--sans);
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.calendar-status a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 2.45rem;
  color: var(--gold-dark);
  font: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}

.calendar-status a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.calendar-status a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: .48rem;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.calendar-list.is-fading-out .calendar-item {
  opacity: 0;
  transform: translateY(-.45rem);
}

.calendar-list.is-fading-in .calendar-item {
  animation: calendarItemFadeIn .34s ease both;
}

.calendar-list.is-fading-in .calendar-item:nth-child(2) { animation-delay: .025s; }
.calendar-list.is-fading-in .calendar-item:nth-child(3) { animation-delay: .05s; }
.calendar-list.is-fading-in .calendar-item:nth-child(4) { animation-delay: .075s; }
.calendar-list.is-fading-in .calendar-item:nth-child(5) { animation-delay: .1s; }
.calendar-list.is-fading-in .calendar-item:nth-child(6) { animation-delay: .125s; }
.calendar-list.is-fading-in .calendar-item:nth-child(7) { animation-delay: .15s; }
.calendar-list.is-fading-in .calendar-item:nth-child(8) { animation-delay: .175s; }
.calendar-list.is-fading-in .calendar-item:nth-child(9) { animation-delay: .2s; }
.calendar-list.is-fading-in .calendar-item:nth-child(10) { animation-delay: .225s; }

@keyframes calendarItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(.55rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-item {
  display: grid;
  grid-template-columns: 130px minmax(145px, .58fr) 116px minmax(245px, 1.08fr) minmax(310px, 1.25fr) minmax(160px, .48fr);
  gap: 1.15rem;
  align-items: center;
  min-height: 6.45rem;
  padding: .68rem .68rem .68rem 1.35rem;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(65, 46, 26, .04);
  transition: opacity .2s ease, transform .24s ease, border-color .24s ease, background .24s ease;
}

.calendar-item:hover {
  transform: translateX(4px);
  border-color: rgba(185, 138, 58, .34);
  background: rgba(255, 255, 255, .94);
}

.calendar-item--past,
.calendar-item--past:hover {
  background: #F6F3ED;
}

.calendar-item--past .calendar-item__title,
.calendar-item--past .calendar-item__category span {
  opacity: .7;
}

.calendar-list--editable .calendar-item {
  cursor: pointer;
}

.calendar-editor-add {
  justify-self: start;
  margin-top: 1rem;
}

.calendar-item__date {
  color: var(--gold-dark);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.15;
  padding-right: 1.35rem;
  border-right: 1px solid rgba(17, 24, 32, .14);
}

.calendar-item__date span {
  display: block;
  margin-top: .35rem;
  color: var(--ink-soft);
  font-size: .98rem;
  font-weight: 400;
}

.calendar-item__category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  color: var(--gold-dark);
  font-weight: 850;
  padding-right: .9rem;
  border-right: 1px solid rgba(17, 24, 32, .14);
  text-align: center;
}

.calendar-item__category img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
}

.calendar-item__category span,
.calendar-item--wettbewerb .calendar-item__category span,
.calendar-item--jubilaeum .calendar-item__category span,
.calendar-item[data-event-id="2026-07-10-jugendcamp"] .calendar-item__category span {
  color: var(--blue);
}

.calendar-item__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: .98;
}

.calendar-item__location,
.calendar-item__desc {
  color: var(--ink-soft);
}

.calendar-item__desc {
  display: grid;
  gap: .72rem;
}

.calendar-item__desc p {
  margin: 0;
}

.calendar-item__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}

.calendar-item__link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 1.98rem;
  padding: .56rem 2.05rem .56rem .86rem;
  position: relative;
  background: var(--red);
  color: #fff;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid var(--red);
}

.calendar-item--past .calendar-item__link {
  background: rgba(255, 255, 255, .62);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.calendar-item__link--report,
.calendar-item--past .calendar-item__link--report {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

.calendar-item__link::after {
  content: "";
  position: absolute;
  right: .84rem;
  top: 50%;
  width: .82rem;
  height: .82rem;
  background: currentColor;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.39 11.21'%3E%3Cpolyline fill='none' stroke='black' stroke-width='0.75' stroke-miterlimit='10' points='0.09,11.12 11.09,0.12 6.33,0.12 '/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.39 11.21'%3E%3Cpolyline fill='none' stroke='black' stroke-width='0.75' stroke-miterlimit='10' points='0.09,11.12 11.09,0.12 6.33,0.12 '/%3E%3C/svg%3E") center / contain no-repeat;
}

.calendar-item__location {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.calendar-item__location i {
  flex: 0 0 auto;
  position: relative;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .1rem;
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.calendar-item__location i::before,
.calendar-item__location i::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.calendar-item__location i::before {
  inset: 2px;
  background: var(--red);
}

.calendar-item__location i::after {
  left: 50%;
  top: 50%;
  width: .2rem;
  height: .2rem;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.calendar-item__location small {
  display: block;
}

.calendar-item__thumb {
  width: 100%;
  height: 5.45rem;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(17, 24, 32, .12);
}

@media (max-width: 1360px) {
  .calendar-item {
    grid-template-columns: 118px minmax(145px, .64fr) 108px minmax(205px, .95fr) minmax(292px, 1.18fr) minmax(145px, .48fr);
    gap: .9rem;
    padding-left: 1rem;
  }

  .calendar-item__title {
    font-size: clamp(1.25rem, 1.65vw, 1.75rem);
  }

  .calendar-item__date {
    padding-right: 1rem;
  }

  .calendar-item__category {
    padding-right: .8rem;
  }
}

@media (max-width: 1180px) {
  .calendar-item {
    grid-template-columns: 248px minmax(190px, .72fr) minmax(220px, 1fr) minmax(170px, .65fr);
    grid-template-areas:
      "date location cta image"
      "category title title image"
      "category desc desc image";
    align-items: start;
    gap: 1rem 1.25rem;
    padding: 1rem;
  }

  .calendar-item__date {
    grid-area: date;
  }

  .calendar-item__category {
    grid-area: category;
  }

  .calendar-item__title {
    grid-area: title;
    align-self: end;
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  }

  .calendar-item__location {
    grid-area: location;
  }

  .calendar-item__desc {
    display: contents;
  }

  .calendar-item__desc p {
    grid-area: desc;
    align-self: start;
    margin: 0;
  }

  .calendar-item__actions {
    grid-area: cta;
    justify-self: start;
    align-self: start;
  }

  .calendar-item__thumb {
    grid-area: image;
    height: 100%;
    min-height: 8.2rem;
  }
}

@media (max-width: 920px) {
  .events-feature {
    background-size:
      100% auto,
      360px auto;
  }

  .calendar-item {
    grid-template-columns: minmax(7rem, .9fr) minmax(0, 1.1fr);
    grid-template-areas:
      "date location"
      "category category"
      "title title"
      "desc desc"
      "image image";
    gap: 1rem 1rem;
    padding: 1.25rem;
  }

  .calendar-item__date,
  .calendar-item__category {
    padding-right: 0;
    border-right: 0;
  }

  .calendar-item__category {
    align-self: start;
    justify-self: start;
    padding-top: .12rem;
  }

  .calendar-item__location {
    align-self: start;
  }

  .calendar-item__date {
    display: block;
  }

  .calendar-item__date span {
    display: block;
    margin-top: .28rem;
  }

  .calendar-item__title {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .calendar-item__desc {
    grid-area: desc;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: .8rem;
  }

  .calendar-item__desc p {
    order: 1;
    max-width: 28rem;
  }

  .calendar-item__actions {
    order: 2;
    justify-self: start;
    align-self: flex-start;
  }

  .calendar-item__thumb {
    height: clamp(8rem, 24vw, 12rem);
  }
}

.month-rail {
  --rail-dot-size: 1.25rem;
  --rail-dot-center: .55rem;
  --rail-edge-offset: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
}

.month-rail::before {
  content: "";
  position: absolute;
  left: var(--rail-edge-offset);
  right: var(--rail-edge-offset);
  top: var(--rail-dot-center);
  height: 2px;
  background: rgba(185, 138, 58, .72);
}

.month-rail button {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.month-rail button:hover,
.month-rail button.is-active {
  color: var(--red);
}

.month-rail button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc((var(--rail-dot-center) - 2rem) - (var(--rail-dot-size) / 2));
  width: var(--rail-dot-size);
  height: var(--rail-dot-size);
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--paper);
  transform: translateX(-50%);
}

.month-rail button:hover::before,
.month-rail button.is-active::before {
  border-color: var(--red);
  background: var(--red);
}

.month-rail button.is-active::before {
  box-shadow: inset 0 0 0 4px var(--paper);
}

.history-media {
  padding-bottom: 0;
  background:
    url("../images/history-background.webp") center / cover no-repeat,
    #141817;
  color: var(--white);
}

.history-panel {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(320px, .8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.archive-stack {
  display: flex;
  align-items: center;
  min-height: clamp(26rem, 48vw, 45rem);
}

.archive-stack__inner {
  position: relative;
  width: min(100%, 46rem);
  aspect-ratio: 1 / 1.04;
}

.archive-stack__inner img {
  position: absolute;
  width: 54%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border: 1px solid rgba(216, 177, 104, .42);
  box-shadow: var(--shadow);
  filter: sepia(.18) saturate(.82);
}

.archive-stack__inner img:first-child {
  left: 2%;
  top: 0;
  transform: rotate(-3deg);
}

.archive-stack__inner img:nth-child(2) {
  left: 41%;
  top: 29%;
  width: 47.6%;
  transform: rotate(-6deg);
  z-index: 2;
}

.archive-stack__inner img:last-child {
  right: 5%;
  bottom: 5%;
  transform: rotate(4deg);
  z-index: 3;
}

.event-editor-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.event-editor-modal[hidden] {
  display: none;
}

.event-editor-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 22, .62);
}

.event-editor-modal__dialog {
  position: relative;
  width: min(760px, calc(100vw - 2rem));
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #f8f4ec;
  border: 1px solid rgba(185, 138, 58, .5);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.event-editor-modal__header,
.event-editor-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.event-editor-modal__header h3 {
  margin: 0;
  font: 800 1rem var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.event-editor-modal__close {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(17, 24, 32, .18);
  background: transparent;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

.event-editor-modal__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.event-editor-modal__form label {
  display: grid;
  gap: .35rem;
  color: rgba(17, 24, 32, .72);
  font: 800 .78rem var(--sans);
}

.event-editor-modal__form .is-wide {
  grid-column: 1 / -1;
}

.event-editor-modal__form input,
.event-editor-modal__form select,
.event-editor-modal__form textarea {
  width: 100%;
  min-height: 2.7rem;
  padding: .7rem .8rem;
  border: 1px solid rgba(17, 24, 32, .16);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: 500 .95rem var(--sans);
}

.event-editor-modal__form select {
  padding-right: 2.45rem;
}

.event-editor-modal__media-row {
  display: flex;
  align-items: stretch;
  gap: .55rem;
}

.event-editor-modal__media-row input,
.event-editor-modal__media-row select {
  min-width: 0;
  flex: 1 1 auto;
}

.event-editor-modal__media-button {
  flex: 0 0 auto;
  min-height: 2.7rem;
  padding: 0 .85rem;
  border: 1px solid rgba(17, 24, 32, .22);
  background: #fff;
  color: var(--ink);
  font: 850 .72rem var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.event-editor-modal__media-button:hover {
  border-color: rgba(185, 138, 58, .72);
  color: var(--gold-dark);
}

.event-editor-modal__media-preview {
  display: none;
  align-items: center;
  justify-content: center;
  width: 4.9rem;
  min-height: 2.7rem;
  border: 1px solid rgba(17, 24, 32, .12);
  background: rgba(255, 255, 255, .68);
}

.event-editor-modal__media-preview:not(:empty) {
  display: flex;
}

.event-editor-modal__media-preview img {
  max-width: 100%;
  max-height: 3.4rem;
  object-fit: contain;
}

.event-editor-modal__media-preview--icon {
  width: 3.4rem;
}

.event-editor-modal__form textarea {
  min-height: 6rem;
  resize: vertical;
}

.event-editor-modal__language {
  display: grid;
  gap: .95rem;
  padding: .85rem;
  border: 1px solid rgba(17, 24, 32, .12);
  background: rgba(255, 255, 255, .4);
}

.event-editor-modal__tabs {
  display: inline-flex;
  width: max-content;
  gap: .18rem;
  padding: .18rem;
  border: 1px solid rgba(17, 24, 32, .14);
  background: rgba(255, 255, 255, .76);
}

.event-editor-modal__tab {
  min-height: 2.1rem;
  padding: 0 .9rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 850 .74rem var(--sans);
  letter-spacing: .12em;
  cursor: pointer;
}

.event-editor-modal__tab.is-active {
  background: var(--gold);
  color: #fff;
}

.event-editor-modal__lang-panel {
  display: grid;
  gap: 1rem;
}

.event-editor-modal__lang-panel[hidden] {
  display: none;
}

.event-editor-modal__actions {
  margin-top: 1.4rem;
}

.event-editor-modal__action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .7rem;
}

.event-editor-modal__cancel {
  min-height: 3.35rem;
  padding: .95rem 1.25rem;
  border: 1px solid rgba(17, 24, 32, .22);
  background: #fff;
  color: var(--ink);
  font: 800 .82rem var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.event-editor-modal__cancel:hover {
  border-color: rgba(185, 138, 58, .72);
  color: var(--gold-dark);
}

.event-editor-modal__status {
  min-height: 1.2rem;
  color: var(--ink-soft);
  font: 700 .82rem var(--sans);
}
}

.history-copy p,
.media-products p {
  color: rgba(255, 255, 255, .76);
}

.history-copy .eyebrow {
  color: var(--gold);
}

.history-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .9);
}

.timeline-list {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.timeline-list time {
  color: #d8b168;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.history-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.2rem;
  margin-top: 1.35rem;
}

.history-downloads {
  margin-top: 2.35rem;
}

.history-downloads h3 {
  margin: 0;
  color: var(--gold);
  font: 850 .82rem var(--sans);
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.history-actions__item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 2.45rem;
}

body.edit-mode-active .history-actions__item.editable-list-item {
  outline-offset: 5px;
}

body.edit-mode-active .history-actions__item.editable-list-item .button--pdf {
  margin: 0;
  min-height: 2.45rem;
  padding: .52rem .92rem;
  border-color: rgba(216, 177, 104, .68);
  background: rgba(216, 177, 104, .12);
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  letter-spacing: .11em;
}

.history-actions .button--line {
  min-height: 2.45rem;
  padding: .52rem 3.2rem .52rem .92rem;
  border: 1px solid rgba(216, 177, 104, .68);
  background: rgba(216, 177, 104, .1);
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  letter-spacing: .11em;
}

.history-actions .button--line::after,
.history-actions .button--line::before {
  background: currentColor;
}

.history-actions .button--line:hover {
  background: rgba(216, 177, 104, .2);
  color: var(--white);
}

.media-products {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin: clamp(4rem, 7vw, 7rem) calc(clamp(1.25rem, 5vw, 6rem) * -1) 0;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.25rem, 5vw, 6rem);
  background: var(--paper);
  color: var(--ink);
}

/* Anniversary shop */
.anniversary-shop {
  margin: clamp(4rem, 7vw, 7rem) calc(clamp(1.25rem, 5vw, 6rem) * -1) 0;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 6rem);
  background:
    radial-gradient(circle at 88% 8%, rgba(185, 138, 58, .14), transparent 25rem),
    linear-gradient(180deg, #fbf8f2, var(--paper));
  color: var(--ink);
}

.anniversary-shop__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  max-width: 1240px;
}

.anniversary-shop__heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.4vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .86;
}

.anniversary-shop__heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.6vw, 2.6rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.shop-product {
  min-width: 0;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(17, 24, 32, .12);
  box-shadow: 0 24px 70px rgba(65, 46, 26, .09);
}

.shop-product__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 5.6rem;
  min-height: 0;
  background: #f1eee8;
  border-bottom: 1px solid rgba(17, 24, 32, .1);
}

.shop-product__main {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.shop-product__main::after {
  content: "125";
  position: absolute;
  right: 1.2rem;
  bottom: .2rem;
  color: rgba(185, 138, 58, .12);
  font: 500 clamp(4.5rem, 10vw, 8rem) / 1 var(--serif);
  pointer-events: none;
}

.shop-product__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .18s ease, transform .55s ease;
}

.shop-product:hover .shop-product__main-image {
  transform: scale(1.018);
}

.shop-product__main-image.is-changing {
  opacity: .2;
}

.shop-product__thumbs {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .7rem;
  border-left: 1px solid rgba(17, 24, 32, .1);
}

.shop-product__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
}

.shop-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-product__thumb:hover,
.shop-product__thumb.is-active {
  border-color: var(--gold);
}

.shop-product__thumb.is-active::after {
  content: "";
  position: absolute;
  right: .3rem;
  bottom: .3rem;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--red);
}

.shop-product__body {
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.shop-product__subtitle {
  margin: 0 0 .8rem;
  color: var(--gold-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.shop-product h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.4vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .92;
}

.shop-product__description {
  margin: 1.25rem 0 1.75rem;
  color: var(--ink-soft);
}

.shop-product__details {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: -.55rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.shop-product__details li {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .42rem .72rem;
  border: 1px solid rgba(185, 138, 58, .36);
  border-radius: 999px;
  background: rgba(185, 138, 58, .08);
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.2;
}

.shop-product__details li::before {
  content: "";
  flex: 0 0 auto;
  width: .34rem;
  height: .34rem;
  margin-right: .45rem;
  border-radius: 50%;
  background: var(--gold);
}

.shop-product__pricing {
  display: grid;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(17, 24, 32, .12);
}

.shop-product__pricing p {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
}

.shop-product__pricing span {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shop-product__pricing strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 650;
  line-height: 1;
}

.shop-product__member-price strong,
.shop-product__member-price span {
  color: var(--red);
}

.shop-product__pricing small {
  color: rgba(52, 64, 74, .72);
  font-size: .72rem;
}

.shop-product__quantity {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.35rem;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shop-product__quantity input {
  width: 5.5rem;
  min-height: 3rem;
  padding: .6rem .75rem;
  border: 1px solid rgba(17, 24, 32, .24);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: 700 1rem var(--sans);
  text-align: center;
}

.shop-order {
  display: grid;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 6vw, 7rem);
  margin-top: clamp(4rem, 8vw, 7.5rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(17, 24, 32, .15);
}

.shop-order__intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.shop-order__intro h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.2vw, 4.6rem);
  font-weight: 550;
  letter-spacing: -.03em;
  line-height: .9;
}

.shop-order__intro > p:last-child {
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
}

.shop-order__form {
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(17, 24, 32, .12);
  box-shadow: 0 22px 60px rgba(65, 46, 26, .08);
}

.shop-order__member {
  margin-bottom: 1.8rem;
  padding: 1.15rem 1.2rem;
  background: rgba(185, 138, 58, .1);
  border-left: 3px solid var(--gold);
}

.shop-order__member label,
.shop-order__confirmation {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  cursor: pointer;
}

.shop-order__member input,
.shop-order__confirmation input {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin: .13rem 0 0;
  accent-color: var(--red);
}

.shop-order__fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.shop-field {
  grid-column: span 3;
  display: grid;
  gap: .45rem;
}

.shop-field--wide {
  grid-column: 1 / -1;
}

.shop-field--postal {
  grid-column: span 2;
}

.shop-field--city {
  grid-column: span 4;
}

.shop-field > span {
  color: var(--ink-soft);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.shop-field input,
.shop-field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(17, 24, 32, .2);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: 400 1rem/1.4 var(--sans);
}

.shop-field textarea {
  min-height: 6.2rem;
  resize: vertical;
}

.shop-field input:focus,
.shop-field textarea:focus,
.shop-product__quantity input:focus {
  border-color: var(--gold-dark);
  outline: 2px solid rgba(185, 138, 58, .16);
  outline-offset: 0;
}

.shop-summary {
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  background: var(--ink);
  color: var(--white);
}

.shop-summary h4 {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.shop-summary__empty {
  color: rgba(255, 255, 255, .66);
}

.shop-summary__items {
  display: grid;
  gap: .6rem;
}

.shop-summary__item {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.shop-summary__item span:last-child {
  flex: 0 0 auto;
  color: #e0bc77;
}

.shop-summary__totals {
  display: grid;
  gap: .45rem;
  margin: 1.2rem 0 0;
}

.shop-summary__totals > div {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.shop-summary__totals dt,
.shop-summary__totals dd {
  margin: 0;
}

.shop-summary__totals dt {
  color: rgba(255, 255, 255, .7);
}

.shop-summary__grand-total {
  margin-top: .55rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(216, 177, 104, .5);
  color: #e0bc77;
  font-size: 1.25rem;
  font-weight: 850;
}

.shop-summary__grand-total dt {
  color: inherit;
}

.shop-order__confirmation {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: .84rem;
}

.shop-order__confirmation a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.shop-order__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.6rem;
}

.shop-order__actions .button {
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}

.shop-order__actions .button:disabled {
  cursor: wait;
  opacity: .6;
}

.shop-order__feedback {
  flex: 1 1 18rem;
  min-height: 1.5rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.shop-order__feedback.is-success {
  color: #28754b;
  font-weight: 700;
}

.shop-order__feedback.is-error {
  color: var(--red);
  font-weight: 700;
}

.shop-order__legal {
  margin: 1.2rem 0 0;
  color: rgba(52, 64, 74, .72);
  font-size: .75rem;
}

@media (max-width: 1060px) {
  .anniversary-shop__heading,
  .shop-order {
    grid-template-columns: 1fr;
  }

  .shop-order__intro {
    position: static;
    max-width: 44rem;
  }
}

@media (max-width: 760px) {
  .anniversary-shop {
    margin-left: -1.15rem;
    margin-right: -1.15rem;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .shop-products {
    grid-template-columns: 1fr;
  }

  .shop-product__gallery {
    grid-template-columns: 1fr;
  }

  .shop-product__thumbs {
    flex-direction: row;
    border-top: 1px solid rgba(17, 24, 32, .1);
    border-left: 0;
  }

  .shop-product__thumb {
    width: 4.6rem;
  }

  .shop-product__body {
    min-height: 0;
  }

  .shop-order__form {
    padding: 1.1rem;
  }

  .shop-order__fields {
    grid-template-columns: 1fr;
  }

  .shop-field,
  .shop-field--wide,
  .shop-field--postal,
  .shop-field--city {
    grid-column: 1;
  }

  .shop-order__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-order__actions .button {
    width: 100%;
  }
}

.media-products--downloads {
  grid-template-columns: minmax(280px, .72fr) minmax(260px, .46fr);
  align-items: center;
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-top: clamp(2.8rem, 5vw, 4.2rem);
  padding-bottom: clamp(2.8rem, 5vw, 4.2rem);
}

.media-products p {
  color: var(--ink-soft);
}

.media-download-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(17, 24, 32, .16);
}

.media-grid a {
  display: flex;
  align-items: end;
  min-height: 13rem;
  padding: 1.2rem;
  background:
    linear-gradient(0deg, rgba(17, 24, 32, .55), rgba(17, 24, 32, .02)),
    url("../images/hero-background.webp") center / cover;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, .34);
  font-family: var(--serif);
  font-size: 2.1rem;
}

.media-grid a:nth-child(2) {
  background-image:
    linear-gradient(0deg, rgba(17, 24, 32, .55), rgba(17, 24, 32, .02)),
    url("../images/spiegelsaal.jpg");
}

.media-grid a:nth-child(3) {
  background-image:
    linear-gradient(0deg, rgba(17, 24, 32, .55), rgba(17, 24, 32, .02)),
    url("../images/austrian-aeroclub_100th-anniversary_poster_2001.webp");
}

.media-grid a:nth-child(4) {
  background-image:
    linear-gradient(0deg, rgba(17, 24, 32, .55), rgba(17, 24, 32, .02)),
    url("../images/stunning-photorealistic-balloon-image.webp");
}

.downloads-page,
.legal-page {
  padding: calc(var(--header-height) + clamp(2rem, 4vw, 3.5rem)) clamp(1.25rem, 5vw, 6rem) clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
  background:
    url("../images/paper-texture.webp") left top / 360px auto repeat,
    var(--paper);
  color: var(--ink);
}

.downloads-page .content-inner--wide,
.legal-page__inner {
  max-width: min(1320px, calc(100vw - 8rem));
  margin: 0 auto;
}

.legal-page__inner {
  max-width: min(920px, calc(100vw - 8rem));
}

.legal-page .section {
  margin: 0 0 clamp(2rem, 4vw, 3.4rem);
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  color: var(--ink);
}

.legal-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 500;
  line-height: .92;
}

.legal-page h2 {
  margin: clamp(2.3rem, 4vw, 3.5rem) 0 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(185, 138, 58, .34);
  font: 850 clamp(1.25rem, 2vw, 1.75rem) var(--sans);
}

.legal-page p,
.legal-page li {
  color: rgba(17, 24, 32, .76);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-page a {
  color: var(--red);
  font-weight: 700;
}

.downloads-list {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.downloads-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(201, 150, 47, .48);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 48px rgba(65, 46, 26, .06);
}

.downloads-feature h2 {
  margin: 0 0 1rem;
  font: 850 clamp(1.45rem, 2.1vw, 2rem) / 1.12 var(--sans);
}

.downloads-feature p:not(.eyebrow) {
  max-width: 39rem;
  color: rgba(23, 23, 23, .74);
}

.downloads-feature__button {
  width: fit-content;
  margin-top: 1.2rem;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.downloads-feature__asset {
  display: grid;
  place-items: center;
  min-height: clamp(15rem, 27vw, 26rem);
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .38);
  transition: transform .22s ease, border-color .22s ease;
}

.downloads-feature__asset:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 150, 47, .52);
}

.downloads-feature__asset img {
  width: min(78%, 20rem);
  height: auto;
}

.downloads-feature__preview {
  display: grid;
  place-items: center;
  width: min(78%, 20rem);
  min-height: min(20rem, 58vw);
}

.downloads-feature__preview--image img {
  width: 100%;
  max-height: 20rem;
  object-fit: contain;
}

.downloads-feature__preview--file {
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-height: 100%;
  border-radius: inherit;
  background: url("../images/download-document-gold.webp") center / cover no-repeat;
}

.downloads-feature__file-label {
  position: absolute;
  top: calc(30% + 44px);
  left: 50%;
  z-index: 1;
  margin: 0;
  padding: .42rem .9rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(138, 101, 34, .42);
  border-radius: 3px;
  background: rgba(255, 250, 240, .78);
  color: #6f4f18;
  font-size: clamp(1.48rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
}

.downloads-feature__download-icon {
  position: absolute;
  bottom: calc(11% + 40px);
  left: 50%;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  transform: translateX(-50%);
  border: 1px solid rgba(138, 101, 34, .38);
  border-radius: 50%;
  background: rgba(255, 250, 240, .82);
  color: #8b651f;
  box-shadow: 0 8px 18px rgba(65, 46, 26, .14);
}

.downloads-feature__download-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.downloads-page__back {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.25rem, 5vw, 6rem);
  background: var(--ink);
  color: var(--white);
  font-weight: 300;
}

.contact-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .96);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) auto minmax(260px, .9fr);
  gap: 2.4rem;
  align-items: center;
  padding: 2.2rem clamp(1.25rem, 5vw, 6rem);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__brand img {
  width: 6.9rem;
}

.site-footer__brand p {
  margin: 0;
  max-width: 16rem;
  font-weight: 300;
}

.site-footer__nav .site-footer__shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: .55rem .8rem;
  border: 1px solid rgba(216, 177, 104, .72);
  color: #e0bc77;
}

.site-footer__nav .site-footer__shop:hover {
  border-color: var(--gold);
  background: rgba(216, 177, 104, .14);
  color: var(--white);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer__meta {
  justify-content: flex-end;
  color: rgba(255, 255, 255, .96);
}

.site-footer__meta address {
  display: grid;
  gap: .22rem;
  margin: 0;
  font-style: normal;
  text-align: right;
  color: rgba(255, 255, 255, .78);
  font-size: .76rem;
  font-weight: 300;
  letter-spacing: .035em;
  line-height: 1.45;
  text-transform: none;
}

.site-footer__meta address strong {
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .045em;
  line-height: 1.5;
  text-transform: none;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .78);
}

.footer-bottom a:hover {
  color: var(--gold);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .intro-band,
  .section-heading--split,
  .year-section__top,
  .history-panel,
  .media-products {
    grid-template-columns: 1fr;
  }

  .event-cards--featured {
    grid-template-columns: 1fr;
  }

  .sky-stage {
    min-height: auto;
    padding-bottom: clamp(4.8rem, 7vw, 6.5rem);
  }

  .sky-stage__grid {
    grid-template-columns: minmax(190px, .9fr) minmax(220px, 30vw) minmax(190px, .9fr);
    gap: clamp(1rem, 2vw, 1.8rem);
    max-width: 980px;
  }

  .sky-stage__logo {
    order: initial;
  }

  .sky-stage__logo img {
    width: min(300px, 100%);
  }

  .sky-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem .9rem;
  }

  .sky-link {
    min-height: 8.2rem;
  }

  .sky-link img {
    width: clamp(5.2rem, 7.8vw, 7rem);
  }

  .sky-link span {
    font-size: clamp(.82rem, 1.25vw, .96rem);
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__nav,
  .site-footer__meta {
    justify-content: center;
  }

  .site-footer__meta address {
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .month-rail {
    display: none;
  }

}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    padding: .9rem 1rem;
  }

  .brand__text,
  .hero__rail {
    display: none;
  }

  .brand__mark {
    width: 5.4rem;
  }

  .hero {
    height: auto;
    max-height: none;
    min-height: 44rem;
  }

  .hero__content {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: 0;
    padding: 12rem 1.25rem 4rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 6rem);
  }

  .hero__actions,
  .event-card__actions,
  .contact-strip,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button--line {
    padding-right: 4.4rem;
  }

  .hero .button--line::after,
  .hero .button--line::before {
    right: 1.42rem;
  }

  .event-card__actions {
    align-items: flex-start;
    gap: .75rem;
  }

  .event-card__actions .button,
  .event-card__actions .text-link {
    justify-content: flex-start;
    width: auto;
    min-width: min(18rem, 100%);
    max-width: 100%;
  }

  .event-card__actions .text-link {
    min-height: 3.35rem;
    padding-top: .95rem;
    padding-bottom: .95rem;
  }

  .event-card__actions .text-link::after,
  .event-card__actions .text-link::before {
    right: 1.42rem;
  }

  .events-feature {
    background-position:
      right top,
      left top;
    background-size:
      120% auto,
      360px auto;
  }

  .events-feature::before {
    display: block;
    position: absolute;
    top: .9rem;
    left: 1.15rem;
    z-index: 1;
    width: clamp(3.2rem, 14vw, 4.6rem);
    aspect-ratio: 151 / 84;
    background: url("../images/embossed-eagle.webp") left top / contain no-repeat;
    pointer-events: none;
  }

  .intro-band,
  .events-feature,
  .year-section,
  .history-media {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .facts,
  .sky-links,
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sky-link {
    min-height: 7.6rem;
  }

  .sky-stage__grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    max-width: 38rem;
  }

  .sky-stage__logo {
    order: -1;
  }

  .sky-stage__logo img {
    width: min(240px, 52vw);
  }

  .sky-link img {
    width: clamp(5.2rem, 15vw, 6.8rem);
  }

  .sky-link span {
    font-size: clamp(.8rem, 2.4vw, .94rem);
  }

  .sky-links--left .sky-link:nth-child(even),
  .sky-links--right .sky-link:nth-child(odd),
  .sky-links--left .sky-link:nth-child(even):hover,
  .sky-links--right .sky-link:nth-child(odd):hover {
    transform: none;
  }

  .event-card__image {
    aspect-ratio: 4 / 3;
  }

  .calendar-tools {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 1.15rem 1rem;
  }

  .filter-chip {
    min-width: auto;
    min-height: 2.55rem;
    padding: .55rem 1rem;
  }

  .calendar-tools .text-link {
    justify-content: flex-start;
    min-height: 2.4rem;
    width: auto;
    max-width: 100%;
  }

  .text-link--strong {
    margin-left: 0;
  }

  .calendar-tools__divider {
    display: none;
  }

  .calendar-item {
    grid-template-columns: minmax(7rem, .9fr) minmax(0, 1.1fr);
    grid-template-areas:
      "date location"
      "category category"
      "title title"
      "desc desc"
      "image image";
    gap: 1rem 1rem;
    padding: 1.25rem;
  }

  .calendar-item__date,
  .calendar-item__category {
    padding-right: 0;
    border-right: 0;
  }

  .calendar-item__category {
    align-self: start;
    justify-self: start;
    padding-top: .12rem;
  }

  .calendar-item__location {
    align-self: start;
  }

  .calendar-item__date {
    display: block;
  }

  .calendar-item__date span {
    display: block;
    margin-top: .28rem;
  }

  .calendar-item__title {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .calendar-item__location,
  .calendar-item__desc {
    font-size: 1rem;
  }

  .calendar-item__desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: .8rem;
  }

  .calendar-item__desc p {
    order: 1;
    max-width: 28rem;
  }

  .calendar-item__actions {
    order: 2;
    justify-self: start;
    align-self: flex-start;
  }

  .calendar-item__thumb {
    display: block;
    height: 9.2rem;
  }

  .map-pin {
    gap: .42rem;
    font-size: .68rem;
    transform: translate(-50%, calc(-1 * (1.44rem * 1.207)));
  }

  .map-pin i {
    width: 1.44rem;
    height: 1.44rem;
    border-width: 2px;
  }

  .map-pin i::after {
    width: .32rem;
    height: .32rem;
  }

  .month-rail {
    display: none;
  }

  .archive-stack {
    min-height: 24rem;
  }

  .archive-stack__inner {
    width: min(100%, 34rem);
  }

  .archive-stack__inner img {
    width: 62%;
  }

  .archive-stack__inner img:nth-child(2) {
    width: 54.6%;
  }

.media-grid a {
  min-height: 10rem;
  font-size: 1.55rem;
}
}

.event-detail {
  padding: clamp(8rem, 14vw, 12rem) clamp(1.25rem, 5vw, 6rem) clamp(4rem, 7vw, 7rem);
  background: var(--paper);
  min-height: 100vh;
}

.event-detail__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 4rem);
}

.event-detail h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -0.02em;
}

.event-detail__meta {
  color: var(--gold-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.event-detail__inner > div > p:last-child {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.event-detail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 32, .12);
}

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