/* ============================================================
   CIR.CUZ — circuzmusic.no
   Ett system, to verdener:
   — «Scene»: mørk bunn for hero, konserter, booking og footer.
   — «Papir»: varm lys bunn for musikk, historie og presse.
   Oransje er signalfarge, aldri flate. Ingen effekter uten grunn.
   ============================================================ */

/* ---------- Fonter (selvhostet) ---------- */

@font-face {
  font-family: 'Archivo';
  src: url('./assets/fonts/archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plex Mono';
  src: url('./assets/fonts/plex-mono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plex Mono';
  src: url('./assets/fonts/plex-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  --paper: #f5f2eb;
  --paper-deep: #ece7db;
  --ink: #16130c;
  --ink-raise: #201c14;
  --ink-soft: rgba(22, 19, 12, 0.66);
  --ink-faint: rgba(22, 19, 12, 0.45);
  --line: rgba(22, 19, 12, 0.16);
  --line-strong: rgba(22, 19, 12, 0.34);

  --paper-soft: rgba(245, 242, 235, 0.72);
  --paper-faint: rgba(245, 242, 235, 0.45);
  --line-inv: rgba(245, 242, 235, 0.16);
  --line-inv-strong: rgba(245, 242, 235, 0.38);

  --accent: #ee4a1f;

  --font-sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --gutter: clamp(20px, 4.5vw, 64px);
  --shell: 1280px;
  --head-h: 72px;

  --ease: cubic-bezier(0.22, 0.61, 0.2, 1);
}

/* ---------- Reset / base ---------- */

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

ul,
ol {
  list-style: none;
}

section {
  scroll-margin-top: calc(var(--head-h) + 12px);
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utilities ---------- */

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.mono {
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.display {
  font-weight: 840;
  font-stretch: 62%;
  text-transform: uppercase;
  line-height: 0.84;
  letter-spacing: 0.002em;
}

.kicker {
  font-size: 0.72rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  transform: translateY(-64px);
}

.skip-link:focus {
  transform: none;
}

/* Reveal ved scroll — kun når JS finnes */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Knapper / lenker ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 2px;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.18s var(--ease);
}

.btn:hover .btn__arrow,
.text-link:hover span {
  transform: translate(2px, -2px);
}

.btn--solid {
  background: var(--ink);
  color: var(--paper);
}

.btn--solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.btn--accent:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

/* Sekundærknapp på mørk bunn */
.btn--glass {
  background: transparent;
  border-color: var(--line-inv-strong);
  color: var(--paper);
}

.btn--glass:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 0.7rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.text-link span {
  transition: transform 0.18s var(--ease);
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- Seksjonshoder ---------- */

.sec-head {
  padding-top: clamp(56px, 9vh, 96px);
  margin-bottom: clamp(36px, 6vh, 64px);
}

.sec-head__title {
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  margin-top: 18px;
}

.sec-head__lead {
  max-width: 44ch;
  margin-top: 20px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--paper-soft);
}

.sec-head__lead--ink {
  color: var(--ink-soft);
}

.sec-head--onink .kicker {
  color: var(--paper-soft);
}

.sec-head--onink .kicker::after {
  background: var(--line-inv);
}

.sub-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.sub-head__title {
  font-size: 0.78rem;
  font-weight: 500;
}

.sub-head__aside {
  font-size: 0.7rem;
  color: var(--ink-faint);
}

/* ============================================================
   Header — alltid mørk, med lesefremdrift i underkant
   ============================================================ */

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--head-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: var(--gutter);
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.site-head.is-scrolled {
  border-bottom-color: var(--line-inv);
}

.site-head__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  pointer-events: none;
}

.brand {
  display: block;
  flex-shrink: 0;
}

.brand img {
  display: block;
  height: clamp(24px, 2.4vw, 30px);
  width: auto;
  filter: invert(1) brightness(1.04);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--paper-soft);
  padding-block: 6px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 2px;
  transition: background-size 0.22s var(--ease), color 0.18s ease;
}

.site-nav a:hover {
  color: var(--paper);
  background-size: 100% 2px;
}

.site-nav a.is-active {
  color: var(--paper);
  background-size: 100% 2px;
}

.site-head__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-head .btn {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.site-head .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  color: var(--paper);
}

.nav-toggle__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-toggle__lines {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.nav-toggle__lines i {
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__lines i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__lines i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- Mobilmeny ---------- */

.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: calc(var(--head-h) + 24px) var(--gutter) 28px;
  background: var(--ink);
  color: var(--paper);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0s 0.28s;
}

.menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.menu__list li {
  border-bottom: 1px solid var(--line-inv);
}

.menu__list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: clamp(14px, 3vh, 22px);
  font-weight: 840;
  font-stretch: 62%;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 9.5vw, 3.6rem);
  line-height: 0.9;
}

.menu__list a small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--accent);
}

.menu__list a:active {
  color: var(--accent);
}

.menu__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-size: 0.68rem;
  color: var(--paper-faint);
}

.menu__social {
  display: flex;
  gap: 18px;
}

.menu__social a {
  color: var(--paper);
  border-bottom: 1px solid var(--line-inv);
  padding-bottom: 3px;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================================
   Hero — scenen
   ============================================================ */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: clip;
}

.hero__visual {
  position: absolute;
  inset: 0;
  transform: translateY(var(--hero-shift, 0px));
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 28%;
  opacity: 0.6;
  filter: saturate(0.85) contrast(1.05);
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(22, 19, 12, 0.72), rgba(22, 19, 12, 0) 22%),
    linear-gradient(to right, rgba(22, 19, 12, 0.9) 8%, rgba(22, 19, 12, 0.42) 48%, rgba(22, 19, 12, 0.12) 78%),
    linear-gradient(to top, var(--ink), rgba(22, 19, 12, 0) 34%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--head-h) + clamp(16px, 3vh, 32px));
  padding-bottom: clamp(20px, 3.5vh, 40px);
  row-gap: clamp(20px, 4vh, 40px);
}

.hero__eyebrow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-inv);
  font-size: 0.7rem;
  color: var(--paper-soft);
}

.signal-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: 1px;
}

.hero__copy {
  grid-column: 1;
  align-self: center;
  max-width: 56ch;
}

.hero__name {
  margin-bottom: clamp(22px, 4vh, 36px);
}

.hero__name img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  filter: invert(1) brightness(1.04);
}

.hero__lead {
  max-width: 40ch;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--paper-soft);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(22px, 4vh, 34px);
}

/* Nyeste slipp — kort nederst til høyre */

.hero__release {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: stretch;
  background: var(--accent);
  color: var(--ink);
  border-radius: 2px;
  overflow: hidden;
  max-width: 340px;
  transition: transform 0.22s var(--ease);
}

.hero__release:hover {
  transform: translateY(-4px);
}

.hero__release-cover {
  position: relative;
  flex: 0 0 104px;
}

.hero__release-cover img {
  width: 104px;
  height: 100%;
  object-fit: cover;
}

.hero__play {
  position: absolute;
  right: -16px;
  bottom: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.6rem;
  padding-left: 2px;
  transition: transform 0.2s var(--ease);
}

.hero__release:hover .hero__play {
  transform: scale(1.12);
}

.hero__release-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 16px 18px 16px 24px;
}

.hero__release-copy small {
  font-size: 0.6rem;
  color: rgba(22, 19, 12, 0.72);
}

.hero__release-copy strong {
  font-weight: 840;
  font-stretch: 68%;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 0.95;
}

.hero__release-copy .mono {
  font-size: 0.62rem;
  font-weight: 500;
}

/* Faktalinje + neste konsert */

.hero__foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-inv);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 3.5vw, 48px);
}

.hero__facts b {
  display: block;
  font-weight: 840;
  font-stretch: 72%;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1;
  margin-bottom: 5px;
}

.hero__facts span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

.hero__next {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  font-size: 0.62rem;
  color: var(--paper-faint);
  transition: color 0.18s ease;
}

.hero__next strong {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--paper);
}

.hero__next i {
  font-style: normal;
  color: var(--accent);
  font-size: 0.9rem;
  transition: transform 0.18s var(--ease);
}

.hero__next:hover i {
  transform: translateY(3px);
}

/* ============================================================
   Ticker — broen mellom scene og papir
   ============================================================ */

.ticker {
  background: var(--accent);
  color: var(--ink);
  overflow: hidden;
  padding-block: clamp(12px, 1.8vh, 18px);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-roll 42s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__seq {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 840;
  font-stretch: 62%;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1;
}

.ticker__seq i {
  font-style: normal;
  color: var(--paper);
  font-size: 0.48em;
  margin-inline: clamp(14px, 2vw, 26px);
}

@keyframes ticker-roll {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Musikk — papir
   ============================================================ */

.music {
  padding-bottom: clamp(72px, 11vh, 130px);
}

/* --- Siste utgivelse: mørkt kort på papir --- */

.feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  padding: clamp(24px, 3.5vw, 48px);
  margin-bottom: clamp(64px, 10vh, 110px);
}

.feature .kicker {
  color: var(--paper-soft);
}

.feature .kicker::after {
  background: var(--line-inv);
}

.feature__cover img {
  width: 100%;
  border-radius: 2px;
}

.feature__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  margin-top: 16px;
}

.feature__lead {
  margin-top: 14px;
  max-width: 42ch;
  color: var(--paper-soft);
}

.embed {
  margin-top: 24px;
  border: 1px solid var(--line-inv);
  border-radius: 2px;
  height: 154px;
  overflow: hidden;
  background: var(--ink-raise);
}

.embed iframe {
  display: block;
  width: 100%;
  height: 152px;
  border: 0;
}

.embed__load {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--paper-soft);
  transition: background-color 0.18s ease, color 0.18s ease;
}

.embed__play {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.85rem;
  padding-left: 3px;
  transition: transform 0.18s var(--ease);
}

.embed__load:hover {
  background: rgba(245, 242, 235, 0.06);
  color: var(--paper);
}

.embed__load:hover .embed__play {
  transform: scale(1.08);
}

.feature__body .text-link {
  margin-top: 22px;
  border-color: var(--line-inv-strong);
  color: var(--paper);
}

.feature__body .text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* --- Mest spilt --- */

.toplist {
  margin-bottom: clamp(64px, 10vh, 110px);
}

.trow {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem 1fr auto 2.2rem;
  align-items: center;
  gap: 18px;
  padding-block: clamp(16px, 2.6vh, 24px);
  border-bottom: 1px solid var(--line);
}

.trow__no {
  font-size: 0.72rem;
  color: var(--ink-faint);
}

.trow__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  min-width: 0;
}

.trow__title {
  font-weight: 800;
  font-stretch: 72%;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 0.95;
  transition: color 0.18s ease;
}

.trow__artist {
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.trow__streams {
  font-size: 0.82rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.trow__arrow {
  justify-self: end;
  font-size: 1.1rem;
  color: var(--ink-faint);
  transition: transform 0.18s var(--ease), color 0.18s ease;
}

.trow:hover .trow__title {
  color: var(--accent);
}

.trow:hover .trow__arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.trow__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms + 250ms);
}

html.js li.is-visible .trow__bar {
  transform: scaleX(var(--p, 0));
}

html:not(.js) .trow__bar {
  transform: scaleX(var(--p, 0));
}

/* --- Utgivelser --- */

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(150px, 22vw, 215px), 1fr));
  gap: clamp(24px, 3.5vw, 40px) clamp(18px, 2.5vw, 30px);
  padding-top: 22px;
}

.release {
  display: block;
}

.release img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}

.release__meta {
  display: block;
  margin-top: 12px;
  font-size: 0.62rem;
  color: var(--ink-faint);
}

.release__title {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  transition: color 0.18s ease;
}

.release:hover img {
  transform: translateY(-5px);
  border-color: var(--ink);
}

.release:hover .release__title {
  color: var(--accent);
}

.release--all {
  display: block;
  aspect-ratio: 1;
  background: var(--accent);
  color: var(--ink);
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.release--all__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 18px;
}

.release--all b {
  font-weight: 840;
  font-stretch: 62%;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 0.9;
}

.release--all .mono {
  font-size: 0.66rem;
  font-weight: 500;
}

.release--all:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============================================================
   Konserter — scenen
   ============================================================ */

.live {
  background: var(--ink);
  color: var(--paper);
}

.live__photo {
  position: relative;
  height: clamp(280px, 46vw, 540px);
  overflow: hidden;
}

.live__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.06);
}

.live__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22, 19, 12, 0.1), rgba(22, 19, 12, 0) 40%, rgba(22, 19, 12, 0.94));
}

.live__photo figcaption {
  position: absolute;
  left: var(--gutter);
  bottom: 16px;
  z-index: 1;
  font-size: 0.68rem;
  color: var(--paper-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.live__photo figcaption::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.live__inner {
  padding-bottom: clamp(64px, 10vh, 120px);
}

.live .sec-head {
  padding-top: clamp(32px, 5vh, 56px);
}

.tour {
  border-top: 1px solid var(--line-inv);
}

.tour-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding-block: clamp(20px, 3.4vh, 30px);
  border-bottom: 1px solid var(--line-inv);
}

.tour-row__date {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.tour-row__day {
  font-weight: 840;
  font-stretch: 66%;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.tour-row__cal {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-soft);
  line-height: 1.5;
}

.tour-row__cal b {
  display: block;
  color: var(--accent);
  font-weight: 500;
}

.tour-row__venue {
  font-weight: 800;
  font-stretch: 72%;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1;
}

.tour-row__where {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--paper-soft);
}

.tour-row__tba {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--paper-faint);
  border: 1px dashed var(--line-inv-strong);
  border-radius: 2px;
  padding: 13px 18px;
  line-height: 1;
}

.tour .btn {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.tour .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.tour-board__empty {
  padding-block: 34px;
  border-bottom: 1px solid var(--line-inv);
  color: var(--paper-soft);
  max-width: 52ch;
}

.tour-board__empty a {
  color: var(--paper);
  border-bottom: 1px solid var(--accent);
}

.live__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(32px, 5vh, 48px);
}

.live__band {
  font-size: 0.66rem;
  color: var(--paper-soft);
  max-width: 46ch;
  line-height: 1.9;
}

.live__band i {
  font-style: normal;
  color: var(--paper-faint);
}

/* ============================================================
   Historie — papir, horisontal tidslinje
   ============================================================ */

.story {
  padding-bottom: clamp(72px, 11vh, 130px);
}

.story__rail-wrap {
  position: relative;
}

.story__rail-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.story__rail {
  display: flex;
  gap: clamp(18px, 2.5vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-top: 28px;
  padding-bottom: 20px;
  padding-inline: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.story__rail::-webkit-scrollbar {
  height: 4px;
}

.story__rail::-webkit-scrollbar-thumb {
  background: var(--line-strong);
}

.story__card {
  position: relative;
  flex: 0 0 clamp(240px, 26vw, 310px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.story__card::before {
  content: '';
  position: absolute;
  top: -33px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.story__year {
  font-size: clamp(2.4rem, 3.6vw, 3.1rem);
  color: var(--accent);
}

.story__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.story__card h3 {
  font-weight: 800;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: 1.12rem;
  margin-top: 3px;
}

.story__card p:last-child {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.story__card--now {
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  padding: clamp(16px, 2vw, 22px);
}

.story__card--now::before {
  left: clamp(16px, 2vw, 22px);
}

.story__card--now img {
  border-color: var(--line-inv);
}

.story__card--now p:last-child {
  color: var(--paper-soft);
}

.story__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  max-width: var(--shell);
  margin: 10px auto 0;
  padding-inline: var(--gutter);
}

.story__btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 1.05rem;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.story__btn:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.story__btn:disabled {
  opacity: 0.3;
}

/* ============================================================
   Presse — dypere papir
   ============================================================ */

.press {
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
  padding-bottom: clamp(64px, 10vh, 110px);
}

.press__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.press__bio .sub-head__title {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.press__text {
  margin-top: 22px;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.press__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}

.press__status {
  min-height: 1.4em;
  margin-top: 12px;
  font-size: 0.68rem;
  color: var(--accent);
}

.press__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.press__facts li {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 9px 13px;
  font-size: 0.66rem;
  color: var(--ink-soft);
}

.press__facts b {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--ink);
  margin-right: 6px;
}

.press__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}

.press__photos li:first-child {
  grid-row: span 2;
}

.photo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.photo-card img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: filter 0.2s ease;
}

.photo-card span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 9px;
  font-size: 0.62rem;
  color: var(--ink-soft);
}

.photo-card span i {
  font-style: normal;
  color: var(--ink-faint);
  transition: color 0.18s ease;
}

.photo-card:hover img {
  filter: contrast(1.04) brightness(1.02);
}

.photo-card:hover span i {
  color: var(--accent);
}

/* ============================================================
   Booking — scenen
   ============================================================ */

.booking {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(64px, 10vh, 120px) clamp(56px, 9vh, 100px);
}

.booking .kicker {
  color: var(--paper-soft);
}

.booking .kicker::after {
  background: var(--line-inv);
}

.booking__title {
  font-size: clamp(2.7rem, 12.6vw, 12.5rem);
  margin-top: 22px;
}

.booking__lead {
  max-width: 46ch;
  margin-top: clamp(22px, 4vh, 34px);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--paper-soft);
}

.booking__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(32px, 5vh, 48px);
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-inv);
  border-radius: 2px;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.contact-card__tag {
  font-size: 0.66rem;
  color: var(--paper-faint);
  transition: color 0.22s ease;
}

.contact-card b {
  font-weight: 800;
  font-stretch: 76%;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1;
}

.contact-card__mail {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.contact-card__arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--paper-faint);
  transition: transform 0.2s var(--ease), color 0.2s ease;
}

.contact-card:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.contact-card:hover .contact-card__tag {
  color: var(--ink-soft);
}

.contact-card:hover .contact-card__arrow {
  color: var(--accent);
  transform: translate(3px, -3px);
}

.booking__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: clamp(32px, 5vh, 44px);
  font-size: 0.68rem;
  color: var(--paper-faint);
}

.booking__meta span[aria-hidden] {
  color: var(--accent);
}

/* ============================================================
   Footer — scenen
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line-inv);
  padding-top: clamp(28px, 5vh, 48px);
}

.footer__mark {
  padding-inline: var(--gutter);
  max-width: var(--shell);
  margin-inline: auto;
  user-select: none;
}

.footer__mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) brightness(1.04);
  opacity: 0.92;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  border-top: 1px solid var(--line-inv);
  margin-top: clamp(24px, 4vh, 40px);
  padding-block: 22px;
  font-size: 0.68rem;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__social a,
.footer__top {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer__social a:hover,
.footer__top:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer__copy {
  color: var(--paper-faint);
}

/* ============================================================
   Responsivt
   ============================================================ */

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  }

  .hero__release {
    max-width: 300px;
  }

  .hero__release-cover {
    flex-basis: 88px;
  }

  .hero__release-cover img {
    width: 88px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-head .btn {
    display: none;
  }

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

  .hero__copy {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    padding-top: clamp(8px, 2vh, 24px);
  }

  .hero__release {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    align-self: start;
  }

  .hero__foot {
    grid-column: 1;
    grid-row: 4;
    align-self: end;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero__next {
    align-items: flex-start;
    text-align: left;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature__cover {
    max-width: 380px;
  }

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

  .tour-row {
    grid-template-columns: 100px 1fr;
  }

  .tour-row > :last-child {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --head-h: 62px;
  }

  .hero__name img {
    width: min(100%, 420px);
  }

  .hero__facts {
    gap: 20px 28px;
  }

  .hero__facts b {
    font-size: 1.2rem;
  }

  .hero__release {
    max-width: 100%;
  }

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

  .trow {
    grid-template-columns: 2.2rem 1fr auto;
  }

  .trow__arrow {
    display: none;
  }

  .trow__main {
    flex-direction: column;
    gap: 6px;
  }

  .story__card {
    flex-basis: min(78vw, 300px);
  }

  .footer__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .hero__cta {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Redusert bevegelse
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ticker__track {
    animation: none;
  }

  .hero__visual {
    transform: none !important;
  }

  .trow__bar {
    transition: none;
  }

  html.js li.is-visible .trow__bar,
  html.js .trow__bar {
    transform: scaleX(var(--p, 0));
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
