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

:root {
  --cream:      #f5f0e8;
  --warm:       #ede5d4;
  --sand:       #d6c9b0;
  --taupe:      #a8957a;
  --brown:      #6b5340;
  --dark:       #2e2118;
  --text:       #3a2d20;
  --light-text: #7a6a56;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 56px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav-left {
  display: flex;
  gap: 36px;
  list-style: none;
  order: 2;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  flex: 0 0 auto;
  order: 1;
  margin-right: auto;
}

.nav-right {
  display: flex;
  gap: 36px;
  list-style: none;
  margin-left: auto;
  order: 3;
}

.nav-left a, .nav-right a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.25s;
}
.nav-left a:hover, .nav-right a:hover { opacity: 1; }

/* Hamburger — mobiel */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  order: 3;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobiel menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 1; }

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--taupe);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  z-index: 1001;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--cream); }

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 30%;
  display: block;
  filter: brightness(0.72) saturate(0.65);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(46,33,24,0.9) 0%, rgba(46,33,24,0.1) 55%, transparent 100%),
    linear-gradient(to right, rgba(46,33,24,0.35) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 72px 80px;
}

/* Naam als subtitel boven de grote lijn */
.hero-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 16px;
  margin-bottom: 0;
}

/* Grote hoofdtitel */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.01em;
  max-width: 820px;
}

/* ─── SHARED SECTION ─── */
section { padding: 128px 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}

.section-label { display: none; }

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7.5vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 44px;
}

/* ─── ABOUT ─── */
#about { background: var(--cream); }

.about-text-only { max-width: 720px; margin: 0 auto; }

#about .section-heading { text-align: center; }

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 32px;
}

.about-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--light-text);
  margin-bottom: 22px;
}

/* ─── QUOTE SECTION (foto als achtergrond) ─── */
.quote-section {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.quote-bg {
  position: absolute;
  inset: 0;
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.45) saturate(0.4);
}

.quote-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(46,33,24,0.7) 0%, rgba(46,33,24,0.2) 70%);
}

.quote-inner {
  position: relative;
  z-index: 1;
  padding: 0 72px;
  max-width: 900px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.42;
  color: var(--cream);
}

.quote-ref {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.75;
}

/* ─── MUSIC ─── */
#music { background: var(--warm); }

.music-intro {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light-text);
  max-width: 520px;
  margin-bottom: 56px;
}

/* Tabs */
.music-tabs {
  display: flex;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--sand);
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 28px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
}
.tab-btn.active { color: var(--dark); border-bottom-color: var(--brown); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Songs grid */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.song-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
}
.song-card:hover { transform: translateY(-5px); }
.song-card.no-stream { cursor: default; }
.song-card.no-stream:hover { transform: none; }

.song-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.song-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78);
  transition: filter 0.35s;
}
.song-card:hover .song-cover-wrap img { filter: saturate(1); }

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,33,24,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.song-card:hover:not(.no-stream) .play-overlay { background: rgba(46,33,24,0.35); }

.play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.song-card:hover:not(.no-stream) .play-icon { opacity: 1; transform: scale(1); }

.soon-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(46,33,24,0.78);
  color: var(--sand);
  padding: 4px 10px;
}

.song-meta { padding: 16px 0 0; }

.new-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--brown);
  color: var(--cream);
  padding: 3px 10px;
  margin-bottom: 8px;
  width: fit-content;
}

.song-number {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--taupe);
  margin-bottom: 5px;
  display: block;
}

.song-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
  display: block;
}

.song-year {
  font-size: 14px;
  font-weight: 300;
  color: var(--light-text);
  display: block;
}

/* Streaming knoppen */
.streaming-links {
  display: flex;
  gap: 14px;
  margin-top: 52px;
  flex-wrap: wrap;
  align-items: center;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--sand);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--brown);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.stream-btn:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.stream-btn svg { flex-shrink: 0; }

/* Spotify modal */
.spotify-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(46,33,24,0.75);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.modal-inner {
  background: var(--cream);
  padding: 40px;
  max-width: 560px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--taupe);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--dark); }

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 24px;
}

/* YouTube kaarten */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.video-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.75);
  transition: filter 0.3s;
}
.video-card:hover .video-thumb img { filter: brightness(0.65) saturate(0.75); }

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245,240,232,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.video-card:hover .video-play-btn { transform: scale(1.1); background: var(--cream); }

.video-label {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
}

.video-sub {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 300;
  color: var(--light-text);
}

/* ─── CONTACT ─── */
#contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.contact-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--light-text);
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

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

label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
}

input, textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  resize: none;
}

input:focus, textarea:focus { border-color: var(--brown); }
input::placeholder, textarea::placeholder { color: var(--sand); }

.form-submit {
  margin-top: 16px;
  align-self: flex-start;
  background: var(--dark);
  color: var(--cream);
  border: none;
  padding: 18px 48px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--brown); }

/* Succes melding */
.form-success {
  display: none;
  padding: 28px 0;
}
.form-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
}
.form-success-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--light-text);
  line-height: 1.8;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 52px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-socials {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-socials a {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--taupe);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer-socials a:hover { color: var(--cream); }

.footer-copy {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--taupe);
}

/* ─── REVEAL ─── */
.reveal { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  /* Nav: logo links, hamburger rechts */
  nav {
    padding: 20px 24px;
  }
  .nav-left { 
    display: none;
  }
  .nav-right { 
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-logo { 
    text-align: left;
  }

  .hero-content { padding: 0 28px 64px; }
  .hero-bg img { object-position: 42% 20%; }
  .hero-title { font-size: clamp(36px, 8vw, 64px); }

  .songs-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .container { padding: 0 28px; }
  section { padding: 88px 0; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 28px; }
  .quote-section { height: auto; min-height: 320px; padding: 80px 0; }
  .quote-inner { padding: 0 28px; }
}

@media (max-width: 540px) {
  .songs-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .music-tabs { overflow-x: auto; }
  .streaming-links { flex-direction: column; align-items: flex-start; }
}
