/* ═══════════════════════════════════════════════════════════════
   WEINS – Musik Duo
   Style: Elegant Minimalist
   Palette: #F8F8F6 · #1A1A1A · #B8965A
   Fonts: Raleway (headings/brand) · Inter (body)
   ═══════════════════════════════════════════════════════════════ */

@font-face { font-family: 'Raleway'; font-style: normal; font-weight: 200; font-display: swap; src: url('../fonts/raleway.woff2') format('woff2'); }
@font-face { font-family: 'Raleway'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/raleway.woff2') format('woff2'); }
@font-face { font-family: 'Raleway'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/raleway.woff2') format('woff2'); }
@font-face { font-family: 'Raleway'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/raleway.woff2') format('woff2'); }
@font-face { font-family: 'Inter';   font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter.woff2')   format('woff2'); }
@font-face { font-family: 'Inter';   font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter.woff2')   format('woff2'); }
@font-face { font-family: 'Inter';   font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter.woff2')   format('woff2'); }
@font-face { font-family: 'Inter';   font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter.woff2')   format('woff2'); }

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Design Tokens ─── */
:root {
  --bg:           #F8F8F6;
  --bg-alt:       #F2F0EC;
  --text:         #1A1A1A;
  --text-muted:   #6B6B6B;
  --accent:       #B8965A;
  --accent-dark:  #9A7A46;
  --accent-light: rgba(184,150,90,0.12);
  --border:       #E4E2DE;
  --white:        #FFFFFF;

  --font-heading: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-brand:   'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.5rem;
  --text-xl:   2rem;
  --text-2xl:  3rem;
  --text-hero: clamp(4.5rem, 14vw, 9.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 2px;
  --radius-md: 5px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.09);

  --ease:      200ms ease;
  --ease-slow: 400ms ease;

  --max-w:        1100px;
  --max-w-narrow: 720px;
  --nav-h:        72px;
}

/* ─── Base ─── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: var(--space-4);
  background: var(--accent);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

h2 { font-size: clamp(var(--text-2xl), 4.5vw, 3.75rem); margin-bottom: var(--space-10); }
h3 { font-size: var(--text-lg); font-weight: 400; margin-bottom: var(--space-2); }

p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 65ch;
  margin-bottom: var(--space-4);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.section-intro {
  font-size: var(--text-md);
  text-align: center;
  max-width: 52ch;
  margin: 0 auto var(--space-12);
}

/* ─── Layout ─── */
.container        { max-width: var(--max-w);        margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; }

.section     { padding: var(--space-32) 0; }
.section-alt { background: var(--bg-alt); }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease);
}

#navbar.scrolled {
  background: rgba(248,248,246,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav-logo {
  font-family: var(--font-brand);
  font-size: 1.55rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--white);
  transition: color var(--ease);
  flex-shrink: 0;
  cursor: pointer;
}
#navbar.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  gap: var(--space-10);
  align-items: center;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--ease), border-color var(--ease);
  cursor: pointer;
}
.nav-links a:hover             { color: var(--white); border-bottom-color: var(--accent); }
.nav-links a:focus-visible     { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
#navbar.scrolled .nav-links a  { color: var(--text-muted); }
#navbar.scrolled .nav-links a:hover { color: var(--text); border-bottom-color: var(--accent); }

.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.lang-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--ease);
}
.lang-toggle:hover          { border-color: rgba(255,255,255,0.75); color: var(--white); }
.lang-toggle:focus-visible  { outline: 2px solid var(--accent); outline-offset: 3px; }
#navbar.scrolled .lang-toggle       { border-color: var(--border); color: var(--text-muted); }
#navbar.scrolled .lang-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
}
.hamburger:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
#navbar.scrolled .hamburger span { background: var(--text); }

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  right: var(--space-4);
  left: auto;
  width: 210px;
  background: rgba(252,251,249,0.96);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 6px rgba(0,0,0,0.07);
  z-index: 99;
  padding: var(--space-2);
  transform-origin: top right;
  transform: scale(0.88) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms cubic-bezier(.34,1.3,.64,1), opacity 180ms ease;
}
.mobile-menu.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }

.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  text-align: right;
  padding: 11px var(--space-4);
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.mobile-menu a:hover, .mobile-menu a:focus {
  background: var(--accent-light);
  color: var(--accent);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100dvh;
  min-height: 580px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/DSC05094.jpg');
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.22) 30%,
    rgba(0,0,0,0.38) 55%,
    rgba(0,0,0,0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: calc(var(--nav-h) + 52vh) var(--space-6) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  align-self: flex-start;
  width: 100%;
}

.hero-tagline {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  max-width: none;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: var(--text-hero);
  font-weight: 200;
  letter-spacing: 0.28em;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  text-shadow:
    0 2px 8px rgba(60,80,40,0.35),
    0 6px 32px rgba(30,50,20,0.28),
    0 1px 0 rgba(255,255,255,0.08);
}

.hero-claim {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(var(--text-md), 2.5vw, var(--text-xl));
  color: rgba(255,255,255,0.78);
  margin: var(--space-2) 0 var(--space-6);
  max-width: none;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  z-index: 1;
  transition: color var(--ease);
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll:hover { color: rgba(255,255,255,0.9); }

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

/* Hero fade-in sequence */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.9s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.25s; }
.fade-in:nth-child(2) { animation-delay: 0.45s; }
.fade-in:nth-child(3) { animation-delay: 0.65s; }
.fade-in:nth-child(4) { animation-delay: 0.85s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 38px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover      { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(184,150,90,0.35); }
.btn-primary:active     { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover      { background: var(--accent); color: var(--white); }
.btn-outline:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(184,150,90,0.1) 100%);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
}

.about-text { display: flex; flex-direction: column; }
.about-text p { max-width: 52ch; }

/* ═══════════════════════════════════════
   CONCERTS
   ═══════════════════════════════════════ */
.concerts-list { display: flex; flex-direction: column; }

.concert-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.concert-item:first-child { border-top: 1px solid var(--border); }

.concert-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 3px;
}
.concert-weekday { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.concert-day   { font-family: var(--font-heading); font-size: var(--text-2xl); font-weight: 300; color: var(--text); line-height: 1; }
.concert-month { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.concert-year  { font-size: var(--text-xs); color: var(--text-muted); }

.concert-venue    { font-family: var(--font-heading); font-size: var(--text-md); font-weight: 500; color: var(--text); }
.concert-location { font-size: var(--text-sm); color: var(--text-muted); margin: 2px 0; max-width: none; }
.concert-details  { font-size: var(--text-xs); color: var(--text-muted); margin: 0; max-width: none; }

.concert-format {
  display: inline-block;
  margin-top: 6px;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 9px;
  border-radius: var(--radius-sm);
}

.concert-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════
   VIDEOS
   ═══════════════════════════════════════ */
.videos-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
}

/* YouTube: volle Breite */
.video-item { width: 100%; }

/* Instagram: zentriert im Portrait-Format */
.video-item--instagram {
  max-width: 420px;
}

/* Instagram-Embed Reset */
.video-item--instagram .instagram-media {
  margin: 0 auto !important;
  min-width: 0 !important;
  border-radius: var(--radius-md) !important;
}

/* Instagram Click-to-Load */
.ig-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-10) var(--space-6);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.ig-consent-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 30ch;
  margin: 0;
  line-height: 1.6;
}
.ig-consent-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--ease);
}
.ig-consent-btn:hover { background: var(--accent-dark); }
.ig-consent-link {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #111;
  box-shadow: var(--shadow-md);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin: var(--space-3) 0 0;
  max-width: none;
}

/* ═══════════════════════════════════════
   BOOKING FORM
   ═══════════════════════════════════════ */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder { color: var(--text-muted); opacity: 0.65; }

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.14);
}

input.error,
select.error,
textarea.error {
  border-color: #C0392B;
}

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

/* Submit button */
.btn-submit {
  align-self: flex-start;
  position: relative;
  min-width: 190px;
}

.btn-loading {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  animation: spin 0.9s linear infinite;
}

.btn-submit.loading .btn-text    { opacity: 0; }
.btn-submit.loading .btn-loading { display: flex; }
.btn-submit:disabled             { opacity: 0.75; cursor: not-allowed; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── CAPTCHA ─── */
.form-captcha { display: flex; }

.captcha-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  user-select: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  transition: border-color var(--ease);
  background: var(--white);
}
.captcha-label:hover { border-color: var(--text-muted); }

.captcha-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.captcha-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.captcha-label input:checked + .captcha-box {
  background: var(--accent);
  border-color: var(--accent);
}
.captcha-label input:checked + .captcha-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.captcha-text { font-size: var(--text-sm); color: var(--text); }
.form-captcha.error .captcha-label { border-color: #c0392b; }
.form-captcha.error .captcha-box   { border-color: #c0392b; }

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  color: var(--accent-dark);
  font-size: var(--text-sm);
  font-weight: 500;
}
.form-success.visible { display: flex; }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }

.contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.contact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  max-width: none;
}

.contact-link {
  font-size: var(--text-base);
  color: var(--text);
  transition: color var(--ease);
  word-break: break-word;
}
.contact-link:hover          { color: var(--accent); }
.contact-link:focus-visible  { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-text {
  margin: 0;
  max-width: none;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.cookie-text strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.cookie-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: var(--space-2); flex-shrink: 0; }
.cookie-btn {
  padding: 7px 16px;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: background var(--ease), color var(--ease);
}
.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn--decline:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); }
.cookie-btn--accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-btn--accept:hover { background: var(--accent-dark); }

/* ─── Footer ─── */
.footer {
  background: var(--text);
  padding: var(--space-12) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-brand {
  font-family: var(--font-brand);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--white);
  max-width: none;
  margin: 0;
}

.footer-nav { display: flex; gap: var(--space-8); }

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.52);
  transition: color var(--ease);
}
.footer-nav a:hover         { color: var(--accent); }
.footer-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  max-width: none;
  margin: 0;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.about-text .reveal:nth-child(2) { transition-delay: 0.1s; }
.about-text .reveal:nth-child(3) { transition-delay: 0.2s; }
.about-text .reveal:nth-child(4) { transition-delay: 0.3s; }
.concert-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.concert-item.reveal:nth-child(3) { transition-delay: 0.2s; }
.video-item.reveal:nth-child(2)   { transition-delay: 0.1s; }
.video-item.reveal:nth-child(3)   { transition-delay: 0.2s; }
.contact-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.contact-item.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid   { gap: var(--space-16); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-32: 5rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid         { grid-template-columns: 1fr; gap: var(--space-12); }
  .about-image        { max-height: 360px; max-width: 300px; margin: 0 auto; }
  .image-placeholder  { min-height: 280px; }

  .concert-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-4);
  }
  .concert-item .btn-outline,
  .concert-item .concert-tag {
    grid-column: 2;
    justify-self: start;
  }

  .videos-grid  { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav   { justify-content: center; }
}

@media (max-width: 480px) {
  .concert-item    { grid-template-columns: 1fr; }
  .concert-date    { flex-direction: row; align-items: baseline; gap: var(--space-2); }
  .concert-day     { font-size: var(--text-xl); }
  .btn-submit      { align-self: stretch; text-align: center; }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html          { scroll-behavior: auto; }
  .hero-scroll  { animation: none; }
  .reveal       { opacity: 1; transform: none; }
  .fade-in      { opacity: 1; transform: none; }
}
