:root {
  --bg: #111111;
  --bg-soft: #151515;
  --panel: #1d1d1d;
  --text: #fff7ec;
  --muted: #d3c4b8;
  --accent: #ff3b1f;
  --accent-dark: #ad170d;
  --gold: #f6b237;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 58px;
  text-decoration: none;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.42));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 128px 0 72px;
  background:
    linear-gradient(120deg, #060606 0%, #0d0b0a 58%, #160b09 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 22px);
  opacity: 0.45;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 0 auto;
  width: min(72vw, 1180px);
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0) 0%, rgba(6, 6, 6, 0.12) 18%, rgba(6, 6, 6, 0.02) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.03) 45%),
    url("../img/bandfoto.png") center bottom / cover no-repeat;
  opacity: 0.86;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 78px 0 0 auto;
  width: min(72vw, 1180px);
  background: linear-gradient(90deg, #060606 0%, rgba(6, 6, 6, 0.52) 22%, rgba(6, 6, 6, 0.05) 56%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-copy {
  max-width: 620px;
  padding: 34px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(3.6rem, 10vw, 8rem);
  letter-spacing: 0;
  text-shadow:
    0 3px 0 rgba(173, 23, 13, 0.65),
    0 18px 42px rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.hero-text {
  max-width: 560px;
  color: #f5e9db;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff5a36;
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.section {
  padding: 84px 0;
  scroll-margin-top: 88px;
}

.section-alt {
  background: var(--bg-soft);
}

.intro {
  position: relative;
  margin-top: -1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0e0e0e, #151111);
}

.intro-grid,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.section-heading {
  max-width: 620px;
}

.panel,
.card,
.member-card,
.contact-card,
.agenda-item,
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.panel {
  padding: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.repertoire-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.repertoire-copy {
  padding: 28px 0;
}

.spotify-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.spotify-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 24px;
}

.member-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
}

.member-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--accent);
}

.member-number {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.member-image {
  position: relative;
  height: 320px;
  margin: -26px -26px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 86%, rgba(255, 255, 255, 0.11), transparent 0 22%, transparent 56%),
    radial-gradient(circle at 50% 24%, rgba(246, 178, 55, 0.12), transparent 0 28%, transparent 54%),
    linear-gradient(180deg, #2a2927 0%, #171514 62%, #0f0f0f 100%);
  border-bottom: 1px solid var(--line);
}

.member-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.66) 24%, rgba(0, 0, 0, 0.22) 52%, transparent 68%);
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
}

.member-image::after {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 18px;
  left: 14%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.34) 42%, transparent 72%);
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}

.member-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(var(--member-image-shift, 18px));
  filter:
    saturate(0.92)
    contrast(1.04)
    brightness(0.97)
    drop-shadow(0 20px 22px rgba(0, 0, 0, 0.5));
}

.member-image-herman img {
  --member-image-shift: 24px;
  object-position: center top;
}

.member-image-ron img {
  --member-image-shift: 20px;
  object-position: center top;
}

.member-image-jasper img {
  --member-image-shift: 24px;
  object-position: center top;
}

.member-image-jan img {
  --member-image-shift: 18px;
  object-position: center top;
}

.member-image-robbert img {
  --member-image-shift: 22px;
  object-position: center top;
}

.member-image-dick img {
  --member-image-shift: 24px;
  object-position: center top;
}

.card h3,
.member-card h3,
.agenda-item h3 {
  color: var(--text);
}

.member-role {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.media-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.agenda-list {
  display: grid;
  gap: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-item {
  padding: 24px;
}

.faq-item a {
  color: var(--gold);
}

.agenda-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px;
}

.agenda-date {
  color: var(--gold);
  font-weight: 800;
}

.contact {
  background:
    linear-gradient(rgba(10, 8, 8, 0.9), rgba(10, 8, 8, 0.97)),
    #0f0d0d;
}

.contact-card {
  padding: 28px;
}

.booking-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.booking-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.booking-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.contact-card a:not(.button),
.site-footer a {
  color: var(--gold);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #0c0c0c;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-content p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero {
    background:
      linear-gradient(120deg, #060606 0%, #0b0909 52%, #170807 100%);
  }

  .hero::before,
  .hero::after {
    width: 76vw;
  }

  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #151515;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    display: block;
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 72px;
    background:
      linear-gradient(180deg, #060606 0%, #100908 100%);
  }

  .hero::before {
    inset: 78px 0 auto 0;
    width: 100%;
    height: 340px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, #060606 100%),
      url("../img/bandfoto.png") center bottom / cover no-repeat;
    opacity: 0.7;
  }

  .hero::after {
    inset: 78px 0 auto 0;
    width: 100%;
    height: 340px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, #060606 100%);
  }

  .hero-content {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 260px;
  }

  .section {
    padding: 60px 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .button {
    width: 100%;
  }

  .member-image {
    height: 360px;
  }

  .intro-grid,
  .content-grid,
  .contact-grid,
  .cards,
  .repertoire-grid,
  .member-grid,
  .faq-grid,
  .agenda-item {
    grid-template-columns: 1fr;
  }

  .repertoire-copy {
    padding: 0;
  }

  .media-panel,
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
}
