:root {
  --red: #C8102E;
  --red-dark: #A00C24;
  --yellow: #FFD60A;
  --yellow-soft: #FFF4B8;
  --ink: #1A1A1A;
  --text: #2B2B2B;
  --muted: #6B6B6B;
  --line: #E5E5E5;
  --bg: #FFFFFF;
  --bg-soft: #FAF7F2;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px;
  z-index: 1000;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
  font-weight: 800; font-size: 1.05rem; line-height: 1.1;
}
.brand-logo {
  height: 56px; width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-text small {
  display: block; font-weight: 500; color: var(--muted);
  font-size: .8rem; margin-top: 2px;
}
@media (max-width: 520px) {
  .brand-logo { height: 44px; }
}
@media (max-width: 360px) {
  .brand-logo { height: 38px; }
}

.nav-toggle {
  display: none;
  background: var(--ink); color: #fff;
  border: 0; padding: 10px 16px; border-radius: 8px;
  font-size: 1rem; cursor: pointer; font-weight: 600;
}

.nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px; align-items: center;
}
.nav-menu a {
  display: block; padding: 10px 14px;
  color: var(--ink); text-decoration: none;
  font-weight: 600; border-radius: 8px;
  font-size: 1rem;
}
.nav-menu a:hover, .nav-menu a.active { background: var(--bg-soft); color: var(--red); }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 12px; font-size: 1.1rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-left: 0; margin-top: 8px; border-radius: 8px !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-weight: 700; font-size: 1.05rem;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .1s, background .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: #FFC800; color: var(--ink); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 18px 34px; font-size: 1.15rem; }

/* ---------- Hero ---------- */
.hero {
  background: #fff;
  color: var(--ink);
  padding: 44px 0 52px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-visual { justify-self: end; width: 100%; max-width: 360px; }
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.hero .eyebrow {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  margin-bottom: 18px; letter-spacing: .02em;
}
.hero h1 { color: var(--ink); margin-bottom: .25em; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero .lead { font-size: 1.15rem; opacity: .9; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 820px) {
  .hero { padding: 32px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { order: -1; justify-self: center; max-width: 320px; }
  .hero .lead { font-size: 1.05rem; }
}
@media (max-width: 520px) {
  .hero-visual { max-width: 260px; }
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.alt { background: var(--bg-soft); }
.section-head { max-width: 780px; margin-bottom: 40px; }
.section-head .kicker {
  color: var(--red); font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; font-size: .9rem;
  margin-bottom: 8px;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }
.card.accent-yellow { border-top: 6px solid var(--yellow); }
.card.accent-red { border-top: 6px solid var(--red); }

/* ---------- Konzert-Liste ---------- */
.concert {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
}
.concert-date {
  background: var(--red); color: #fff;
  border-radius: 10px;
  padding: 16px 18px; min-width: 120px;
  text-align: center;
  align-self: start;
}
.concert-date .day { font-size: 2.4rem; font-weight: 900; line-height: 1; display: block; }
.concert-date .month { font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: .85rem; display: block; margin-top: 4px; }
.concert-date .time { display: block; margin-top: 6px; font-size: .9rem; opacity: .9; }
.concert h3 { margin: 0 0 6px; }
.concert .concert-sub { color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.concert .program li { margin-bottom: 6px; }
.concert .meta {
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: .95rem;
}
.concert .meta strong { color: var(--ink); }
.concert .price {
  display: inline-block; background: var(--yellow); color: var(--ink);
  padding: 4px 10px; border-radius: 6px; font-weight: 700;
}
@media (max-width: 640px) {
  .concert { grid-template-columns: 1fr; gap: 16px; }
  .concert-date { display: flex; gap: 14px; align-items: center; min-width: 0; padding: 12px 16px; }
  .concert-date .day { font-size: 1.8rem; }
}

/* ---------- Featured / CTA blocks ---------- */
.cta-band {
  background: var(--ink); color: #fff;
  padding: 56px 0;
  position: relative;
}
.cta-band h2 { color: #fff; }
.cta-band p { opacity: .9; max-width: 640px; }
.cta-band .btn-primary { background: var(--yellow); color: var(--ink); }
.cta-band .btn-primary:hover { background: #FFC800; }

.featured-pdf {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px;
  align-items: center;
  background: var(--yellow-soft);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.featured-pdf .pdf-icon {
  width: 56px; height: 56px; background: var(--red); color: #fff;
  display: grid; place-items: center; border-radius: 10px;
  font-weight: 900; font-size: .95rem;
}
.featured-pdf h3 { margin: 0 0 4px; }
.featured-pdf p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 640px) {
  .featured-pdf { grid-template-columns: 1fr; text-align: center; }
  .featured-pdf .pdf-icon { margin: 0 auto; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: #DDD;
  padding: 56px 0 28px;
}
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 1.1rem; }
.site-footer a { color: #FFD60A; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 36px;
}
.footer-bottom {
  border-top: 1px solid #333; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .9rem; color: #999;
}
.footer-bottom a { color: #BBB; text-decoration: none; margin-right: 18px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Forms ---------- */
.form-block {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
  max-width: 720px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-weight: 600; color: var(--ink);
  margin-bottom: 6px; font-size: 1rem;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 8px;
  font-size: 1.05rem; font-family: inherit;
  background: #fff; color: var(--text);
}
.form-row input[type="radio"],
.form-row input[type="checkbox"] {
  width: auto; padding: 0;
  border: 0; border-radius: 0;
  margin: 4px 8px 0 0;
  flex: 0 0 auto;
  accent-color: var(--red);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row .help { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.form-row.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-row.row-2 > div { margin-bottom: 18px; }
@media (max-width: 600px) { .form-row.row-2 { grid-template-columns: 1fr; } }

.radios { display: grid; gap: 10px; }
.radios label {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  margin: 0;
  transition: border-color .15s, background .15s;
}
.radios label:hover { border-color: var(--red); }
.radios label:has(input:checked) {
  border-color: var(--red); background: rgba(200,16,46,.04);
}
.radios label > span {
  min-width: 0;
}

.note-box {
  background: var(--yellow-soft); border-left: 4px solid var(--yellow);
  padding: 18px 22px; border-radius: 8px;
  margin: 24px 0;
}
.note-box p:last-child { margin-bottom: 0; }

/* ---------- Misc ---------- */
.lead-text { font-size: 1.2rem; color: var(--text); }
.dot { color: var(--red); }
.tag {
  display: inline-block; background: var(--yellow); color: var(--ink);
  padding: 4px 10px; border-radius: 6px; font-weight: 700; font-size: .85rem;
}
.divider { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
ul.clean { list-style: none; padding: 0; margin: 0; }
ul.clean li { padding: 8px 0; border-bottom: 1px solid var(--line); }
ul.clean li:last-child { border-bottom: 0; }

.bank-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 28px;
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Monaco, monospace;
  font-size: 1rem; line-height: 1.8;
}
.bank-card strong { color: var(--ink); font-family: inherit; }

.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li {
  position: relative; padding-left: 36px; padding-bottom: 24px;
  border-left: 2px solid var(--yellow); margin-left: 10px;
}
.timeline li::before {
  content: ""; position: absolute; left: -8px; top: 4px;
  width: 14px; height: 14px; background: var(--red); border-radius: 50%;
}
.timeline li:last-child { border-left-color: transparent; }
.timeline .year { font-weight: 800; color: var(--red); display: block; margin-bottom: 4px; }

/* ---------- Ticket-Info Box ---------- */
.ticket-info {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFF 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.ticket-info-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px;
}
.ticket-info-icon {
  font-size: 1.8rem; line-height: 1;
  background: var(--yellow); color: var(--ink);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
}
.ticket-info p { margin: 8px 0; }

.btn-ticket {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff !important;
  padding: 8px 16px; border-radius: 8px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
  transition: background .15s;
  margin-left: auto;
}
.btn-ticket:hover { background: var(--red-dark); }

/* ---------- Mobile Polish ---------- */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .concert { padding: 18px; }
  .ticket-info { padding: 18px 16px; }
  section { padding: 48px 0; }
  .cta-band { padding: 40px 0; }
  .btn-lg { padding: 14px 22px; font-size: 1rem; }
  .btn { padding: 12px 20px; font-size: 1rem; }
  .featured-pdf { padding: 18px; gap: 14px; }
  .featured-pdf .pdf-icon { width: 48px; height: 48px; font-size: .85rem; }
  .concert .meta { gap: 10px; }
  .btn-ticket { width: 100%; justify-content: center; margin-left: 0; margin-top: 4px; }
  .cta-band .container { gap: 18px; }
  .site-footer { padding: 40px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
}
@media (max-width: 420px) {
  .nav { padding: 10px 16px; }
  .brand-text small { font-size: .68rem; }
  .hero { padding: 24px 0 32px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav, .cta-band, .hero-actions, .ticket-info, .btn-ticket { display: none; }
  body { font-size: 14px; }
}
