:root {
  --navy-950: #020d21;
  --navy-900: #03152f;
  --navy-850: #062044;
  --blue: #0b4c9b;
  --gold: #f4b51e;
  --gold-light: #ffd56a;
  --ivory: #f8f6f0;
  --ink: #0a1c3b;
  --muted: #526075;
  --shadow: 0 16px 40px rgba(3, 21, 47, 0.12);
  --content: 1240px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --script: "Segoe Script", "Brush Script MT", "Apple Chancery", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy-950);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold-light);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  color: #fff;
  background: linear-gradient(180deg, rgba(1, 11, 28, 0.88), rgba(1, 11, 28, 0));
  transition: background-color 180ms ease, box-shadow 180ms ease, height 180ms ease;
}
.site-header.header-scrolled, .site-header.menu-visible {
  height: 72px;
  background: rgba(2, 15, 36, 0.97);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.header-inner {
  width: calc(100% - 48px);
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  flex: 0 0 auto;
  color: #fff;
  font-family: var(--serif);
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.wordmark span { display: block; font-size: 11px; }
.wordmark strong { display: block; margin-top: 4px; font-size: 21px; font-weight: 400; }
.wordmark em { color: var(--gold); font-style: normal; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 28px; }
.site-nav > a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); }
.site-nav .nav-cta {
  min-height: 44px;
  padding: 14px 20px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(244, 181, 30, 0.24);
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease;
}
.site-nav .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 7px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle-lines { display: grid; gap: 5px; width: 25px; margin: 0 auto; }
.menu-toggle-lines i { display: block; height: 2px; background: currentColor; border-radius: 999px; transition: transform 160ms ease, opacity 160ms ease; }
.menu-toggle-label { display: block; margin-top: 3px; font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 700px;
  min-height: min(78vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background-color: var(--navy-950);
  background-image: url("/assets/hero-kirchengewoelbe.jpg");
  background-position: center;
  background-size: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 9, 26, 0.34), rgba(0, 16, 47, 0.06) 48%, rgba(1, 12, 31, 0.64)), radial-gradient(circle at center, transparent 25%, rgba(0, 10, 28, 0.22));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: 900px;
  padding: 118px 0 70px;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.68);
}
.hero-kicker {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-kicker span { width: 86px; height: 1px; background: var(--gold); }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 80px;
  font-size: clamp(62px, 7.4vw, 112px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.77;
  text-transform: uppercase;
}
.hero h1 > span, .hero h1 > strong, .hero h1 > small { display: block; }
.hero h1 > span { font-size: 0.58em; line-height: 1.15; }
.hero h1 > small {
  position: relative;
  width: max-content;
  margin: 10px auto 3px;
  color: var(--gold-light);
  font-size: 0.34em;
  font-weight: 400;
  line-height: 1;
}
.hero h1 > small::before, .hero h1 > small::after {
  position: absolute;
  top: 50%;
  width: 100px;
  height: 1px;
  content: "";
  background: var(--gold);
}
.hero h1 > small::before { right: calc(100% + 22px); }
.hero h1 > small::after { left: calc(100% + 22px); }
.hero h1 > strong { color: var(--gold); font-size: 1em; font-weight: 700; letter-spacing: 0.04em; line-height: 0.93; }
.hero-subtitle { margin: 22px 0 12px; color: var(--gold-light); font-size: 17px; font-weight: 600; letter-spacing: 0.06em; }
.hero-motifs {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  background: rgba(0, 9, 28, 0.72);
  font-size: 17px;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-motifs b { color: var(--gold); }

.facts { position: relative; z-index: 2; color: #fff; background: linear-gradient(105deg, var(--navy-900), #062653 55%, var(--navy-950)); border-top: 1px solid rgba(255, 255, 255, 0.12); }
.facts-inner { width: calc(100% - 48px); max-width: var(--content); margin: 0 auto; padding: 24px 0 20px; }
.fact-list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr 1.5fr 0.85fr 1.3fr; list-style: none; }
.fact-list li {
  min-width: 0;
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(244, 181, 30, 0.34);
  font-size: 13px;
  line-height: 1.35;
}
.fact-list li:first-child { padding-left: 0; }
.fact-list li:last-child { padding-right: 0; border-right: 0; }
.fact-list strong { display: block; }
.fact-list a { overflow-wrap: anywhere; text-decoration-color: rgba(244, 181, 30, 0.7); text-underline-offset: 3px; }
.fact-icon { flex: 0 0 auto; width: 35px; color: var(--gold); font-family: var(--serif); font-size: 32px; line-height: 1; text-align: center; }
.fact-icon-ticket { transform: rotate(-18deg); }
.hero-actions { margin-top: 20px; display: flex; justify-content: center; gap: 16px; }
.button {
  min-width: 260px;
  min-height: 50px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.button span { font-size: 22px; line-height: 1; }
.button-primary { color: var(--navy-950); background: var(--gold); }
.button-secondary { color: #fff; background: rgba(2, 15, 36, 0.35); }
.button:hover { color: var(--navy-950); background: var(--gold-light); transform: translateY(-1px); }

.light-area { background: radial-gradient(circle at 18% 24%, rgba(244, 181, 30, 0.05), transparent 24%), linear-gradient(180deg, #fff, var(--ivory)); }
.section-shell { width: calc(100% - 48px); max-width: var(--content); margin: 0 auto; }
.intro { padding-top: 68px; display: grid; grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr); align-items: center; gap: 64px; }
.poster-wrap { position: relative; padding: 0 0 18px 18px; }
.poster-wrap::before { position: absolute; z-index: 0; right: 18px; bottom: 0; left: 0; height: 58%; content: ""; background: var(--gold); border-radius: 4px; opacity: 0.9; }
.poster { position: relative; z-index: 1; width: 100%; height: auto; border-radius: 4px; box-shadow: 0 20px 54px rgba(3, 21, 47, 0.24); }
.intro-copy h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 48px;
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.02;
  text-transform: uppercase;
}
.intro-copy h2 em { color: #bf7a00; font-family: var(--script); font-size: 0.92em; font-weight: 400; letter-spacing: 0; text-transform: none; white-space: nowrap; }
.intro-text { color: #24324a; font-size: 16px; line-height: 1.78; }
.intro-text p { margin: 0 0 19px; }
.intro-text strong { color: #a36c00; }
.intro-quote { margin: 30px 0 0; color: #a66b00; font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1.35; }
.intro-quote em { font-family: var(--script); font-size: 1.12em; font-style: normal; white-space: nowrap; }

.artists, .tickets { padding-top: 58px; }
.section-title-row { margin-bottom: 22px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.section-title-row span { height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-title-row span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.section-title-row h2, .press-grid h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 26px; font-weight: 500; letter-spacing: 0.04em; line-height: 1.15; text-align: center; text-transform: uppercase; }
.artist-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.artist-card { min-width: 0; overflow: hidden; color: #fff; background: var(--navy-900); border: 1px solid rgba(6, 32, 68, 0.22); border-radius: 10px; box-shadow: 0 12px 28px rgba(3, 21, 47, 0.15); }
.artist-card-featured { border: 2px solid var(--gold); box-shadow: 0 14px 34px rgba(137, 91, 0, 0.2); }
.artist-card img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; background: var(--navy-850); }
.artist-copy { min-height: 132px; padding: 17px 10px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.artist-copy h3 { margin: 0 0 8px; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.025em; line-height: 1.3; text-transform: uppercase; }
.artist-card-featured h3 { color: var(--gold-light); font-family: var(--serif); font-size: 19px; font-weight: 500; }
.artist-copy p { margin: 0; color: rgba(255, 255, 255, 0.92); font-size: 12px; line-height: 1.42; }

.ticket-panel, .download-panel, .notice-panel { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(3, 21, 47, 0.08); border-radius: 12px; box-shadow: var(--shadow); }
.ticket-panel { overflow: hidden; }
.ticket-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ticket-place {
  min-width: 0;
  min-height: 178px;
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-right: 1px solid rgba(3, 21, 47, 0.1);
  line-height: 1.38;
  text-align: center;
  text-decoration: none;
}
.ticket-place:last-child { border-right: 0; }
a.ticket-place { transition: background-color 160ms ease, color 160ms ease; }
a.ticket-place:hover { color: var(--navy-950); background: rgba(244, 181, 30, 0.12); }
.ticket-place-icon { display: block; margin-bottom: 10px; color: #c48000; font-family: var(--serif); font-size: 37px; line-height: 1; }
.ticket-place strong { font-size: 14px; font-weight: 700; }
.ticket-place small { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.ticket-note { margin: 0; padding: 10px 20px 12px; color: var(--muted); background: rgba(3, 21, 47, 0.025); font-size: 12px; text-align: center; }

.press { padding-top: 28px; padding-bottom: 60px; }
.press-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 16px; }
.download-panel, .notice-panel { min-width: 0; padding: 20px; }
.press-grid h2 { margin-bottom: 16px; font-size: 22px; }
.download-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.download-list a {
  min-width: 0;
  min-height: 72px;
  padding: 12px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-850), var(--navy-900));
  border: 1px solid rgba(244, 181, 30, 0.16);
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}
.download-list a:hover { background: var(--blue); transform: translateY(-1px); }
.download-icon { flex: 0 0 auto; color: var(--gold-light); font-size: 28px; line-height: 1; }
.download-list a > span:last-child { min-width: 0; }
.download-list strong, .download-list small { display: block; }
.download-list strong { font-size: 11px; letter-spacing: 0.035em; line-height: 1.2; text-transform: uppercase; }
.download-list small { margin-top: 3px; color: rgba(255, 255, 255, 0.8); font-size: 9px; letter-spacing: 0.02em; line-height: 1.25; text-transform: uppercase; }
.notice-content { min-height: 72px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.notice-icon { flex: 0 0 auto; color: #c48000; font-size: 44px; line-height: 1; }
.notice-content p { margin: 0; color: #24324a; font-size: 14px; }

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 92% 50%, rgba(244, 181, 30, 0.18), transparent 7%), linear-gradient(105deg, var(--navy-900), #062552 58%, var(--navy-950));
  border-top: 1px solid rgba(244, 181, 30, 0.34);
}
.site-footer::after { position: absolute; top: 50%; right: 7%; width: 54px; height: 54px; content: "✦"; color: var(--gold-light); font-family: var(--serif); font-size: 42px; line-height: 54px; text-align: center; text-shadow: 0 0 20px rgba(255, 213, 106, 0.86); transform: translateY(-50%); }
.footer-inner { position: relative; z-index: 1; width: calc(100% - 48px); max-width: var(--content); min-height: 150px; margin: 0 auto; padding: 24px 100px 24px 0; display: grid; grid-template-columns: 1fr 1fr 1.15fr; align-items: center; }
.footer-inner > div { min-height: 82px; padding: 0 34px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(244, 181, 30, 0.38); }
.footer-inner > div:first-child { padding-left: 0; }
.footer-inner > div:last-child { padding-right: 0; border-right: 0; }
.footer-inner p { margin: 0 0 8px; color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; line-height: 1.3; text-transform: uppercase; }
.footer-organizer img { width: 150px; height: auto; mix-blend-mode: screen; }
.footer-site { align-items: center; text-align: center; }
.footer-site a { font-size: 15px; letter-spacing: 0.015em; overflow-wrap: anywhere; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.footer-sponsor { align-items: center; text-align: center; }
.footer-sponsor img { width: 147px; height: auto; mix-blend-mode: screen; }

@media (max-width: 1199px) {
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: 11px; }
  .site-nav .nav-cta { padding-right: 14px; padding-left: 14px; }
  .fact-list { grid-template-columns: repeat(3, 1fr); row-gap: 10px; }
  .fact-list li:nth-child(3) { border-right: 0; }
  .fact-list li:nth-child(4) { grid-column: 1 / 2; padding-left: 0; }
  .fact-list li:nth-child(5) { grid-column: 2 / 4; }
  .artist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .artist-copy { min-height: 122px; }
  .artist-copy h3 { font-size: 15px; }
}

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 72px);
    padding: 18px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow-y: auto;
    color: #fff;
    background: rgba(2, 15, 36, 0.98);
    border-top: 1px solid rgba(244, 181, 30, 0.28);
    box-shadow: 0 20px 28px rgba(0, 0, 0, 0.25);
  }
  .js .site-nav { visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease; }
  .js .site-header.menu-visible .site-nav { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav > a { min-height: 48px; padding: 15px 12px; font-size: 13px; text-align: center; }
  .site-nav .nav-cta { margin-top: 8px; padding: 16px; }
  .intro { grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: 42px; }
  .intro-text { font-size: 15px; line-height: 1.68; }
  .ticket-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ticket-place:nth-child(2) { border-right: 0; }
  .ticket-place:nth-child(-n + 2) { border-bottom: 1px solid rgba(3, 21, 47, 0.1); }
  .press-grid { grid-template-columns: 1fr; }
  .footer-inner { padding-right: 80px; grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner > div { padding-right: 12px; padding-left: 12px; }
  .footer-site a { font-size: 13px; }
  .footer-sponsor img { width: 133px; }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 68px; }
  .site-header, .site-header.header-scrolled, .site-header.menu-visible { height: 68px; }
  .header-inner, .section-shell, .facts-inner, .footer-inner { width: calc(100% - 40px); }
  .wordmark strong { font-size: 18px; }
  .hero { min-height: 620px; background-position: 68% center; }
  .hero-content { width: calc(100% - 36px); padding-top: 104px; padding-bottom: 52px; }
  .hero-kicker { gap: 11px; font-size: 14px; letter-spacing: 0.12em; }
  .hero-kicker span { width: 34px; }
  .hero h1 { font-size: 55px; font-size: clamp(49px, 16vw, 78px); line-height: 0.82; }
  .hero h1 > span { font-size: 0.5em; }
  .hero h1 > small { margin-top: 11px; font-size: 0.35em; }
  .hero h1 > small::before, .hero h1 > small::after { width: 44px; }
  .hero h1 > small::before { right: calc(100% + 12px); }
  .hero h1 > small::after { left: calc(100% + 12px); }
  .hero-subtitle { max-width: 330px; margin: 22px auto 13px; font-size: 14px; letter-spacing: 0.025em; }
  .hero-motifs { padding: 9px 13px; gap: 8px; font-size: 12px; letter-spacing: 0.08em; }
  .facts-inner { padding-top: 18px; }
  .fact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 0; }
  .fact-list li, .fact-list li:nth-child(4), .fact-list li:nth-child(5) { min-height: 84px; padding: 12px; grid-column: auto; border-right: 1px solid rgba(244, 181, 30, 0.24); border-bottom: 1px solid rgba(244, 181, 30, 0.24); font-size: 12px; }
  .fact-list li:nth-child(even) { border-right: 0; }
  .fact-list li:nth-child(5) { grid-column: 1 / 3; justify-content: center; border-right: 0; border-bottom: 0; }
  .fact-icon { width: 28px; font-size: 27px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .button { width: 100%; min-width: 0; min-height: 52px; }
  .intro { padding-top: 42px; grid-template-columns: 1fr; gap: 42px; }
  .poster-wrap { width: 100%; max-width: 470px; margin: 0 auto; }
  .intro-copy h2 { margin-bottom: 23px; font-size: 39px; }
  .intro-text { font-size: 16px; line-height: 1.72; }
  .intro-quote { margin-top: 25px; font-size: 23px; }
  .intro-quote em { white-space: normal; }
  .artists, .tickets { padding-top: 48px; }
  .section-title-row { gap: 16px; }
  .section-title-row h2, .press-grid h2 { font-size: 22px; }
  .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .artist-copy { min-height: 124px; padding-right: 8px; padding-left: 8px; }
  .artist-copy h3 { font-size: 12px; }
  .artist-card-featured h3 { font-size: 17px; }
  .artist-copy p { font-size: 11px; }
  .ticket-grid { grid-template-columns: 1fr; }
  .ticket-place, .ticket-place:nth-child(2) { min-height: 150px; border-right: 0; border-bottom: 1px solid rgba(3, 21, 47, 0.1); }
  .ticket-place:last-child { border-bottom: 0; }
  .press { padding-bottom: 42px; }
  .download-panel, .notice-panel { padding: 18px 14px; }
  .download-list { grid-template-columns: 1fr; }
  .download-list a { min-height: 58px; padding: 12px 16px; }
  .download-list strong { font-size: 12px; }
  .download-list small { font-size: 10px; }
  .notice-content { min-height: 86px; padding: 4px 10px; justify-content: flex-start; }
  .footer-inner { min-height: 0; padding: 30px 68px 30px 0; grid-template-columns: 1fr; }
  .footer-inner > div, .footer-inner > div:first-child, .footer-inner > div:last-child { min-height: 100px; padding: 18px 0; grid-column: auto; align-items: flex-start; border-right: 0; border-bottom: 1px solid rgba(244, 181, 30, 0.25); }
  .footer-site, .footer-sponsor { align-items: flex-start; text-align: left; }
  .footer-inner > div:last-child { border-bottom: 0; }
  .site-footer::after { right: 12px; }
}

@media (max-width: 430px) {
  .header-inner, .section-shell, .facts-inner, .footer-inner { width: calc(100% - 36px); }
  .hero { min-height: 590px; }
  .hero-motifs { flex-wrap: wrap; row-gap: 3px; }
  .artist-grid { grid-template-columns: 1fr; gap: 18px; }
  .artist-card { max-width: 360px; margin: 0 auto; }
  .artist-copy { min-height: 116px; }
  .artist-copy h3 { font-size: 14px; }
  .artist-copy p { font-size: 12px; }
}

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

@media (forced-colors: active) {
  .hero-shade { display: none; }
  .site-nav .nav-cta, .button, .artist-card, .ticket-panel, .download-panel, .notice-panel { border: 1px solid CanvasText; }
}
