/*
Theme Name:  HKO Jugendorchester
Theme URI:   https://hko-jugendorchester.de
Author:      Joshua
Description: Individuelles Theme für das Holsteinische Kammerorchester – schlank, elegant, mobilfreundlich.
Version:     1.0
License:     GNU General Public License v2 or later
Text Domain: hko
*/


:root {
  --bg:     #fffefc;
  --text:   #0d0d0d;
  --blue:   #083a78;
  --gold:   #c49a2a;
  --dark:   #111111;
  --muted:  #666666;
  --border: #e2e0dc;
  --light:  #f5f3ef;
  --max:    1140px;
  --gap:    clamp(1.25rem, 5vw, 3rem);
}

::selection { background: var(--blue); color: var(--bg); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 1.05rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); }
.section { padding: clamp(4rem, 10vw, 7rem) 0; }

/* ── Scroll-Reveal ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: calc(var(--delay, 0) * 0.1s);
  }
  .reveal.visible { opacity: 1; transform: none; }
}

/* ── Buttons ── */
.wp-block-button__link,
.wp-element-button {
  display: inline-block;
  padding: .6rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: .88rem;
  letter-spacing: .04em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  background: var(--blue);
  color: var(--bg);
  border: 2px solid var(--blue);
}
.wp-block-button__link:hover,
.wp-element-button:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(8,58,120,.42); }
.section .wp-block-buttons { margin-top: 1.5rem; }

.btn {
  display: inline-block;
  padding: .6rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: .88rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--blue);
  color: var(--bg);
  box-shadow: 0 3px 14px rgba(8,58,120,.3);
}
.btn--primary:hover { box-shadow: 0 6px 22px rgba(8,58,120,.42); }
.btn--outline {
  background: transparent;
  color: var(--bg);
  border: 1.5px solid rgba(255,254,252,.65);
}
.btn--outline:hover { background: rgba(255,254,252,.12); border-color: var(--bg); }
.btn--blue-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--blue-outline:hover { background: var(--blue); color: var(--bg); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header__bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .95rem 0;
}
.site-header__bar > nav { flex: 1; display: flex; justify-content: center; }
.site-header__actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.site-header__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  flex-shrink: 0;
}
.site-header__logo img { height: 64px; width: auto; }
.site-header__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.site-header__social { display: flex; gap: .5rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(8,58,120,.38);
}
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }


/* Nav-Liste (Desktop) */
.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .65rem .9rem;
  position: relative;
  color: var(--text);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .9rem;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  transition: width .25s ease;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--blue); }
.nav-list > li:not(.has-submenu) > a:hover::after,
.nav-list > li.active > a::after { width: calc(100% - 1.8rem); }

/* Chevron-Pfeil */
.chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .22s ease;
  flex-shrink: 0;
}
@media (min-width: 721px) {
  .has-submenu:hover > a .chevron { transform: rotate(-135deg) translateY(2px); }
}
.has-submenu.open > a .chevron { transform: rotate(-135deg) translateY(2px); }

/* Dropdown-Menü */
.has-submenu { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  min-width: 160px;
  padding: .4rem 0;
  list-style: none;
  z-index: 200;
}
@media (min-width: 721px) {
  .has-submenu:hover .submenu { display: block; }
}
.has-submenu.open .submenu { display: block; }
.submenu li a {
  display: block;
  padding: .6rem 1.25rem;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.submenu li a:hover { color: var(--blue); background: var(--light); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .65rem .75rem;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover,
.nav-toggle:focus-visible { background: var(--light); }
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-header__social { display: none; }
  .site-header__bar {
    justify-content: center;
    gap: 0;
    padding: .5rem 0;
    position: relative;
  }
  .site-header__logo img { height: 46px; }
  .site-header__bar > nav {
    flex: 0 0 0;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .site-header__actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    z-index: 100;
  }
  .nav-list.open { display: flex; }
  .nav-list > li > a {
    padding: 1rem var(--gap);
    text-transform: none;
    letter-spacing: .02em;
    font-size: .9rem;
    justify-content: space-between;
  }
  .nav-list > li > a::after { display: none; }
  /* Submenu auf Mobile: inline, eingerückt */
  .has-submenu .submenu {
    display: none;
    position: static;
    transform: none;
    border: none;
    border-top: 1px solid var(--border);
    box-shadow: none;
    background: var(--light);
    min-width: 0;
  }
  .has-submenu.open .submenu { display: block; }
  .submenu li a {
    padding: .9rem calc(var(--gap) + 1rem);
    text-transform: none;
    font-size: .88rem;
    letter-spacing: .01em;
  }
}

/* ── Hero ── */
.slide-hero {
  position: relative;
  min-height: clamp(520px, 82vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.slide-hero__img {
  position: absolute;
  left: 0;
  right: 0;
  top: -8%;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.slide-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,20,48,.95) 0%,
    rgba(8,20,48,.65) 30%,
    rgba(8,20,48,.2)  60%,
    rgba(8,20,48,.05) 100%
  );
}
.slide-hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem var(--gap) 5.5rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.slide-hero__eyebrow {
  font-family: -apple-system, sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,254,252,.9);
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.slide-hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  color: var(--bg);
  margin-bottom: 2.75rem;
  text-align: center;
  line-height: 1.08;
  text-shadow: 0 2px 32px rgba(0,0,0,.2);
}
.slide-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: scrollHintAppear 1s ease 2s forwards;
}
.scroll-hint__line {
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(255,254,252,.35);
  border-bottom: 1px solid rgba(255,254,252,.35);
  animation: scrollDrift 4.5s ease-in-out infinite;
}
@keyframes scrollHintAppear {
  to { opacity: 1; }
}
@keyframes scrollDrift {
  /* 0–44%: aktive Bewegung (~2s) */
  0%   { opacity: 0;    transform: translateY(-8px) rotate(45deg); }
  16%  { opacity: .22; }
  28%  { opacity: .22; }
  44%  { opacity: 0;    transform: translateY(16px) rotate(45deg); }
  /* 44–45%: unsichtbar zurück nach oben springen */
  45%  { opacity: 0;    transform: translateY(-8px) rotate(45deg); }
  /* 45–100%: Pause (~2.5s) */
  100% { opacity: 0;    transform: translateY(-8px) rotate(45deg); }
}

/* ── Termine-Sektion ── */
.events-home {
  background: #eef2f8;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  color: var(--dark);
}
.events-home__inner { max-width: 760px; }
.events-home__label {
  font-family: -apple-system, sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}
.events-home__title {
  color: var(--dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}
.event-list { list-style: none; }
.event-item {
  border-bottom: 1px solid var(--border);
}
.event-item:first-child { border-top: 1px solid var(--border); }

/* Shared row: <button> for expandable, <a> for map-link */
.event-item__btn,
.event-item--link > a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.1rem 0;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  text-align: left;
  font: inherit;
  text-decoration: none;
  transition: opacity .2s;
}
.event-item__btn:hover,
.event-item--link > a:hover { opacity: .75; }

.event-date { flex: 0 0 50px; text-align: center; }
.event-date__day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
}
.event-date__mon {
  font-family: -apple-system, sans-serif;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: .2rem;
}
.event-info { flex: 1; }
.event-info__title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.3;
}
.event-info__meta {
  font-family: -apple-system, sans-serif;
  font-size: .78rem;
  color: var(--muted);
  margin-top: .3rem;
}

/* Map-link arrow ↗ */
.event-arrow {
  font-size: 1rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.event-item--link > a:hover .event-arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}

/* Expandable chevron */
.event-chevron-icon {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform .25s, border-color .25s;
}
.event-item__btn[aria-expanded="true"] .event-chevron-icon {
  transform: rotate(-135deg);
  border-color: var(--blue);
}

/* Details accordion panel */
.event-item__details {
  padding: 0 0 1.2rem calc(50px + 1.5rem);
  overflow: hidden;
}
.event-item__details p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.event-more { margin-top: 2rem; align-self: flex-start; }

/* ── Mitmachen CTA ── */
.join-cta {
  background: var(--blue);
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.join-cta__inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.join-cta__text { flex: 1; }
.join-cta__eyebrow {
  font-family: -apple-system, sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,254,252,.5);
  margin-bottom: .6rem;
}
.join-cta__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--bg);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.join-cta__body {
  color: rgba(255,254,252,.72);
  line-height: 1.75;
  max-width: 480px;
  margin: 0;
}
.join-cta__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}
.btn--bg {
  background: var(--bg);
  color: var(--blue);
  border-color: var(--bg);
  font-weight: 600;
}
.btn--bg:hover { background: rgba(255,254,252,.9); }
.btn--outline-light {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255,254,252,.35);
}
.btn--outline-light:hover { border-color: var(--bg); }
@media (max-width: 720px) {
  .join-cta__inner { flex-direction: column; gap: 2rem; }
  .join-cta__actions { flex-direction: row; flex-wrap: wrap; }
}

/* ── Intro ── */
.intro { padding: clamp(4rem, 10vw, 7rem) 0; }
.intro .wrap { max-width: 800px; }
.intro__label {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: -apple-system, sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.intro__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.intro__lead {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: var(--text);
}

/* ── Instagram Grid ── */
.insta-grid {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--light);
}
.insta-grid__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.insta-grid__eyebrow {
  font-family: -apple-system, sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .6rem;
}
.insta-grid__head h2 { margin-bottom: .5rem; }
.insta-grid__sub { color: var(--muted); font-size: .95rem; }
.insta-grid__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
@media (max-width: 540px) {
  .insta-grid__photos { grid-template-columns: repeat(2, 1fr); }
}
.insta-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  display: block;
  background: var(--border);
}
.insta-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s ease;
}
.insta-grid__item:hover img { transform: scale(1.07); }
.insta-grid__hov {
  position: absolute;
  inset: 0;
  background: rgba(8,58,120,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.insta-grid__item:hover .insta-grid__hov { opacity: 1; }
.insta-grid__hov svg {
  width: 32px;
  height: 32px;
  fill: rgba(255,254,252,.9);
}
.insta-grid__foot { text-align: center; margin-top: 2rem; }

/* ── Team Grid ── */
.page-hero {
  background: var(--bg);
  color: var(--text);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin: 0;
}
.page-hero__eyebrow {
  font-family: -apple-system, sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .75rem;
}
.page-hero__breadcrumb {
  font-family: -apple-system, sans-serif;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.page-hero__breadcrumb a { color: var(--muted); }
.page-hero__breadcrumb a:hover { color: var(--blue); }
.page-hero .wrap::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-top: 1.25rem;
}

.team-intro { max-width: 640px; margin-bottom: 3.5rem; }
.team-grid { display: grid; gap: 1.5rem; }
.team-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.team-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.team-card__img {
  width: 180px;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%);
  transition: filter .35s;
}
.team-card:hover .team-card__img { filter: grayscale(0%); }
.team-card__placeholder {
  width: 180px;
  min-height: 220px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--border);
}
.team-card__body { padding: 1.75rem 2rem; }
.team-card__role {
  font-family: -apple-system, sans-serif;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .4rem;
}
.team-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .8rem;
  color: var(--text);
}
.team-card__desc {
  font-size: .97rem;
  color: var(--muted);
  margin-bottom: 1.15rem;
  line-height: 1.6;
}
.team-card__mail {
  font-family: -apple-system, sans-serif;
  font-size: .8rem;
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .2s;
}
.team-card__mail:hover { text-decoration-color: var(--blue); }

@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-card__img {
    width: 100%;
    height: 300px;
    min-height: auto;
    object-position: top center;
  }
  .team-card__placeholder { width: 100%; height: 160px; min-height: auto; }
  .team-card__body { padding: 1.25rem 1.5rem; }
}

/* ── Kontakt ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { font-size: 1rem; color: var(--muted); margin-bottom: .65rem; }
.contact-info a  { color: var(--blue); }
.contact-info a:hover { text-decoration: underline; }

.hko-form { display: flex; flex-direction: column; gap: 1.1rem; }
.hko-form label {
  font-family: -apple-system, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .35rem;
  color: var(--muted);
}
.hko-form input,
.hko-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.hko-form input:focus,
.hko-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8,58,120,.1);
}
.hko-form textarea { resize: vertical; min-height: 160px; }
.hko-form .btn { align-self: flex-start; margin-top: .5rem; }

@media (max-width: 700px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Page Content ── */
.page-content { max-width: 780px; }
.page-content h2 {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  margin-bottom: .85rem;
  border-top: 1px solid var(--border);
}
.page-content h2:first-child { border-top: none; padding-top: 0; }
.page-content h3 { margin-top: 1.75rem; margin-bottom: .5rem; color: var(--blue); }
.page-content p, .page-content li { margin-bottom: .9rem; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content a { color: var(--blue); text-decoration: underline; }
.page-content hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,254,252,.6);
  padding: 2.25rem 0;
  font-family: -apple-system, sans-serif;
  font-size: .8rem;
  letter-spacing: .03em;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.site-footer a { color: rgba(255,254,252,.6); transition: color .2s; }
.site-footer a:hover { color: var(--bg); }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }

/* ── Termine: Konzert-Karten ── */
.termine-section { padding: clamp(3rem, 7vw, 5rem) 0; }
.termine-section + .termine-section { padding-top: 0; }
.probe-section { background: var(--light); }
.probe-section__hint { max-width: 560px; color: var(--muted); margin-bottom: 2rem; font-size: .95rem; }
.termine-section__label {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: -apple-system, sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.termine-section__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.konzert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.konzert-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s, transform .3s;
}
.konzert-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.konzert-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(10%);
  transition: filter .35s;
}
.konzert-card:hover .konzert-card__img { filter: grayscale(0%); }
.konzert-card__img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,254,252,.15);
}
.konzert-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--blue);
  color: var(--bg);
  text-align: center;
  padding: .55rem .8rem;
  line-height: 1;
}
.konzert-card__badge-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}
.konzert-card__badge-mon {
  font-family: -apple-system, sans-serif;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .75;
  display: block;
  margin-top: .15rem;
}
.konzert-card__body { padding: 1.4rem 1.5rem; }
.konzert-card__type {
  font-family: -apple-system, sans-serif;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .4rem;
}
.konzert-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.2;
}
.konzert-card__meta {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .75rem;
}
.konzert-card__admission {
  border-top: 1px solid var(--border);
  padding-top: .7rem;
  font-family: -apple-system, sans-serif;
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.konzert-card__admission-cta {
  color: var(--blue);
  font-weight: 600;
}

/* ── Termine: Probe-Liste (heller Hintergrund) ── */
.probe-list { list-style: none; }
.probe-item { border-bottom: 1px solid var(--border); }
.probe-item:first-child { border-top: 1px solid var(--border); }
.probe-item > a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.probe-item > a:hover { opacity: .7; }
.probe-date { flex: 0 0 50px; text-align: center; }
.probe-date__day {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.probe-date__mon {
  font-family: -apple-system, sans-serif;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: .2rem;
}
.probe-info { flex: 1; }
.probe-info__title { font-weight: 600; font-size: 1rem; }
.probe-info__meta { font-family: -apple-system, sans-serif; font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.probe-info__meta--sub { opacity: .75; font-size: .8em; }
.probe-arrow { color: var(--muted); flex-shrink: 0; transition: color .2s, transform .2s; font-size: 1rem; }
.probe-item > a:hover .probe-arrow { color: var(--gold); transform: translate(2px, -2px); }
.team-intro a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ── Konzert-Detailseite ── */
.concert-meta-strip {
  background: var(--dark);
  padding: 2rem 0;
}
.concert-meta-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.concert-meta-item__label {
  font-family: -apple-system, sans-serif;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .3rem;
}
.concert-meta-item__value {
  color: var(--bg);
  font-size: 1rem;
  font-weight: 500;
}
.concert-meta-item__value a { color: rgba(255,254,252,.7); text-decoration: underline; text-underline-offset: 3px; }
.concert-meta-item__value a:hover { color: var(--bg); }

.concert-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .concert-body { grid-template-columns: 1fr; gap: 2.5rem; } }

.program-list { list-style: none; margin-bottom: 0; }
.program-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.program-item:first-child { border-top: 1px solid var(--border); }
.program-item__composer {
  font-family: -apple-system, sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  font-weight: 600;
  padding-top: .2rem;
}
.program-item__work {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .2rem;
}
.program-item__detail { font-size: .85rem; color: var(--muted); }

@media (max-width: 500px) {
  .program-item { grid-template-columns: 1fr; gap: .3rem; }
}

.admission-box {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.admission-box__label {
  font-family: -apple-system, sans-serif;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .5rem;
}
.admission-box__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1.2;
}
.admission-box p { font-size: .9rem; color: var(--muted); }
.admission-box .btn { width: 100%; text-align: center; margin-top: 1.25rem; }
.admission-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}
.admission-box__ticket-link {
  display: block;
  text-align: center;
  font-family: -apple-system, sans-serif;
  font-size: .8rem;
  color: var(--blue);
  text-decoration: underline;
  margin-top: .75rem;
}
