@import url('fonts.css');

/* ---------------------------------------------------------------- tokens */
:root {
  --cream: #F7F1E6;
  --paper: #FFFBF3;
  --band: #EFE6D6;
  --nav-hover: #EBE0CE;

  --ink: #2C2A31;
  --slate: #46414D;
  --muted: #5A555F;
  --muted-soft: #4C4752;
  --muted-faint: #7A7480;

  --sand: #E3C9A4;
  --gold: #C9A276;
  --brown: #8A5A2B;
  --brown-accent: #A87C46;

  --display: 'Jost', system-ui, sans-serif;
  --body: 'Karla', system-ui, sans-serif;

  --shell: 1240px;
  --gutter: 26px;
  --section-y: clamp(70px, 9vw, 126px);
}

/* ------------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brown); }
a:hover { color: var(--gold); }

::selection { background: var(--sand); }

img { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}

/* Visible only when tabbed to — lets keyboard users skip the nav. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  font-family: var(--display);
  letter-spacing: 0.1em;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  color: var(--cream);
}

:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 3px;
  border-radius: 2px;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--brown-accent);
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 15px 27px;
  transition: background-color .22s ease, color .22s ease;
}
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--gold); color: var(--ink); }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--gold); color: var(--ink); }

.btn--ghost {
  border: 1px solid rgba(255, 251, 243, 0.55);
  color: #FFFBF3;
}
.btn--ghost:hover { background: rgba(255, 251, 243, 0.14); color: #FFFBF3; }

/* Underlined text link with an arrow, used as a section-level "more" link. */
.link-more {
  align-self: flex-start;
  text-decoration: none;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  transition: color .2s ease, border-color .2s ease;
}
.link-more:hover { color: var(--brown); border-bottom-color: var(--brown); }

/* ------------------------------------------------------------------- nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44, 42, 49, 0.1);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand__word {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.15;
}
.brand__word span {
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.44em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: 15.5px;
  letter-spacing: 0.03em;
}
/* :not(.btn) matters — a bare `.site-nav a` rule outranks `.btn--dark`
   (0-1-1 vs 0-1-0) and would paint the CTA's text ink-on-ink. */
.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background-color .2s ease;
}
.site-nav a:not(.btn):hover { background: var(--nav-hover); color: var(--ink); }

.site-nav .btn {
  padding: 11px 21px;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  margin-left: 6px;
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(44, 42, 49, 0.5) 0%,
    rgba(44, 42, 49, 0.08) 34%,
    rgba(44, 42, 49, 0.86) 100%);
}
.hero__body {
  position: relative;
  padding: 0 var(--gutter) 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__mark {
  width: 88px;
  height: 88px;
  object-fit: contain;
  animation: mmDrift 8s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: #FFFBF3;
  max-width: 15ch;
}
.hero h1 .accent { color: var(--sand); }
.hero__lede {
  margin: 0;
  max-width: 50ch;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
  color: rgba(255, 251, 243, 0.88);
}
.hero__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  padding-top: 6px;
}

@keyframes mmDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-2deg); }
}

/* ----------------------------------------------------------- values band */
.band {
  background: var(--ink);
  color: var(--cream);
  padding: 22px var(--gutter);
}
.band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 13.5px;
  letter-spacing: 0.24em;
  color: rgba(247, 241, 230, 0.72);
  text-align: center;
}
.band__sep { color: var(--gold); }

/* -------------------------------------------------------------- sections */
.section { padding: var(--section-y) var(--gutter); }
.section--band { background: var(--band); }

.section__head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 44px;
}
.section__head-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section__head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
}

/* ----------------------------------------------------------------- cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px;
}
.card {
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(44, 42, 49, 0.15);
  color: var(--ink);
}
.card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
}
.card__body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.card__body h3 { font-weight: 500; font-size: 22px; }
.card__body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted);
  flex: 1;
}
.card__meta {
  font-family: var(--display);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--brown-accent);
  padding-top: 4px;
}

/* -------------------------------------------------------------- split rows */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.split--tight { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.prose {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prose h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
}
.prose p {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--muted-soft);
  max-width: 54ch;
}
.prose .btn, .prose .link-more { margin-top: 6px; }

.portrait { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.portrait img {
  width: 100%;
  height: clamp(340px, 42vw, 540px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 10px;
}
.portrait figcaption {
  font-family: var(--display);
  font-size: 14.5px;
  letter-spacing: 0.06em;
  color: var(--muted-faint);
}

/* -------------------------------------------------------------- augsburg */
.augsburg {
  position: relative;
  background: var(--slate);
  color: var(--cream);
  padding: clamp(74px, 10vw, 132px) var(--gutter);
  overflow: hidden;
}
.augsburg__watermark {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: clamp(250px, 30vw, 440px);
  opacity: 0.08;
  pointer-events: none;
}
.augsburg .shell { position: relative; }
.augsburg .eyebrow { color: var(--sand); }
.augsburg .prose p { color: rgba(247, 241, 230, 0.85); max-width: 52ch; }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.duo img {
  width: 100%;
  height: clamp(180px, 22vw, 270px);
  object-fit: cover;
  border-radius: 8px;
}
.duo img:last-child { margin-top: 26px; }

/* ------------------------------------------------------------------- cta */
.cta { padding: clamp(70px, 9vw, 120px) var(--gutter); }
.cta__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.cta img { width: 60px; height: 60px; object-fit: contain; }
.cta h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.06; }
.cta p {
  margin: 0;
  max-width: 50ch;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--muted-soft);
}
.cta .btn { padding: 16px 32px; margin-top: 6px; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  background: var(--ink);
  color: rgba(247, 241, 230, 0.82);
  padding: clamp(58px, 7vw, 92px) var(--gutter) 36px;
  font-family: var(--body);
}
.site-footer .shell {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 36px;
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__brand img { width: 52px; height: 52px; object-fit: contain; }
.footer__word {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--cream);
  line-height: 1.35;
}
.footer__word span {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.44em;
}
.footer__tag {
  font-family: var(--display);
  font-size: 13.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 16px;
}
.footer__label {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(247, 241, 230, 0.5);
  padding-bottom: 4px;
}
.footer__col a {
  color: rgba(247, 241, 230, 0.86);
  text-decoration: none;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--sand); }
.footer__col address {
  font-style: normal;
  color: rgba(247, 241, 230, 0.86);
  line-height: 1.6;
}

.footer__base {
  border-top: 1px solid rgba(247, 241, 230, 0.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(247, 241, 230, 0.5);
}

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

/* --------------------------------------------------------------- mobile */
@media (max-width: 640px) {
  .site-header__inner { justify-content: center; }
  .site-nav { justify-content: center; gap: 4px; font-size: 15px; }
  .site-nav .btn { margin-left: 0; }
  .hero { min-height: 78vh; }
  .duo img:last-child { margin-top: 0; }
  .footer__base { justify-content: flex-start; }
}

/* ================================================================
   Subpages
   ================================================================ */

/* --------------------------------------------------------- page intro */
.page-intro { padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(36px, 4vw, 56px); }
.page-intro--tight { padding-bottom: clamp(30px, 4vw, 44px); }
.page-intro .shell { display: flex; flex-direction: column; gap: 18px; }
.page-intro h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.page-intro p {
  margin: 0;
  max-width: 58ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-soft);
}

/* ------------------------------------------------------------ produkte */
.prod { padding: clamp(40px, 5vw, 64px) var(--gutter); }
.prod--lg { padding: clamp(56px, 7vw, 104px) var(--gutter); }
.prod--band { background: var(--band); margin-top: clamp(40px, 5vw, 64px); }
.prod__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.prod__img {
  width: 100%;
  height: clamp(320px, 40vw, 540px);
  object-fit: cover;
  border-radius: 10px;
}
.prod__body { display: flex; flex-direction: column; gap: 22px; }
.prod__body h2 { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.06; }
.prod__body > p {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--muted-soft);
  max-width: 52ch;
}

.items { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }
.item {
  background: var(--paper);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.item__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
}
.item h3 { font-weight: 500; font-size: 21px; }
.item p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); }
.item__tag {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--brown-accent);
}
.item__meta {
  font-family: var(--display);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--brown-accent);
  padding-top: 2px;
}

/* -------------------------------------------------------------- prices */
.prices {
  background: var(--slate);
  color: var(--cream);
  padding: clamp(64px, 8vw, 116px) var(--gutter);
}
.prices__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.prices__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.prices__head img { width: 54px; height: 54px; object-fit: contain; }
.prices__head h2 { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.08; }
.prices__head p { margin: 0; font-size: 16.5px; color: rgba(247, 241, 230, 0.7); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.price-card {
  background: rgba(247, 241, 230, 0.06);
  border: 1px solid rgba(247, 241, 230, 0.16);
  border-radius: 10px;
  padding: clamp(22px, 3vw, 32px);
}
.price-card--stack { display: flex; flex-direction: column; gap: 26px; }
.price-card__label {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.3em;
  color: var(--sand);
  padding-bottom: 14px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid rgba(247, 241, 230, 0.14);
}
.price-row__name { font-size: 17px; }
.price-row__vol {
  font-size: 15px;
  color: rgba(247, 241, 230, 0.6);
  font-variant-numeric: tabular-nums;
}
.price-row__amt {
  font-family: var(--display);
  font-size: 17px;
  min-width: 86px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.prices__note {
  margin: 0;
  text-align: center;
  font-size: 15px;
  color: rgba(247, 241, 230, 0.6);
  line-height: 1.6;
}

/* --------------------------------------------------------------- merch */
.merch { padding: clamp(64px, 8vw, 116px) var(--gutter); }
.merch__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.merch__pics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.merch__pics img {
  width: 100%;
  height: clamp(220px, 26vw, 320px);
  object-fit: cover;
  border-radius: 10px;
}
.merch__body { display: flex; flex-direction: column; gap: 18px; }
.merch__body h2 { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.06; }
.merch__body p {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--muted-soft);
  max-width: 48ch;
}

/* ------------------------------------------------------------ über uns */
.wide-figure { padding: 0 var(--gutter); }
.wide-figure figure {
  margin: 0 auto;
  max-width: var(--shell);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wide-figure img {
  display: block;
  width: 100%;
  height: clamp(300px, 46vw, 600px);
  object-fit: cover;
  object-position: center 30%;
  border-radius: 12px;
}
.wide-figure figcaption {
  font-size: 14.5px;
  color: var(--muted-faint);
  font-family: var(--display);
  letter-spacing: 0.06em;
}

.story { padding: clamp(56px, 7vw, 104px) var(--gutter); }
.story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
}
.story__col { display: flex; flex-direction: column; gap: 20px; }
.story__col h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; }
.story__col > p {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.74;
  color: var(--muted-soft);
}
.story__col > img {
  width: 100%;
  height: clamp(320px, 34vw, 440px);
  object-fit: cover;
  object-position: center 22%;
  border-radius: 12px;
}
.emph { font-weight: 600; color: var(--ink); }

.person {
  background: var(--paper);
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.person--band { background: var(--band); }
.person__label {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  color: var(--brown-accent);
}
.person h3 { font-weight: 500; font-size: 23px; }
.person p { margin: 0; font-size: 16.5px; line-height: 1.66; color: var(--muted); }
.person--band p { color: var(--muted-soft); }

.centered-dark {
  position: relative;
  background: var(--slate);
  color: var(--cream);
  padding: clamp(64px, 8vw, 120px) var(--gutter);
  overflow: hidden;
}
.centered-dark__watermark {
  position: absolute;
  left: -70px;
  top: -60px;
  width: clamp(230px, 26vw, 380px);
  opacity: 0.08;
  pointer-events: none;
}
.centered-dark__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
  align-items: center;
}
.centered-dark .eyebrow { color: var(--sand); }
.centered-dark h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.06; }
.centered-dark p {
  margin: 0;
  max-width: 56ch;
  font-size: 17.5px;
  line-height: 1.74;
  color: rgba(247, 241, 230, 0.86);
}
.actions-center {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
}
.btn--ghost-light {
  border: 1px solid rgba(247, 241, 230, 0.5);
  color: var(--cream);
}
.btn--ghost-light:hover { background: rgba(247, 241, 230, 0.14); color: var(--cream); }

/* ------------------------------------------------------------- termine */
.events { padding: clamp(24px, 3vw, 40px) var(--gutter) clamp(56px, 7vw, 96px); }
.events__list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event {
  border-radius: 12px;
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}
.event--dark { background: var(--ink); color: var(--cream); }
.event--light { background: var(--paper); }
.event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 76px;
}
.event__day { font-family: var(--display); font-size: 38px; line-height: 1; }
.event__mon {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--sand);
}
.event--light .event__day { color: var(--ink); }
.event--light .event__mon { color: var(--brown-accent); }
.event__body { display: flex; flex-direction: column; gap: 6px; }
.event h2 { font-weight: 500; font-size: clamp(21px, 2.4vw, 27px); }
.event p { margin: 0; font-size: 16.5px; line-height: 1.6; }
.event--dark p { color: rgba(247, 241, 230, 0.78); }
.event--light p { color: var(--muted); }
.badge {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge--now { background: var(--gold); color: var(--ink); }
.badge--planned { border: 1px solid rgba(44, 42, 49, 0.25); color: var(--muted); }

.booking { background: var(--band); padding: clamp(60px, 8vw, 110px) var(--gutter); }
.booking__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.booking img {
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  object-fit: cover;
  border-radius: 12px;
}
.booking__body { display: flex; flex-direction: column; gap: 18px; }
.booking__body h2 { font-size: clamp(29px, 3.6vw, 46px); line-height: 1.07; }
.booking__body p {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--muted-soft);
  max-width: 48ch;
}

/* ------------------------------------------------------------- kontakt */
.contact { padding: clamp(56px, 7vw, 100px) var(--gutter) clamp(60px, 8vw, 110px); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
}
.contact__intro { display: flex; flex-direction: column; gap: 18px; }
.contact__intro h1 {
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.contact__intro > p {
  margin: 0;
  max-width: 48ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-soft);
}
.contact__intro img {
  width: 100%;
  height: clamp(240px, 28vw, 360px);
  object-fit: cover;
  border-radius: 12px;
  margin-top: 14px;
}
.contact__cards { display: flex; flex-direction: column; gap: 16px; }
.ccard {
  border-radius: 12px;
  padding: clamp(26px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ccard--mail {
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  transition: background-color .22s ease;
}
.ccard--mail:hover { background: var(--slate); color: var(--cream); }
.ccard--paper { background: var(--paper); }
.ccard--band { background: var(--band); gap: 10px; }
.ccard__label {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.26em;
  color: var(--brown-accent);
}
.ccard--mail .ccard__label { color: var(--sand); }
.ccard__big {
  font-family: var(--display);
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.2;
}
.ccard__sub { font-size: 15.5px; color: rgba(247, 241, 230, 0.72); line-height: 1.6; }
.ccard__addr { font-size: 19px; line-height: 1.55; font-style: normal; }
.ccard__note { font-size: 15.5px; color: var(--muted); line-height: 1.6; }
.ccard ul {
  margin: 0;
  padding-left: 20px;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--muted-soft);
}

/* --------------------------------------------------------- rechtliches */
.legal { padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(40px, 5vw, 64px); }
.legal--last { padding: 0 var(--gutter) clamp(64px, 8vw, 110px); }
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal h1 { font-size: clamp(36px, 4.8vw, 60px); line-height: 1.05; }
.legal h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.06; }
.legal__card {
  background: var(--paper);
  border-radius: 12px;
  padding: clamp(26px, 3.4vw, 40px);
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--muted-soft);
}
.legal__card p { margin: 0 0 20px; }
.legal__card p:last-child { margin: 0; }
.legal__card strong { color: var(--ink); }

/* -------------------------------------------------- subpage responsive */
@media (max-width: 640px) {
  /* Keep the status pill from squeezing the event title into a sliver. */
  .event { grid-template-columns: auto 1fr; gap: 18px; }
  .event .badge { grid-column: 1 / -1; justify-self: start; }
  .merch__pics { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr auto; }
  .price-row__vol { grid-row: 2; grid-column: 1; }
}

/* Current page in the nav — subtle, matches the hover treatment. */
.site-nav a:not(.btn)[aria-current="page"] { background: var(--nav-hover); }
.site-nav .btn[aria-current="page"] { background: var(--gold); color: var(--ink); }
