:root {
  --navy: #07142f;
}


/* Section titles stand on their own; decorative numbering has been removed. */
body .choir-projects-list article {
  grid-template-columns: 1fr;
}

body .process-steps article {
  grid-template-columns: minmax(180px, 0.55fr) 1fr;
}

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

body .wizard-controls {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
  body .choir-projects-list article,
  body .process-steps article {
    grid-template-columns: 1fr;
  }

  body .process-steps p {
    grid-column: 1;
  }
}

/* Choir opening uses the same full-image hero system as the homepage. */
body:has(.choir-projects) .page-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 150px 3.2vw 72px;
  color: #fff;
  background-color: #111;
  background-image: url('/assets/choir-hero.jpg');
  background-repeat: no-repeat;
  background-position: 50% 65%;
  background-size: cover;
}

body:has(.choir-projects) .page-hero::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,5,10,.3), rgba(3,5,10,.12) 40%, rgba(3,5,10,.87));
}

body:has(.choir-projects) .page-hero > span,
body:has(.choir-projects) .page-hero > h1,
body:has(.choir-projects) .page-hero > p {
  position: relative;
  z-index: 1;
}

body:has(.choir-projects) .page-hero h1 {
  max-width: 850px;
  font-size: clamp(52px, 7.2vw, 112px);
  margin-bottom: 18px;
}

body:has(.choir-projects) .page-hero p {
  max-width: 650px;
  font-size: 18px;
}

.topbar {
  position: sticky;
  top: 0;
  background: var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.topbar nav > a {
  white-space: nowrap;
}

.topbar nav > a.support-link {
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px 13px;
  border-radius: 40px;
}

.topbar nav > a.support-link:hover,
.topbar nav > a.support-link.active {
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  min-height: calc(100svh - 84px);
}

/* Keep the full right-hand choir section visible in the Herkulessaal image. */
.next > img,
.event-feature > img {
  object-position: 84% center;
}

html[lang="de-DE"] .hero h1 {
  max-width: 100%;
  font-size: clamp(54px, 5.5vw, 96px);
  line-height: 0.88;
  margin: 22px 0 26px;
}

html[lang="de-DE"] .hero h1 em {
  display: block;
  margin-top: 24px;
  font-size: 0.64em;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

html[lang="de-DE"] .hero::after {
  background:
    linear-gradient(90deg, rgba(3, 8, 25, 0.88) 0%, rgba(3, 8, 25, 0.62) 32%, rgba(3, 8, 25, 0.1) 52%, rgba(3, 8, 25, 0.02) 72%),
    linear-gradient(180deg, rgba(3, 5, 10, 0.06), rgba(3, 5, 10, 0.08) 55%, rgba(3, 5, 10, 0.58));
}

html[lang="de-DE"] .hero-copy {
  width: min(59vw, 980px);
  max-width: none;
  padding-bottom: clamp(40px, 5vh, 72px);
}

html[lang="de-DE"] .hero-copy p {
  max-width: 760px;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.48;
}

html[lang="de-DE"] .hero .buttons {
  align-items: center;
  gap: 26px;
}

html[lang="de-DE"] .hero .buttons a:not(.primary) {
  padding: 15px 22px;
  border: 1px solid #fff;
  background: #fff;
  color: #0b2f7a;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

html[lang="de-DE"] .hero .buttons a:not(.primary):hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

html[lang="de-DE"] .hero .buttons .primary {
  background: rgba(7, 20, 47, 0.28);
  border-color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  html[lang="de-DE"] .hero::after {
    background: linear-gradient(180deg, rgba(3, 8, 25, 0.25), rgba(3, 8, 25, 0.88) 58%, rgba(3, 8, 25, 0.96));
  }

  html[lang="de-DE"] .hero-copy {
    width: 100%;
    padding-bottom: 34px;
  }

  html[lang="de-DE"] .hero h1 {
    font-size: clamp(44px, 12vw, 66px);
  }

  html[lang="de-DE"] .hero h1 em {
    margin-top: 18px;
    font-size: 0.7em;
  }

  html[lang="de-DE"] .hero .buttons {
    flex-wrap: wrap;
  }
}

.feature-video {
  position: relative;
  display: block;
  align-self: stretch;
  height: 100%;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  line-height: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.feature-video img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
  pointer-events: none;
}

.feature-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 25, 0.06);
  transition: background 0.35s ease;
  pointer-events: none;
}

.feature-video i {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: clamp(82px, 8vw, 124px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: transparent;
  color: #fff;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
  font-style: normal;
  font-size: clamp(22px, 2vw, 32px);
  padding-left: 6px;
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.feature-video:hover img {
  transform: scale(1.025);
  filter: brightness(1.05);
}

.feature-video:hover::after {
  background: rgba(3, 8, 25, 0);
}

.feature-video:hover i {
  transform: scale(1.08);
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.feature-video:focus-visible {
  outline: 4px solid #fff;
  outline-offset: -4px;
}

.feature {
  align-items: stretch;
  overflow: hidden;
}

.supporters {
  position: relative;
  isolation: isolate;
  padding: 118px 3.2vw 0;
  background: #f4f6fb;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.supporters::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -190px;
  left: -170px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(49, 103, 224, .16), rgba(49, 103, 224, 0) 70%);
}

.supporters h2,
.supporters h3 {
  position: relative;
  margin: 0;
  color: #07142f;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.supporters h2 {
  max-width: 860px;
  padding-top: 32px;
  font-size: clamp(52px, 6.25vw, 94px);
  line-height: .92;
}

.supporters h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 82px;
  height: 3px;
  background: var(--blue);
}

.supporters h3 {
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: .95;
}

.supporter-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(132px, auto));
  gap: 22px 18px;
  align-items: center;
  margin: 64px 0 0;
  padding: 8px 0;
}

.supporter-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8px 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 146px,
    rgba(7, 20, 47, .14) 147px,
    transparent 148px,
    transparent 154px
  );
  pointer-events: none;
}

.supporter-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 132px;
  padding: 8px 20px;
  background: #f4f6fb;
}

.supporter-logo[href] {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.supporter-logo[href] img {
  pointer-events: none;
}

.supporter-logo[href]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}

.supporter-grid > .supporter-logo:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1;
}

.supporter-grid > .supporter-logo:nth-child(2) {
  grid-column: 5 / span 4;
  grid-row: 1;
  transform: translateY(28px);
}

.supporter-grid > .supporter-logo:nth-child(3) {
  grid-column: 10 / span 3;
  grid-row: 1;
  transform: translateY(-10px);
}

.supporter-grid > .supporter-logo:nth-child(4) {
  grid-column: 2 / span 4;
  grid-row: 2;
  transform: translateY(22px);
}

.supporter-grid > .supporter-logo:nth-child(5) {
  grid-column: 7 / span 3;
  grid-row: 2;
  transform: translateY(-14px);
}

.supporter-grid > .supporter-logo:nth-child(6) {
  grid-column: 10 / span 3;
  grid-row: 2;
  transform: translateY(34px);
}

.supporter-grid > .supporter-logo:nth-child(7) {
  grid-column: 3 / span 3;
  grid-row: 3;
  transform: translateY(-8px);
}

.supporter-grid > .supporter-logo:nth-child(8) {
  grid-column: 8 / span 4;
  grid-row: 3;
  transform: translateY(24px);
}

.supporter-logo img {
  width: auto;
  height: auto;
  max-width: min(100%, 250px);
  max-height: 90px;
  object-fit: contain;
  filter: saturate(.94) contrast(1.03);
  transition: transform .28s ease;
}

.supporter-logo:nth-child(1) img {
  max-height: 116px;
}

.supporter-logo:nth-child(7) img {
  max-height: 100px;
}

.supporter-logo:nth-child(8) img {
  max-height: 112px;
}

.supporter-logo:nth-child(4) img,
.supporter-logo:nth-child(6) img {
  max-width: min(100%, 215px);
}

.supporter-logo:hover img {
  transform: translateY(-3px);
}

.memberships {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 8vw, 150px);
  align-items: center;
  margin: 112px -3.2vw 0;
  padding: 72px 3.2vw 78px;
  background:
    radial-gradient(circle at 8% 15%, rgba(49, 103, 224, .34), transparent 30%),
    linear-gradient(135deg, #101f48, #07142f 58%);
}

.supporter-grid--memberships {
  grid-template-columns: repeat(2, minmax(180px, 280px));
  grid-template-rows: auto;
  justify-content: start;
  gap: clamp(44px, 6vw, 100px);
  margin: 0;
  padding: 0;
}

.supporter-grid--memberships::before {
  display: none;
}

.supporter-grid.supporter-grid--memberships > .supporter-logo {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 104px;
  padding: 0;
  background: transparent;
  transform: none;
}

.supporter-grid--memberships .supporter-logo img {
  max-width: 100%;
  max-height: 88px;
  filter: brightness(0) invert(1);
  opacity: .93;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .memberships {
    grid-template-columns: minmax(270px, .7fr) minmax(0, 1.3fr);
    gap: 58px;
  }

  .supporter-grid {
    gap-inline: 10px;
  }
}

@media (max-width: 900px) {
  .feature-video {
    height: auto;
    min-height: 430px;
  }

  .feature-video img {
    min-height: 430px;
  }

  .supporters {
    display: block;
    padding: 72px 20px 0;
    overflow: hidden;
  }

  .supporters::before {
    top: -135px;
    left: -180px;
    width: 400px;
    height: 400px;
  }

  .supporters h2 {
    max-width: 520px;
    min-height: 0;
    padding-top: 24px;
    font-size: clamp(43px, 12vw, 58px);
    line-height: .94;
  }

  .supporter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 20px;
    margin-top: 50px;
    padding: 0;
  }

  .supporter-grid::before {
    display: none;
  }

  .supporter-grid:not(.supporter-grid--memberships) > .supporter-logo {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: 116px;
    padding: 8px;
    transform: none;
  }

  .supporter-grid:not(.supporter-grid--memberships) > .supporter-logo:nth-child(odd):not(:first-child)::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: calc(200% + 20px);
    height: 1px;
    background: rgba(7, 20, 47, .13);
  }

  .supporter-logo img {
    max-width: 100%;
    max-height: 84px;
  }

  .supporter-logo:nth-child(1) img {
    max-height: 98px;
  }

  .supporter-logo:nth-child(7) img {
    max-height: 88px;
  }

  .supporter-logo:nth-child(8) img {
    max-height: 96px;
  }

  .memberships {
    display: block;
    margin: 72px -20px 0;
    padding: 54px 20px 62px;
  }

  .memberships h3 {
    color: #fff;
    padding-top: 0;
    font-size: clamp(32px, 8.7vw, 42px);
  }

  .supporter-grid--memberships {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 38px;
  }

  .supporter-grid.supporter-grid--memberships > .supporter-logo {
    width: 100%;
    height: 92px;
    padding: 0;
    background: transparent;
  }

  .supporter-grid--memberships .supporter-logo img {
    max-width: 100%;
    max-height: 72px;
  }

  footer {
    gap: 40px 28px;
    padding: 56px 20px 25px;
  }

  footer .footer-brand {
    margin-bottom: 4px;
    font-size: clamp(38px, 11vw, 54px);
  }

  footer > div:not(.footer-brand) {
    min-width: 0;
    margin: 0;
  }

  footer > div:not(.footer-brand) a {
    overflow-wrap: anywhere;
  }

  footer .copyright {
    margin-top: 8px;
  }
}

/* Institutional signature wall */
.supporters::before {
  display: none;
}

.supporters h2 {
  padding-top: 0;
  max-width: 760px;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.06;
}

.supporters h2::before {
  display: none;
}

.supporters > .supporter-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(15, minmax(0, 1fr));
  grid-template-rows: 180px 150px;
  gap: 68px 16px;
  margin: 68px 0 0;
  padding: 0;
  background: none;
}

.supporters > .supporter-grid::before {
  display: none;
}

.supporters > .supporter-grid::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 213px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(7, 20, 47, .15);
  pointer-events: none;
}

.supporters > .supporter-grid > .supporter-logo {
  grid-row: auto;
  width: 100%;
  height: 100%;
  padding: 8px 14px;
  background: transparent;
  transform: none;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(2) {
  grid-column: 6 / span 5;
  grid-row: 1;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(3) {
  grid-column: 11 / span 5;
  grid-row: 1;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(4) {
  grid-column: 1 / span 3;
  grid-row: 2;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(5) {
  grid-column: 4 / span 3;
  grid-row: 2;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(6) {
  grid-column: 7 / span 3;
  grid-row: 2;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(7) {
  grid-column: 10 / span 3;
  grid-row: 2;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(8) {
  grid-column: 13 / span 3;
  grid-row: 2;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(1) img {
  max-height: 126px;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(2) img {
  max-width: 285px;
  max-height: 82px;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(3) img {
  max-width: 265px;
  max-height: 96px;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(4) img {
  max-height: 78px;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(5) img {
  max-height: 84px;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(6) img {
  max-height: 104px;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(7) img {
  max-width: 225px;
  max-height: 70px;
}

.supporters > .supporter-grid > .supporter-logo:nth-child(8) img {
  max-height: 108px;
}

.memberships h3 {
  color: #fff;
}

.supporter-grid--memberships {
  gap: clamp(38px, 4.5vw, 72px);
  align-items: center;
}

@media (max-width: 900px) {
  .supporters h2 {
    max-width: 100%;
    padding-top: 0;
    font-size: clamp(32px, 8.7vw, 42px);
    line-height: 1.08;
    letter-spacing: -.045em;
  }

  .supporters-keep {
    white-space: nowrap;
  }

  .supporters > .supporter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 112px);
    gap: 0 20px;
    margin-top: 42px;
    background: none;
  }

  .supporters > .supporter-grid::after {
    display: none;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: 112px;
    min-height: 112px;
    padding: 10px 4px;
    justify-content: center;
    border-top: 0;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(n + 3) {
    border-top: 1px solid rgba(7, 20, 47, .11);
  }

  .supporters > .supporter-grid > .supporter-logo::before {
    content: none !important;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(1) img {
    max-height: 88px;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(2) img {
    max-width: 100%;
    max-height: 70px;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(3) img {
    max-width: 100%;
    max-height: 72px;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(4) img {
    max-width: 100%;
    max-height: 74px;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(5) img {
    max-height: 78px;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(6) img {
    max-height: 86px;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(7) img {
    max-width: 100%;
    max-height: 68px;
  }

  .supporters > .supporter-grid > .supporter-logo:nth-child(8) img {
    max-height: 88px;
  }

  .memberships {
    margin-top: 58px;
  }

  .supporter-grid--memberships {
    gap: 22px;
    margin-top: 32px;
  }
}

.choir-projects {
  background: radial-gradient(circle at 4% 8%, #14285e, transparent 36%), var(--ink);
  color: #fff;
  padding: 115px 3.2vw 125px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8vw;
}

.choir-projects-intro > span {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #759fff;
}

.choir-projects-intro h2 {
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin: 20px 0 28px;
}

.choir-projects-intro h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.choir-projects-intro p {
  max-width: 540px;
  font-size: 18px;
  color: #c6c9d1;
}

.choir-projects-list article {
  display: block;
  border-top: 1px solid #34363c;
  padding: 28px 0 38px;
}

.choir-projects-list h3 {
  margin: 0 0 20px;
  color: #8eafff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.portfolio-entry {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: baseline;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.11);
}

.project-references .portfolio-entry:first-child {
  border-top: 0;
  padding-top: 0;
}

.portfolio-entry time {
  color: #79a0ff;
  font: 20px/1.2 var(--serif);
  white-space: nowrap;
}

.portfolio-entry h4 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.portfolio-entry small {
  justify-self: end;
  color: #7f8490;
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.portfolio-entry--long {
  align-items: start;
}

.portfolio-entry--long p,
.portfolio-statement p {
  margin: 8px 0 0;
  color: #c6c9d1;
  font-size: 15px;
  line-height: 1.6;
}

.portfolio-entry--long span {
  display: block;
  margin-top: 9px;
  color: #777d89;
  font-size: 13px;
}

.portfolio-entry--undated {
  grid-template-columns: minmax(0, 1fr) 190px;
}

.work-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  color: #9297a2;
  font-size: 15px;
  line-height: 1.55;
}

.work-list li + li {
  margin-top: 3px;
}

.work-list li > span {
  display: inline;
  margin: 0;
  color: #9297a2;
  font-size: inherit;
}

.portfolio-entry em {
  color: #fff;
  font-family: var(--serif);
}

.portfolio-entry--award strong {
  display: block;
  margin-top: 4px;
  color: #8eafff;
  font: 22px/1.2 var(--serif);
}

.portfolio-statement {
  max-width: 720px;
}

.portfolio-statement p {
  margin-top: 0;
  color: #fff;
  font: 22px/1.45 var(--serif);
}

.concert-hero {
  padding-bottom: 70px;
}

.event-feature {
  position: relative;
}

.event-feature::before {
  content: "20 · 12 · 26";
  position: absolute;
  z-index: 2;
  left: 5.2vw;
  bottom: 125px;
  color: rgba(23, 101, 255, 0.09);
  font: clamp(70px, 10vw, 160px)/0.75 var(--serif);
  letter-spacing: -0.07em;
  pointer-events: none;
}

.event-feature > div {
  position: relative;
  z-index: 3;
}

.concert-archive {
  padding: 115px 3.2vw 140px;
  background: #07142f;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 8vw;
}

.concert-archive-head {
  position: sticky;
  top: 125px;
  align-self: start;
}

.concert-archive-head > span {
  color: #7fa5ff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.concert-archive-head h2 {
  margin: 22px 0 30px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.concert-archive-head h2 em {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
}

.concert-archive-head p {
  max-width: 440px;
  color: #aab2c2;
  font-size: 16px;
}

.season {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.season:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.season summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto 30px;
  align-items: center;
  gap: 22px;
  padding: 25px 0;
  cursor: pointer;
}

.season summary::-webkit-details-marker {
  display: none;
}

.season summary > span {
  font: clamp(44px, 5.2vw, 78px)/1 var(--serif);
  color: #fff;
}

.season summary small {
  color: #7fa5ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.season summary i {
  width: 26px;
  height: 26px;
  position: relative;
}

.season summary i::before,
.season summary i::after {
  content: "";
  position: absolute;
  inset: 12px 3px auto;
  height: 1px;
  background: #fff;
  transition: transform 0.2s ease;
}

.season summary i::after {
  transform: rotate(90deg);
}

.season[open] summary i::after {
  transform: rotate(0);
}

.season-events {
  padding-bottom: 30px;
}

.concert-row {
  display: grid;
  grid-template-columns: minmax(135px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.concert-row time {
  color: #7fa5ff;
  font: 19px/1.25 var(--serif);
}

.concert-row h3 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.concert-row .venue {
  margin: 0;
  color: #aeb5c2;
}

.concert-row ul {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
}

.concert-row li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: #dce0e8;
  font-size: 14px;
}

.concert-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.page-hero.support-hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #07142f;
  background-image: url('/assets/support-hero.jpg');
  background-position: 50% 43%;
  background-repeat: no-repeat;
  background-size: cover;
}

.support-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 23, .76) 0%, rgba(3, 9, 23, .42) 42%, rgba(3, 9, 23, .18) 100%),
    linear-gradient(180deg, rgba(3, 9, 23, .12) 0%, rgba(3, 9, 23, .04) 38%, rgba(3, 9, 23, .52) 100%);
}

.support-hero > span,
.support-hero > h1,
.support-hero > p {
  position: relative;
  z-index: 1;
}

.support-hero > p {
  max-width: 610px;
}

.support-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 720px;
  background: #fff;
}

.support-intro > div {
  padding: 100px 5vw;
  align-self: center;
}

.support-intro > div > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.support-intro .big {
  font: clamp(31px, 3.7vw, 56px)/1.08 var(--serif);
  letter-spacing: -0.035em;
}

@media (min-width: 901px) {
  .page-hero.support-hero {
    min-height: 585px;
    padding-top: 160px;
  }

  .support-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .support-intro .big {
    font-size: clamp(28px, 3.2vw, 49px);
  }
}

.support-intro img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center 38%;
}

.support-impact {
  padding: 115px 3.2vw;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
}

.support-impact > div > span,
.donation-heading > span,
.support-trust > div:first-child > span {
  color: var(--blue);
  font: 20px var(--serif);
}

.support-impact h2,
.donation-panel h2,
.support-trust h2 {
  margin: 20px 0;
  font-size: clamp(45px, 5.5vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.donation-panel h2 {
  line-height: calc(0.92em + 10px);
}

.support-impact ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-impact li {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.support-impact li b {
  color: var(--blue);
  font: 21px var(--serif);
}

.support-impact li span {
  font-size: clamp(21px, 2vw, 30px);
  letter-spacing: -0.025em;
}

.donation-panel {
  padding: 115px 3.2vw;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  background: #07142f;
  color: #fff;
}

.donation-heading p {
  max-width: 520px;
  color: #b1b8c7;
  font-size: 17px;
}

.bank-card {
  align-self: center;
  padding: clamp(28px, 4vw, 55px);
  background: var(--blue);
  box-shadow: 25px 25px 0 rgba(255, 255, 255, 0.08);
}

.bank-card > small {
  display: block;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.bank-card dl {
  margin: 0;
}

.bank-card dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.bank-card dt {
  opacity: 0.65;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.bank-card dd {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 25px);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.paypal-button {
  display: inline-flex;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid #fff;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.paypal-button:hover {
  background: #fff;
  color: var(--blue);
}

.support-trust {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.72fr;
  border-bottom: 1px solid var(--line);
}

.support-trust > div {
  min-height: 430px;
  padding: 75px 3.2vw;
  border-right: 1px solid var(--line);
}

.support-trust h2 {
  font-size: clamp(38px, 4vw, 62px);
}

.support-trust h3 {
  margin: 0 0 28px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.association-card,
.support-contact {
  display: flex;
  flex-direction: column;
}

.association-card h3 {
  white-space: nowrap;
  font-size: clamp(19px, 1.75vw, 27px);
}

.association-card a,
.support-contact a {
  color: var(--blue);
}

.support-contact a {
  margin-top: auto;
  font-weight: 700;
}

.join-hero {
  min-height: calc(100svh - 84px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #07142f;
}

.join-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 47, 0.95) 0%, rgba(7, 20, 47, 0.66) 43%, rgba(7, 20, 47, 0.08) 76%), linear-gradient(0deg, rgba(7, 20, 47, 0.62), transparent 55%);
}

.join-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.join-hero > div {
  position: relative;
  z-index: 2;
  width: min(890px, 78vw);
  padding: 150px 3.2vw 65px;
}

.join-hero span,
.join-who span,
.join-learning span,
.audition-place > div > span {
  color: #8db0ff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.join-hero h1 {
  margin: 20px 0 28px;
  font-size: clamp(57px, 8vw, 124px);
  font-weight: 580;
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.join-hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: none;
}

.join-hero p {
  max-width: 670px;
  font-size: 19px;
}

.join-cta {
  display: inline-flex;
  margin-top: 22px;
  padding: 14px 19px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.join-who {
  padding: 115px 3.2vw;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
}

.join-who h2,
.audition-process h2,
.join-learning h2,
.audition-place h2 {
  margin: 20px 0;
  font-size: clamp(46px, 5.8vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.join-who > p {
  margin: 0;
  align-self: center;
  font: clamp(27px, 3vw, 44px)/1.15 var(--serif);
  letter-spacing: -0.025em;
}

.audition-process {
  padding: 115px 3.2vw;
  background: var(--blue);
  color: #fff;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
}

.process-head > span {
  display: block;
  font: clamp(70px, 9vw, 145px)/0.8 var(--serif);
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.25);
}

.process-head h2 {
  margin-top: 38px;
}

.process-head p {
  font-weight: 750;
}

.process-steps article {
  display: grid;
  grid-template-columns: 55px 0.55fr 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.process-steps b {
  font: 21px var(--serif);
  opacity: 0.58;
}

.process-steps h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.process-steps p {
  margin: 0;
}

.join-learning {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #07142f;
  color: #fff;
}

.join-learning img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-learning > div {
  padding: 90px 5vw;
  align-self: center;
}

.join-learning ul {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.join-learning li {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 19px;
}

.join-learning li strong {
  display: block;
  max-width: 31rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.015em;
}

.join-learning li p {
  max-width: 34rem;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.5;
}

.audition-place {
  padding: 115px 3.2vw;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
}

.audition-place .address {
  color: var(--blue);
  font: 25px/1.35 var(--serif);
}

.audition-place > div:first-child > p:last-child {
  max-width: 650px;
}

.audition-contact {
  padding: 45px;
  align-self: center;
  background: #fff;
  box-shadow: 18px 18px 0 rgba(23, 101, 255, 0.12);
}

.audition-contact h3 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.audition-contact a:last-child {
  display: block;
  margin-top: 22px;
  color: var(--blue);
}

.audition-form-section {
  padding: 115px 3.2vw;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  background: #fff;
}

.form-intro > span {
  color: var(--blue);
  font: 20px var(--serif);
}

.form-intro h2 {
  margin: 20px 0 25px;
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.form-intro p {
  max-width: 520px;
  color: #555c68;
}

.audition-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
  border-bottom: 1px solid #c9cdd3;
}

.form-progress button {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 0 0 17px;
  border: 0;
  background: transparent;
  color: #8a909a;
  cursor: pointer;
  text-align: left;
}

.form-progress button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: transparent;
}

.form-progress button.active {
  color: var(--ink);
}

.form-progress button.active::after,
.form-progress button.complete::after {
  background: var(--blue);
}

.form-progress button b {
  color: var(--blue);
  font: 19px var(--serif);
}

.form-progress button span {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step-title {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 22px 25px;
  background: #07142f;
  color: #fff;
  font: clamp(21px, 2.2vw, 31px)/1.15 var(--serif);
  letter-spacing: -0.025em;
}

.audition-form[data-step="1"] .step-2,
.audition-form[data-step="1"] .step-3,
.audition-form[data-step="2"] .step-1,
.audition-form[data-step="2"] .step-3,
.audition-form[data-step="3"] .step-1,
.audition-form[data-step="3"] .step-2 {
  display: none;
}

.wizard-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
}

.wizard-controls button {
  border: 0;
  background: transparent;
  color: var(--blue);
  padding: 10px 0;
  cursor: pointer;
  font-weight: 750;
}

.wizard-controls button:disabled {
  opacity: 0;
  pointer-events: none;
}

.wizard-next {
  justify-self: end;
}

.wizard-count {
  color: #858b94;
  font: 17px var(--serif);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9ea3ac;
  border-radius: 0;
  background: #f3f4f2;
  color: var(--ink);
  padding: 15px 14px;
  font: 16px/1.4 var(--sans);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 125px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-bottom-color: var(--blue);
  background: #fff;
}

.audition-form.was-validated input:invalid,
.audition-form.was-validated textarea:invalid {
  border-bottom-color: #bd1e2c;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #555c68;
  font-size: 14px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 5px;
}

.form-submit {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-success {
  margin: 0;
  color: #145c35;
  font-weight: 700;
}

.form-submit:hover {
  background: #07142f;
  border-color: #07142f;
}

.form-help {
  margin: 0;
  color: #6a707a;
  font-size: 13px;
}

.form-error {
  margin: 0;
  color: #a61624;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 70px);
  }

  /* Mobile homepage only: lift the ensemble so the front-row boy clears the copy. */
  .hero > img {
    top: -26%;
    bottom: auto;
    height: 126%;
    object-position: 48% center;
  }

  body:has(.choir-projects) .page-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 55px);
    letter-spacing: -.055em;
  }

  body:has(.choir-projects) .page-hero {
    min-height: calc(100svh - 70px);
    padding: 130px 20px 52px;
    background-position: 51% 65%;
    background-size: cover;
  }

  body:has(.choir-projects) .page-hero::before {
    background: linear-gradient(180deg, rgba(3,5,10,.3), rgba(3,5,10,.12) 34%, rgba(3,5,10,.9));
  }

  body:has(.choir-projects) .page-hero p {
    max-width: 100%;
    margin-top: 0;
    color: #fff;
    font-size: 16px;
  }

  body:has(.choir-projects) .split img {
    order: initial;
  }

  .choir-projects {
    padding: 75px 20px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .portfolio-entry,
  .portfolio-entry--undated {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 8px 16px;
  }

  .portfolio-entry small {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .portfolio-entry--undated > div {
    grid-column: 2;
  }

  .portfolio-entry--undated small {
    grid-column: 2;
  }

  .portfolio-entry--long > div {
    grid-column: 2;
  }

  .portfolio-entry h4 {
    font-size: 18px;
  }

  .portfolio-entry time {
    font-size: 18px;
  }

  .work-list li {
    line-height: 1.6;
  }

  .event-feature::before {
    display: none;
  }

  .concert-archive {
    padding: 80px 20px 95px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .concert-archive-head {
    position: static;
  }

  .concert-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .season summary {
    grid-template-columns: 1fr auto 28px;
  }

  .page-hero.support-hero {
    min-height: 500px;
    padding: 95px 20px 45px;
    background-position: 56% 44%;
  }

  .support-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 9, 23, .22) 0%, rgba(3, 9, 23, .1) 34%, rgba(3, 9, 23, .78) 100%),
      linear-gradient(90deg, rgba(3, 9, 23, .48), rgba(3, 9, 23, .1) 82%);
  }

  .support-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: url('/assets/support-hero.jpg') 56% 44% / cover no-repeat;
    filter: brightness(1.08);
    opacity: .48;
    -webkit-mask-image: radial-gradient(ellipse 30% 26% at 57% 37%, #000 0%, rgba(0, 0, 0, .58) 44%, transparent 100%);
    mask-image: radial-gradient(ellipse 30% 26% at 57% 37%, #000 0%, rgba(0, 0, 0, .58) 44%, transparent 100%);
    pointer-events: none;
  }

  .support-hero h1 {
    margin-bottom: 56px;
  }

  html[lang="de-DE"] .support-hero h1 em {
    display: inline-block;
    transform: translateY(40px);
  }

  html[lang="de-DE"] .support-hero > p {
    font-size: 18px;
    line-height: 1.5;
    transform: translateY(20px);
  }

  .support-intro,
  .support-impact,
  .donation-panel,
  .support-trust {
    grid-template-columns: 1fr;
  }

  .support-intro > div,
  .support-impact,
  .donation-panel {
    padding: 75px 20px;
  }

  .support-intro img {
    min-height: 480px;
  }

  .support-impact,
  .donation-panel {
    gap: 45px;
  }

  .bank-card {
    padding-right: 20px;
    padding-left: 20px;
    box-shadow: 12px 12px 0 rgba(255, 255, 255, 0.08);
  }

  .bank-card dl > div {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
  }

  .bank-card dl > div:nth-child(2) dd {
    white-space: nowrap;
    overflow-wrap: normal;
    font-size: clamp(11px, 3.2vw, 13px);
    letter-spacing: 0;
  }

  .association-card h3 {
    font-size: clamp(16px, 4.8vw, 19px);
  }

  .support-trust > div {
    min-height: 0;
    padding: 60px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-contact a {
    margin-top: 30px;
  }

  .join-hero {
    min-height: 760px;
  }

  .join-hero::after {
    background: linear-gradient(0deg, rgba(7, 20, 47, 0.96) 0%, rgba(7, 20, 47, 0.45) 72%, rgba(7, 20, 47, 0.15));
  }

  .join-hero > div {
    width: 100%;
    padding: 130px 20px 45px;
  }

  .join-hero h1 {
    font-size: clamp(52px, 14vw, 75px);
  }

  .join-who,
  .audition-process,
  .join-learning,
  .audition-place {
    grid-template-columns: 1fr;
  }

  .join-who,
  .audition-process,
  .audition-place {
    padding: 75px 20px;
    gap: 45px;
  }

  .process-steps article {
    grid-template-columns: 45px 1fr;
  }

  .process-steps p {
    grid-column: 2;
  }

  .join-learning img {
    min-height: 480px;
  }

  .join-learning > div {
    padding: 70px 20px;
  }

  .join-learning li {
    padding: 21px 0;
  }

  .join-learning li strong {
    font-size: 19px;
    line-height: 1.3;
  }

  .join-learning li p {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.5;
  }

  .audition-contact {
    padding: 32px 25px;
    box-shadow: 10px 10px 0 rgba(23, 101, 255, 0.12);
  }

  .audition-form-section {
    padding: 75px 20px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .audition-form {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Concert biography */
.concert-hero {
  min-height: 0;
  padding: 148px 3.2vw 58px;
  background: var(--paper);
}

.concert-hero h1 {
  max-width: 980px;
  margin: 16px 0 22px;
  font-size: clamp(54px, 6.5vw, 104px);
  line-height: .88;
}

.concert-hero h1 em {
  display: inline-block;
}

.concert-hero p {
  margin: 0;
  max-width: 760px;
}

.upcoming-concerts {
  padding: 68px 3.2vw 110px;
  background: #fff;
}

.upcoming-concerts > header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.upcoming-concerts > header span,
.upcoming-main > small,
.archive-project > small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.upcoming-concerts > header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -.045em;
}

.upcoming-event {
  display: grid;
  grid-template-columns: minmax(145px, .45fr) minmax(320px, .9fr) minmax(360px, 1.15fr);
  gap: 4vw;
  padding-top: 42px;
  align-items: start;
}

.upcoming-date time {
  color: var(--blue);
  font: 24px/1.2 var(--serif);
}

.upcoming-main h3 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: .94;
  letter-spacing: -.05em;
}

.upcoming-main p {
  max-width: 540px;
}

.upcoming-venue {
  margin: 0 0 24px;
  color: #59606c;
  font-weight: 700;
}

.upcoming-event > img {
  width: 100%;
  height: min(480px, 34vw);
  object-fit: cover;
}

.concert-archive {
  padding: 104px 3.2vw 130px;
  background: #07142f;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
  gap: 7vw;
}

.concert-archive-head {
  position: sticky;
  top: 118px;
  align-self: start;
}

.concert-archive-head > span {
  color: #7fa5ff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
}

.concert-archive-head h2 {
  margin: 18px 0 30px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: .86;
  letter-spacing: -.06em;
}

.archive-years {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 330px;
  color: #aab7d1;
  font: 18px var(--serif);
}

.archive-years a {
  border-bottom: 1px solid transparent;
}

.archive-years a:hover,
.archive-years a:focus-visible {
  color: #fff;
  border-color: #7fa5ff;
}

.season {
  scroll-margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,.26);
}

.season + .season {
  margin-top: 72px;
}

.season-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0 20px;
}

.season-heading h3 {
  margin: 0;
  font: clamp(50px, 6vw, 86px)/.9 var(--serif);
  letter-spacing: -.045em;
}

.season-heading small {
  color: #7fa5ff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.archive-entry,
.archive-entry--plain {
  border-top: 1px solid rgba(255,255,255,.13);
}

.archive-entry summary,
.archive-entry--plain {
  display: grid;
  grid-template-columns: minmax(125px,.45fr) minmax(260px,1.15fr) minmax(180px,.7fr) 28px;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  list-style: none;
}

.archive-entry summary {
  cursor: pointer;
}

.archive-entry summary::-webkit-details-marker {
  display: none;
}

.archive-entry time,
.archive-entry--plain time {
  color: #8eafff;
  font: 18px/1.25 var(--serif);
}

.archive-project h3 {
  margin: 6px 0 0;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.archive-project strong {
  display: block;
  margin-top: 8px;
  color: #9ab7ff;
  font: 18px/1.2 var(--serif);
}

.archive-entry .venue,
.archive-entry--plain .venue {
  margin: 3px 0 0;
  color: #aeb8cb;
  font-size: 14px;
}

.archive-toggle {
  position: relative;
  width: 26px;
  height: 26px;
  margin-top: 3px;
}

.archive-toggle::before,
.archive-toggle::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 12px;
  height: 1px;
  background: #fff;
  transition: transform .2s ease;
}

.archive-toggle::after {
  transform: rotate(90deg);
}

.archive-entry[open] .archive-toggle::after {
  transform: rotate(0);
}

.archive-details {
  margin-left: calc(125px + 22px);
  padding: 0 0 25px;
  max-width: 780px;
}

.archive-details p {
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #dce2ed;
  font-size: 14px;
}

@media (max-width: 900px) {
  .concert-hero {
    padding: 118px 20px 45px;
  }

  .concert-hero h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .concert-hero p {
    font-size: 17px;
  }

  .upcoming-concerts {
    padding: 56px 20px 72px;
  }

  .upcoming-concerts > header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .upcoming-concerts > header h2 {
    font-size: 36px;
  }

  .upcoming-event {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 30px;
  }

  .upcoming-date time {
    font-size: 21px;
  }

  .upcoming-main h3 {
    font-size: 42px;
  }

  .upcoming-event > img {
    height: 62vw;
    min-height: 280px;
  }

  .concert-archive {
    padding: 72px 20px 88px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .concert-archive-head {
    position: static;
  }

  .concert-archive-head h2 {
    margin-bottom: 22px;
    font-size: 64px;
  }

  .archive-years {
    gap: 8px 18px;
  }

  .season + .season {
    margin-top: 54px;
  }

  .season-heading {
    padding: 18px 0;
  }

  .season-heading h3 {
    font-size: 58px;
  }

  .archive-entry summary,
  .archive-entry--plain {
    grid-template-columns: 88px minmax(0,1fr) 24px;
    gap: 8px 16px;
    padding: 20px 0;
  }

  .archive-entry time,
  .archive-entry--plain time {
    font-size: 16px;
  }

  .archive-project h3 {
    font-size: 21px;
  }

  .archive-entry .venue,
  .archive-entry--plain .venue {
    grid-column: 2;
    margin-top: 0;
  }

  .archive-toggle {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .archive-details {
    margin-left: 104px;
    padding-bottom: 20px;
  }
}
/* Keep the full ensemble balanced inside the upcoming-concert image. */
.upcoming-event > img {
  height: auto;
  min-height: 0;
  aspect-ratio: 1.36;
  object-fit: cover;
  object-position: 100% 50%;
}

/* Veranstalter & Medien */
.press-hero {
  position: relative;
  isolation: isolate;
  min-height: min(680px, calc(100svh - 84px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 150px 3.2vw 64px;
  background-color: #07142f;
  background-image: url('/assets/choir-wide.jpg');
  background-repeat: no-repeat;
  background-position: 50% 56%;
  background-size: cover;
  color: #fff;
}

.press-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 23, .83) 0%, rgba(3, 9, 23, .62) 34%, rgba(3, 9, 23, .2) 70%, rgba(3, 9, 23, .08) 100%),
    linear-gradient(180deg, rgba(3, 9, 23, .12) 0%, rgba(3, 9, 23, .04) 44%, rgba(3, 9, 23, .64) 100%);
}

.press-hero > span,
.press-hero > h1,
.press-hero > p {
  position: relative;
  z-index: 1;
}

.press-hero h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(70px, 7.4vw, 112px);
  line-height: .84;
}

.press-hero p {
  max-width: 590px;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.press-contact-grid {
  grid-template-columns: 1.12fr 1fr .88fr;
  border-bottom: 1px solid var(--line);
}

.press-contact-grid article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding-top: 66px;
  padding-bottom: 62px;
}

.press-contact-grid h2 {
  max-width: 12ch;
  margin: 0 0 27px;
  line-height: 1;
}

.press-contact-grid p {
  max-width: 34rem;
  margin: 0 0 14px;
  color: #454b55;
  font-size: 17px;
  line-height: 1.58;
}

.press-contact-grid a {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-weight: 700;
}

.press-contact-grid .press-person {
  color: var(--ink);
}

.press-contact-grid .press-person strong {
  font-size: 19px;
}

.press-contact-grid .press-contact {
  padding-right: 2.6vw;
  padding-left: 2.6vw;
}

.press-contact-grid .press-contact h2 {
  font-size: 32px;
}

.press-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 10px;
}

.press-contact-grid .press-direct a {
  margin-top: 0;
  border-bottom-color: transparent;
  font-weight: 500;
}

.press-contact-grid a:hover,
.press-contact-grid a:focus-visible,
.press-related a:hover,
.press-related a:focus-visible {
  border-bottom-color: currentColor;
}

.press-related {
  display: flex;
  gap: 28px;
  padding: 42px 3.2vw 58px;
}

.press-related a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(9, 11, 16, 0.28);
  font-size: 14px;
}

.press-image {
  padding-bottom: 78px;
}

.press-image img {
  width: 100%;
  max-height: 680px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 50%;
}

@media (max-width: 900px) {
  .press-hero {
    width: 100%;
    max-width: 100%;
    min-height: 590px;
    padding: 110px 20px 42px;
    background-position: 49% 38%;
    background-size: auto 112%;
  }

  .press-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 9, 23, .18) 0%, rgba(3, 9, 23, .08) 30%, rgba(3, 9, 23, .78) 100%),
      linear-gradient(90deg, rgba(3, 9, 23, .62) 0%, rgba(3, 9, 23, .24) 82%);
  }

  .press-hero h1 {
    max-width: 100%;
    margin: 16px 0 21px;
    font-size: clamp(56px, 16.2vw, 74px);
    line-height: .86;
  }

  .press-hero p {
    max-width: 34rem;
    font-size: 17px;
  }

  .press-contact-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .press-contact-grid article {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 48px;
    border-right: 0;
  }

  .press-contact-grid h2 {
    margin-bottom: 21px;
    font-size: 34px;
  }

  .press-contact-grid p {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .press-contact-grid a {
    margin-top: 22px;
  }

  .press-contact-grid .press-contact {
    padding: 42px 20px 46px;
  }

  .press-contact-grid .press-contact h2 {
    font-size: 31px;
  }

  .press-contact-grid .press-direct a {
    margin-top: 0;
  }

  .press-related {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 34px 20px 46px;
  }

  .press-related a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .press-image {
    width: 100%;
    max-width: 100%;
    padding: 0 20px 48px;
  }

  .press-image img {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 2;
    object-position: center 48%;
  }
}

/* Concert hero — full-stage photograph */
.concert-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(800px, 82svh);
  padding: 0;
  overflow: hidden;
  background: #07142f;
  color: #fff;
}

.concert-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 20, .88) 0%, rgba(3, 8, 20, .62) 35%, rgba(3, 8, 20, .12) 76%),
    linear-gradient(0deg, rgba(3, 8, 20, .82) 0%, rgba(3, 8, 20, .08) 58%);
  pointer-events: none;
}

.concert-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 67%;
}

.concert-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, 88vw);
  padding: 150px 3.2vw 58px;
}

.concert-hero-copy > span {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.concert-hero h1 {
  max-width: 1050px;
  margin: 16px 0 22px;
  font-size: clamp(54px, 6.5vw, 104px);
  line-height: .88;
}

.concert-hero h1 em {
  display: inline-block;
  max-width: 12ch;
}

.concert-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .92);
}

@media (min-width: 701px) and (max-width: 1100px) {
  .concert-hero {
    min-height: min(740px, 80svh);
  }

  .concert-hero > img {
    object-position: 58% 65%;
  }

  .concert-hero h1 {
    font-size: clamp(52px, 7.8vw, 82px);
  }
}

@media (max-width: 700px) {
  .join-hero > img {
    transform: scale(1.12);
    transform-origin: 50% 100%;
  }

  .concert-hero {
    min-height: 720px;
  }

  .concert-hero::after {
    background: linear-gradient(0deg, rgba(3, 8, 20, .94) 0%, rgba(3, 8, 20, .55) 58%, rgba(3, 8, 20, .18) 100%);
  }

  .concert-hero > img {
    object-position: 42% 50%;
    transform: scale(1.3);
    transform-origin: 42% 100%;
  }

  .concert-hero-copy {
    width: 100%;
    padding: 125px 20px 45px;
  }

  .concert-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(46px, 12.8vw, 62px);
    line-height: .9;
  }

  .concert-hero h1 em {
    max-width: 10ch;
  }

  .concert-hero p {
    max-width: 34rem;
    font-size: 17px;
    line-height: 1.48;
  }

  .next > div {
    order: -1;
    padding-bottom: 44px;
  }

  .next > img {
    order: 0;
  }
}

/* Tablet adaptation: deliberately isolated from the established mobile and desktop states. */
@media (min-width: 768px) and (max-width: 1180px) {
  .page-hero {
    padding-right: 3.2vw;
    padding-left: 3.2vw;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(64px, 8vw, 94px);
  }

  /* Der Chor: retain the editorial split and give the text a useful measure. */
  body:has(.choir-projects) .split {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 3.5vw;
    padding: 70px 3.2vw 90px;
  }

  body:has(.choir-projects) .split > * {
    min-width: 0;
  }

  body:has(.choir-projects) .split img {
    order: initial;
    width: 100%;
    height: clamp(500px, 62vw, 690px);
    min-height: 0;
    object-fit: cover;
  }

  body:has(.choir-projects) .split .big {
    font-size: clamp(29px, 3.55vw, 42px);
  }

  .choir-projects {
    grid-template-columns: minmax(0, .32fr) minmax(0, .68fr);
    gap: 4vw;
    padding: 88px 3.2vw 98px;
  }

  .choir-projects > * {
    min-width: 0;
  }

  .choir-projects-intro h2 {
    font-size: clamp(43px, 5.4vw, 64px);
  }

  .portfolio-entry,
  .portfolio-entry--undated {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 8px 18px;
  }

  .portfolio-entry small,
  .portfolio-entry--undated small {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .portfolio-entry--long > div,
  .portfolio-entry--undated > div {
    grid-column: 2;
  }

  /* Startseite: rebalance the asymmetric achievements area. */
  .awards-mini {
    grid-template-columns: minmax(0, .34fr) minmax(0, .66fr);
    gap: 4vw;
    padding: 88px 3.2vw;
  }

  .awards-mini > * {
    min-width: 0;
  }

  .awards-mini h2 {
    font-size: clamp(48px, 5.8vw, 68px);
  }

  /* Hören: preserve image/text dialogue instead of the phone sequence. */
  .media-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    gap: 3.5vw;
    align-items: center;
    padding: 72px 3.2vw 82px;
  }

  .media-lead > * {
    min-width: 0;
  }

  .media-lead > div {
    display: block;
    order: initial;
  }

  .media-lead > .media-image {
    order: initial;
  }

  .media-lead .big {
    margin-top: 0;
    font-size: clamp(27px, 3.35vw, 39px);
  }

  /* Mitsingen: keep the photographic split with a wider reading column. */
  .join-learning {
    grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
    min-height: 680px;
  }

  .join-learning > * {
    min-width: 0;
  }

  .join-learning img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
  }

  .join-learning > div {
    padding: 58px 3vw;
  }

  .join-learning h2 {
    font-size: clamp(40px, 5.1vw, 60px);
  }

  .join-learning ul {
    margin-top: 30px;
  }

  .join-learning li {
    padding: 15px 0;
  }

  .join-learning li strong {
    font-size: clamp(18px, 1.8vw, 20px);
  }

  .join-learning li p {
    font-size: 15px;
    line-height: 1.45;
  }

  /* Chor unterstützen: a dedicated headline scale and a balanced text/photo split. */
  .page-hero.support-hero {
    min-height: clamp(540px, 58vw, 585px);
    padding-right: 3.2vw;
    padding-bottom: 50px;
    padding-left: 3.2vw;
    background-position: 52% 43%;
  }

  .support-hero h1 {
    max-width: 7.4em;
    margin-bottom: 28px;
    font-size: clamp(58px, 6.6vw, 78px);
  }

  html[lang="de-DE"] .support-hero h1 em,
  html[lang="de-DE"] .support-hero > p {
    transform: none;
  }

  .support-hero > p {
    max-width: 520px;
    font-size: 17px;
  }

  .support-hero::after {
    background-position: 52% 43%;
  }

  .support-intro {
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    min-height: 650px;
  }

  .support-intro > * {
    min-width: 0;
  }

  .support-intro > div {
    padding: 64px 3.8vw;
  }

  .support-intro .big {
    font-size: clamp(29px, 3.45vw, 40px);
  }

  .support-intro img {
    min-height: 650px;
  }

  /* Konzerte: prevent minimum-width desktop columns from overflowing on tablets. */
  .concert-hero > img {
    object-position: 56% 65%;
  }

  .concert-hero-copy {
    width: min(100%, 1120px);
  }

  .concert-archive {
    grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr);
    gap: 4vw;
    padding: 88px 3.2vw 108px;
  }

  .concert-archive > * {
    min-width: 0;
  }

  .concert-archive-head h2 {
    font-size: clamp(46px, 5.6vw, 66px);
  }

  .archive-entry summary,
  .archive-entry--plain {
    grid-template-columns: 100px minmax(0, 1fr) 24px;
    gap: 8px 16px;
  }

  .archive-entry .venue,
  .archive-entry--plain .venue {
    grid-column: 2;
    margin-top: 0;
  }

  .archive-toggle {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .archive-details {
    margin-left: 116px;
  }

  /* Keep all layout children shrinkable inside their tablet grids. */
  .feature > *,
  .next > *,
  .event-feature > *,
  .press-contact-grid > *,
  .contact-grid > *,
  .project-list > *,
  footer > * {
    min-width: 0;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  /* The full desktop navigation is too dense in this transitional range. */
  .topbar {
    height: 76px;
    padding-right: 3.2vw;
    padding-left: 3.2vw;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .topbar nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 30px 3.2vw;
    background: #0b0d12;
  }

  .topbar nav.open {
    display: flex;
  }

  .language-panel {
    position: fixed;
    z-index: 30;
    top: 96px;
    right: 3.2vw;
    left: 3.2vw;
    width: auto;
  }

  .upcoming-event {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 24px;
  }

  .upcoming-event > img {
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 16 / 7;
  }

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

  .press-grid article:last-child {
    grid-column: 1 / -1;
  }

  .press-contact-grid article {
    min-height: 390px;
  }

  .press-contact-grid .press-contact {
    grid-column: 1 / -1;
    min-height: 320px;
    padding-right: 3.2vw;
    padding-left: 3.2vw;
    border-top: 1px solid var(--line);
  }

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

  .contact-grid article:last-child {
    grid-column: 1 / -1;
  }

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

  .support-trust > div {
    min-width: 0;
    min-height: 340px;
    padding: 62px 3.2vw;
  }

  .support-trust > div:first-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .association-card h3 {
    font-size: clamp(18px, 1.8vw, 21px);
  }

  .join-who,
  .audition-process,
  .audition-form-section,
  .audition-place,
  .support-impact,
  .donation-panel {
    gap: 4vw;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 6vw;
  }

  footer .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }
}

/* Full-screen opening system: header + hero always equal one live viewport. */
:root {
  --opening-header-height: 84px;
  --opening-hero-height: calc(100vh - var(--opening-header-height));
  --main-hero-bottom: clamp(48px, 6vh, 72px);
}

@supports (height: 100dvh) {
  :root {
    --opening-hero-height: calc(100dvh - var(--opening-header-height));
    --main-hero-bottom: clamp(48px, 6dvh, 72px);
  }
}

.hero,
.page-hero,
.join-hero {
  width: 100%;
  height: var(--opening-hero-height) !important;
  min-height: var(--opening-hero-height) !important;
  max-height: var(--opening-hero-height) !important;
  overflow: hidden;
}

.page-hero:not(.listen-hero):not(.concert-hero):not(.press-hero):not(.support-hero) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-copy,
.page-hero:not(.concert-hero),
.concert-hero-copy,
.join-hero > div {
  padding-bottom: var(--main-hero-bottom);
}

.hero > img,
.listen-hero > img,
.join-hero > img,
.concert-hero > img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

/* Desktop landscape: preserve each photograph's established visual centre. */
@media (min-width: 1181px) {
  .hero > img {
    object-position: 50% 18%;
  }

  body:has(.choir-projects) .page-hero {
    background-position: 50% 28%;
  }

  .listen-hero > img {
    object-position: 50% 18%;
  }

  .concert-hero > img {
    object-position: 50% 64%;
  }

  .join-hero > img {
    object-position: center 30%;
  }

  .press-hero {
    background-position: 50% 54%;
  }

  .page-hero.support-hero,
  .support-hero::after {
    background-position: 50% 43%;
  }
}

/* Tablet portrait: keep the split layouts below the hero untouched. */
@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  :root {
    --main-hero-bottom: clamp(46px, 5vh, 62px);
  }

  @supports (height: 100dvh) {
    :root {
      --main-hero-bottom: clamp(46px, 5dvh, 62px);
    }
  }

  .hero > img {
    object-position: 48% 50%;
    transform: scale(1.13);
    transform-origin: 48% 100%;
  }

  body:has(.choir-projects) .page-hero {
    background-position: 51% 44%;
  }

  .listen-hero > img {
    object-position: 58% 36%;
  }

  .concert-hero > img {
    object-position: 55% 58%;
    transform: scale(1.13);
    transform-origin: 55% 100%;
  }

  .join-hero > img {
    object-position: center 32%;
  }

  .press-hero {
    background-position: 50% 50%;
    background-size: cover;
  }

  .page-hero.support-hero,
  .support-hero::after {
    background-position: 55% 43%;
  }
}

/* Tablet landscape gets its own, wider photographic art direction. */
@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  :root {
    --main-hero-bottom: clamp(42px, 6vh, 56px);
  }

  @supports (height: 100dvh) {
    :root {
      --main-hero-bottom: clamp(42px, 6dvh, 56px);
    }
  }

  .hero > img {
    object-position: 48% 27%;
  }

  body:has(.choir-projects) .page-hero {
    background-position: 50% 38%;
  }

  .listen-hero > img {
    object-position: 56% 24%;
  }

  .concert-hero > img {
    object-position: 56% 65%;
  }

  .join-hero > img {
    object-position: center 32%;
  }

  .press-hero {
    background-position: 50% 52%;
    background-size: cover;
  }

  .page-hero.support-hero,
  .support-hero::after {
    background-position: 52% 43%;
  }
}

/* Mobile portrait retains the previously tuned people-first crops. */
@media (max-width: 767px) and (orientation: portrait) {
  :root {
    --main-hero-bottom: clamp(38px, 5vh, 50px);
  }

  @supports (height: 100dvh) {
    :root {
      --main-hero-bottom: clamp(38px, 5dvh, 50px);
    }
  }

  .hero > img {
    object-position: 48% center;
    transform: scale(1.26);
    transform-origin: 48% 100%;
  }

  body:has(.choir-projects) .page-hero {
    background-position: 51% 65%;
  }

  .listen-hero > img {
    object-position: 61% 50%;
  }

  .concert-hero > img {
    object-position: 42% 50%;
    transform: scale(1.3);
    transform-origin: 42% 100%;
  }

  .join-hero > img {
    object-position: center 34%;
    transform: scale(1.12);
    transform-origin: 50% 100%;
  }

  .press-hero {
    background-position: 49% 38%;
    background-size: auto 112%;
  }

  .page-hero.support-hero,
  .support-hero::after {
    background-position: 56% 44%;
  }

  .concert-hero-copy,
  .join-hero > div {
    padding-top: 92px;
  }
}

/* Compact, calm opened navigation for phone and tablet only. */
@media (max-width: 1180px) {
  .topbar nav {
    display: flex;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transform-origin: top;
    transition: opacity 210ms ease, transform 210ms ease, visibility 0s linear 210ms;
  }

  .topbar nav.open {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .topbar nav > a.support-link {
    margin-top: 8px;
  }

  .topbar nav > .language-button {
    margin-top: 8px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .topbar nav {
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 15px;
  }
}

/* Veranstalter & Medien: preserve the complete closing photograph on tablet and desktop. */
@media (min-width: 768px) {
  .press-image--natural img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
}

/* Header height is part of the viewport equation at every existing breakpoint. */
@media (max-width: 900px) {
  :root {
    --opening-header-height: 70px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  :root {
    --opening-header-height: 76px;
  }
}

/* Short phone landscape: compact navigation, readable type and a true one-screen cover. */
@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  :root {
    --opening-header-height: 60px;
    --main-hero-bottom: 16px;
  }

  .topbar {
    height: var(--opening-header-height);
  }

  .topbar nav {
    top: var(--opening-header-height);
  }

  .hero-copy,
  .page-hero:not(.concert-hero),
  .concert-hero-copy,
  .join-hero > div {
    padding-top: 16px;
    padding-bottom: var(--main-hero-bottom);
  }

  .hero h1,
  body:has(.choir-projects) .page-hero h1,
  .listen-hero h1,
  .concert-hero h1,
  .join-hero h1,
  .press-hero h1,
  .support-hero h1 {
    max-width: 64vw;
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: clamp(34px, 11vh, 46px);
    line-height: .88;
  }

  html[lang="de-DE"] .hero h1 {
    font-size: clamp(32px, 10.5vh, 44px);
  }

  html[lang="de-DE"] .hero h1 em {
    margin-top: 6px;
    font-size: .62em;
  }

  .hero-copy p,
  .page-hero p,
  .concert-hero p,
  .join-hero p,
  .press-hero p,
  .support-hero > p {
    max-width: 56vw;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.28;
  }

  .hero .buttons {
    gap: 8px;
    margin-top: 10px;
  }

  .hero .buttons a,
  .join-cta {
    margin-top: 8px;
    padding: 8px 11px;
    font-size: 10px;
  }

  .hero > img {
    object-position: 52% 40%;
  }

  body:has(.choir-projects) .page-hero {
    background-position: 50% 45%;
  }

  .listen-hero > img {
    object-position: 52% 42%;
  }

  .concert-hero > img {
    object-position: 55% 68%;
    transform: none;
  }

  .join-hero > img {
    object-position: center 31%;
    transform: none;
  }

  .press-hero {
    background-position: 50% 54%;
    background-size: cover;
  }

  .page-hero.support-hero,
  .support-hero::after {
    background-position: 52% 42%;
  }

  html[lang="de-DE"] .support-hero h1 em,
  html[lang="de-DE"] .support-hero > p {
    transform: none;
  }

  .support-hero h1 {
    max-width: 46vw;
  }

  .support-hero > p {
    max-width: 46vw;
  }

  .join-hero > div,
  .concert-hero-copy {
    width: min(72vw, 760px);
  }
}

/* Konzerte hero: lift the ensemble slightly within each responsive crop. */
@media (min-width: 1181px) {
  .concert-hero > img {
    object-position: 50% 69%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  .concert-hero > img {
    object-position: 55% 63%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .concert-hero > img {
    object-position: 56% 70%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .concert-hero > img {
    object-position: 42% 55%;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  .concert-hero > img {
    object-position: 55% 73%;
  }
}

/* Keep the choir name intact on tablet and desktop while allowing the phone
   layout to retain its natural wrapping. */
@media (min-width: 768px) {
  .concert-brand-name {
    white-space: nowrap;
  }
}

/* Mitsingen hero: show more of the ensemble and keep the copy-local contrast. */
.join-hero::after {
  background:
    radial-gradient(ellipse 78% 92% at 6% 96%, rgba(7, 20, 47, .78) 0%, rgba(7, 20, 47, .48) 38%, rgba(7, 20, 47, .14) 72%, rgba(7, 20, 47, 0) 94%),
    linear-gradient(180deg, rgba(7, 20, 47, .06) 0%, rgba(7, 20, 47, 0) 58%, rgba(7, 20, 47, .24) 100%);
}

.join-hero > img {
  transform: none;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .join-hero::after {
    background:
      radial-gradient(ellipse 86% 94% at 8% 96%, rgba(7, 20, 47, .8) 0%, rgba(7, 20, 47, .5) 40%, rgba(7, 20, 47, .14) 74%, rgba(7, 20, 47, 0) 96%),
      linear-gradient(180deg, rgba(7, 20, 47, .06) 0%, rgba(7, 20, 47, 0) 56%, rgba(7, 20, 47, .22) 100%);
  }

  .join-hero > img {
    object-position: 50% 38%;
  }
}

@media (max-width: 767px) {
  .join-hero::after {
    background:
      radial-gradient(ellipse 112% 78% at 8% 96%, rgba(7, 20, 47, .82) 0%, rgba(7, 20, 47, .52) 42%, rgba(7, 20, 47, .16) 78%, rgba(7, 20, 47, 0) 100%),
      linear-gradient(180deg, rgba(7, 20, 47, .04) 0%, rgba(7, 20, 47, 0) 54%, rgba(7, 20, 47, .2) 100%);
  }

  .join-hero > img {
    object-position: 50% 36%;
    transform: none;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  .join-hero::after {
    background:
      radial-gradient(ellipse 90% 100% at 5% 96%, rgba(7, 20, 47, .8) 0%, rgba(7, 20, 47, .48) 42%, rgba(7, 20, 47, .12) 76%, rgba(7, 20, 47, 0) 100%),
      linear-gradient(180deg, rgba(7, 20, 47, .04), rgba(7, 20, 47, 0) 58%, rgba(7, 20, 47, .2));
  }

  .join-hero > img {
    object-position: 50% 34%;
    transform: none;
  }
}

/* A subtle scale-back reveals a little more of the portrait without changing the hero geometry. */
.join-hero {
  background: #07142f;
}

.join-hero > img {
  transform: none;
  transform-origin: center center;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .join-hero > img {
    transform: none;
  }
}

@media (max-width: 767px) {
  .join-hero > img {
    transform: none;
  }
}

/* Veranstalter & Medien: keep darkness local to the hero copy. */
.press-hero::before {
  background: radial-gradient(ellipse 88% 82% at 0% 100%, rgba(3, 9, 23, .9) 0%, rgba(3, 9, 23, .76) 30%, rgba(3, 9, 23, .42) 52%, rgba(3, 9, 23, .12) 70%, rgba(3, 9, 23, 0) 86%);
}

.press-image--director img {
  aspect-ratio: 16 / 9;
  object-position: 50% 42%;
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  .press-hero::before {
    background: radial-gradient(ellipse 116% 70% at 0% 100%, rgba(3, 9, 23, .9) 0%, rgba(3, 9, 23, .74) 35%, rgba(3, 9, 23, .36) 61%, rgba(3, 9, 23, 0) 88%);
  }

  .press-image--director img {
    aspect-ratio: 4 / 3;
    object-position: 50% 44%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .press-hero::before {
    background: radial-gradient(ellipse 92% 82% at 0% 100%, rgba(3, 9, 23, .9) 0%, rgba(3, 9, 23, .72) 31%, rgba(3, 9, 23, .34) 56%, rgba(3, 9, 23, 0) 84%);
  }

  .press-image--director img {
    aspect-ratio: 16 / 9;
    object-position: 50% 42%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .press-hero::before {
    background: radial-gradient(ellipse 142% 64% at 0% 100%, rgba(3, 9, 23, .92) 0%, rgba(3, 9, 23, .76) 40%, rgba(3, 9, 23, .32) 68%, rgba(3, 9, 23, 0) 91%);
  }

  .press-image--director img {
    aspect-ratio: 3 / 2;
    object-position: 50% 45%;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  .press-hero::before {
    background: radial-gradient(ellipse 88% 96% at 0% 100%, rgba(3, 9, 23, .9) 0%, rgba(3, 9, 23, .7) 32%, rgba(3, 9, 23, .3) 58%, rgba(3, 9, 23, 0) 86%);
  }
}

/* Der Chor: artistic leadership stays editorially linked to the ensemble. */
.choir-duo .choir-leadership {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.choir-duo .choir-leadership > p {
  margin-bottom: 0;
}

.choir-leadership-image {
  width: 100%;
  aspect-ratio: 7 / 5;
  margin-top: clamp(30px, 3vw, 46px);
  object-fit: cover;
  object-position: 50% 44%;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .choir-leadership-image {
    aspect-ratio: 4 / 3;
    margin-top: 28px;
    object-position: 50% 43%;
  }
}

@media (max-width: 900px) {
  .choir-leadership-image {
    aspect-ratio: 3 / 2;
    margin-top: 28px;
    object-position: 50% 45%;
  }
}

/* Homepage hero finishing: desktop crop and device-specific light around the front-row boy. */
@media (min-width: 1181px) {
  .hero > img {
    transform: scale(1.09);
    transform-origin: left center;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 8, 25, .72) 0%, rgba(3, 8, 25, .46) 25%, rgba(3, 8, 25, .15) 39%, rgba(3, 8, 25, .035) 62%, rgba(3, 8, 25, .01) 82%),
      linear-gradient(180deg, rgba(3, 5, 10, .05) 0%, rgba(3, 5, 10, .04) 48%, rgba(3, 5, 10, .38) 100%);
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 8, 25, .38) 0%, rgba(3, 8, 25, .14) 31%, rgba(3, 8, 25, .015) 48%, rgba(3, 8, 25, .07) 74%, rgba(3, 8, 25, .12) 100%),
      linear-gradient(180deg, rgba(3, 8, 25, .14) 0%, rgba(3, 8, 25, .22) 43%, rgba(3, 8, 25, .5) 69%, rgba(3, 8, 25, .66) 100%);
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 8, 25, .58) 0%, rgba(3, 8, 25, .34) 29%, rgba(3, 8, 25, .08) 47%, rgba(3, 8, 25, .015) 78%),
      linear-gradient(180deg, rgba(3, 5, 10, .06) 0%, rgba(3, 5, 10, .04) 52%, rgba(3, 5, 10, .34) 100%);
  }
}

/* Three isolated finishing corrections; the full-viewport hero geometry stays unchanged. */
@media (min-width: 1181px) {
  .concert-hero::after {
    background:
      linear-gradient(90deg, rgba(3, 8, 20, .44) 0%, rgba(3, 8, 20, .31) 35%, rgba(3, 8, 20, .06) 76%),
      linear-gradient(0deg, rgba(3, 8, 20, .41) 0%, rgba(3, 8, 20, .04) 58%);
  }

  .join-learning img {
    object-position: 26% 50%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  .join-learning img {
    object-position: 35% 50%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .join-learning img {
    object-position: 31% 50%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .join-learning img {
    object-position: 28% 50%;
  }
}

/* Hören: make the existing external video action explicit without changing the card. */
.media-lead > .media-image .youtube-external {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 2vw, 28px);
  bottom: clamp(15px, 2vw, 26px);
  max-width: calc(100% - 32px);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  padding-bottom: 3px;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .media-lead > .media-image .youtube-external {
    opacity: .78;
    transition: opacity .2s ease;
  }

  .media-lead > .media-image:hover .youtube-external,
  .media-lead > .media-image:focus-visible .youtube-external {
    opacity: 1;
  }
}

/* Chor unterstützen: responsive typography for the new two-part hero statement. */
html[lang="de-DE"] .support-hero h1 {
  max-width: min(760px, 47vw);
  margin-top: 18px;
  margin-bottom: 24px;
  line-height: .88;
  transform: none;
}

html[lang="de-DE"] .support-hero h1 .support-sans,
html[lang="de-DE"] .support-hero h1 em {
  display: block;
  transform: none;
}

html[lang="de-DE"] .support-hero h1 .support-sans {
  white-space: nowrap;
}

html[lang="de-DE"] .support-hero h1 em {
  margin-top: .08em;
  font-size: .7em;
  line-height: .98;
  letter-spacing: -.015em;
}

@media (min-width: 1181px) {
  html[lang="de-DE"] .support-hero h1 {
    max-width: min(760px, 46vw);
    font-size: clamp(66px, 5.5vw, 94px);
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  html[lang="de-DE"] .support-hero h1 {
    max-width: 48vw;
    margin-bottom: 22px;
    font-size: clamp(46px, 6.2vw, 54px);
  }

  html[lang="de-DE"] .support-hero h1 em {
    font-size: .76em;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  html[lang="de-DE"] .support-hero h1 {
    max-width: 48vw;
    margin-bottom: 20px;
    font-size: clamp(56px, 5.8vw, 68px);
  }

  html[lang="de-DE"] .support-hero h1 em {
    font-size: .73em;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  html[lang="de-DE"] .support-hero > span {
    transform: none;
  }

  html[lang="de-DE"] .support-hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 14px 0 16px;
    font-size: clamp(32px, 8.7vw, 38px);
    line-height: .92;
    transform: none;
  }

  html[lang="de-DE"] .support-hero h1 em {
    margin-top: 5px;
    font-size: clamp(38px, 10vw, 44px);
    line-height: .98;
    transform: none;
  }

  html[lang="de-DE"] .support-hero > p {
    max-width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 1.38;
    transform: none;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  html[lang="de-DE"] .support-hero h1 {
    max-width: 48vw;
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: clamp(30px, 10vh, 42px);
    line-height: .88;
    transform: none;
  }

  html[lang="de-DE"] .support-hero h1 em {
    margin-top: 3px;
    font-size: .72em;
    line-height: .96;
    transform: none;
  }
}

/* Final Mitsingen portrait/desktop positioning overrides. */
@media (min-width: 1181px) {
  .join-hero > img { object-position: center 32%; }

  .join-hero h1 {
    max-width: 760px;
    margin-top: 16px;
    margin-bottom: 20px;
    font-size: clamp(58px, 5.1vw, 92px);
    line-height: .88;
  }

  .join-hero h1 em {
    font-size: .88em;
  }

  .join-hero p {
    max-width: 610px;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .join-hero > img { object-position: center 45%; }
}

/* Hören hero: keep the darkening local to the copy area so the concert
   photograph remains bright and legible outside the text zone. */
@media (min-width: 1181px) {
  .listen-hero::after {
    background:
      radial-gradient(ellipse 60% 78% at 0% 100%, rgba(3, 6, 14, .82) 0%, rgba(3, 6, 14, .6) 24%, rgba(3, 6, 14, .26) 40%, rgba(3, 6, 14, .06) 54%, rgba(3, 6, 14, 0) 68%),
      linear-gradient(180deg, rgba(3, 6, 14, .03) 0%, rgba(3, 6, 14, 0) 52%, rgba(3, 6, 14, .14) 100%);
  }
}

/* Final Mitsingen image alignment: lift the chosen ensemble photograph slightly. */
@media (min-width: 1181px) {
  .join-hero > img {
    object-position: center 57%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .join-hero > img {
    object-position: center 46%;
    transform: scale(1.04) translateY(-2%);
  }
}

@media (max-width: 767px) {
  .join-hero > img {
    object-position: center 50%;
    transform: scale(1.05) translateY(-2%);
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  .listen-hero::after {
    background:
      radial-gradient(ellipse 86% 78% at 0% 100%, rgba(3, 6, 14, .76) 0%, rgba(3, 6, 14, .5) 28%, rgba(3, 6, 14, .2) 48%, rgba(3, 6, 14, .05) 64%, rgba(3, 6, 14, 0) 78%),
      linear-gradient(180deg, rgba(3, 6, 14, .05) 0%, rgba(3, 6, 14, 0) 52%, rgba(3, 6, 14, .14) 100%);
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .listen-hero::after {
    background:
      radial-gradient(ellipse 72% 84% at 0% 100%, rgba(3, 6, 14, .74) 0%, rgba(3, 6, 14, .48) 26%, rgba(3, 6, 14, .18) 45%, rgba(3, 6, 14, .04) 60%, rgba(3, 6, 14, 0) 74%),
      linear-gradient(180deg, rgba(3, 6, 14, .04) 0%, rgba(3, 6, 14, 0) 54%, rgba(3, 6, 14, .12) 100%);
  }
}

/* Legal information: readable long-form typography without changing other pages. */
.legal-hero {
  background: #07142f !important;
  color: #fff;
}

.legal-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) 3.2vw;
}

.legal-page article {
  display: grid;
  grid-template-columns: minmax(0, .36fr) minmax(0, .64fr);
  column-gap: clamp(32px, 5vw, 80px);
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  min-width: 0;
  margin: 0;
  font-size: clamp(21px, 1.45vw, 26px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.legal-page p {
  min-width: 0;
  grid-column: 2;
  max-width: 720px;
  margin: 0 0 18px;
  overflow-wrap: break-word;
}

.legal-page a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page .legal-updated {
  grid-column: 1 / -1;
  margin-top: 38px;
  color: #656b76;
  font-size: 13px;
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .legal-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .legal-page article {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .legal-page p {
    grid-column: 1;
  }
}

@media (max-width: 767px) {
  .listen-hero::after {
    background:
      radial-gradient(ellipse 112% 74% at 0% 100%, rgba(3, 6, 14, .78) 0%, rgba(3, 6, 14, .54) 30%, rgba(3, 6, 14, .24) 52%, rgba(3, 6, 14, .06) 70%, rgba(3, 6, 14, 0) 88%),
      linear-gradient(180deg, rgba(3, 6, 14, .05) 0%, rgba(3, 6, 14, 0) 48%, rgba(3, 6, 14, .16) 100%);
  }
}

/* Der Chor hero: keep the raised hand just inside the desktop frame and
   concentrate contrast around the copy instead of veiling the ensemble. */
@media (min-width: 1181px) and (orientation: landscape) {
  body:has(.choir-projects) .page-hero {
    background-position: 50% max(calc((100vh - var(--opening-header-height)) - 66.6667vw), calc(8px - 9.1667vw));
  }

  body:has(.choir-projects) .page-hero::before {
    background: radial-gradient(ellipse 78% 92% at 0% 100%, rgba(3, 5, 10, .84) 0%, rgba(3, 5, 10, .64) 28%, rgba(3, 5, 10, .32) 45%, rgba(3, 5, 10, .08) 60%, rgba(3, 5, 10, 0) 74%);
  }
}

@supports (height: 100dvh) {
  @media (min-width: 1181px) and (orientation: landscape) {
    body:has(.choir-projects) .page-hero {
      background-position: 50% max(calc((100dvh - var(--opening-header-height)) - 66.6667vw), calc(8px - 9.1667vw));
    }
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  body:has(.choir-projects) .page-hero::before {
    background: radial-gradient(ellipse 122% 82% at 0% 100%, rgba(3, 5, 10, .82) 0%, rgba(3, 5, 10, .62) 30%, rgba(3, 5, 10, .3) 49%, rgba(3, 5, 10, .07) 65%, rgba(3, 5, 10, 0) 79%);
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  body:has(.choir-projects) .page-hero::before {
    background: radial-gradient(ellipse 82% 94% at 0% 100%, rgba(3, 5, 10, .82) 0%, rgba(3, 5, 10, .6) 28%, rgba(3, 5, 10, .28) 46%, rgba(3, 5, 10, .06) 61%, rgba(3, 5, 10, 0) 75%);
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  body:has(.choir-projects) .page-hero::before {
    background: radial-gradient(ellipse 144% 80% at 0% 100%, rgba(3, 5, 10, .84) 0%, rgba(3, 5, 10, .65) 32%, rgba(3, 5, 10, .34) 52%, rgba(3, 5, 10, .08) 68%, rgba(3, 5, 10, 0) 82%);
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  body:has(.choir-projects) .page-hero::before {
    background: radial-gradient(ellipse 76% 108% at 0% 100%, rgba(3, 5, 10, .84) 0%, rgba(3, 5, 10, .62) 28%, rgba(3, 5, 10, .3) 47%, rgba(3, 5, 10, .07) 63%, rgba(3, 5, 10, 0) 77%);
  }
}

/* Konzerte hero — desktop only: lift the ensemble without changing scale and
   keep the contrast treatment confined to the lower-left copy area. */
@media (min-width: 1181px) {
  .concert-hero > img {
    object-position: 50% 96%;
  }

  .concert-hero::after {
    background: radial-gradient(ellipse 74% 74% at 0% 92%, rgba(3, 8, 20, .78) 0%, rgba(3, 8, 20, .55) 28%, rgba(3, 8, 20, .22) 45%, rgba(3, 8, 20, .04) 59%, rgba(3, 8, 20, 0) 70%);
  }
}

/* Mitsingen: the applause photograph is already tightly composed, so keep it
   at its natural cover scale and preserve the foreground pair in every crop. */
@media (min-width: 1181px) {
  .join-hero > img {
    object-position: 50% 0%;
    transform: none;
    transform-origin: 50% 50%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .join-hero > img {
    object-position: 50% 28%;
    transform: none;
    transform-origin: 50% 50%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  .join-hero > img {
    object-position: 47% 50%;
    transform: none;
    transform-origin: 50% 50%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .join-hero > img {
    object-position: 45% 50%;
    transform: none;
    transform-origin: 50% 50%;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  .join-hero > img {
    object-position: 50% 28%;
    transform: none;
    transform-origin: 50% 50%;
  }
}

/* Mitsingen copy contrast: keep the photograph untouched outside a soft,
   feathered field immediately behind the text. */
.join-hero::after {
  background: none;
  pointer-events: none;
}

.join-hero > div {
  isolation: isolate;
}

.join-hero > div::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 52px -110px -34px -3.2vw;
  background: radial-gradient(ellipse 76% 70% at 20% 62%, rgba(7, 20, 47, .74) 0%, rgba(7, 20, 47, .52) 38%, rgba(7, 20, 47, .2) 58%, rgba(7, 20, 47, 0) 78%);
  pointer-events: none;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .join-hero > div::before {
    inset: 42px -92px -30px -3.2vw;
    background: radial-gradient(ellipse 82% 72% at 20% 62%, rgba(7, 20, 47, .74) 0%, rgba(7, 20, 47, .5) 38%, rgba(7, 20, 47, .18) 60%, rgba(7, 20, 47, 0) 80%);
  }
}

/* Only the phone portrait typography is reduced; tablet and desktop keep
   their established scale and spacing. */
@media (max-width: 767px) and (orientation: portrait) {
  .join-hero > div {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: clamp(34px, 4.5dvh, 44px);
  }

  .join-hero > div::before {
    inset: 34px -24px -24px -20px;
    background: radial-gradient(ellipse 112% 76% at 26% 64%, rgba(7, 20, 47, .76) 0%, rgba(7, 20, 47, .52) 40%, rgba(7, 20, 47, .18) 62%, rgba(7, 20, 47, 0) 82%);
  }

  .join-hero h1 {
    max-width: 100%;
    margin-top: 14px;
    margin-bottom: 17px;
    font-size: clamp(42px, 11.4vw, 52px);
    line-height: .86;
  }

  .join-hero h1 em {
    font-size: .88em;
    line-height: .9;
  }

  .join-hero p {
    max-width: 100%;
    margin: 0;
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.4;
  }

  .join-cta {
    margin-top: 17px;
    padding: 12px 16px;
    font-size: 11px;
  }
}

/* Konzerte on phone and tablet: leave the photograph clear and place the
   contrast only behind the copy. The desktop treatment remains unchanged. */
@media (max-width: 1180px) {
  .concert-hero::after {
    background: none;
  }

  .concert-hero-copy {
    isolation: isolate;
  }

  .concert-hero-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 38px -96px -32px -3.2vw;
    background: radial-gradient(ellipse 84% 74% at 20% 62%, rgba(3, 8, 20, .76) 0%, rgba(3, 8, 20, .5) 38%, rgba(3, 8, 20, .18) 60%, rgba(3, 8, 20, 0) 80%);
    pointer-events: none;
  }
}

/* Lift the stage slightly on tablet so less of the audience remains above
   the choir; phone and desktop crops are intentionally untouched. */
@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  .concert-hero > img {
    object-position: 55% 69%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .concert-hero > img {
    object-position: 56% 77%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .concert-hero-copy::before {
    inset: 42px -26px -28px -20px;
    background: radial-gradient(ellipse 114% 78% at 24% 64%, rgba(3, 8, 20, .78) 0%, rgba(3, 8, 20, .52) 40%, rgba(3, 8, 20, .18) 62%, rgba(3, 8, 20, 0) 82%);
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  .concert-hero-copy::before {
    inset: -12px -58px -18px -20px;
    background: radial-gradient(ellipse 82% 104% at 20% 58%, rgba(3, 8, 20, .78) 0%, rgba(3, 8, 20, .5) 40%, rgba(3, 8, 20, .16) 64%, rgba(3, 8, 20, 0) 84%);
  }
}

/* Tablet-only correction: create enough image overflow for a visible upward
   shift, then keep the contrast field tight around the copy. */
@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  .concert-hero > img {
    object-position: 55% 69%;
    transform: scale(1.04) translateY(-2.5%);
    transform-origin: 55% 50%;
  }

  .concert-hero-copy::before {
    inset: 102px -42px -24px -3.2vw;
    background: radial-gradient(ellipse 94% 72% at 20% 64%, rgba(3, 8, 20, .82) 0%, rgba(3, 8, 20, .58) 38%, rgba(3, 8, 20, .22) 58%, rgba(3, 8, 20, 0) 77%);
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .concert-hero > img {
    object-position: 56% 77%;
    transform: scale(1.035) translateY(-2.5%);
    transform-origin: 56% 50%;
  }

  .concert-hero-copy::before {
    inset: 96px -46px -24px -3.2vw;
    background: radial-gradient(ellipse 82% 76% at 18% 64%, rgba(3, 8, 20, .82) 0%, rgba(3, 8, 20, .57) 38%, rgba(3, 8, 20, .21) 59%, rgba(3, 8, 20, 0) 78%);
  }
}

/* A wide phone can share the tablet width range; restore its existing crop. */
@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px) {
  .concert-hero > img {
    object-position: 55% 73%;
    transform: none;
    transform-origin: 55% 50%;
  }

  .concert-hero-copy::before {
    inset: -12px -58px -18px -20px;
    background: radial-gradient(ellipse 82% 104% at 20% 58%, rgba(3, 8, 20, .78) 0%, rgba(3, 8, 20, .5) 40%, rgba(3, 8, 20, .16) 64%, rgba(3, 8, 20, 0) 84%);
  }
}
