/* ============================================================
   HOFL Musig – style.css
   Mobile-first · True mobile-first CSS
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --green-darkest: #0E1810;
  --green-dark:    #1B2B1D;
  --green:         #2C4A31;
  --green-mid:     #3D6B44;
  --green-light:   #6A9B6E;
  --gold:          #C8963E;
  --gold-light:    #DDB06A;
  --cream:         #F6F2EB;
  --cream-dark:    #EBE5D8;
  --white:         #FFFFFF;
  --text:          #181818;
  --text-muted:    #64748B;

  --nav-h:  60px;
  --r:      12px;
  --r-sm:   6px;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.1);

  /* Mobile bottom CTA bar height */
  --cta-bar-h: 72px;
}

@media (min-width: 1024px) {
  :root { --nav-h: 68px; }
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 10vw, 5.5rem); }
h2 { font-size: clamp(1.75rem, 6vw, 3rem); font-weight: 900; }
h3 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { line-height: 1.72; color: var(--text-muted); }
p.lead { font-size: 1rem; color: var(--text); font-weight: 400; }

@media (min-width: 768px) {
  p.lead { font-size: 1.0625rem; }
}

.text-white { color: var(--white) !important; }
.text-light { color: rgba(255,255,255,0.82) !important; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.125rem;
}

@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* Section padding — mobile compact, desktop spacious */
.section { padding: 4rem 0; }

@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 7.5rem 0; } }

.section--dark  { background: var(--green-dark); }
.section--cream { background: var(--cream); }

.section__head { text-align: center; margin-bottom: 2.5rem; }

@media (min-width: 768px) { .section__head { margin-bottom: 3.5rem; } }

.section__head--light h2 { color: var(--white); }
.section__intro {
  text-align: center;
  max-width: 620px;
  margin: -1rem auto 2.5rem;
  font-size: 1rem;
}
.section__intro strong { color: var(--text); font-weight: 600; }

@media (min-width: 768px) {
  .section__intro { font-size: 1.0625rem; margin: -1.5rem auto 3rem; }
}

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Labels ────────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}
.label--light { color: var(--gold-light); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  line-height: 1;
  /* Minimum touch target */
  min-height: 48px;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (min-width: 768px) {
  .btn { font-size: 0.9375rem; padding: 0.875rem 1.875rem; }
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,150,62,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--dark {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn--dark:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--full { width: 100%; }

/* ── Tags ──────────────────────────────────────────────────── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  padding: 0.375rem 0.875rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
}
/* backdrop via ::before so the nav itself creates no stacking context
   (backdrop-filter on the element itself would trap position:fixed children) */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s;
  pointer-events: none;
  z-index: -1;
}
.nav.scrolled::before {
  background: rgba(27, 43, 29, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.125rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px)  { .nav__inner { padding: 0 1.5rem; } }
@media (min-width: 768px)  { .nav__inner { padding: 0 2rem; } }
@media (min-width: 1024px) { .nav__inner { padding: 0 2.5rem; } }

.nav__logo {
  z-index: 1001;
  position: relative;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav__logo:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

/* ── Burger button ─────────────────────────────────────────── */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  z-index: 1001;
  position: relative;
  /* Minimum touch target */
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu — fullscreen ──────────────────────────────── */
.nav__menu {
  position: fixed;
  inset: 0;
  width: 100%;
  background: var(--green-darkest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  z-index: 950;
}
.nav__menu.open { transform: translateX(0); }

/* Backdrop overlay — not needed for fullscreen but keep for safety */
.nav__overlay {
  display: none;
}

.nav__link {
  color: rgba(255,255,255,0.75);
  font-size: 1.375rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  text-align: center;
  justify-content: center;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__link:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.nav__link:hover, .nav__link:focus-visible { color: var(--white); }
.nav__link--cta {
  color: var(--gold-light);
  border-bottom: none;
  margin-top: 1.5rem;
  font-weight: 600;
}
.nav__link--cta:first-child { border-top: none; }

/* ── Desktop menu ──────────────────────────────────────────── */
@media (min-width: 1024px) {
  .nav__burger { display: none; }
  .nav__overlay { display: none; }

  .nav__menu {
    position: static;
    flex-direction: row;
    gap: 0.25rem;
    padding: 0;
    width: auto;
    transform: none !important;
    background: none;
    box-shadow: none;
    overflow: visible;
    transition: none;
    align-items: center;
    z-index: auto;
  }

  .nav__link {
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    border: none;
    padding: 0.5rem 0.875rem;
    min-height: unset;
  }
  .nav__link:first-child { border-top: none; }
  .nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.875rem;
    right: 0.875rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s var(--ease);
  }
  .nav__link:hover { color: var(--white); }
  .nav__link:hover::after { transform: scaleX(1); }

  .nav__link--cta {
    margin-top: 0;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--gold);
    border-radius: 100px;
    color: var(--gold-light);
    min-height: unset;
  }
  .nav__link--cta::after { display: none; }
  .nav__link--cta:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
  }
}

/* ── Sticky Mobile CTA bar ─────────────────────────────────── */
.mobile-cta-bar {
  display: none;
}
.mobile-cta-bar__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s;
}
.mobile-cta-bar__tel:hover { background: rgba(255,255,255,0.15); }

/* Hide on desktop, show on mobile */
@media (min-width: 1024px) {
  .mobile-cta-bar { display: none; }
}


/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.125rem 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/band-gruppe.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 24, 16, 0.72) 0%,
    rgba(27, 43, 29, 0.65) 50%,
    rgba(44, 74, 49, 0.8)  100%
  );
}

.hero__mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  line-height: 0;
}
.hero__mountains svg { width: 100%; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
}

.hero__tagline {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.875rem;
}

@media (min-width: 768px) { .hero__tagline { font-size: 0.75rem; } }

.hero__logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 1.25rem;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
@media (min-width: 768px) { .hero__logo { max-width: 380px; } }

.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.9375rem, 2.5vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.hero__btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .hero__btns {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: none;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  z-index: 1;
  animation: bounce 2.5s ease infinite;
  transition: color 0.2s;
  padding: 0.5rem;
}
.hero__scroll:hover { color: rgba(255,255,255,0.8); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── About ─────────────────────────────────────────────────── */
.about {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
  .about__img { order: -1; }
}

@media (min-width: 1024px) {
  .about { grid-template-columns: 5fr 6fr; gap: 4rem; }
}

.about__img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }

.about__text p + p { margin-top: 1rem; }

/* ── Musicians — horizontal cards ──────────────────────────── */
.musicians-wrap {
  overflow: visible;
}

.musicians {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .musicians {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.musician {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 1.25rem;
}

@media (min-width: 560px) {
  .musician {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.musician__photo {
  flex-shrink: 0;
}
.musician__photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255,255,255,0.15);
  display: block;
}

@media (min-width: 560px) {
  .musician__photo img { width: 96px; height: 96px; }
}

.musician__body {
  flex: 1;
  min-width: 0;
}

.musician h3 {
  color: var(--white);
  margin-bottom: 0.2rem;
  font-size: 0.9375rem;
}
.musician .instrument {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.musician .bio {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  line-height: 1.55;
  margin-bottom: 0.375rem;
}
.musician .motto {
  color: var(--gold-light);
  font-size: 0.6875rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.musician__facts {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.75rem;
  text-align: center;
}
.musician__facts dt {
  width: 100%;
  color: var(--gold-light);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}
.musician__facts dd {
  width: 100%;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

/* On wider cards: 3-column facts grid, each pair stacks vertically */
@media (min-width: 560px) {
  .musician__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    gap: 0.2rem 1rem;
    justify-items: center;
    text-align: center;
  }
  .musician__facts dt { width: auto; margin-bottom: 0; }
  .musician__facts dd { width: auto; margin-bottom: 0; }
}

/* Scroll hint indicator on mobile */
.musicians-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.875rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 500;
}
.musicians-hint svg { flex-shrink: 0; }

@media (min-width: 768px) {
  .musicians-hint { display: none; }
}

/* ── Hörproben ─────────────────────────────────────────────── */
.media-single {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) { .media-single { margin-bottom: 3rem; } }

.yt-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease), opacity 0.3s;
  opacity: 0.85;
}
.yt-thumb:hover img { transform: scale(1.03); opacity: 0.7; }

.yt-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease);
}
.yt-thumb:hover .yt-thumb__play { transform: scale(1.1); }

.yt-thumb__label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.ig-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ig-cta p { color: var(--text); font-size: 1rem; }

/* ── Events ────────────────────────────────────────────────── */
.events {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid #E8E2D6;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 1024px) { .events { max-width: 820px; margin: 0 auto; } }

.event {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: var(--white);
  border-bottom: 1px solid #F0EAE0;
  transition: background 0.15s;
}
.event:last-child { border-bottom: none; }
.event:hover { background: var(--cream); }

@media (min-width: 640px) { .event { padding: 1.25rem 1.75rem; gap: 1.5rem; } }

.event__date {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--r-sm);
  padding: 0.5rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

@media (min-width: 640px) { .event__date { width: 52px; } }

.event__day {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 640px) { .event__day { font-size: 1.375rem; } }

.event__month {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Loading state */
.events__loading {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.75rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid #E8E2D6;
}
.events__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--cream-dark);
  border-top-color: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.events__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
  font-size: 0.9375rem;
}

.events__section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0;
  padding: 0.625rem 1.25rem;
}

.events__section-label--upcoming {
  color: var(--white);
  background: var(--green-dark);
  border-bottom: 2px solid var(--gold);
}

.events__section-label--past {
  color: var(--text-muted);
  background: none;
  border-top: 2px solid var(--cream);
  border-bottom: none;
}

.event--past .event__date {
  opacity: 0.35;
  filter: grayscale(1);
}

.event__body {
  flex: 1 1 0;
  min-width: 0;
}
.event__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event__time {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.1rem;
  line-height: 1.4;
}
.event__loc {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}
.event__loc-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}
.event__loc-link:hover { text-decoration: underline; }
.event--past .event__loc-link { color: var(--text-muted); }

/* right-side column */
.event__side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
}

/* "Mehr Infos" – primäre Aktion */
.event__ext-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border: 1.5px solid var(--green);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  min-height: 34px;
}
.event__ext-link:hover {
  background: var(--green);
  color: var(--white);
}
.event__ext-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact { grid-template-columns: 1fr 1.5fr; align-items: start; gap: 4rem; }
}

/* Quick contact chips on mobile */
.contact__quick {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact__quick-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 1rem 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  min-height: 72px;
}
.contact__quick-btn svg { color: var(--gold-light); }
.contact__quick-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

@media (min-width: 1024px) {
  .contact__quick { display: none; }
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 1.25rem 0 1.75rem;
}
.contact__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  transition: color 0.2s;
  min-height: 44px;
}
.contact__list a:hover { color: var(--gold-light); }
.contact__list svg { flex-shrink: 0; color: var(--gold-light); }

.occasions__title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.occasions ul { display: flex; flex-direction: column; gap: 0.5rem; }
.occasions ul li {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  padding-left: 1.125rem;
  position: relative;
}
.occasions ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.625rem;
  top: 0.35em;
}

/* Form */
.contact__form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 1.375rem 1.125rem;
}

@media (min-width: 640px) { .contact__form { padding: 2rem; } }

.form__row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 520px) { .form__row { grid-template-columns: 1fr 1fr; } }

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.form__group:last-of-type { margin-bottom: 0; }

.form__group label {
  color: rgba(255,255,255,0.65);
  font-size: 0.8125rem;
  font-weight: 500;
}
.form__group label span { color: var(--gold-light); }

.form__group input,
.form__group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm);
  padding: 0.875rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  /* Minimum 16px prevents iOS zoom on focus */
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
  /* Minimum touch-friendly height */
  min-height: 48px;
}

@media (min-width: 768px) {
  .form__group input,
  .form__group textarea { font-size: 0.9375rem; padding: 0.75rem 1rem; min-height: 44px; }
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form__group input:user-invalid,
.form__group textarea:user-invalid { border-color: #f87171; }

.form__group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }

.form__group textarea {
  resize: vertical;
  min-height: 120px;
  /* Override min-height for textarea */
}

.contact__form .btn--full { margin-top: 1.25rem; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--green-darkest);
  padding: 2.5rem 0 1.75rem;
}

@media (min-width: 768px) { .footer { padding: 3rem 0 2rem; } }

.footer__top {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 640px) {
  .footer__top { grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; }
}

.footer__logo-img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer__motto { font-size: 0.8125rem; color: var(--gold-light); font-style: italic; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color 0.2s;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.footer__links a:hover { color: var(--white); }

.footer__social { display: flex; gap: 0.875rem; }
.footer__social a {
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer__bottom > p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  transition: color 0.2s;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.footer__legal a:hover { color: var(--white); }

/* ── Scroll animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* Stagger musician cards */
.musicians .musician:nth-child(1)  { transition-delay: 0.05s; }
.musicians .musician:nth-child(2)  { transition-delay: 0.1s; }
.musicians .musician:nth-child(3)  { transition-delay: 0.15s; }
.musicians .musician:nth-child(4)  { transition-delay: 0.2s; }
.musicians .musician:nth-child(5)  { transition-delay: 0.25s; }
.musicians .musician:nth-child(6)  { transition-delay: 0.3s; }
.musicians .musician:nth-child(7)  { transition-delay: 0.35s; }

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

/* ── Inline-Link (z.B. Hörproben) ──────────────────────────── */
.text-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.text-link:hover { text-decoration-color: var(--green); }

/* ── Kalender-Dropdown ─────────────────────────────────────── */
.cal-menu {
  position: relative;
}

.cal-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border: 1.5px solid #D8D2C8;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  min-height: 34px;
}
.cal-menu__toggle:hover,
.cal-menu__toggle.is-open {
  background: var(--cream);
  border-color: #B8B2A8;
  color: var(--text);
}
.cal-menu__toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cal-menu__list {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 100;
  min-width: 170px;
  background: var(--white);
  border: 1.5px solid #E8E2D6;
  border-radius: var(--r-sm);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  list-style: none;
  margin: 0;
  padding: 0.375rem 0;
  animation: dropIn 0.12s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cal-menu__item {
  display: flex;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.1s, color 0.1s;
  box-sizing: border-box;
}
.cal-menu__item:hover {
  background: var(--cream);
  color: var(--green-dark);
}
.cal-menu__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
