:root {
  color-scheme: dark;
  --ink: #1d1914;
  --ink-soft: #292118;
  --cream: #f3e7cf;
  --cream-deep: #ddc8a1;
  --paper: #e9d8bb;
  --terracotta: #a8472f;
  --terracotta-deep: #783221;
  --olive: #5c6446;
  --wine: #6f3030;
  --brass: #bf9149;
  --white: #fffaf0;
  --muted: #b9aa90;
  --shadow: 0 26px 70px rgba(0, 0, 0, .34);
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% -15%, rgba(168, 71, 47, .24), transparent 36rem),
    radial-gradient(circle at 100% 20%, rgba(92, 100, 70, .22), transparent 34rem),
    repeating-linear-gradient(95deg, rgba(255,255,255,.016) 0 1px, transparent 1px 6px),
    var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0 4px, rgba(255,255,255,.08) 4.5px 5px),
    linear-gradient(120deg, transparent 25%, rgba(255,255,255,.025), transparent 75%);
  mix-blend-mode: soft-light;
  z-index: 20;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--cream);
  color: var(--ink);
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.flag-line { position: fixed; inset: 0 0 auto; height: 4px; display: grid; grid-template-columns: repeat(3, 1fr); z-index: 60; }
.flag-line i:nth-child(1) { background: #19704a; }
.flag-line i:nth-child(2) { background: #f7f1e3; }
.flag-line i:nth-child(3) { background: #a53d35; }

.site-header {
  width: min(1440px, calc(100% - 3rem));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(221, 200, 161, .22);
}

.wordmark { text-decoration: none; display: grid; grid-template-columns: auto auto auto; align-items: baseline; column-gap: .45rem; letter-spacing: .1em; }
.wordmark span { font-family: Georgia, serif; font-size: clamp(1rem, 1.6vw, 1.35rem); font-weight: 700; }
.wordmark b { color: var(--terracotta); font-family: Georgia, serif; font-style: italic; font-size: 1.2rem; }
.wordmark small { grid-column: 1 / -1; margin-top: .1rem; color: var(--muted); font-size: .62rem; letter-spacing: .19em; text-transform: uppercase; }

.main-navigation { justify-self: end; }
.main-navigation ul { list-style: none; display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: .2rem; margin: 0; padding: 0; }
.main-navigation a { display: block; padding: .65rem .7rem; color: var(--muted); text-decoration: none; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; border-bottom: 1px solid transparent; }
.main-navigation a:hover, .main-navigation a:focus-visible, .main-navigation a.is-current { color: var(--cream); border-color: var(--terracotta); }
.nav-toggle { display: none; }

.site-main, .partners, .site-footer { width: min(1240px, calc(100% - 3rem)); margin-inline: auto; }
.site-main { padding: clamp(3rem, 6vw, 7rem) 0; }

.hero { min-height: min(790px, calc(100vh - 116px)); display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.2fr); align-items: center; gap: clamp(2rem, 6vw, 7rem); }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: .3rem 0 2rem; font-family: Georgia, serif; font-size: clamp(3.3rem, 8vw, 8.4rem); line-height: .84; letter-spacing: -.055em; max-width: 8ch; }
.hero h1 em { color: var(--terracotta); font-weight: 400; }
.eyebrow { margin: 0 0 .8rem; color: var(--brass); font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .75rem 1.3rem; border: 1px solid var(--terracotta); border-radius: 2px; text-decoration: none; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; cursor: pointer; }
.button--primary { background: var(--terracotta); color: var(--white); }
.button--primary:hover, .button--primary:focus-visible { background: #bf5538; }
.button--ghost { background: transparent; color: var(--cream); border-color: rgba(243, 231, 207, .5); }

.media-reveal { --progress: 0; position: relative; overflow: hidden; background: #080706; box-shadow: var(--shadow); border: 1px solid rgba(221, 200, 161, .25); isolation: isolate; }
.media-reveal img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08) brightness(.56); transform: scale(1.025); transition: filter 2.6s cubic-bezier(.2,.8,.2,1), transform 2.8s cubic-bezier(.2,.8,.2,1); }
.media-reveal.is-revealing img, .media-reveal.is-revealed img { filter: grayscale(0) contrast(1) brightness(1); transform: scale(1); }
.media-reveal::after { content: ""; position: absolute; inset: 0 0 0 calc(var(--progress) * 1%); background: rgba(18, 14, 10, .68); border-left: 1px solid rgba(255, 235, 196, .75); z-index: 2; pointer-events: none; }
.media-reveal.is-revealed::after { opacity: 0; }
.media-loader { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 4; display: flex; justify-content: space-between; gap: 1rem; align-items: end; color: var(--white); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; transition: opacity .35s ease; }
.media-loader::before { content: ""; position: absolute; left: 0; right: 0; bottom: -.35rem; height: 2px; background: linear-gradient(90deg, var(--terracotta) calc(var(--progress) * 1%), rgba(255,255,255,.22) 0); }
.media-loader strong { color: var(--brass); font-variant-numeric: tabular-nums; }
.media-reveal.is-revealed .media-loader { opacity: 0; pointer-events: none; }

.hero-media { height: min(68vh, 690px); border-radius: 45% 45% 4px 4px / 10% 10% 4px 4px; }
.hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(73,38,24,.04), rgba(31,19,12,.28)), linear-gradient(90deg, rgba(168,71,47,.16), transparent 40%); mix-blend-mode: color; }

.panel { padding: clamp(1.5rem, 4vw, 4rem); background: linear-gradient(135deg, rgba(233,216,187,.1), rgba(233,216,187,.035)); border: 1px solid rgba(221, 200, 161, .18); border-radius: var(--radius); box-shadow: var(--shadow); }
.panel--dark { background: rgba(7,6,5,.58); }

.album-feature { margin-top: clamp(4rem, 10vw, 9rem); display: grid; grid-template-columns: minmax(220px, 420px) 1fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); }
.album-cover { aspect-ratio: 1; transform: rotate(-1.3deg); }
.album-feature h2 { margin: 0; color: var(--cream); font-family: Georgia, serif; font-size: clamp(3rem, 8vw, 7rem); line-height: .9; }
.album-feature p:not(.eyebrow) { color: var(--muted); }
.next-event { margin-top: 1.4rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .4rem 2rem; }
.next-event .eyebrow { grid-column: 1 / -1; }
.next-event h2 { margin: 0; font-family: Georgia, serif; font-weight: 400; }
.text-link { color: var(--brass); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }

.page-intro { max-width: 920px; margin-bottom: clamp(2.5rem, 7vw, 6rem); }
.page-intro h1 { margin: .2rem 0; font-family: Georgia, serif; font-size: clamp(2.7rem, 7vw, 6.8rem); line-height: .95; font-weight: 500; }
.page-intro > p:not(.eyebrow) { max-width: 760px; color: var(--cream-deep); font-size: clamp(1rem, 1.6vw, 1.25rem); }

.event-list { display: grid; gap: 1px; background: rgba(221,200,161,.16); border: 1px solid rgba(221,200,161,.16); }
.event-card { display: grid; grid-template-columns: minmax(130px, .28fr) 1fr; gap: 2rem; padding: clamp(1.4rem, 3vw, 2.7rem); background: var(--ink-soft); }
.event-card:hover { background: #30261b; }
.event-card time { color: var(--brass); font-family: Georgia, serif; font-size: 1.35rem; }
.event-card h2 { margin: 0 0 .4rem; font-family: Georgia, serif; font-size: clamp(1.25rem, 2.3vw, 2rem); }
.event-card p { margin: 0; color: var(--muted); }
.event-card a { display: inline-block; margin-top: 1rem; color: var(--cream); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.form-panel { max-width: 980px; }
.form-panel > h2 { font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .45rem; }
.form-field > span { color: var(--cream-deep); font-size: .77rem; letter-spacing: .09em; text-transform: uppercase; }
.form-field--wide { grid-column: 1 / -1; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid rgba(221,200,161,.28); border-radius: 2px; background: rgba(6,5,4,.48); color: var(--cream); padding: .86rem 1rem; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brass); box-shadow: 0 0 0 3px rgba(191,145,73,.12); }
.time-fields { display: grid !important; grid-template-columns: 1fr 1fr; gap: .65rem; }
.consent { display: flex; gap: .8rem; align-items: flex-start; color: var(--muted); font-size: .85rem; }
.consent input { width: 1.1rem; height: 1.1rem; margin-top: .25rem; accent-color: var(--terracotta); }
.consent a { color: var(--cream); }
.form-actions { margin-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.form-actions > span { color: var(--muted); font-size: .78rem; }
.form-status { min-height: 1.6em; color: var(--brass); }

.cd-layout { display: grid; grid-template-columns: 1fr minmax(260px, 470px); gap: 1.3rem; align-items: stretch; }
.cd-list { list-style: none; display: grid; gap: .75rem; margin: 0 0 2rem; padding: 0; }
.cd-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid rgba(221,200,161,.18); font-family: Georgia, serif; font-size: clamp(1.1rem, 2vw, 1.55rem); }
.cd-list span { color: var(--terracotta); font-size: .72rem; font-family: "Trebuchet MS", Arial, sans-serif; }
.cd-layout h2 { font-family: Georgia, serif; font-size: clamp(1.5rem, 3.2vw, 2.8rem); }
.cd-art { min-height: 580px; }
.cd-art img { object-fit: cover; object-position: center; }
.cd-layout + .form-panel { margin-top: 1.4rem; }

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
.video-card { background: #130f0c; border: 1px solid rgba(221,200,161,.17); }
.video-media { aspect-ratio: 16 / 9; box-shadow: none; border: 0; }
.play-button { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); z-index: 6; width: 72px; height: 72px; border-radius: 50%; border: 1px solid rgba(255,255,255,.72); background: rgba(18,10,6,.74); color: var(--white); cursor: pointer; opacity: 0; transition: opacity .35s ease, background .2s ease, transform .2s ease; }
.media-reveal.is-revealed .play-button { opacity: 1; }
.play-button:hover, .play-button:focus-visible { background: var(--terracotta); transform: translate(-50%,-50%) scale(1.05); }
.video-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 9; }
.video-caption { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.2rem 1.25rem; }
.video-caption > span { color: var(--terracotta); font-size: .72rem; }
.video-caption h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(1rem, 1.6vw, 1.35rem); line-height: 1.25; }
.video-caption a { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .13em; }

.empty-state { max-width: 850px; min-height: 300px; display: grid; align-content: center; border-style: dashed; }
.empty-state p { color: var(--cream-deep); font-family: Georgia, serif; font-size: clamp(1.1rem, 2.2vw, 1.6rem); }

.legal-content { max-width: 980px; color: var(--cream-deep); }
.legal-content h2, .legal-content h3 { color: var(--cream); font-family: Georgia, serif !important; line-height: 1.2; }
.legal-content h2 { margin-top: 1.5rem; font-size: clamp(2rem, 4vw, 3.4rem); }
.legal-content h3 { margin-top: 2.2rem; font-size: clamp(1.25rem, 2.4vw, 1.8rem); }
.legal-content p, .legal-content span, .legal-content a { font-family: inherit !important; }
.legal-content a { color: var(--brass); overflow-wrap: anywhere; }

.partners { padding: 1rem 0 clamp(4rem, 8vw, 7rem); }
.section-rule { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: var(--muted); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }
.section-rule::after { content: ""; height: 1px; flex: 1; background: rgba(221,200,161,.18); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.partner-card { min-width: 0; text-decoration: none; }
.partner-media { display: block; height: 150px; box-shadow: none; background: #efe5d4; }
.partner-media img { object-fit: contain; padding: 1.4rem; background: #f6f0e7; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; padding: 2.2rem 0 3rem; border-top: 1px solid rgba(221,200,161,.2); }
.site-footer > div:first-child { display: grid; }
.site-footer strong { font-family: Georgia, serif; letter-spacing: .1em; }
.site-footer span, .site-footer small { color: var(--muted); font-size: .72rem; }
.site-footer small { grid-column: 1 / -1; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: var(--cream-deep); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 92px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(221,200,161,.35); background: transparent; color: var(--cream); padding: .55rem .8rem; cursor: pointer; }
  .main-navigation { display: none; grid-column: 1 / -1; justify-self: stretch; padding-bottom: 1rem; }
  .main-navigation.is-open { display: block; }
  .main-navigation ul { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: 2rem; }
  .hero h1 { max-width: none; }
  .hero-media { height: min(66vh, 660px); }
  .cd-layout { grid-template-columns: 1fr; }
  .cd-art { min-height: auto; aspect-ratio: 1; }
}

@media (max-width: 720px) {
  .site-header, .site-main, .partners, .site-footer { width: min(100% - 1.35rem, 1240px); }
  .site-main { padding-top: 2.2rem; }
  .wordmark small { display: none; }
  .main-navigation ul { display: grid; grid-template-columns: 1fr 1fr; }
  .main-navigation a { padding: .8rem .35rem; }
  .hero { gap: 1.4rem; }
  .hero h1 { font-size: clamp(3rem, 17vw, 5.3rem); }
  .hero-media { height: 58vh; min-height: 420px; border-radius: 7rem 7rem 3px 3px; }
  .album-feature { grid-template-columns: 1fr; padding: 1rem; }
  .album-feature > div { padding: 1rem .5rem 1.5rem; }
  .album-feature h2 { font-size: 3.4rem; }
  .next-event { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; gap: .7rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .form-panel { padding: 1.2rem; }
  .video-grid { grid-template-columns: 1fr; }
  .video-caption { grid-template-columns: auto 1fr; }
  .video-caption a { grid-column: 2; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-media { height: 120px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

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

/* Poster redesign: Backstein, Kreidetafel, Buehnenschrift */
:root {
  --ink: #080808;
  --ink-soft: #151515;
  --cream: #f6f3eb;
  --cream-deep: #dedbd3;
  --paper: #ece8df;
  --terracotta: #c82028;
  --terracotta-deep: #890b10;
  --olive: #434343;
  --wine: #a40d15;
  --brass: #e02b31;
  --white: #fff;
  --muted: #b9b9b9;
  --shadow: 0 24px 70px rgba(0, 0, 0, .72);
  --radius: 0;
}

body {
  color: var(--cream);
  background-color: #0b0b0b;
  background-image:
    linear-gradient(335deg, #171717 23px, transparent 23px),
    linear-gradient(155deg, #202020 23px, transparent 23px),
    linear-gradient(335deg, #171717 23px, transparent 23px),
    linear-gradient(155deg, #202020 23px, transparent 23px),
    linear-gradient(90deg, rgba(185, 22, 29, .11), transparent 42%, rgba(185, 22, 29, .08));
  background-size: 58px 58px, 58px 58px, 58px 58px, 58px 58px, 100% 100%;
  background-position: 0 2px, 4px 35px, 29px 31px, 33px 6px, 0 0;
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 10%, transparent 0, rgba(0,0,0,.1) 38%, rgba(0,0,0,.78) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 4px);
  mix-blend-mode: normal;
}

.flag-line { height: 5px; }
.flag-line i:nth-child(1) { background: #b31219; }
.flag-line i:nth-child(2) { background: #fff; }
.flag-line i:nth-child(3) { background: #b31219; }

.site-header {
  position: relative;
  z-index: 30;
  width: min(1280px, calc(100% - 3rem));
  min-height: 124px;
  padding: 1rem 1.4rem;
  background: rgba(5, 5, 5, .94);
  border: 2px solid #2b2b2b;
  border-top: 0;
  box-shadow: 0 10px 35px rgba(0,0,0,.58), inset 0 -4px 0 #b3131a;
}

.wordmark {
  column-gap: .35rem;
  transform: skew(-5deg);
  text-shadow: 3px 3px 0 #050505, 5px 5px 0 #9f1016;
}
.wordmark span {
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-style: italic;
  letter-spacing: .035em;
  -webkit-text-stroke: 1px #050505;
}
.wordmark b {
  color: #d32229;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.25rem;
}
.wordmark small {
  color: #ddd;
  font-family: Arial, sans-serif;
  text-shadow: none;
  transform: skew(5deg);
}

.main-navigation a {
  position: relative;
  color: #f2f2f2;
  padding: .72rem .75rem;
  font-weight: 900;
  letter-spacing: .055em;
  border-bottom: 3px solid transparent;
}
.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation a.is-current {
  color: #fff;
  background: #b31219;
  border-color: #fff;
}

.site-main {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 5rem));
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding: clamp(2rem, 4.5vw, 4.8rem);
  background:
    radial-gradient(ellipse at 22% 15%, rgba(255,255,255,.045), transparent 38%),
    radial-gradient(ellipse at 80% 72%, rgba(255,255,255,.025), transparent 42%),
    repeating-linear-gradient(176deg, transparent 0 15px, rgba(255,255,255,.012) 16px 17px),
    #171819;
  border: 2px solid #3a3a3a;
  outline: 11px solid #090909;
  box-shadow: 0 0 0 13px #333, 0 35px 90px rgba(0,0,0,.86), inset 0 0 70px rgba(0,0,0,.5);
}

.site-main::before,
.site-main::after {
  content: "";
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 14px, transparent 14px 22px);
  opacity: .55;
}
.site-main::before { top: 1.25rem; transform: rotate(-.15deg); }
.site-main::after { bottom: 1.1rem; transform: rotate(.12deg); }

.hero {
  min-height: 670px;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}
.hero-copy { align-self: center; }
.hero-copy::before {
  content: "";
  display: block;
  width: min(250px, 65%);
  height: 9px;
  margin-bottom: 1.4rem;
  background: #c51d24;
  box-shadow: 13px 7px 0 #fff;
  transform: skew(-18deg) rotate(-1deg);
}
.hero h1 {
  display: grid;
  justify-items: start;
  margin: .25rem 0 2.3rem;
  max-width: none;
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(4.2rem, 8vw, 7.6rem);
  font-style: italic;
  line-height: .76;
  letter-spacing: -.025em;
  text-transform: uppercase;
  transform: skew(-3deg);
}
.hero h1 span {
  position: relative;
  z-index: 1;
  -webkit-text-stroke: 4px #050505;
  paint-order: stroke fill;
  filter: drop-shadow(5px 6px 0 #b9141b) drop-shadow(4px 4px 0 #050505);
}
.hero h1 em {
  z-index: 2;
  margin: .11em 0 .08em 46%;
  color: #d52229;
  font-family: Georgia, serif;
  font-size: .39em;
  font-weight: 900;
  line-height: .65;
  -webkit-text-stroke: 2px #050505;
  text-shadow: 2px 2px 0 #fff;
}
.eyebrow {
  margin-bottom: 1rem;
  color: #e1282f;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.hero .eyebrow {
  display: inline-block;
  padding: .3rem .55rem;
  color: #fff;
  background: #b71319;
  transform: rotate(-1deg);
}

.button {
  min-height: 52px;
  padding: .78rem 1.5rem;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 0;
  background: #111;
  box-shadow: 4px 4px 0 #060606, 7px 7px 0 #b71319;
  font-weight: 900;
  letter-spacing: .08em;
}
.button--primary { background: #bc161d; }
.button--primary:hover,
.button--primary:focus-visible { color: #111; background: #fff; border-color: #bc161d; }
.button--ghost { color: #fff; border-color: #fff; }
.button--ghost:hover,
.button--ghost:focus-visible { background: #b71319; }

.media-reveal {
  background: #050505;
  border: 3px solid #050505;
  box-shadow: 0 0 0 3px #c31b22, 11px 14px 0 rgba(0,0,0,.72), var(--shadow);
}
.media-reveal::after {
  background: rgba(5,5,5,.78);
  border-left: 3px solid #d11e25;
  box-shadow: -7px 0 18px rgba(209,30,37,.48);
}
.media-loader {
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.2rem;
  padding: .45rem .6rem;
  color: #fff;
  background: rgba(0,0,0,.72);
  border-left: 5px solid #c51b22;
  font-weight: 900;
}
.media-loader::before { height: 4px; background: linear-gradient(90deg, #cf2027 calc(var(--progress) * 1%), #fff 0); }
.media-loader strong { color: #fff; }

.hero-media {
  height: min(68vh, 660px);
  border-radius: 0;
  transform: rotate(1.2deg);
}
.hero-media::before {
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.62)), linear-gradient(90deg, rgba(192,25,32,.13), transparent 40%);
  mix-blend-mode: normal;
}

.panel {
  padding: clamp(1.5rem, 4vw, 3.4rem);
  color: #f5f5f5;
  background:
    repeating-linear-gradient(178deg, transparent 0 19px, rgba(255,255,255,.012) 20px 21px),
    #101112;
  border: 3px solid #b9161d;
  border-radius: 0;
  box-shadow: 0 0 0 2px #050505, 0 0 0 4px #b9161d, 12px 14px 0 rgba(0,0,0,.65);
}
.panel--dark { background: #090909; }

.album-feature {
  margin-top: clamp(4rem, 8vw, 7rem);
  grid-template-columns: minmax(220px, 390px) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  transform: rotate(-.18deg);
}
.album-cover { transform: rotate(-2.4deg); }
.album-feature h2,
.next-event h2,
.page-intro h1,
.form-panel > h2,
.cd-layout h2,
.video-caption h2,
.legal-content h2,
.legal-content h3 {
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif !important;
  font-weight: 400;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.album-feature h2 {
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  text-shadow: 4px 5px 0 #b61219, 7px 8px 0 #050505;
}
.album-feature p:not(.eyebrow),
.event-card p,
.page-intro > p:not(.eyebrow),
.legal-content,
.empty-state p { color: #d2d2d2; }

.next-event {
  margin-top: 2rem;
  border-color: #fff;
  box-shadow: 0 0 0 2px #050505, 0 0 0 4px #fff, 12px 14px 0 rgba(0,0,0,.65);
}
.text-link,
.legal-content a { color: #e22931; font-weight: 900; }

.page-intro {
  max-width: 1000px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.page-intro h1 {
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: .9;
  -webkit-text-stroke: 2px #050505;
  text-shadow: 4px 5px 0 #b9141b;
}

.event-list {
  gap: .65rem;
  padding: .65rem;
  background: #070707;
  border: 3px solid #b9161d;
  box-shadow: 8px 10px 0 rgba(0,0,0,.65);
}
.event-card {
  background: #151515;
  border-left: 8px solid #c51c23;
}
.event-card:hover { background: #242424; }
.event-card time {
  color: #e3262d;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.65rem;
  letter-spacing: .035em;
}
.event-card h2 { font-family: Impact, "Arial Black", sans-serif; text-transform: uppercase; }
.event-card a { color: #fff; font-weight: 900; text-decoration-color: #d21e25; text-decoration-thickness: 3px; }

.form-panel { max-width: 1000px; }
.form-field > span { color: #fff; font-weight: 900; }
.form-field input,
.form-field select,
.form-field textarea {
  color: #fff;
  background: #070707;
  border: 2px solid #555;
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #d11f26;
  box-shadow: 0 0 0 3px rgba(209,31,38,.2);
}
.consent { color: #ccc; }
.consent input { accent-color: #c71b22; }
.form-actions > span { color: #aaa; }
.form-status { color: #ef2a31; font-weight: 900; }

.cd-list li {
  border-bottom: 3px solid #b5171d;
  font-family: Arial, sans-serif;
  font-weight: 900;
}
.cd-list span { color: #e22930; font-family: Impact, "Arial Black", sans-serif; font-size: 1rem; }

.video-grid { gap: 1.8rem; }
.video-card {
  background: #0b0b0b;
  border: 3px solid #b9161d;
  box-shadow: 8px 10px 0 rgba(0,0,0,.6);
}
.video-media { border: 0; box-shadow: none; }
.play-button {
  border: 3px solid #fff;
  border-radius: 0;
  background: #b9161d;
  box-shadow: 5px 5px 0 #050505;
}
.video-caption { border-top: 3px solid #b9161d; }
.video-caption > span { color: #ed2a32; font-weight: 900; }
.video-caption a { color: #fff; font-weight: 900; }

.empty-state { border-color: #b9161d; border-style: solid; }
.legal-content h2 { color: #fff; }
.legal-content h3 { color: #ef2b32; }

.partners {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 5rem));
  padding-top: 0;
}
.section-rule { color: #fff; font-weight: 900; }
.section-rule::after { height: 4px; background: #b9161d; }
.partner-grid { gap: 1.4rem; }
.partner-card { padding: 4px; background: #b9161d; box-shadow: 7px 8px 0 rgba(0,0,0,.55); }
.partner-media { border: 0; box-shadow: none; }

.site-footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 5rem));
  padding: 2rem;
  margin-bottom: 2rem;
  background: #080808;
  border: 2px solid #333;
  border-top: 5px solid #b9161d;
}
.site-footer strong { font-family: Impact, "Arial Black", sans-serif; font-size: 1.2rem; }
.footer-links a { color: #fff; font-weight: 900; }

@media (max-width: 1050px) {
  .site-header { min-height: 96px; }
  .nav-toggle { border: 2px solid #c51c23; color: #fff; background: #090909; font-weight: 900; }
  .main-navigation.is-open { padding: .75rem; background: #090909; border: 2px solid #b9161d; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { max-width: 8ch; }
  .hero-media { height: min(72vh, 700px); transform: rotate(.4deg); }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 1rem); padding: .8rem; }
  .site-main,
  .partners,
  .site-footer { width: calc(100% - 2rem); }
  .site-main { margin-top: 1.8rem; padding: 2.2rem 1rem; outline-width: 6px; box-shadow: 0 0 0 8px #333, 0 24px 60px rgba(0,0,0,.8); }
  .site-main::before,
  .site-main::after { left: 1rem; right: 1rem; }
  .hero-copy::before { height: 6px; }
  .hero h1 { font-size: clamp(3.25rem, 18vw, 5.2rem); }
  .hero h1 span { -webkit-text-stroke-width: 3px; filter: drop-shadow(3px 4px 0 #b9141b) drop-shadow(3px 3px 0 #050505); }
  .hero-media { min-height: 410px; height: 60vh; border-radius: 0; }
  .album-feature { padding: 1.1rem; }
  .album-feature h2 { font-size: 3.8rem; }
  .event-card { border-left-width: 5px; }
  .partner-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 1.2rem; }
}

/* 2026 Erlebniswelt: sonnig, italienisch, modern */
:root {
  color-scheme: light;
  --ink: #102d4a;
  --ink-soft: #18405f;
  --cream: #102d4a;
  --cream-deep: #38566e;
  --paper: #fffdf9;
  --terracotta: #f8007f;
  --terracotta-deep: #c80066;
  --olive: #63c9ad;
  --wine: #d6006d;
  --brass: #ff9b45;
  --white: #ffffff;
  --muted: #60798d;
  --sky: #27b9ea;
  --sky-soft: #dff7ff;
  --sun: #ffd76a;
  --mint: #bfead8;
  --shadow: 0 24px 70px rgba(20, 73, 105, .14);
  --radius: 30px;
}

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

body {
  --mouse-x: 50vw;
  --mouse-y: 30vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0, #fffaf3 42%, #f4fbff 100%);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 1;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 215, 106, .28), transparent 24rem),
    radial-gradient(circle at 92% 16%, rgba(39, 185, 234, .2), transparent 26rem),
    radial-gradient(circle at 65% 75%, rgba(248, 0, 127, .1), transparent 30rem),
    linear-gradient(180deg, #fff 0, #fffaf4 50%, #f4fcff 100%);
  mix-blend-mode: normal;
}

body::after {
  content: "";
  position: fixed;
  left: var(--mouse-x);
  top: var(--mouse-y);
  width: 34rem;
  height: 34rem;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(39,185,234,.12), rgba(248,0,127,.045) 38%, transparent 70%);
  transform: translate(-50%, -50%);
}

.flag-line {
  height: 4px;
  grid-template-columns: 1fr 1fr 1fr;
}
.flag-line i:nth-child(1) { background: #0a9c69; }
.flag-line i:nth-child(2) { background: #fff; }
.flag-line i:nth-child(3) { background: #ed2939; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 98px;
  margin: 0;
  padding: .9rem max(1.5rem, calc((100vw - 1380px) / 2));
  grid-template-columns: minmax(270px, 420px) 1fr;
  background: rgba(255,255,255,.84);
  border: 0;
  border-bottom: 1px solid rgba(16,45,74,.08);
  box-shadow: 0 10px 35px rgba(26,73,103,.08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.wordmark {
  display: grid;
  grid-template-columns: 1fr;
  gap: .18rem;
  transform: none;
  text-shadow: none;
}
.wordmark img {
  width: min(100%, 390px);
  height: auto;
}
.wordmark span,
.wordmark b { display: none; }
.wordmark small {
  display: block;
  margin: 0;
  color: #315672;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-shadow: none;
  transform: none;
}

.main-navigation { justify-self: end; }
.main-navigation ul { gap: .22rem; }
.main-navigation a {
  padding: .68rem .78rem;
  color: #244860;
  border: 0;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .045em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation a.is-current {
  color: #fff;
  background: linear-gradient(110deg, #f8007f, #ff4f8e);
  border: 0;
  transform: translateY(-2px);
}

.site-main {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4.8rem) 0 clamp(5rem, 9vw, 9rem);
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.site-main::before,
.site-main::after { display: none; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 125px));
  padding: clamp(2rem, 5vw, 5.5rem);
  grid-template-columns: minmax(360px, .84fr) minmax(520px, 1.16fr);
  gap: clamp(1.8rem, 4vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(17,91,130,.1);
  border-radius: 54px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,255,255,.9), transparent 18rem),
    radial-gradient(circle at 94% 18%, rgba(255,215,106,.62), transparent 18rem),
    radial-gradient(circle at 78% 94%, rgba(248,0,127,.18), transparent 22rem),
    linear-gradient(135deg, #e9fbff 0%, #fff8ed 50%, #ffeaf5 100%);
  box-shadow: 0 38px 100px rgba(34,104,139,.15);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  left: -7rem;
  bottom: -11rem;
  width: 28rem;
  height: 28rem;
  z-index: -1;
  border: 6rem solid rgba(39,185,234,.13);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  top: 3rem;
  right: 34%;
  width: 7rem;
  height: 7rem;
  z-index: -1;
  border-radius: 35% 65% 65% 35%;
  background: rgba(99,201,173,.28);
  transform: rotate(24deg);
}

.hero-copy {
  align-self: center;
  z-index: 4;
}
.hero-copy::before { display: none; }
.hero .eyebrow {
  display: inline-flex;
  margin: 0 0 1.4rem;
  padding: .56rem .85rem;
  color: #16435f;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(16,45,74,.09);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(28,86,118,.08);
  transform: none;
}
.hero h1 {
  display: block;
  margin: 0 0 2.3rem;
  max-width: 620px;
  transform: none;
  line-height: 1;
}
.hero h1 span,
.hero h1 em { display: none; }
.hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(248,0,127,.13));
}
.hero-actions { gap: 1rem; }

.button {
  position: relative;
  min-height: 54px;
  padding: .82rem 1.5rem;
  overflow: hidden;
  color: #173b54;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(16,45,74,.12);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(27,83,115,.12);
  font-weight: 850;
  letter-spacing: .065em;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease;
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.48) 46%, transparent 72%);
  transform: translateX(-130%);
  transition: transform .6s ease;
}
.button:hover::after,
.button:focus-visible::after { transform: translateX(130%); }
.button:hover,
.button:focus-visible { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(27,83,115,.18); }
.button--primary {
  color: #fff;
  background: linear-gradient(110deg, #f8007f, #ff4e91 72%, #ff795d);
  border-color: transparent;
}
.button--primary:hover,
.button--primary:focus-visible { color: #fff; background: linear-gradient(110deg, #dd006f, #ff4e91); }
.button--ghost { color: #16435f; border-color: rgba(16,45,74,.14); }
.button--ghost:hover,
.button--ghost:focus-visible { background: #fff; }

.scroll-cue {
  position: absolute;
  left: clamp(2rem, 5vw, 5.5rem);
  bottom: 1.8rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #355a72;
  text-decoration: none;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16,45,74,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.65);
}
.scroll-cue span::after {
  content: "↓";
  display: grid;
  height: 100%;
  place-items: center;
  color: #f8007f;
  font-size: 1.1rem;
  animation: cueBounce 1.8s ease-in-out infinite;
}
@keyframes cueBounce { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }

.media-reveal {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.95), rgba(223,247,255,.75) 45%, rgba(255,234,245,.62));
  border: 1px solid rgba(16,45,74,.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.media-reveal img {
  object-fit: contain;
  filter: grayscale(1) saturate(.4) contrast(.9) brightness(1.1) blur(2px);
  transform: scale(1.018);
  transition: filter 2.6s cubic-bezier(.2,.8,.2,1), transform 2.8s cubic-bezier(.2,.8,.2,1);
}
.media-reveal.is-revealing img,
.media-reveal.is-revealed img {
  filter: grayscale(0) saturate(1.03) contrast(1) brightness(1) blur(0);
  transform: scale(1);
}
.media-reveal::after {
  inset: 0 0 0 calc(var(--progress) * 1%);
  background:
    linear-gradient(105deg, rgba(255,255,255,.68), rgba(223,247,255,.82) 54%, rgba(255,234,245,.82));
  border-left: 2px solid rgba(248,0,127,.75);
  box-shadow: -10px 0 24px rgba(248,0,127,.14);
}
.media-loader {
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: .55rem .75rem;
  color: #17425e;
  background: rgba(255,255,255,.82);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(19,75,107,.12);
  backdrop-filter: blur(12px);
}
.media-loader::before {
  left: .75rem;
  right: .75rem;
  bottom: -.42rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f8007f calc(var(--progress) * 1%), rgba(16,45,74,.1) 0);
}
.media-loader strong { color: #f8007f; }

.hero-media {
  height: min(66vh, 650px);
  min-height: 520px;
  border: 0;
  border-radius: 42px 42px 100px 42px;
  box-shadow: 0 30px 70px rgba(18,82,118,.16);
  transform: none;
}
.hero-media img {
  padding: 0;
  object-fit: contain;
  object-position: center bottom;
}
.hero-media::before {
  background:
    linear-gradient(180deg, transparent 65%, rgba(255,255,255,.12)),
    radial-gradient(circle at 50% 50%, transparent 56%, rgba(255,255,255,.1));
  mix-blend-mode: normal;
}

.panel {
  padding: clamp(1.5rem, 4vw, 4rem);
  color: var(--ink);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,45,74,.09);
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(24,83,115,.11);
  backdrop-filter: blur(18px);
}
.panel--dark { color: var(--ink); background: linear-gradient(115deg, #e3f8ff, #fff5e7); }

.album-feature {
  position: relative;
  margin-top: clamp(5rem, 10vw, 9rem);
  grid-template-columns: minmax(260px, 470px) 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 9% 12%, rgba(255,255,255,.95), transparent 17rem),
    linear-gradient(125deg, #fff4d2 0, #fff 48%, #e5f9ff 100%);
  border-radius: 48px;
  transform: none;
}
.album-feature::after {
  content: "GIGANTISCH";
  position: absolute;
  right: 2rem;
  bottom: .8rem;
  z-index: 0;
  color: rgba(16,45,74,.045);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.album-cover {
  z-index: 1;
  border-radius: 26px;
  transform: rotate(-2deg);
}
.album-cover img { object-fit: contain; }
.album-feature > div { position: relative; z-index: 2; }
.album-feature h2 {
  margin: 0 0 1rem;
  color: #0f3d63;
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -.055em;
  text-shadow: none;
}
.album-feature p:not(.eyebrow),
.page-intro > p:not(.eyebrow),
.event-card p,
.empty-state p,
.legal-content { color: #49677c; }

.next-event {
  margin-top: 1.6rem;
  background: linear-gradient(110deg, #e8faff, #fff 48%, #fff0f7);
  border-color: rgba(16,45,74,.08);
  box-shadow: 0 24px 60px rgba(24,83,115,.1);
}
.next-event h2,
.page-intro h1,
.form-panel > h2,
.cd-layout h2,
.video-caption h2,
.legal-content h2,
.legal-content h3 {
  color: #113b5a;
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif !important;
  font-weight: 850;
  letter-spacing: -.025em;
  text-transform: none;
}
.text-link,
.legal-content a { color: #e60076; font-weight: 800; }

.eyebrow {
  color: #e80077;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .18em;
}
.page-intro {
  position: relative;
  max-width: 1040px;
  margin: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 6rem);
  padding-left: clamp(1rem, 3vw, 2.5rem);
  border-left: 6px solid #f8007f;
}
.page-intro::after {
  content: "";
  position: absolute;
  left: 55%;
  top: -3rem;
  width: 15rem;
  height: 15rem;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,185,234,.15), transparent 68%);
}
.page-intro h1 {
  margin: .2rem 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .92;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.event-list {
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.event-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(16,45,74,.08);
  border-left: 0;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(25,80,112,.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(#f8007f, #ff8b55);
}
.event-card:hover {
  background: #fff;
  border-color: rgba(248,0,127,.18);
  box-shadow: 0 28px 65px rgba(25,80,112,.14);
  transform: translateY(-4px);
}
.event-card time {
  color: #ef007a;
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}
.event-card h2 {
  color: #143b57;
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  text-transform: none;
}
.event-card a { color: #e60076; font-weight: 850; text-decoration-thickness: 2px; }

.form-panel { max-width: 1040px; }
.form-panel > h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.form-grid { gap: 1.1rem; }
.form-field > span { color: #244f69; font-weight: 800; }
.form-field input,
.form-field select,
.form-field textarea {
  color: #143b57;
  background: rgba(244,251,255,.72);
  border: 1px solid rgba(16,45,74,.13);
  border-radius: 16px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #fff;
  border-color: #f8007f;
  box-shadow: 0 0 0 4px rgba(248,0,127,.1);
}
.consent { color: #567187; }
.consent input { accent-color: #f8007f; }
.form-actions > span { color: #6c8495; }
.form-status { color: #df006f; font-weight: 800; }

.cd-layout { gap: 1.6rem; }
.cd-list li {
  color: #173e59;
  border-bottom: 1px solid rgba(16,45,74,.1);
  font-family: inherit;
  font-weight: 750;
}
.cd-list span { color: #f8007f; font-family: inherit; font-size: .8rem; font-weight: 900; }
.cd-art {
  min-height: 540px;
  border-radius: 38px;
}
.cd-art img { object-fit: contain; }

.video-grid { gap: 1.7rem; }
.video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16,45,74,.08);
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(25,80,112,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 30px 68px rgba(25,80,112,.16); }
.video-media {
  background: #eefaff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.video-media img { object-fit: contain; }
.play-button {
  width: 68px;
  height: 68px;
  color: #fff;
  background: linear-gradient(135deg, #f8007f, #ff785d);
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(248,0,127,.25);
}
.play-button:hover,
.play-button:focus-visible { background: #0e94ca; }
.video-caption { border-top: 0; }
.video-caption > span { color: #f8007f; font-weight: 900; }
.video-caption h2 { color: #173e59; }
.video-caption a { color: #167ca7; font-weight: 850; }

.empty-state { border-color: rgba(16,45,74,.1); border-style: solid; }
.legal-content h2 { color: #123d5b; }
.legal-content h3 { color: #dc006e; }

.partners {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 3rem));
  padding: 0 0 clamp(5rem, 8vw, 8rem);
}
.section-rule { color: #31566f; font-weight: 850; }
.section-rule::after { height: 1px; background: rgba(16,45,74,.12); }
.partner-grid { gap: 1.5rem; }
.partner-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16,45,74,.08);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(25,80,112,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.partner-card:hover { transform: translateY(-5px); box-shadow: 0 26px 58px rgba(25,80,112,.14); }
.partner-media { height: 150px; border: 0; border-radius: 0; box-shadow: none; background: #fff; }
.partner-media img { object-fit: contain; background: #fff; }

.site-footer {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 3rem));
  margin-bottom: 2rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(39,185,234,.35), transparent 20rem),
    linear-gradient(120deg, #0f3859, #135d7e);
  border: 0;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(15,56,89,.2);
}
.site-footer strong { color: #fff; font-family: inherit; font-size: 1.2rem; font-weight: 900; }
.site-footer span,
.site-footer small { color: rgba(255,255,255,.72); }
.footer-links a { color: #fff; font-weight: 800; }

.cursor-orb,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width .24s ease, height .24s ease, opacity .24s ease, background .24s ease, border-color .24s ease;
}
.cursor-orb {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(248,0,127,.65);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(3px);
}
.cursor-dot { width: 7px; height: 7px; background: #f8007f; }
.has-custom-cursor .cursor-orb,
.has-custom-cursor .cursor-dot { opacity: 1; }
.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button { cursor: none; }
.cursor-orb.is-hovering {
  width: 76px;
  height: 76px;
  border-color: rgba(39,185,234,.72);
  background: rgba(39,185,234,.12);
}

.scroll-progress {
  position: fixed;
  inset: 4px auto auto 0;
  z-index: 80;
  width: 0;
  height: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #f8007f, #ff8759, #27b9ea);
  box-shadow: 0 2px 10px rgba(248,0,127,.25);
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: minmax(250px, 360px) auto; min-height: 92px; }
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    color: #fff;
    background: linear-gradient(110deg, #f8007f, #ff5b8e);
    border: 0;
    border-radius: 999px;
    font-weight: 850;
  }
  .main-navigation {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: .75rem;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(16,45,74,.08);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(25,80,112,.12);
  }
  .main-navigation.is-open { display: block; padding: .75rem; background: rgba(255,255,255,.96); border: 1px solid rgba(16,45,74,.08); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { max-width: 700px; }
  .hero-media { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .scroll-cue { display: none; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 92px; }
  .site-header { width: 100%; padding: .85rem 1rem; grid-template-columns: minmax(210px, 1fr) auto; }
  .wordmark img { width: min(100%, 310px); }
  .wordmark small { display: none; }
  .main-navigation ul { grid-template-columns: 1fr 1fr; }
  .main-navigation a { padding: .72rem .55rem; }
  .site-main,
  .partners,
  .site-footer { width: calc(100% - 1.2rem); }
  .site-main { margin-top: 0; padding: 1rem 0 4.5rem; outline: 0; box-shadow: none; }
  .hero {
    padding: 2rem 1rem 1rem;
    gap: 1.7rem;
    border-radius: 30px;
  }
  .hero .eyebrow { font-size: .62rem; }
  .hero h1 { margin-bottom: 1.6rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-media { min-height: 0; height: auto; aspect-ratio: 4 / 3; border-radius: 24px 24px 54px 24px; }
  .album-feature { grid-template-columns: 1fr; padding: 1rem; border-radius: 30px; }
  .album-feature > div { padding: 1rem .5rem 1.5rem; }
  .album-feature h2 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .next-event { grid-template-columns: 1fr; }
  .page-intro { padding-left: 1rem; border-left-width: 4px; }
  .event-card { grid-template-columns: 1fr; gap: .7rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .form-panel { padding: 1.2rem; }
  .video-grid { grid-template-columns: 1fr; }
  .video-caption { grid-template-columns: auto 1fr; }
  .video-caption a { grid-column: 2; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-media { height: 120px; }
  .site-footer { grid-template-columns: 1fr; padding: 1.4rem; border-radius: 25px; }
  .footer-links { justify-content: flex-start; }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-orb,
  .cursor-dot { display: none; }
  .has-custom-cursor,
  .has-custom-cursor a,
  .has-custom-cursor button { cursor: auto; }
}

/* Mediterraneo 2026 – Farbwelt aus dem Vespa-Fotoshooting */
:root {
  --ink: #16384a;
  --ink-soft: #255064;
  --cream: #16384a;
  --cream-deep: #526b76;
  --paper: #f8f4ec;
  --terracotta: #ad6737;
  --terracotta-deep: #81502f;
  --olive: #61735f;
  --wine: #9d2f65;
  --brass: #c8914b;
  --white: #fffdf9;
  --muted: #6d7b7f;
  --sky: #0f6385;
  --sky-soft: #dbeaf0;
  --sun: #e7c28a;
  --mint: #d8ded0;
  --stone: #e7ddcf;
  --vespa: #efe9da;
  --bougainvillea: #a22c68;
  --shadow: 0 28px 80px rgba(30, 55, 65, .14);
}

body {
  color: #16384a;
  background: #f7f2e9;
}
body::before {
  background:
    radial-gradient(circle at 6% 8%, rgba(231,194,138,.35), transparent 28rem),
    radial-gradient(circle at 96% 14%, rgba(15,99,133,.18), transparent 30rem),
    radial-gradient(circle at 72% 76%, rgba(162,44,104,.08), transparent 30rem),
    linear-gradient(180deg, #fffdf9 0, #f7f1e7 56%, #eef5f6 100%);
}
body::after {
  background: radial-gradient(circle, rgba(15,99,133,.11), rgba(173,103,55,.05) 40%, transparent 70%);
}

.site-header {
  background: rgba(255,253,249,.9);
  border-bottom-color: rgba(22,56,74,.1);
  box-shadow: 0 12px 40px rgba(39,65,77,.08);
}
.wordmark img { filter: drop-shadow(0 8px 14px rgba(15,99,133,.08)); }
.wordmark small { color: #4f6976; }
.main-navigation a { color: #244b5d; }
.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation a.is-current {
  color: #fff;
  background: linear-gradient(110deg, #0f6385, #267f9e);
}

.hero {
  border-color: rgba(22,56,74,.1);
  background:
    radial-gradient(circle at 8% 10%, rgba(255,255,255,.92), transparent 19rem),
    radial-gradient(circle at 95% 12%, rgba(231,194,138,.7), transparent 20rem),
    radial-gradient(circle at 79% 96%, rgba(162,44,104,.13), transparent 23rem),
    linear-gradient(135deg, #edf5f5 0%, #faf4e9 50%, #efe2d0 100%);
  box-shadow: 0 38px 100px rgba(33,70,84,.15);
}
.hero::before { border-color: rgba(15,99,133,.12); }
.hero::after { background: rgba(173,103,55,.19); }
.hero .eyebrow {
  color: #19495e;
  background: rgba(255,253,249,.82);
  border-color: rgba(22,56,74,.1);
}
.hero-logo { filter: drop-shadow(0 15px 22px rgba(15,99,133,.13)); }

.button {
  color: #244b5d;
  background: rgba(255,253,249,.9);
  border-color: rgba(22,56,74,.14);
  box-shadow: 0 14px 34px rgba(35,70,84,.12);
}
.button--primary {
  color: #fff;
  background: linear-gradient(110deg, #0f6385, #1d7594 70%, #ad6737);
}
.button--primary:hover,
.button--primary:focus-visible {
  color: #fff;
  background: linear-gradient(110deg, #0b536f, #ad6737);
}
.button--ghost { color: #17465a; }
.button--ghost:hover,
.button--ghost:focus-visible { background: #fffdf9; }

.media-reveal {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.96), rgba(239,233,218,.84) 48%, rgba(219,234,240,.76));
  border-color: rgba(22,56,74,.09);
  box-shadow: 0 25px 65px rgba(35,66,78,.14);
}
.media-reveal::after {
  background: linear-gradient(105deg, rgba(255,253,249,.76), rgba(239,233,218,.88) 54%, rgba(219,234,240,.86));
  border-left-color: rgba(15,99,133,.72);
  box-shadow: -10px 0 24px rgba(15,99,133,.14);
}
.media-loader { color: #1e5268; background: rgba(255,253,249,.88); }
.media-loader::before { background: linear-gradient(90deg, #0f6385 calc(var(--progress) * 1%), rgba(22,56,74,.1) 0); }
.media-loader strong { color: #ad6737; }

.hero-media {
  background: linear-gradient(145deg, #dcebf0, #f0e6d6);
  border-radius: 34px 90px 34px 34px;
}
.hero-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.home > .route-scene,
.home .site-main > .route-scene { display: none; }
.route-scene {
  position: relative;
  width: 100%;
  height: min(68vh, 660px);
  min-height: 420px;
  margin: 1rem 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  border-radius: 38px 90px 38px 38px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.9), transparent 24rem),
    linear-gradient(135deg, #e7ddcf, #dbeaf0);
}
.route-scene img {
  width: 100%;
  height: 100%;
  padding: 1rem;
  object-fit: contain;
  object-position: center;
}
.route-scene-label {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  z-index: 5;
  padding: .65rem .9rem;
  color: #fff;
  background: rgba(15,99,133,.88);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(22,56,74,.18);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.vespa-story {
  margin: clamp(5rem, 9vw, 9rem) 0;
  columns: 3 310px;
  column-gap: 1.2rem;
}
.story-photo {
  width: 100%;
  margin: 0 0 1.2rem;
  break-inside: avoid;
  border-radius: 24px;
}
.story-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.panel {
  color: #173c4d;
  background: rgba(255,253,249,.88);
  border-color: rgba(22,56,74,.09);
  box-shadow: 0 30px 80px rgba(35,66,78,.11);
}
.album-feature {
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.96), transparent 18rem),
    linear-gradient(125deg, #efe4d2 0, #fffdf9 48%, #dfecef 100%);
}
.album-feature h2 { color: #0f6385; }
.album-feature::after { color: rgba(15,99,133,.05); }
.next-event { background: linear-gradient(110deg, #e4eff1, #fffdf9 48%, #eee2d1); }

.eyebrow { color: #a22c68; }
.page-intro { border-left-color: #ad6737; }
.page-intro::after { background: radial-gradient(circle, rgba(15,99,133,.14), transparent 68%); }
.page-intro h1,
.next-event h2,
.form-panel > h2,
.cd-layout h2,
.video-caption h2,
.legal-content h2,
.legal-content h3 { color: #143e50; }
.text-link,
.legal-content a { color: #0f6385; }

.event-card::before { background: linear-gradient(#0f6385, #ad6737); }
.event-card time { color: #a22c68; }
.event-card a { color: #0f6385; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #0f6385; box-shadow: 0 0 0 4px rgba(15,99,133,.1); }
.consent input { accent-color: #0f6385; }
.form-status { color: #0f6385; }
.cd-list span { color: #a22c68; }
.play-button { background: linear-gradient(135deg, #0f6385, #ad6737); box-shadow: 0 15px 35px rgba(15,99,133,.25); }
.video-caption > span { color: #a22c68; }

.press-intro { max-width: 1120px; }
.press-intro > p:not(.eyebrow) { max-width: 820px; }
.press-zip { margin-top: 1rem; }
.press-gallery {
  columns: 3 330px;
  column-gap: 1.35rem;
}
.press-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.35rem;
  overflow: hidden;
  break-inside: avoid;
  background: rgba(255,253,249,.94);
  border: 1px solid rgba(22,56,74,.09);
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(35,66,78,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.press-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(35,66,78,.16);
}
.press-preview {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #efe9da;
}
.press-preview img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.press-card-info {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}
.press-card-info > div { display: grid; gap: .18rem; }
.press-card-info strong { color: #153e50; font-size: 1rem; }
.press-card-info span { color: #6a797e; font-size: .72rem; }
.button--download {
  width: 100%;
  min-height: 46px;
  padding: .7rem 1rem;
  color: #fff;
  background: #0f6385;
  border-color: #0f6385;
  font-size: .67rem;
}
.button--download:hover,
.button--download:focus-visible { color: #fff; background: #ad6737; border-color: #ad6737; }

.partner-card { background: #fffdf9; }
.site-footer {
  background:
    radial-gradient(circle at 90% 20%, rgba(231,194,138,.26), transparent 20rem),
    linear-gradient(120deg, #123c50, #0f6385);
}
.cursor-orb { border-color: rgba(15,99,133,.7); }
.cursor-dot { background: #a22c68; }
.cursor-orb.is-hovering { border-color: rgba(173,103,55,.75); background: rgba(173,103,55,.12); }
.scroll-progress { background: linear-gradient(90deg, #0f6385, #a22c68, #d3a05a); }

@media (max-width: 1180px) {
  .nav-toggle { background: linear-gradient(110deg, #0f6385, #267f9e); }
  .route-scene { height: min(62vh, 620px); }
}

@media (max-width: 720px) {
  .route-scene {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: .4rem 0 3.5rem;
    border-radius: 24px 46px 24px 24px;
  }
  .route-scene img { padding: .45rem; }
  .route-scene-label { right: .8rem; top: .8rem; font-size: .56rem; }
  .vespa-story { columns: 2 145px; column-gap: .65rem; margin: 4rem 0; }
  .story-photo { margin-bottom: .65rem; border-radius: 16px; }
  .press-gallery { columns: 1; }
  .press-card { margin-bottom: 1rem; border-radius: 20px; }
}

/* Kompakte, bildintegrierte Seitenfassung */
.site-header {
  padding-inline: max(.85rem, calc((100vw - 1600px) / 2));
}
.site-main,
.partners,
.site-footer {
  width: min(1600px, calc(100% - 1.5rem));
}
.site-main {
  padding: clamp(1rem, 2.2vw, 2.2rem) 0 clamp(2rem, 4vw, 4rem);
}

.hero {
  min-height: 0;
  padding: clamp(1.25rem, 3vw, 3rem);
  grid-template-columns: minmax(310px, .82fr) minmax(500px, 1.18fr);
  gap: clamp(1.5rem, 3vw, 3.4rem);
  border-radius: 30px;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero .eyebrow { margin-bottom: 1rem; }
.hero-media {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  border-radius: 24px 24px 56px 24px;
  background: #dcebf0;
}
.hero-media img {
  padding: 0;
  object-fit: cover;
  object-position: center center;
}
.scroll-cue { display: none; }
.vespa-story { display: none; }

.route-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(350px, .78fr);
  min-height: clamp(360px, 34vw, 540px);
  margin: 0 0 clamp(1.5rem, 3vw, 2.7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(231,194,138,.48), transparent 18rem),
    linear-gradient(130deg, #edf4f3, #fffaf2 58%, #efe1cf);
  border: 1px solid rgba(22,56,74,.08);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(35,66,78,.12);
}
.route-lead .route-scene {
  width: 100%;
  height: 100%;
  min-height: 360px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #dce8e8;
}
.route-lead .route-scene img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center center;
}
.route-lead .route-scene--053 img { object-position: center 42%; }
.route-lead .route-scene--056 img { object-position: center 46%; }
.route-lead .route-scene--061 img { object-position: center 47%; }
.route-lead .route-scene--100 img { object-position: center 48%; }
.route-lead .route-scene--020 img { object-position: center 38%; }
.route-lead .page-intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  margin: 0;
  padding: clamp(1.8rem, 4vw, 4rem);
  border: 0;
}
.route-lead .page-intro::after { display: none; }
.route-lead .page-intro h1 {
  max-width: 100%;
  font-size: clamp(2.4rem, 3.5vw, 4.5rem);
  line-height: .94;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.route-lead .press-intro h1 { max-width: none; }
.route-scene-label {
  right: auto;
  left: 1rem;
  top: 1rem;
}

.panel { padding: clamp(1.4rem, 3vw, 3rem); }
.album-feature {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  gap: clamp(1.5rem, 4vw, 4rem);
}
.next-event { margin-top: 1rem; }
.form-panel { max-width: none; }
.event-list { gap: .8rem; }
.event-card { padding: clamp(1.2rem, 2vw, 2rem); }
.video-grid { gap: 1rem; }
.press-gallery { column-gap: 1rem; }
.press-card { margin-bottom: 1rem; }

.partners {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: .8rem 0 1.6rem;
}
.section-rule {
  min-width: 82px;
  margin: 0;
}
.section-rule::after { display: none; }
.partner-grid {
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  justify-content: start;
  width: 100%;
  max-width: 980px;
  gap: .7rem;
}
.partner-card { border-radius: 14px; }
.partner-card:hover { transform: translateY(-2px); }
.partner-media {
  height: 72px;
  border-radius: 0;
}
.partner-media img {
  width: 100%;
  height: 100%;
  padding: .65rem;
  object-fit: contain;
}
.partner-media .media-loader { display: none; }

.site-footer {
  margin-bottom: .75rem;
  padding: clamp(1.35rem, 2.5vw, 2.2rem);
  border-radius: 24px;
}

@media (max-width: 1380px) {
  .site-header {
    grid-template-columns: minmax(250px, 390px) auto;
    min-height: 88px;
  }
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    color: #fff;
    background: linear-gradient(110deg, #0f6385, #267f9e);
    border: 0;
    border-radius: 999px;
    font-weight: 850;
  }
  .main-navigation {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: .75rem;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(16,45,74,.08);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(25,80,112,.12);
  }
  .main-navigation.is-open { display: block; }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(280px, .85fr) minmax(420px, 1.15fr);
  }
  .route-lead {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, .9fr);
  }
}

@media (max-width: 820px) {
  .site-main,
  .partners,
  .site-footer { width: min(100% - 1rem, 1600px); }
  .hero {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1.1rem;
    border-radius: 22px;
  }
  .hero-copy { padding: .65rem .4rem .25rem; }
  .hero-media {
    aspect-ratio: 3 / 2;
    border-radius: 18px 18px 38px 18px;
  }
  .route-lead {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }
  .route-lead .route-scene {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .route-lead .page-intro { padding: 1.35rem 1.25rem 1.6rem; }
  .route-lead .page-intro h1 {
    max-width: 15ch;
    font-size: clamp(2.3rem, 10vw, 4rem);
  }
  .album-feature > div {
    min-width: 0;
    width: 100%;
    padding: .75rem 0 1rem;
  }
  .album-feature h2 {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
    overflow-wrap: anywhere;
  }
  .partners {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .partner-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .5rem;
  }
  .partner-card { grid-column: span 2; }
  .partner-card:nth-last-child(2) { grid-column: 2 / span 2; }
  .partner-card:last-child { grid-column: 4 / span 2; }
  .partner-media { height: 62px; }
  .site-footer { border-radius: 20px; }
}
