:root {
  --dark: #1a0101;
  --hero: #180101;
  --black: #000000;
  --white: #ffffff;
  --text: #1e1e1e;
  --text-light: #c6c3c3;
  --text-muted: #7a7a7a;
  --accent-red: #b11212;
  --btn: #54595f;
  --max: 1200px;
  --font-display: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
  --font-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  color: #3a3a3a;
  background-color: #efefef;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #1e73be;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000000;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: 600;
}

/* ---------- Layout ---------- */
.container {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.container--full img {
  width: 100%;
}

.container--padded {
  padding-inline: 120px;
}

.container--narrow {
  max-width: 600px;
  padding-inline: 1rem;
}

.section {
  position: relative;
}

.section--hero {
  background-color: var(--hero);
}

.section--dark {
  background-color: var(--dark);
  color: var(--text-light);
}

.section--white {
  background-color: var(--white);
  color: var(--text);
}

.section--black {
  background-color: var(--black);
}

.section--centered {
  text-align: center;
}

.section--centered .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--overlay-image);
  background-size: cover;
  background-position: center;
  opacity: 0.26;
  pointer-events: none;
}

.section--overlay-bottom::before {
  background-position: bottom left;
}

.section--white.section--overlay::before {
  opacity: 0.12;
}

.section--nefr.section--overlay::before {
  background-position: center center;
  opacity: 0.12;
}

.section--dark > .container,
.section--white > .container {
  position: relative;
  z-index: 1;
}

/* Section padding matching original */
.section--dark:not(.section--gallery):not(.section--footer-banner) > .container--padded,
.section--dark.section--contact > .container {
  padding-block: 50px 40px;
}

.section--white > .container--padded {
  padding-block: 0;
}

.section--dark.section--overlay-bottom > .container--padded {
  padding-block: 30px 80px;
}

.section--black.section--centered {
  padding-block: 60px 20px;
}

.section--hearnow {
  padding-block: 40px 20px !important;
}

.section--hearnow .container {
  padding-bottom: 40px;
}

.section--nefr > .container--padded {
  padding-block: 40px 78px;
}

.section--contact {
  padding-block: 100px 0 !important;
}

.section--footer-banner {
  padding-block: 100px 0;
}

/* ---------- Typography ---------- */
.heading {
  font-family: var(--font-display);
  text-align: center;
}

.heading--xl {
  font-size: 65px;
  font-weight: 600;
  padding-block: 40px 20px;
}

.heading--light {
  color: var(--text-light);
}

.heading--dark {
  color: var(--text);
}

.heading--white {
  color: var(--white);
}

.heading--nefr {
  color: var(--white);
  font-size: 34px;
  line-height: 1.4;
  padding-block: 50px 0;
}

.heading--launch {
  color: var(--text-light);
  font-size: 63px;
  padding-block: 0 40px;
}

.heading--musicians {
  padding-block: 30px 20px;
}

.prose {
  text-align: center;
  font-size: 26px;
}

.prose--light {
  color: var(--text-light);
  font-weight: 300;
  padding-bottom: 20px;
}

.prose--dark {
  color: var(--text);
  font-weight: 400;
  font-style: italic;
  padding-bottom: 40px;
}

.prose p {
  margin: 0 0 1em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.email-link {
  text-align: center;
  font-size: 31px;
  font-weight: 300;
  padding-bottom: 40px;
}

.email-link a {
  color: var(--text-light);
}

.email-link a:hover,
.email-link a:focus {
  color: var(--white);
}

.email-link--contact {
  padding-bottom: 40px;
}

.section-image {
  width: 100%;
}

/* ---------- Icon boxes (Musicians) ---------- */
.icon-box {
  text-align: center;
  padding-bottom: 20px;
}

.icon-box--featured {
  padding-bottom: 20px;
}

.icon-box__icon {
  display: block;
  margin-bottom: 0;
  color: var(--icon-color);
  font-size: 23px;
}

.icon-box__title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 5px;
}

.icon-box__title--lg {
  font-size: 34px;
}

.icon-box__desc {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-light);
  margin: 5px 0 0;
}

/* ---------- Release schedule ---------- */
.release {
  margin-bottom: 0;
}

.release__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
}

.release__date {
  color: var(--accent-red);
  font-size: inherit;
  font-weight: 600;
}

.release__type {
  color: var(--text-muted);
  font-weight: 400;
  margin-top: -10px;
}

.release__title {
  color: var(--text-light);
  font-size: 34px;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 20px;
}

/* ---------- Gallery ---------- */
.section--gallery {
  padding: 0;
}

.gallery {
  column-count: 4;
  column-gap: 10px;
  padding: 0;
}

.gallery__item {
  display: block;
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  transition: opacity 0.3s;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
}

.gallery__item:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}

/* ---------- Contact form ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: #666666;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #bfbfbf;
}

.contact-form__submit {
  width: 100%;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--btn);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form__submit:hover,
.contact-form__submit:focus {
  background-color: #3f3f3f;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem 1rem;
  z-index: 1;
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .container--padded {
    padding-inline: 60px;
  }

  .gallery {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .container--padded {
    padding-inline: 30px;
  }

  .heading--xl {
    font-size: 40px;
  }

  .heading--launch {
    font-size: 40px;
  }

  .heading--nefr {
    font-size: 28px;
  }

  .prose {
    font-size: 20px;
  }

  .email-link {
    font-size: 24px;
  }

  .release__title {
    font-size: 28px;
  }

  .gallery {
    column-count: 1;
  }

  .section--overlay::before {
    background-position: top center;
  }
}