:root {
  --color-bg: #1a0a0f;
  --color-bg-alt: #2b1016;
  --color-accent: #d4af37;
  --color-accent-dark: #a8862a;
  --color-text: #f5e9d9;
  --color-text-muted: #c9b8a8;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7rem;
}

@media (max-width: 768px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 3.5rem;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

.floating-notes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-note {
  position: absolute;
  bottom: -10%;
  color: var(--color-accent);
  opacity: 0;
  animation-name: float-note;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes float-note {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-110vh) translateX(20px) rotate(15deg);
    opacity: 0;
  }
}

h1, h2, h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); line-height: 1.2; }

p { margin-bottom: 1rem; }

.section-intro {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dark); }

img { max-width: 100%; display: block; }

.site-header {
  background: rgba(26, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu { display: flex; gap: 1.5rem; }

.nav-menu a {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.hero-fullbleed {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding: var(--space-xl) 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  z-index: 0;
}

.hero-fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 10, 15, 0.92) 0%, rgba(26, 10, 15, 0.72) 26%, rgba(26, 10, 15, 0.28) 48%, rgba(26, 10, 15, 0) 62%);
  z-index: 1;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  animation: hero-scroll-pulse 2.4s ease-in-out infinite;
  z-index: 2;
}

@keyframes hero-scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; opacity: 0.7; }
}

.hero-fullbleed-inner {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-name {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: var(--space-md);
  text-transform: none;
  letter-spacing: normal;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.placeholder-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  opacity: 0.6;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
}

.section-alt {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn:hover { background: var(--color-accent-dark); color: var(--color-bg); }

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  position: relative;
  display: block;
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 0.75rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.card-year-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.card-image-placeholder {
  aspect-ratio: 1 / 1;
  background: var(--color-bg);
  border: 1px solid var(--color-accent-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.sfeer-item {
  position: relative;
  cursor: pointer;
}

.sfeer-video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--color-accent-dark);
  border-radius: 6px;
  display: block;
  background: var(--color-bg);
}

.sfeer-play-button {
  width: 56px;
  height: 56px;
  font-size: 1.1rem;
}

.sfeer-item:hover .sfeer-play-button,
.sfeer-item:focus-visible .sfeer-play-button {
  background: var(--color-accent);
  color: var(--color-bg);
}

.sfeer-item.is-playing .sfeer-play-button {
  display: none;
}

.portrait-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid var(--color-accent-dark);
  border-radius: 8px;
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: var(--space-md);
}

.contact-info h3 { margin-top: 0; }
.contact-info p { margin-bottom: 0.5rem; color: var(--color-text-muted); }

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: 1.5rem;
  margin-bottom: var(--space-lg);
}

.agenda-empty {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
  margin-bottom: var(--space-lg);
}

.agenda-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

.agenda-date {
  flex: 0 0 auto;
  min-width: 72px;
  text-align: center;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 1.1;
}

.agenda-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.agenda-date .month {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agenda-details { flex: 1 1 auto; }
.agenda-details .location { font-weight: 600; margin-bottom: 0.25rem; }
.agenda-details .event { color: var(--color-text-muted); margin-bottom: 0; }

.video-embed-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 1.5rem auto 0;
  aspect-ratio: 16 / 9;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-embed-wrapper:hover .video-play-button {
  background: var(--color-accent);
  color: var(--color-bg);
}

.spotify-embed-wrapper {
  max-width: 700px;
  margin: 1.5rem auto 0;
  min-height: 352px;
  background: var(--color-bg-alt);
  border-radius: 8px;
  overflow: hidden;
}

.spotify-fallback {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  color: var(--color-text-muted);
}

.cta-band {
  background: var(--color-accent);
  color: var(--color-bg);
  text-align: center;
  padding: var(--space-xl) 1.5rem;
}

.cta-band h2 { color: var(--color-bg); }
.cta-band .btn { background: var(--color-bg); color: var(--color-accent); }
.cta-band .btn:hover { background: var(--color-bg-alt); color: var(--color-accent); }

form.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form.booking-form label { font-weight: 600; }

form.booking-form input,
form.booking-form textarea {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-accent-dark);
  color: var(--color-text);
  padding: 0.6rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}

form.booking-form textarea { min-height: 120px; resize: vertical; }

.site-footer {
  background: var(--color-bg-alt);
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    display: none;
  }
  .nav-menu.nav-open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-bg-photo {
    object-position: 48% 50%;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}
