:root {
  --ink: #0b0b0b;
  --ink-soft: #151515;
  --paper: #eee9df;
  --paper-light: #f8f4ec;
  --red: #d4262e;
  --red-bright: #ef3039;
  --muted: #a29d94;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(11, 11, 11, 0.2);
  --display: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: Arial, Helvetica, sans-serif;
  --mono: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

[id] {
  scroll-margin-top: 88px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--red);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 64px), 1320px);
  margin-inline: auto;
}

.section {
  padding: clamp(96px, 10vw, 168px) 0;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: white;
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.header__inner {
  width: min(calc(100% - 48px), 1400px);
  height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(184px, 16vw, 235px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav__social) {
  position: relative;
  padding: 8px 0;
}

.site-nav > a:not(.nav__social)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  color: white;
  background: var(--red);
}

.nav__social:hover,
.nav__social:focus-visible {
  background: var(--red-bright);
}

.menu-button {
  position: relative;
  z-index: 102;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border: 0;
  color: white;
  background: transparent;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-button__icon {
  width: 24px;
  height: 16px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.menu-button__icon i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: var(--ink);
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) contrast(1.08);
  animation: hero-image 1.2s ease-out both;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.74) 41%, rgba(0, 0, 0, 0.18) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, transparent 45%, rgba(0, 0, 0, 0.56) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background: repeating-linear-gradient(105deg, transparent 0 5px, #fff 6px, transparent 7px 13px);
}

.hero__content {
  position: relative;
  padding: 170px 0 148px;
}

.kicker,
.section-tag {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker span {
  width: 34px;
  height: 3px;
  background: var(--red);
}

.hero h1 {
  max-width: 1120px;
  margin-bottom: 32px;
  font-family: var(--display);
  font-size: clamp(4.1rem, 9.4vw, 9.7rem);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.84);
}

.hero__intro {
  max-width: 610px;
  margin-bottom: 36px;
  color: #d6d2cb;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button--primary {
  color: white;
  background: var(--red);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.button--ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--ink);
  background: white;
  transform: translateY(-2px);
}

.hero__footer {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__footer p {
  margin-bottom: 0;
  color: #aaa;
}

.hero__footer strong {
  color: white;
  font-size: inherit;
}

.principles {
  min-height: 82px;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 52px);
  color: white;
  background: var(--red);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.3vw, 2.2rem);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.principles i {
  width: 7px;
  height: 7px;
  display: block;
  flex: 0 0 auto;
  background: var(--ink);
  transform: rotate(45deg);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 4fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(70px, 8vw, 120px);
}

.section-head--compact {
  margin-bottom: clamp(54px, 6vw, 88px);
}

.section-tag {
  margin: 9px 0 0;
  color: #5d5953;
}

.section-tag span {
  color: var(--red);
}

.section-head--light .section-tag,
.section-tag--light {
  color: #b9b5ae;
}

.section-head h2,
.contact h2 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(3rem, 6.6vw, 7.1rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #5f5b55;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}

.section-head--light .section-lead {
  color: #a9a59e;
}

.about__body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: end;
}

.about blockquote {
  margin-bottom: 0;
  padding-left: clamp(24px, 4vw, 64px);
  border-left: 7px solid var(--red);
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.3vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.about__copy {
  font-size: 1.05rem;
  line-height: 1.72;
}

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

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(300px, 38vw));
  gap: 12px;
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #222;
}

.gallery__item--rehearsal {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
}

.gallery__item--pub {
  grid-column: 7 / span 3;
  grid-row: 1;
}

.gallery__item--studio {
  grid-column: 10 / span 3;
  grid-row: 1;
}

.gallery__item--hall {
  grid-column: 7 / span 6;
  grid-row: 2;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06);
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery__item--hall img {
  object-position: center 43%;
}

.gallery__item:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gallery figcaption span {
  color: var(--red-bright);
}

.music__intro {
  max-width: 680px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
}

.music__intro p {
  margin-bottom: 0;
  color: #5f5b55;
  font-size: 1.05rem;
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--red);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
}

.release-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.release {
  min-height: 104px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.release__number {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.release__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.release__title strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2.65rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.release__title small {
  flex: 0 0 auto;
  color: #77726b;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.release__arrow {
  color: #77726b;
  font-size: 1.25rem;
}

.release__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.spotify-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  color: #080808;
  background: #1ed760;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.spotify-link:hover,
.spotify-link:focus-visible {
  background: #25ef6c;
  transform: translateY(-2px);
}

.facebook-video-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  color: var(--red);
  border: 1px solid var(--red);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.facebook-video-link:hover,
.facebook-video-link:focus-visible {
  color: white;
  background: var(--red);
  transform: translateY(-2px);
}

.values {
  color: white;
  background: var(--red);
}

.values .section-tag {
  color: rgba(255, 255, 255, 0.72);
}

.values .section-tag span {
  color: var(--ink);
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.28);
  border-left: 1px solid rgba(0, 0, 0, 0.28);
}

.value-card {
  min-height: 330px;
  padding: clamp(30px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
}

.value-card > span {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.value-card p {
  max-width: 48ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.62;
}

.value-card--accent {
  color: white;
  background: var(--ink);
}

.value-card--accent > span {
  color: var(--red-bright);
}

.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: var(--ink);
}

.contact__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.86) 50%, rgba(0, 0, 0, 0.48) 100%),
    url("images/bandet-konserthuset.jpg") center 48% / cover;
  filter: saturate(0.62);
}

.contact__inner {
  position: relative;
}

.contact h2 {
  max-width: 980px;
  margin: 62px 0 72px;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr)) auto;
  gap: 32px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.contact__details > div {
  display: grid;
  gap: 9px;
}

.contact__details small {
  color: #9e9a93;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__details strong,
.contact__details > div > a {
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
}

.contact__details > div > a:hover,
.contact__details > div > a:focus-visible {
  color: var(--red-bright);
}

.site-footer {
  padding: 42px 0;
  color: white;
  background: #050505;
  border-top: 1px solid #292929;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto auto;
  gap: 36px;
  align-items: center;
}

.footer__brand {
  display: inline-flex;
}

.footer__brand img {
  width: min(210px, 100%);
  height: auto;
  display: block;
}

.site-footer p,
.footer__links {
  margin-bottom: 0;
  color: #817d77;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: white;
}

.footer__copyright {
  justify-self: end;
}

@keyframes hero-image {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:nth-child(4) {
    display: none;
  }

  .music__intro {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

  .release__title {
    display: grid;
    justify-content: start;
    gap: 8px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 40px), 1320px);
  }

  .header__inner {
    width: calc(100% - 40px);
    height: 74px;
  }

  .brand img {
    width: 186px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 120px 20px 42px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transform: translateY(-20px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a,
  .site-nav > a:nth-child(4) {
    display: block;
    width: min(100%, 520px);
    margin-inline: auto;
    padding: 18px 0;
    border-bottom: 1px solid #303030;
    font-family: var(--display);
    font-size: clamp(1.65rem, 7vw, 3rem);
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .site-nav > a:not(.nav__social)::after {
    display: none;
  }

  .site-nav .nav__social {
    min-height: 56px;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 0;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero__content {
    padding: 150px 0 145px;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.38)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.94), transparent 58%, rgba(0, 0, 0, 0.64));
  }

  .principles {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__body {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about__copy {
    max-width: 620px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 520px);
  }

  .gallery__item--rehearsal {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .gallery__item--pub {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery__item--studio {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery__item--hall {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .release {
    grid-template-columns: 50px minmax(0, 1fr) auto;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 290px;
  }

  .contact__details {
    grid-template-columns: 1fr 1fr;
  }

  .contact__details .button {
    grid-column: 1 / span 2;
    justify-self: start;
  }

  .footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer .footer__inner > p:not(.footer__copyright) {
    display: none;
  }

  .footer__links {
    order: 3;
  }

  .footer__copyright {
    order: 4;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 86px 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.7rem);
  }

  .hero__actions {
    display: grid;
  }

  .hero__footer {
    bottom: 20px;
  }

  .hero__footer p {
    display: none;
  }

  .hero__footer strong {
    margin-left: auto;
  }

  .principles {
    min-height: 68px;
    padding-inline: 20px;
  }

  .section-head h2,
  .contact h2 {
    font-size: clamp(2.9rem, 15vw, 4.7rem);
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .gallery__item--rehearsal,
  .gallery__item--pub,
  .gallery__item--studio,
  .gallery__item--hall {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .release {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }

  .release__arrow {
    display: none;
  }

  .spotify-link {
    grid-column: 2;
    justify-self: start;
  }

  .release__actions,
  .facebook-video-link {
    grid-column: 2;
    justify-self: start;
  }

  .release__actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .release__title strong {
    font-size: 1.5rem;
  }

  .value-card {
    min-height: 265px;
  }

  .contact h2 {
    margin: 52px 0;
  }

  .contact__details {
    grid-template-columns: 1fr;
  }

  .contact__details .button {
    grid-column: 1;
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer__links,
  .footer__copyright {
    order: initial;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__image { animation: none; }
  .site-nav,
  .menu-button__icon i,
  .gallery__item img,
  .button,
  .spotify-link,
  .facebook-video-link { transition: none; }
}
