
:root {
  --color-foreground: #ffffff;
  --color-orange: #ff6a00;
  --font-heading: 'Host Grotesk', sans-serif;
  --font-body: 'Funnel Sans', sans-serif;
  --page-margin: 72px;
  --content-narrow: 560px;
  --content-wide: 1440px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background-color: #000;
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-weight: 400;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

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

button {
  font-family: inherit;
}

/* ==============================
   Site-wide grainy orange background
   ============================== */
.site-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-color: #000;
  background-image:
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(255, 106, 0, 0.5), transparent 60%),
    radial-gradient(ellipse 70% 55% at 85% 10%, rgba(255, 140, 40, 0.2), transparent 60%),
    linear-gradient(160deg, rgba(255, 90, 0, 0.1) 0%, transparent 45%);
}

.site-background::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.16;
  mix-blend-mode: normal;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==============================
   Header
   ============================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px var(--page-margin);
  position: relative;
  z-index: 10;
}

.site-header__logo img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

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

.site-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--color-foreground);
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--color-orange);
}

.site-header__menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-foreground);
  cursor: pointer;
  padding: 4px;
}

.site-header__menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 749px) {
  .site-header {
    padding: 16px 20px;
  }

  .site-nav {
    display: none;
  }

  .site-header__menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background-color: #000;
  background-image:
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(255, 106, 0, 0.5), transparent 60%),
    radial-gradient(ellipse 70% 55% at 85% 10%, rgba(255, 140, 40, 0.2), transparent 60%),
    linear-gradient(160deg, rgba(255, 90, 0, 0.1) 0%, transparent 45%);
  padding: 16px 20px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s ease, visibility 0s linear 0s;
}

.mobile-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: normal;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mobile-menu__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.mobile-menu__close {
  background: transparent;
  border: none;
  color: var(--color-foreground);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.mobile-menu__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu__list a {
  display: block;
  padding: 20px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--color-foreground);
}

.mobile-menu__socials {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.mobile-menu__socials .social-icons__icon-wrapper svg,
.mobile-menu__socials .social-icons__icon-wrapper img {
  width: 20px;
  height: 20px;
}

/* ==============================
   Main content area
   ============================== */
main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* Homepage only: hero is natural height, and the Follow section grows to
   fill whatever vertical space is left so header+hero+follow+footer fit
   the viewport with no scrolling, matching the live site's desktop layout. */
@media screen and (min-width: 750px) {
  .follow-section--home {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.page-section {
  width: 100%;
  max-width: calc(var(--content-narrow) + 80px);
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.page-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-foreground);
  margin: 0;
}

.page-body {
  width: 100%;
  max-width: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
}

.page-body p {
  margin: 0 0 1.4em;
}

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

@media screen and (max-width: 749px) {
  .page-section {
    padding: 60px 20px 80px;
  }
}

/* ==============================
   Hero (homepage)
   ============================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  text-align: center;
  padding: 20px var(--page-margin) 16px;
  min-height: calc(46svh - 44px);
}

.hero__release-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-size: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero__release-title-name {
  font-weight: 800;
}

.hero__release-title-artist {
  font-weight: 400;
}

.hero__presave-button {
  display: inline-block;
  margin-top: 4px;
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-foreground);
  border-radius: 4px;
  padding: 8px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero__presave-button:hover {
  background: var(--color-orange);
  color: #000000;
  border-color: var(--color-orange);
}

@media screen and (max-width: 749px) {
  .hero__release-title {
    font-size: 1.8rem;
  }
}

/* ==============================
   Follow section / newsletter form
   ============================== */
.follow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: calc(var(--content-wide) + 80px);
  margin: 0 auto;
  padding: 24px 40px;
  width: 100%;
}

.follow-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  width: 100%;
  max-width: 520px;
  margin: 0;
  text-align: left;
}

#newsletter-form-mount,
#newsletter-popup-form-mount {
  width: 100%;
}

.newsletter-form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.newsletter-form__row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.newsletter-form__field {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.newsletter-form__field label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.newsletter-form__required-mark {
  color: #e5342e;
}

.newsletter-form__input {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ffffff21;
  background: #1a1a1a;
  color: #ffffff;
  text-transform: uppercase;
  font-family: inherit;
  width: 100%;
}

.newsletter-form__input::placeholder {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form__required-notice {
  margin: 18px 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.newsletter-form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.newsletter-form__checkbox:hover {
  color: var(--color-orange);
}

.newsletter-form__checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1.5px solid #ffffff;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease;
}

.newsletter-form__checkbox:hover input[type="checkbox"] {
  border-color: var(--color-orange);
}

.newsletter-form__checkbox input[type="checkbox"]:checked {
  border-color: var(--color-orange);
}

.newsletter-form__checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--color-orange);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.newsletter-form__submit {
  align-self: flex-start;
  margin-top: 20px;
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-foreground);
  border-radius: 4px;
  padding: 12px 32px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.newsletter-form__submit:hover {
  background: var(--color-orange);
  color: #000000;
  border-color: var(--color-orange);
}

.newsletter-form__message {
  font-size: 0.875rem;
  margin: 0;
}

.newsletter-form__message--error {
  color: #e5342e;
}

.newsletter-form__message--success {
  color: var(--color-foreground);
}

.newsletter-form__message[hidden] {
  display: none;
}

/* ==============================
   Coming-soon placeholder blocks (Music/Videos/Tour)
   ============================== */
.release-wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.release-art {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  background: #2a2a2a;
  border: 1px solid #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  overflow: hidden;
}

.release-art__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
}

.release-name {
  color: #ffffff;
  font-size: 1.1rem;
}

.video-placeholder-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #2a2a2a;
  border: 1px solid #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.tour-dates {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.tour-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
}

.tour-date-info {
  flex: 1 1 33%;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
}

.tour-date-location {
  flex: 1 1 33%;
  text-align: left;
  color: #ffffff;
}

.disabled-button {
  flex: 0 0 auto;
  background: #2a2a2a;
  color: #777777;
  border: 1px solid #444444;
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: not-allowed;
}

@media screen and (max-width: 600px) {
  .tour-date-row {
    flex-wrap: wrap;
  }

  .disabled-button {
    flex: 1 1 100%;
  }

  .release-wrap {
    gap: 16px;
  }

  .release-art {
    width: 100px;
    height: 100px;
  }
}

/* ==============================
   404 page
   ============================== */
.button-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-foreground);
  border-radius: 4px;
  padding: 12px 32px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button-secondary:hover {
  background: var(--color-orange);
  color: #000000;
  border-color: var(--color-orange);
}

/* ==============================
   Footer
   ============================== */
.site-footer {
  max-width: calc(var(--content-wide) + 80px);
  margin: 0 auto;
  padding: 20px 40px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 174px;
  row-gap: 24px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.75rem;
  position: relative;
  z-index: 10;
}

.footer-utilities__group-copyright {
  display: flex;
  justify-self: end;
  margin-right: 60px;
}

.footer-utilities__group-copyright a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-utilities__group-copyright a:hover {
  color: var(--color-orange);
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.footer-links-row a {
  transition: color 0.3s ease;
}

.footer-links-row a:hover {
  color: var(--color-orange);
}

.social-icons__wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: start;
  justify-self: start;
  flex-wrap: wrap;
}

.social-icons__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-icons__icon-wrapper:hover {
  color: var(--color-orange);
}

.social-icons__icon-wrapper svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icons__icon-wrapper svg[fill='none'] {
  fill: none;
}

.social-icons__icon-wrapper img {
  width: 16px;
  height: 16px;
  transition: filter 0.3s ease;
}

@media screen and (max-width: 749px) {
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px 20px 24px;
  }

  .footer-utilities__group-copyright,
  .social-icons__wrapper {
    justify-self: center;
    justify-content: center;
  }

  .footer-utilities__group-copyright {
    margin-right: 0;
  }

  .footer-links-row {
    justify-content: center;
  }
}

/* ==============================
   Newsletter signup popup
   ============================== */
.newsletter-popup {
  padding: 32px;
  border: none;
  border-radius: 8px;
  background-color: #000;
  background-image:
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(255, 106, 0, 0.5), transparent 60%),
    radial-gradient(ellipse 70% 55% at 85% 10%, rgba(255, 140, 40, 0.2), transparent 60%),
    linear-gradient(160deg, rgba(255, 90, 0, 0.1) 0%, transparent 45%);
  max-width: 480px;
  width: calc(100vw - 40px);
  position: relative;
  color: var(--color-foreground);
}

.newsletter-popup::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: normal;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.newsletter-popup::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}

.newsletter-popup .follow-heading {
  max-width: none;
  margin-bottom: 16px;
}

.newsletter-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  color: var(--color-foreground);
  cursor: pointer;
  padding: 4px;
  z-index: 1;
}

.newsletter-popup__close svg {
  width: 20px;
  height: 20px;
}

/* ==============================
   Cookie consent banner
   ============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--color-foreground);
  font-size: 0.8rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  max-width: 640px;
  text-align: center;
}

.cookie-banner__text a {
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner__text a:hover {
  color: var(--color-orange);
}

.cookie-banner__accept {
  flex: 0 0 auto;
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-foreground);
  border-radius: 4px;
  padding: 10px 24px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cookie-banner__accept:hover {
  background: var(--color-orange);
  color: #000000;
  border-color: var(--color-orange);
}
