:root {
  --dark: #1b1511;
  --dark-warm: #241a14;
  --cream: #eee5d8;
  --ochre: #c08a3b;
  --line: rgba(238,229,216,.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: var(--dark);
  background-image:
    linear-gradient(
      90deg,
      rgba(27,21,17,.92) 0%,
      rgba(27,21,17,.58) 35%,
      rgba(27,21,17,.10) 70%
    ),
    url('/assets/images/hero-tijn.webp');
  background-position: center, center top;
  background-size: cover, auto 200%;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

nav {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 5vw;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .15em;
}

nav a {
  margin-left: 25px;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 0 6vw 10vh;
  max-width: 850px;
}

.hero-text p,
.label {
  color: var(--ochre);
  letter-spacing: .16em;
  font-size: 14px;
}

h1,
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
}

h1 {
  font-size: clamp(52px, 8vw, 110px);
  line-height: .9;
  margin: 18px 0 34px;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  margin: 10px 0 26px;
}

.intro {
  background: var(--cream);
  color: var(--dark);
  padding: 110px 10vw;
}

.intro p {
  max-width: 1000px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.16;
}

.music,
.about {
  padding: 120px 7vw;
}

.music {
  background: var(--dark-warm);
}

.music-grid,
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

.music img,
.about img {
  width: 100%;
  display: block;
}

.tracks p {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

audio {
  width: 100%;
  margin-bottom: 25px;
}

.about {
  background: var(--cream);
  color: var(--dark);
}

.about img {
  display: none;
}

.about p:not(.label) {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .music-grid,
  .about {
    grid-template-columns: 1fr;
  }

  nav div {
    display: none;
  }

  .hero {
    min-height: 90vh;
    background-position: center, center top;
    background-size: cover, auto 200%;
  }

  .hero-text p,
  .label {
    font-size: 12px;
  }
}

/* Definitieve hero positionering */
.hero {
  background-size: cover, auto 200%;
  background-position: center, center top;
}

/* Hero tekst gecentreerd */
.hero {
  align-items: center;
  justify-content: center;
}

.hero-text {
  padding: 0 5vw;
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.hero-text h1 {
  margin-left: auto;
  margin-right: auto;
}

.hero-text p {
  text-align: center;
}

/* Naam hero op één regel */
.hero-text h1 {
  white-space: nowrap;
  font-size: clamp(42px, 7vw, 105px);
}

/* Uitgebreide homepage */

.section-heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.section-heading > p:not(.label) {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream-soft);
}

.release {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 7vw;
  align-items: center;
  margin-top: 90px;
}

.release-reverse .release-art {
  order: 2;
}

.release-reverse .release-content {
  order: 1;
}

.release-art img {
  width: 100%;
  display: block;
}

.release-content {
  max-width: 620px;
}

.release-content h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
  font-size: clamp(42px, 5vw, 66px);
  margin: 8px 0 25px;
}

.release-content > p:not(.label):not(.credits) {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream-soft);
}

.credits {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-soft);
}

.album-teaser,
.production,
.live,
.teaching,
.contact {
  padding: 120px 7vw;
}

.album-teaser {
  background: var(--cream);
  color: var(--dark);
}

.album-teaser > div,
.live > div,
.teaching > div {
  max-width: 850px;
}

.album-teaser p:not(.label),
.live p:not(.label),
.teaching p:not(.label),
.contact p:not(.label) {
  font-size: 18px;
  line-height: 1.75;
  max-width: 720px;
}

.small-note {
  margin-top: 35px;
  font-size: 14px !important;
  opacity: .7;
}

.production {
  background: var(--dark);
}

.production-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 8vw;
  align-items: start;
}

.production-grid p {
  font-size: 18px;
  line-height: 1.75;
}

.production-note {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}

.live {
  background: var(--dark-warm);
}

.text-link {
  display: inline-block;
  margin-top: 25px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.about-placeholder {
  min-height: 520px;
  background: var(--dark-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(238,229,216,.5);
  padding: 40px;
  text-align: center;
}

.teaching {
  background: var(--cream);
  color: var(--dark);
}

.contact {
  background: var(--dark);
}

.contact-note {
  opacity: .55;
}

footer {
  padding: 30px 7vw;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .08em;
}

/* Titels iets rustiger */
h2 {
  font-size: clamp(36px, 4.3vw, 58px);
}

/* Okerkleurige labels iets duidelijker */
.label {
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .release,
  .production-grid {
    grid-template-columns: 1fr;
  }

  .release {
    gap: 35px;
  }

  .release-reverse .release-art,
  .release-reverse .release-content {
    order: initial;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .album-teaser,
  .production,
  .live,
  .teaching,
  .contact {
    padding: 80px 7vw;
  }

  .about-placeholder {
    min-height: 360px;
  }
}

/* Intro subtieler */
.intro {
  padding: 75px 10vw;
}

.intro p {
  max-width: 760px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
  font-weight: normal;
}

/* Intro als horizontale regel */
.intro {
  padding: 55px 7vw;
}

.intro p {
  max-width: none;
  width: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .intro p {
    white-space: normal;
  }
}

/* Muzieksectie echt licht maken */
.music {
  background: #eee5d8 !important;
  color: #1b1511 !important;
}

.music h2,
.music h3,
.music p {
  color: #1b1511;
}

.music .label {
  color: #c08a3b;
}

.music .credits,
.music .section-heading > p:not(.label),
.music .release-content > p:not(.label):not(.credits) {
  color: #665d54;
}

.music .tracks p {
  border-color: rgba(27,21,17,.18);
}

/* Releases compacter en bovenaan uitlijnen */
.music .section-heading {
  margin-bottom: 45px;
}

.music .release {
  margin-top: 45px;
  align-items: start;
}

.music .release-art {
  padding-top: 0;
}

/* Podium compacter */
.live {
  grid-template-columns: minmax(260px, 380px) minmax(0, 650px);
  justify-content: center;
  gap: 6vw;
  align-items: center;
}

.live-image {
  width: 100%;
}

.live-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

@media (max-width: 800px) {
  .live {
    grid-template-columns: 1fr;
  }

  .live-image {
    max-width: 380px;
  }
}

/* Podium definitief: twee compacte blokken */
.live {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  padding: 80px 10vw;
}

.live-image {
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.live-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.live-content {
  width: 100%;
  max-width: 540px;
  justify-self: start;
}

.live-content h2 {
  margin-top: 8px;
}

@media (max-width: 800px) {
  .live {
    grid-template-columns: 1fr;
    padding: 70px 7vw;
  }

  .live-image,
  .live-content {
    max-width: 100%;
    justify-self: stretch;
  }

  .live-image img {
    height: auto;
  }
}

/* Sterker contrast Productie / Podium */

.production {
  background: #f2eadf !important;
  color: #1b1511 !important;
}

.production h2,
.production p {
  color: #1b1511;
}

.production .label {
  color: #b57b2d;
}

.production-note {
  border-color: rgba(27,21,17,.22);
}

.live {
  background: #17110e !important;
  color: #eee5d8 !important;
}

.live h2,
.live p {
  color: #eee5d8;
}

.live .label {
  color: #c08a3b;
}

/* Laatste kleur- en titelcorrecties */

/* Nieuw flamenco-album: echt donker */
.album-teaser {
  background-color: #17110e !important;
  background-image: none !important;
  color: #eee5d8 !important;
}

.album-teaser h2,
.album-teaser p {
  color: #eee5d8 !important;
}

.album-teaser .label {
  color: #c08a3b !important;
}

/* Release-titels: OCRE en MANÚ kleiner dan Releases */
.release-content h3 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* Productie portfolio video's */
.production-videos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 55px;
}

.video-project video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #17110e;
  display: block;
}

.video-title {
  margin: 14px 0 0;
  font-size: 12px !important;
  letter-spacing: .14em;
  font-weight: 600;
}

@media (max-width: 800px) {
  .production-videos {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* Over-foto opnieuw zichtbaar */
.about .about-image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

/* Nieuw flamenco-album */
.album-teaser {
  background: #17110e !important;
  color: #eee5d8 !important;
  padding: 120px 7vw;
}

.album-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 9vw;
  align-items: center;
}

.album-copy {
  max-width: 720px;
}

.album-copy h2 {
  color: #eee5d8 !important;
  margin-bottom: 32px;
}

.album-copy p {
  color: #cfc4b5 !important;
  font-size: 17px;
  line-height: 1.75;
}

.album-copy .album-lead {
  color: #eee5d8 !important;
  font-size: 20px;
}

.album-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.album-options span {
  border: 1px solid rgba(238,229,216,.25);
  padding: 10px 15px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.album-copy .small-note {
  font-size: 13px;
  color: #94887c !important;
  max-width: 600px;
}

.album-button {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 20px;
  border: 1px solid #c08a3b;
  color: #eee5d8;
  font-size: 13px;
  letter-spacing: .08em;
  transition: .2s ease;
}

.album-button:hover {
  background: #c08a3b;
  color: #17110e;
}

.album-visual {
  min-height: 430px;
  border: 1px solid rgba(238,229,216,.18);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  overflow: hidden;
}

.album-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(192,138,59,.35);
  border-radius: 50%;
  top: -45px;
  right: -55px;
}

.album-number {
  position: absolute;
  top: 28px;
  left: 30px;
  color: #c08a3b;
  font-size: 12px;
  letter-spacing: .18em;
}

.album-visual p {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px,4vw,58px);
  line-height: .95;
  color: #eee5d8 !important;
}

.album-visual span {
  font-size: 11px;
  letter-spacing: .2em;
  color: #c08a3b;
}

@media (max-width: 800px) {
  .album-inner {
    grid-template-columns: 1fr;
  }

  .album-visual {
    min-height: 320px;
  }
}


/* Album interesseformulier */
.album-button {
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

.album-form {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid rgba(238,229,216,.18);
}

.album-form[hidden] {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.album-form label,
.album-form legend {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c08a3b;
}

.album-form input[type="text"],
.album-form input[type="email"] {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(238,229,216,.3);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #eee5d8;
  font: inherit;
}

.album-form input:focus {
  border-color: #c08a3b;
}

.album-form fieldset {
  border: 0;
  padding: 0;
  margin: 30px 0 20px;
}

.album-form legend {
  margin-bottom: 15px;
}

.album-form .check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 11px 0;
  color: #cfc4b5;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  cursor: pointer;
}

.album-form .check input {
  accent-color: #c08a3b;
}

.consent-check {
  margin-top: 26px !important;
}

.website-field {
  position: absolute !important;
  left: -9999px !important;
}

.album-submit {
  margin-top: 24px;
  padding: 14px 20px;
  border: 1px solid #c08a3b;
  background: #c08a3b;
  color: #17110e;
  font: inherit;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  font-size: 14px !important;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* Productie portfolio 2x2 */
.production-videos {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 30px;
}

.video-project {
  min-width: 0;
}

.video-project video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #17110e;
}

.video-meta {
  padding-top: 15px;
}

.video-meta h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: .02em;
  color: #1b1511;
}

.video-role {
  margin: 0;
  color: #b57b2d !important;
  font-size: 11px !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-description {
  margin: 10px 0 0;
  max-width: 520px;
  color: #665d54 !important;
  font-size: 14px !important;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .production-videos {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}


/* Contactformulier Tijn */

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 8vw;
  align-items: start;
  padding: 110px 10vw;
}

.contact-intro {
  max-width: 520px;
}

.contact-intro h2 {
  margin-top: 12px;
}

.contact-copy {
  max-width: 470px;
  margin-top: 28px;
  line-height: 1.75;
}

.direct-email {
  margin-top: 42px;
}

.direct-email span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
}

.direct-email a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 22, 17, .3);
  padding-bottom: 3px;
  transition: opacity .2s ease, border-color .2s ease;
}

.direct-email a:hover {
  opacity: .65;
  border-color: currentColor;
}

.contact-form-wrap {
  width: 100%;
  max-width: 650px;
}

.contact-form {
  width: 100%;
}

.contact-field {
  margin-bottom: 27px;
}

.contact-field label {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(30, 22, 17, .28);
  border-radius: 0;
  padding: 11px 0 13px;
  background: transparent;
  color: inherit;
  font: inherit;
  outline: none;
  transition: border-color .2s ease;
}

.contact-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #b57b2d;
}

.contact-submit {
  appearance: none;
  border: 1px solid #1b1511;
  background: #1b1511;
  color: #f2eadf;
  padding: 14px 22px;
  font: inherit;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.contact-submit:hover {
  background: transparent;
  color: #1b1511;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .55;
}

.contact-status {
  min-height: 24px;
  margin: 18px 0 0;
  font-size: 14px;
}

.contact-status.success {
  color: #6d7046;
}

.contact-status.error {
  color: #9a463c;
}

.contact-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 800px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 7vw;
  }

  .contact-form-wrap {
    max-width: none;
  }
}

/* Duidelijkere contactvelden */
.contact-field input,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(30, 22, 17, .28);
  border-radius: 2px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .28);
  color: #1b1511;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.6;
}

.contact-field input:hover,
.contact-field textarea:hover {
  border-color: rgba(30, 22, 17, .48);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #b57b2d;
  background: rgba(255, 255, 255, .42);
}



/* Les en contact definitief */

.teaching-content {
  max-width: 620px;
}

.teaching-content p {
  line-height: 1.75;
  margin-bottom: 30px;
}

.teaching-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  transition: opacity .2s ease;
}

.teaching-link:hover {
  opacity: .6;
}

.direct-email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 42px;
}

.direct-email span {
  margin-bottom: 3px;
}

.direct-email a {
  display: inline-block;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(30, 22, 17, .28);
  border-radius: 2px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .28);
  color: #1b1511;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.6;
}

.contact-field input:hover,
.contact-field textarea:hover {
  border-color: rgba(30, 22, 17, .48);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #b57b2d;
  background: rgba(255, 255, 255, .42);
}

@media (max-width: 800px) {
  .teaching-content {
    max-width: none;
  }
}

/* Contacttitel exact twee regels op desktop */
.contact-intro {
  max-width: 620px;
}

.contact-intro h2 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.02;
}

.contact-intro h2 br {
  display: block;
}

@media (min-width: 801px) {
  .contact {
    grid-template-columns: minmax(480px, 1fr) minmax(0, 1.1fr);
    gap: 6vw;
  }

  .contact-intro h2 {
    white-space: nowrap;
  }
}

@media (max-width: 800px) {
  .contact-intro h2 {
    white-space: normal;
  }
}

/* Navigatie moderner en iets groter */
nav a,
.nav a,
.navigation a,
header a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: none;
}

@media (max-width: 800px) {
  nav a,
  .nav a,
  .navigation a,
  header a {
    font-size: 15px;
  }
}

/* Navigatie groter + uppercase */
nav a,
.nav a,
.navigation a,
header a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  nav a,
  .nav a,
  .navigation a,
  header a {
    font-size: 16px;
    letter-spacing: .05em;
  }
}

/* Hero volledig beeldvullend - geen zijstroken */
.hero {
  background-size: cover, cover !important;
  background-position: center, center top !important;
  background-repeat: no-repeat !important;
}


/* Hero volledig beeldvullend - geen zijstroken */
.hero {
  background-size: cover, cover !important;
  background-position: center, center top !important;
  background-repeat: no-repeat !important;
}



/* Hero parallax via JavaScript */
.hero {
  background-attachment: scroll !important;
  will-change: background-position;
}


/* =========================================================
   RELEASES — subtiele diepte in lichte achtergrond
   ========================================================= */

.music {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      ellipse at 12% 18%,
      rgba(181, 123, 45, 0.12) 0%,
      rgba(181, 123, 45, 0.055) 25%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 88% 78%,
      rgba(89, 112, 103, 0.09) 0%,
      rgba(89, 112, 103, 0.035) 28%,
      transparent 58%
    ),
    linear-gradient(
      135deg,
      #f2e9dc 0%,
      #eee5d8 45%,
      #e8ddce 100%
    );
}

/* Zeer zachte organische vorm */
.music::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -330px;
  right: -230px;
  border-radius: 46% 54% 63% 37% / 45% 42% 58% 55%;
  background: rgba(181, 123, 45, 0.055);
  filter: blur(2px);
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: -1;
}

/* Tweede nauwelijks zichtbare vorm voor wat diepte */
.music::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 360px;
  bottom: -230px;
  left: -170px;
  border-radius: 55% 45% 38% 62% / 48% 60% 40% 52%;
  background: rgba(70, 91, 84, 0.045);
  transform: rotate(12deg);
  pointer-events: none;
  z-index: -1;
}

.music > * {
  position: relative;
  z-index: 1;
}


/* RELEASES — extra petrol/turquoise kleurdiepte */
.music {
  background:
    radial-gradient(
      ellipse at 82% 22%,
      rgba(44, 112, 108, 0.16) 0%,
      rgba(44, 112, 108, 0.075) 24%,
      transparent 53%
    ),
    radial-gradient(
      ellipse at 10% 28%,
      rgba(181, 123, 45, 0.14) 0%,
      rgba(181, 123, 45, 0.055) 28%,
      transparent 56%
    ),
    radial-gradient(
      ellipse at 58% 92%,
      rgba(117, 73, 53, 0.07) 0%,
      transparent 46%
    ),
    linear-gradient(
      135deg,
      #f3eadf 0%,
      #eee5d8 48%,
      #e8ddcf 100%
    );
}

/* Organische vorm rechts iets meer petrol */
.music::before {
  background:
    radial-gradient(
      circle at 40% 45%,
      rgba(43, 111, 107, 0.12),
      rgba(43, 111, 107, 0.035) 55%,
      transparent 72%
    );
  filter: blur(8px);
}

/* Onderaan een heel subtiele warme tegenkleur */
.music::after {
  background:
    radial-gradient(
      ellipse,
      rgba(181, 123, 45, 0.075),
      transparent 68%
    );
  filter: blur(5px);
}


/* =========================================================
   RELEASES — meer materiaal, licht en diepte
   ========================================================= */

.music {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      ellipse 70% 55% at 88% 18%,
      rgba(36, 112, 108, .20) 0%,
      rgba(36, 112, 108, .08) 35%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 60% 70% at 5% 55%,
      rgba(190, 126, 45, .17) 0%,
      rgba(190, 126, 45, .06) 42%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 55% 45% at 65% 105%,
      rgba(112, 68, 48, .11) 0%,
      transparent 70%
    ),
    linear-gradient(
      125deg,
      #f5ede2 0%,
      #eee4d6 48%,
      #e5d8c8 100%
    );
}

/* Zachte licht-/schaduwvorm */
.music::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      ellipse 28% 55% at 72% 48%,
      rgba(255,255,255,.34),
      transparent 72%
    ),
    radial-gradient(
      ellipse 32% 50% at 28% 72%,
      rgba(77,54,40,.07),
      transparent 75%
    );

  filter: blur(28px);
  transform: rotate(-7deg);
}

/* Fijne analoge grain zonder afbeelding */
.music::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .22;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.music > * {
  position: relative;
  z-index: 1;
}


/* =========================================================
   RELEASES — duidelijke licht/schaduw-diepte
   ========================================================= */

.music {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      ellipse 65% 75% at 100% 10%,
      rgba(39, 112, 107, .18) 0%,
      rgba(39, 112, 107, .09) 35%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 65% 70% at -5% 95%,
      rgba(190, 126, 45, .17) 0%,
      rgba(190, 126, 45, .07) 38%,
      transparent 70%
    ),
    linear-gradient(
      125deg,
      #f6eee3 0%,
      #eee3d4 48%,
      #e3d4c2 100%
    );
}

/*
   Grote diffuse schaduw.
   Alsof er buiten beeld iets tussen het licht en de achtergrond zit.
*/
.music::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;

  width: 72%;
  height: 125%;
  top: -38%;
  right: -24%;

  border-radius: 48% 52% 38% 62% / 57% 40% 60% 43%;

  background:
    radial-gradient(
      ellipse at 35% 48%,
      rgba(25, 56, 54, .20) 0%,
      rgba(39, 92, 87, .13) 34%,
      rgba(58, 102, 94, .055) 57%,
      transparent 74%
    );

  filter: blur(38px);
  transform: rotate(-16deg);
}

/*
   Lichtvlek aan de andere kant.
   Hierdoor ontstaat contrast met de schaduw rechts.
*/
.music::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;

  width: 68%;
  height: 95%;
  left: -28%;
  bottom: -38%;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 249, 235, .82) 0%,
      rgba(255, 244, 221, .40) 38%,
      rgba(215, 158, 77, .10) 62%,
      transparent 76%
    );

  filter: blur(34px);
}

.music > * {
  position: relative;
  z-index: 1;
}


/* RELEASES — abstracte achtergrondvisual */
.music {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    linear-gradient(
      rgba(242, 234, 223, .72),
      rgba(242, 234, 223, .72)
    ),
    url('/assets/images/releases-bg.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* oude pseudo-effecten neutraliseren */
.music::before,
.music::after {
  content: none !important;
}

.music > * {
  position: relative;
  z-index: 1;
}


/* RELEASES — abstracte achtergrondvisual */
.music {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(
      rgba(242, 234, 223, .72),
      rgba(242, 234, 223, .72)
    ),
    url('/assets/images/releases-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.music::before,
.music::after {
  content: none !important;
}

.music > * {
  position: relative;
  z-index: 1;
}


/* RELEASES — achtergrondvisual duidelijk zichtbaar maken */
.music {
  background:
    linear-gradient(
      rgba(242, 234, 223, .22),
      rgba(242, 234, 223, .22)
    ),
    url('/assets/images/releases-bg.webp') !important;

  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.music::before,
.music::after {
  content: none !important;
}


/* =========================================================
   LICHTE SECTIES — abstracte visuele lijn
   ========================================================= */

/* Releases — huidige versie behouden */
.music {
  background:
    linear-gradient(
      rgba(242, 234, 223, .22),
      rgba(242, 234, 223, .22)
    ),
    url('/assets/images/releases-bg.webp') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Production & Sound — andere uitsnede */
.production {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(
      rgba(242, 234, 223, .30),
      rgba(242, 234, 223, .30)
    ),
    url('/assets/images/releases-bg.webp') !important;
  background-size: cover !important;
  background-position: 72% center !important;
  background-repeat: no-repeat !important;
}

/* Over — bewust rustiger vanwege de portretfoto */
.about {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(
      rgba(242, 234, 223, .48),
      rgba(242, 234, 223, .48)
    ),
    url('/assets/images/releases-bg.webp') !important;
  background-size: cover !important;
  background-position: 25% center !important;
  background-repeat: no-repeat !important;
}

/* Contact — weer iets meer karakter */
.contact {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(
      rgba(242, 234, 223, .32),
      rgba(242, 234, 223, .32)
    ),
    url('/assets/images/releases-bg.webp') !important;
  background-size: cover !important;
  background-position: 82% center !important;
  background-repeat: no-repeat !important;
}

/* Content altijd boven de achtergrond */
.music > *,
.production > *,
.about > *,
.contact > * {
  position: relative;
  z-index: 1;
}


/* GITAARLES — strak donker vlak */
.teaching {
  background: #17110e !important;
  background-image: none !important;
}


/* =========================================================
   LICHTE GRAPHIC SUBTIELER + GITAARLES DONKER/WIT
   ========================================================= */

/* Releases — graphic zachter */
.music {
  background:
    linear-gradient(
      rgba(242, 234, 223, .48),
      rgba(242, 234, 223, .48)
    ),
    url('/assets/images/releases-bg.webp') !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Production — iets rustiger */
.production {
  background:
    linear-gradient(
      rgba(242, 234, 223, .52),
      rgba(242, 234, 223, .52)
    ),
    url('/assets/images/releases-bg.webp') !important;
  background-size: cover !important;
  background-position: 72% center !important;
}

/* Over — het rustigst vanwege de foto */
.about {
  background:
    linear-gradient(
      rgba(242, 234, 223, .60),
      rgba(242, 234, 223, .60)
    ),
    url('/assets/images/releases-bg.webp') !important;
  background-size: cover !important;
  background-position: 25% center !important;
}

/* Contact — graphic aanwezig maar op achtergrond */
.contact {
  background:
    linear-gradient(
      rgba(242, 234, 223, .52),
      rgba(242, 234, 223, .52)
    ),
    url('/assets/images/releases-bg.webp') !important;
  background-size: cover !important;
  background-position: 82% center !important;
}

/* Gitaarles blijft een strak donker rustpunt */
.teaching {
  background: #17110e !important;
  background-image: none !important;
  color: #f4eee6 !important;
}

.teaching h2,
.teaching p,
.teaching .section-heading,
.teaching .teaching-content,
.teaching .teaching-link {
  color: #f4eee6 !important;
}

/* Het kleine GITAARLES-label mag warm oker blijven */
.teaching .label {
  color: #c48a3a !important;
}

.teaching .teaching-link {
  border-color: rgba(244, 238, 230, .65) !important;
}


/* =========================================================
   CONTACT — donkere tekst op lichte achtergrond
   ========================================================= */

.contact,
.contact h2,
.contact p,
.contact span,
.contact label,
.contact a,
.contact-form,
.contact-field label {
  color: #1b1511 !important;
}

/* CONTACT-label warm oker houden */
.contact .label {
  color: #b57b2d !important;
}

/* Tekst die de bezoeker zelf invoert */
.contact-field input,
.contact-field textarea {
  color: #1b1511 !important;
  caret-color: #1b1511;
}

/* Placeholdertekst ook donkerder en goed leesbaar */
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(27, 21, 17, .52) !important;
  opacity: 1;
}

/* Browser autofill leesbaar houden */
.contact-field input:-webkit-autofill,
.contact-field input:-webkit-autofill:hover,
.contact-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #1b1511 !important;
}


/* =========================================================
   STICKY / SCROLLING NAVIGATIE
   ========================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(23, 17, 14, 0.08);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  border-bottom: 1px solid transparent;

  transition:
    background .28s ease,
    backdrop-filter .28s ease,
    -webkit-backdrop-filter .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

header.is-scrolled {
  background: rgba(23, 17, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Menu-links altijd goed leesbaar */
header nav a,
header .nav a,
header .navigation a {
  color: #f4eee6 !important;
}

/* Zorg dat anchor-links niet onder het vaste menu verdwijnen */
section[id] {
  scroll-margin-top: 90px;
}


/* =========================================================
   VASTE NAVIGATIE — correcte versie voor <nav> in .hero
   ========================================================= */

.hero nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;

  background: rgba(23, 17, 14, 0.08);
  border-bottom: 1px solid transparent;

  transition:
    background .3s ease,
    backdrop-filter .3s ease,
    -webkit-backdrop-filter .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.hero nav.is-scrolled {
  background: rgba(23, 17, 14, 0.86) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

/* Naam + menu altijd leesbaar */
.hero nav strong,
.hero nav a {
  color: #f4eee6 !important;
}

/* Ankerlinks houden rekening met het vaste menu */
section[id] {
  scroll-margin-top: 90px;
}


/* =========================================================
   NAVIGATIE — dunner en subtieler
   ========================================================= */

.hero nav {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.hero nav.is-scrolled {
  background: rgba(23, 17, 14, 0.68) !important;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom-color: rgba(255, 255, 255, 0.045) !important;

  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.07) !important;
}


/* =========================================================
   HERO — tekst lager zodat gezicht vrij blijft
   ========================================================= */

.hero-text {
  transform: translateY(13vh);
}

/* Op mobiel minder ver naar beneden */
@media (max-width: 800px) {
  .hero-text {
    transform: translateY(6vh);
  }
}


/* =========================================================
   RELEASES — overzichtelijker en compacter
   ========================================================= */

/* Intro bewust twee regels op desktop */
.releases-intro {
  max-width: 720px;
}

.release {
  display: grid !important;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr) !important;
  gap: clamp(38px, 6vw, 90px) !important;
  align-items: start !important;
}

/* Beide releases altijd: cover links, content rechts */
.release-reverse .release-art,
.release-reverse .release-content {
  order: initial !important;
}

.release-art img {
  display: block;
  width: 100%;
  height: auto;
}

/* Tracks als compacte tracklist */
.tracks {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
  margin-top: 26px;
}

.tracks p {
  margin: 12px 0 5px !important;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.tracks p:first-child {
  margin-top: 0 !important;
}

.tracks audio {
  display: block;
  width: 100%;
  height: 34px;
  margin: 0 0 4px !important;
}

/* Eén speler bij Manú */
.tracks-single {
  margin-top: 24px;
}

/* Mooie ruimte tussen OCRE en MANÚ */
.music .release + .release {
  margin-top: 90px;
}

/* Credits iets los van de spelers */
.release .credits {
  margin-top: 25px;
}

/* Mobiel */
@media (max-width: 800px) {
  .releases-intro br {
    display: none;
  }

  .release {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .release-art {
    max-width: 520px;
  }

  .music .release + .release {
    margin-top: 70px;
  }

  .tracks audio {
    height: 36px;
  }
}


/* =========================================================
   RELEASES — definitieve desktop uitlijning
   ========================================================= */

@media (min-width: 801px) {

  .music {
    padding-left: 12vw !important;
    padding-right: 12vw !important;
  }

  .music .section-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .music .release {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;

    grid-template-columns:
      minmax(280px, 390px)
      minmax(0, 1fr) !important;

    gap: clamp(40px, 5vw, 72px) !important;
    align-items: start !important;
  }

  /* Cover exact op dezelfde bovenlijn als de release-informatie */
  .music .release-art,
  .music .release-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    align-self: start !important;
  }

  .music .release-art img {
    margin-top: 0 !important;
  }

  .music .release-content > .label {
    margin-top: 0 !important;
  }

  /* MANÚ netjes onder OCRE, zelfde raster */
  .music .release + .release {
    margin-top: 70px !important;
  }

  /* Audio iets compacter */
  .music .tracks {
    margin-top: 22px !important;
  }

  .music .tracks p {
    margin-top: 9px !important;
    margin-bottom: 3px !important;
  }

  .music .tracks audio {
    height: 32px !important;
    margin-bottom: 2px !important;
  }
}


/* =========================================================
   ZACHTE SECTIE-OVERGANG — Releases naar nieuw album
   ========================================================= */

.music {
  position: relative;
  overflow: hidden;
}

/* Donkere/warmbruine gloed onderaan de lichte sectie */
.music::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(23,17,14,0) 0%,
    rgba(23,17,14,.025) 35%,
    rgba(23,17,14,.11) 100%
  );
}

/* Content boven de overgang houden */
.music > * {
  position: relative;
  z-index: 1;
}

.album-teaser {
  position: relative;
  overflow: hidden;
}

/* Heel subtiele warme gloed bovenin het donkere vlak */
.album-teaser::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(181,123,45,.12) 0%,
    rgba(181,123,45,.045) 45%,
    rgba(181,123,45,0) 100%
  );
}

.album-teaser > * {
  position: relative;
  z-index: 1;
}


/* =========================================================
   DUIDELIJKERE OVERGANG — Releases naar album
   ========================================================= */

.music {
  position: relative;
  z-index: 1;
  padding-bottom: 130px !important;
}

.album-teaser {
  position: relative;
  z-index: 2;
  margin-top: -70px !important;
  padding-top: 140px !important;
  overflow: hidden;
}

/* Zichtbare zachte fade tussen licht en donker */
.album-teaser::before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 0;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(242,234,223,1) 0%,
    rgba(128,91,55,.55) 38%,
    rgba(59,40,29,.78) 68%,
    rgba(23,17,14,1) 100%
  );
}

.album-teaser > * {
  position: relative;
  z-index: 1;
}


/* =========================================================
   SECTIE-OVERGANG — rustige diepte
   ========================================================= */

/* Vorige sterke fade neutraliseren */
.music {
  padding-bottom: initial !important;
}

.album-teaser {
  margin-top: 0 !important;
  padding-top: initial !important;
  position: relative;
  overflow: visible !important;
}

/* Geen zichtbare kleur-gradient meer */
.album-teaser::before {
  content: "" !important;
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  background: rgba(181,123,45,.28) !important;
}

/* Zachte schaduw die omhoog over de lichte sectie valt */
.album-teaser::after {
  content: "" !important;
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
  height: 45px;
  pointer-events: none;
  z-index: 2;

  background: linear-gradient(
    to top,
    rgba(23,17,14,.18) 0%,
    rgba(23,17,14,.07) 35%,
    rgba(23,17,14,0) 100%
  );
}

.album-teaser > * {
  position: relative;
  z-index: 4;
}


/* Extra ademruimte tussen MANÚ en volgende donkere sectie */
.music {
  padding-bottom: calc(8vw + 60px) !important;
}

@media (max-width: 800px) {
  .music {
    padding-bottom: 90px !important;
  }
}

/* =========================================================
   LICHT → DONKER — consistente subtiele overgang
   ========================================================= */

/* Donkere secties krijgen dezelfde subtiele warme lijn */
.live,
.teaching {
  position: relative;
  overflow: visible !important;
}

.live::before,
.teaching::before {
  content: "" !important;
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  background: rgba(181,123,45,.28) !important;
}

/* Zachte schaduw omhoog over de lichte sectie */
.live::after,
.teaching::after {
  content: "" !important;
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
  height: 45px;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    to top,
    rgba(23,17,14,.18) 0%,
    rgba(23,17,14,.07) 35%,
    rgba(23,17,14,0) 100%
  );
}

/* Inhoud altijd boven de overgang */
.live > *,
.teaching > * {
  position: relative;
  z-index: 4;
}

/* Zelfde ademruimte vóór de donkere secties */
.production {
  padding-bottom: calc(8vw + 60px) !important;
}

.about {
  padding-bottom: calc(8vw + 60px) !important;
}

@media (max-width: 800px) {
  .production,
  .about {
    padding-bottom: 90px !important;
  }
}


/* =========================================================
   NIEUW FLAMENCO-ALBUM — spacing & titel
   ========================================================= */

.album-teaser {
  padding-top: 115px !important;
  padding-bottom: 100px !important;
}

.album-copy h2 {
  white-space: nowrap;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.02;
}

/* Mobiel mag de titel wel natuurlijk afbreken */
@media (max-width: 800px) {
  .album-teaser {
    padding-top: 85px !important;
    padding-bottom: 80px !important;
  }

  .album-copy h2 {
    white-space: normal;
  }
}


/* =========================================================
   OVER — foto gelijk met kop
   ========================================================= */

@media (min-width: 801px) {
  .about {
    align-items: start !important;
  }

  .about .about-image,
  .about .about-content {
    align-self: start !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .about .about-image img {
    margin-top: 0 !important;
  }

  .about .about-content > .label {
    margin-top: 0 !important;
  }
}


/* =========================================================
   NIEUW WERK — voorlopig zonder albumbeeld
   ========================================================= */

.album-visual,
.album-art,
.album-image {
  display: none !important;
}

.album-inner {
  display: block !important;
}

.album-copy {
  width: 100% !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* =========================================================
   MOBIEL MENU
   ========================================================= */

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 800px) {

  .hero nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 20px !important;
  }

  .hero nav strong {
    position: relative;
    z-index: 10002;
    font-size: 13px !important;
    letter-spacing: .08em;
    white-space: nowrap;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 10002;

    appearance: none;
    border: 0;
    background: transparent;
    color: #f4eee6;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;

    padding: 6px 0;
    cursor: pointer;
  }

  .mobile-menu {
    display: flex;
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    min-height: 100svh;

    padding: 105px 24px 40px;
    box-sizing: border-box;

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;

    background: rgba(23, 17, 14, .97);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);

    transition:
      opacity .22s ease,
      transform .22s ease,
      visibility .22s ease;

    z-index: 10001;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: block;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(34px, 10vw, 48px) !important;
    font-weight: normal !important;
    line-height: 1.1;

    letter-spacing: 0 !important;
    text-transform: none !important;

    color: #f4eee6 !important;

    padding: 7px 0;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    color: #c48a3a !important;
  }
}


/* =========================================================
   MOBIEL — Podium & Over: tekst eerst, foto daarna
   ========================================================= */

@media (max-width: 800px) {

  /* PODIUM */
  .live {
    display: flex !important;
    flex-direction: column !important;
  }

  .live-content {
    order: 1 !important;
    width: 100% !important;
  }

  .live-image {
    order: 2 !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 32px !important;
  }

  /* OVER */
  .about {
    display: flex !important;
    flex-direction: column !important;
  }

  .about-content {
    order: 1 !important;
    width: 100% !important;
  }

  .about-image {
    order: 2 !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 32px !important;
  }
}



/* LIVE MOBILE MENU FIX 2026-09-08 */
@media (max-width: 800px) {
  .hero nav .desktop-nav {
    display: none !important;
  }

  .hero nav .mobile-menu-toggle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10002 !important;
    color: #f4eee6 !important;
  }

  .hero nav .mobile-menu {
    display: flex !important;
  }
}


/* MOBILE HORIZONTAL OVERFLOW FIX 2026-09-08 */
@media (max-width: 800px) {

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    position: relative;
  }

  .hero {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;

    background-size: cover !important;
    background-position: center, center top !important;
    background-repeat: no-repeat !important;
  }

  .hero nav {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;

    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero nav strong {
    min-width: 0 !important;
    max-width: calc(100% - 70px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis;
  }

  .hero nav .mobile-menu-toggle {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    position: relative !important;
    right: auto !important;
  }

  .mobile-menu {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  img,
  video,
  iframe {
    max-width: 100% !important;
  }
}

/* MOBILE HERO TITLE FIX 2026-09-08 */
@media (max-width: 800px) {
  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-text h1 {
    font-size: clamp(42px, 13vw, 62px) !important;
    line-height: .95 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
  }
}

/* MOBILE HERO TITLE — ONE LINE */
@media (max-width: 800px) {
  .hero-text h1 {
    white-space: nowrap !important;
    font-size: clamp(30px, 10.2vw, 58px) !important;
    line-height: 1 !important;
    max-width: 100% !important;
    letter-spacing: -0.025em !important;
  }
}

@media (max-width: 380px) {
  .hero-text h1 {
    font-size: 9.7vw !important;
  }
}


/* MOBILE HAMBURGER MENU */
@media (max-width: 800px) {
  .hero nav .mobile-menu-toggle {
    width: 34px !important;
    height: 28px !important;
    padding: 4px 0 !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: stretch !important;

    background: transparent !important;
    border: 0 !important;
  }

  .hamburger-line {
    display: block !important;
    width: 34px !important;
    height: 2px !important;
    flex: 0 0 2px !important;

    background: #f4eee6 !important;
    border-radius: 2px;

    transform-origin: center;
    transition:
      transform .22s ease,
      opacity .18s ease;
  }

  /* Hamburger -> X */
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* MOBILE RELEASE ORDER */
@media (max-width: 800px) {

  .release {
    display: flex !important;
    flex-direction: column !important;
  }

  .release-info {
    order: 1 !important;
  }

  .release-art {
    order: 2 !important;
  }

}
