:root {
  color-scheme: dark;
  --ink: #03070b;
  --ink-soft: #120b0e;
  --paper: #f6c2bc;
  --paper-muted: #c98f8c;
  --pink: #ffb9b4;
  --rose: #9f5559;
  --gold: #eaa09b;
  --line: rgba(246, 194, 188, 0.2);
  --shadow: rgba(255, 185, 180, 0.32);
  font-family:
    Bahnschrift, "DIN Alternate", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(rgba(3, 7, 11, 0.08), rgba(3, 7, 11, 0.08)),
    url("../assets/images/Website-Background.png") center / cover fixed no-repeat,
    var(--ink);
}

a,
button {
  color: inherit;
}

button,
input {
  font: inherit;
}

textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
  padding: 1.1rem 2rem;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
  color: var(--pink);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  color: var(--pink);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a,
.site-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.1rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--paper);
  border-color: var(--pink);
}

.site-nav .icon-link {
  width: 2.5rem;
  padding: 0.45rem;
}

.icon-button {
  background: none;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  cursor: pointer;
}

.icon-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.home-shell {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 8.5rem);
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem;
}

.release-tease {
  position: absolute;
  top: 17%;
  left: 50%;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  margin: 0;
  text-shadow: 0 0 1.5rem var(--shadow);
  transform: translateX(-50%);
}

.release-title,
.release-subtitle {
  color: var(--paper);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.release-title {
  color: var(--pink);
  font-size: clamp(2.6rem, 7vw, 7.4rem);
  letter-spacing: 0.18em;
  text-shadow:
    0 0 1.1rem rgba(255, 185, 180, 0.22),
    0 0 3rem rgba(255, 185, 180, 0.14);
}

.release-subtitle {
  font-size: clamp(0.72rem, 1.1vw, 1rem);
  letter-spacing: 0.34em;
}

.hidden-audio {
  display: none;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 7, 11, 0.72);
  backdrop-filter: blur(0.35rem);
}

.contact-overlay:target,
.contact-overlay.is-open {
  display: grid;
}

.contact-form {
  display: grid;
  gap: 1rem;
  width: min(100%, 28rem);
  padding: 1.35rem;
  color: var(--paper);
  background: rgba(3, 7, 11, 0.94);
  border: 1px solid rgba(246, 194, 188, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 185, 180, 0.04),
    0 2rem 5rem rgba(0, 0, 0, 0.64),
    0 0 4rem rgba(255, 185, 180, 0.1);
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-header h2,
.contact-intro,
.contact-status {
  margin: 0;
}

.contact-header h2 {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: var(--paper-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.contact-close:hover,
.contact-close:focus-visible {
  color: var(--paper);
}

.contact-close svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.contact-intro,
.contact-status {
  color: var(--paper-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--paper-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--paper);
  background: rgba(18, 11, 14, 0.72);
  border: 1px solid rgba(246, 194, 188, 0.22);
  border-radius: 0;
  outline: 0;
}

.contact-form input {
  min-height: 2.65rem;
  padding: 0 0.85rem;
}

.contact-form textarea {
  min-height: 8.5rem;
  padding: 0.85rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 1.6rem rgba(255, 185, 180, 0.14);
}

.contact-website {
  position: absolute;
  left: -999rem;
}

.contact-submit {
  min-height: 2.8rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--pink);
  border-color: var(--pink);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem 2rem;
  color: var(--paper-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    padding: 1rem;
  }

  .site-nav {
    max-width: 24rem;
  }

  .home-shell {
    min-height: calc(100vh - 8rem);
    padding: 2rem 1rem;
  }

  .release-tease {
    top: 12%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
    font-size: 0.78rem;
  }

  .release-tease {
    top: 16%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
