:root {
  --ink: #070809;
  --ink-soft: #0d0f11;
  --panel: #121518;
  --panel-light: #191d20;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --paper: #f1f0ec;
  --muted: #aaaead;
  --accent: #ced3d3;
  --warm: #c9c1b5;
  --max: 1180px;
  --header-height: 82px;
  color-scheme: dark;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 12%, rgba(174, 185, 190, 0.08), transparent 28rem),
    var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.shell.narrow {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.6rem, 8.4vw, 8.4rem);
  line-height: 0.91;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.1;
}

.section {
  padding-block: clamp(90px, 11vw, 160px);
}

.section-lead,
.lead-copy {
  max-width: 700px;
  color: #d0d2d1;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.75;
}

.prose {
  color: #c6c8c7;
  line-height: 1.82;
}

.prose p {
  margin-bottom: 1.35em;
}

.prose.large {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.light:hover {
  background: white;
}

.button.ghost {
  border-color: var(--line-strong);
  background: rgba(0, 0, 0, 0.14);
  color: var(--paper);
  backdrop-filter: blur(8px);
}

.button.ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.button svg,
.text-link svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(to bottom, rgba(5, 6, 7, 0.93), rgba(5, 6, 7, 0.7));
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.brand-mark,
.brand-logo-crop {
  display: inline-block;
}

.brand-logo-crop {
  position: relative;
  width: 182px;
  height: 52px;
  overflow: hidden;
}

.brand-logo-crop img {
  position: absolute;
  top: -63px;
  left: -14px;
  width: 210px;
  max-width: none;
  filter: invert(1);
  opacity: 0.96;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.desktop-nav a {
  position: relative;
  color: #c8cac9;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--paper);
  content: "";
  transition: right 180ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a:hover::after {
  right: 0;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(720px, 100svh);
  align-items: center;
  overflow: hidden;
  background: #050607;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 40%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: grayscale(1) contrast(1.04);
  opacity: 0.72;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.98) 30%, rgba(5, 6, 7, 0.66) 58%, rgba(5, 6, 7, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.72), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero-content h1 {
  max-width: 900px;
  margin-bottom: 30px;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 0;
  color: #c8cbca;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 34px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c3c6c5;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 160ms ease;
}

.social-row a:hover {
  color: white;
}

.social-row.compact {
  margin-top: 36px;
}

.social-row.compact span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aeb1b0;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--paper), transparent);
}

.album-overview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 11, 12, 0.95), rgba(10, 11, 12, 0.95)),
    url("/assets/lebenslinien-cover.jpg") center / cover fixed;
}

.album-overview::before {
  position: absolute;
  top: 80px;
  right: -80px;
  color: rgba(255, 255, 255, 0.025);
  content: "M";
  font-family: Georgia, serif;
  font-size: min(55vw, 700px);
  line-height: 0.7;
  pointer-events: none;
}

.split-copy {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.split-copy h2 {
  margin: 0;
}

.track-ribbon {
  position: relative;
  display: grid;
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.track-ribbon-item {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.track-ribbon-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.track-ribbon-item span {
  color: #777c7c;
  font-family: Georgia, serif;
  font-size: 0.9rem;
}

.track-ribbon-item strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 400;
}

.track-ribbon-item small {
  color: #8f9392;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-break {
  position: relative;
  height: clamp(430px, 60vw, 760px);
  overflow: hidden;
}

.image-break > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: grayscale(1) brightness(0.62) contrast(1.12);
}

.image-break::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.82), transparent 68%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.58), transparent 45%);
  content: "";
}

.image-break-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
}

.image-break blockquote {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 5.2rem);
  line-height: 1.04;
}

.about-section {
  background:
    radial-gradient(circle at 20% 40%, rgba(179, 184, 185, 0.07), transparent 28rem),
    var(--ink-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) 1.14fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.88;
  background: #202326;
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: grayscale(1) contrast(1.1) brightness(0.82);
}

.portrait-monogram {
  position: absolute;
  right: -0.04em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
  font-size: clamp(12rem, 25vw, 22rem);
  line-height: 1;
}

.about-copy h2 {
  max-width: 690px;
}

.facts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.facts-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: #b8bcba;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-teaser {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 50%, rgba(185, 192, 194, 0.09), transparent 30rem),
    #08090a;
}

.press-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.press-photo-stack {
  position: relative;
  min-height: 590px;
}

.press-photo-stack img {
  position: absolute;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  filter: grayscale(1);
}

.press-photo-stack img:first-child {
  top: 0;
  left: 0;
  width: 72%;
  aspect-ratio: 1;
  object-fit: cover;
}

.press-photo-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 46%;
  border: 8px solid #0a0b0c;
  filter: grayscale(1) brightness(0.78);
}

.closing-quote {
  padding-block: clamp(100px, 14vw, 190px);
  text-align: center;
  background:
    linear-gradient(rgba(7, 8, 9, 0.88), rgba(7, 8, 9, 0.96)),
    url("/assets/lebenslinien-cover.jpg") center 70% / cover;
}

.closing-quote p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 5.2vw, 5rem);
  line-height: 1.05;
}

.closing-quote span {
  display: block;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 72px;
  border-top: 1px solid var(--line);
  background: #050607;
}

.footer-grid {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 60px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid p {
  max-width: 360px;
  margin: 14px 0 0;
  color: #858988;
}

.footer-grid a {
  margin: 3px 0;
  color: #bdc0bf;
}

.footer-grid a:hover {
  color: white;
}

.footer-label {
  margin: 0 0 14px !important;
  color: var(--paper) !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  color: #686c6b;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-intro {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: flex-end;
  padding: calc(var(--header-height) + 100px) 0 90px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.94), rgba(7, 8, 9, 0.72)),
    url("/assets/maltone-haende-klavier.jpg") center / cover;
}

.page-intro::after {
  position: absolute;
  right: -0.08em;
  bottom: -0.3em;
  color: rgba(255, 255, 255, 0.035);
  content: "M";
  font-family: Georgia, serif;
  font-size: min(72vw, 850px);
  line-height: 1;
  pointer-events: none;
}

.page-intro .narrow {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  max-width: var(--max);
  margin-inline: auto;
}

.page-intro h1 {
  max-width: 1000px;
  margin-bottom: 34px;
}

.lead-copy {
  max-width: 760px;
}

.album-story {
  padding-block: clamp(90px, 12vw, 170px);
  background: #0b0d0f;
}

.album-story-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) 1.2fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.album-cover-sticky {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.album-cover-sticky > img {
  width: 100%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.42);
  filter: grayscale(1) brightness(0.88);
}

.album-facts {
  display: grid;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.album-facts span {
  padding: 12px;
  border-top: 1px solid var(--line);
  color: #929695;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.album-facts span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.album-narrative {
  padding-top: 32px;
}

.album-narrative blockquote {
  margin: 70px 0 0;
  padding: 34px 0 0 34px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1.12;
}

.track-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(160, 171, 174, 0.08), transparent 25rem),
    #08090a;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 50px;
}

.section-heading-row h2 {
  max-width: 780px;
  margin-bottom: 0;
}

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

.track-list li {
  display: grid;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px minmax(210px, 0.75fr) 1.25fr;
  gap: 34px;
  transition: background 180ms ease;
}

.track-list li:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent);
}

.track-number {
  color: #656968;
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.track-title p {
  margin-bottom: 8px;
  color: #7f8382;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-title h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.track-description {
  margin: 0;
  color: #afb3b1;
  line-height: 1.8;
}

.album-finale {
  position: relative;
  min-height: 700px;
}

.album-finale > img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) brightness(0.5);
}

.album-finale-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.8), rgba(5, 6, 7, 0.12));
}

.album-finale .narrow {
  max-width: var(--max);
}

.album-finale h2 {
  max-width: 850px;
}

.downloads-section {
  background: #0b0d0f;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.download-card {
  display: grid;
  min-height: 160px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.download-card:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.download-card strong,
.download-card small {
  display: block;
}

.download-card strong {
  margin-bottom: 6px;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}

.download-card small {
  color: #858988;
}

.download-icon {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

.photo-downloads {
  background: #08090a;
}

.usage-note {
  max-width: 390px;
  margin: 0;
  color: #868a89;
  font-size: 0.82rem;
  line-height: 1.7;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101214;
}

.photo-grid figure > img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  filter: grayscale(1) brightness(0.82);
  transition:
    filter 250ms ease,
    transform 500ms ease;
}

.photo-grid figure:nth-child(2) > img {
  object-position: 40% 50%;
}

.photo-grid figure:nth-child(3) > img {
  aspect-ratio: 0.9;
  object-position: 48% 50%;
}

.photo-grid figure:hover > img {
  filter: grayscale(0.2) brightness(0.9);
  transform: scale(1.018);
}

.photo-grid figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 17px;
  color: #c2c5c4;
  font-size: 0.78rem;
}

.photo-grid figcaption a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #858988;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-grid figcaption a:hover {
  color: white;
}

.cover-download {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 50%, rgba(175, 183, 185, 0.08), transparent 28rem),
    #0d0f11;
}

.cover-download-grid {
  display: grid;
  max-width: 970px;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.cover-download-grid > img {
  width: 100%;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
  filter: grayscale(1) brightness(0.88);
}

.press-contact {
  padding-block: clamp(90px, 12vw, 150px);
  text-align: center;
  background:
    linear-gradient(rgba(5, 6, 7, 0.82), rgba(5, 6, 7, 0.94)),
    url("/assets/maltone-haende-klavier.jpg") center / cover;
}

.press-contact h2 {
  margin-inline: auto;
}

.press-contact p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 auto 30px;
  color: #b8bcba;
}

.legal-page {
  padding-block: 90px 140px;
  background: #0c0e10;
}

.legal-layout {
  display: block;
}

.legal-warning {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 22px;
  border: 1px solid rgba(220, 184, 112, 0.42);
  background: rgba(189, 150, 76, 0.07);
}

.legal-warning strong {
  display: block;
  margin-bottom: 10px;
  color: #e5c68f;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-warning p {
  margin: 0;
  color: #b5aa98;
  font-size: 0.84rem;
  line-height: 1.7;
}

.legal-copy {
  max-width: 780px;
  margin-inline: auto;
  color: #b8bcba;
}

.legal-copy h2 {
  margin: 58px 0 18px;
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin-bottom: 18px;
  line-height: 1.82;
}

.legal-copy a {
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
}

.legal-copy mark {
  padding: 1px 4px;
  background: rgba(220, 184, 112, 0.15);
  color: #e5c68f;
}

.legal-updated {
  margin-top: 70px;
  color: #717574;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found {
  display: flex;
  min-height: 78svh;
  align-items: center;
  padding: calc(var(--header-height) + 80px) 0 100px;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.94), rgba(7, 8, 9, 0.64)),
    url("/assets/lebenslinien-cover.jpg") center / cover;
}

.not-found h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.not-found p:not(.eyebrow) {
  margin-bottom: 32px;
  color: #b9bcbb;
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 5px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 23px;
    height: 1px;
    background: var(--paper);
  }

  .mobile-menu nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 7, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero-image {
    left: 30%;
  }

  .split-copy,
  .about-grid,
  .press-teaser-grid,
  .album-story-grid,
  .cover-download-grid {
    grid-template-columns: 1fr;
  }

  .track-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 60px;
  }

  .portrait-frame {
    width: min(100%, 600px);
    aspect-ratio: 1;
  }

  .press-photo-stack {
    width: min(100%, 660px);
  }

  .album-cover-sticky {
    position: relative;
    top: auto;
    width: min(100%, 590px);
  }

  .download-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-card:last-child {
    grid-column: 1 / -1;
  }

  .photo-grid figure:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-warning {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .section {
    padding-block: 86px;
  }

  .brand-logo-crop {
    width: 148px;
    height: 46px;
  }

  .brand-logo-crop img {
    top: -52px;
    left: -10px;
    width: 172px;
  }

  .hero {
    min-height: 780px;
    align-items: flex-end;
    padding-bottom: 100px;
  }

  .hero-image {
    inset: 0;
  }

  .hero-image img {
    object-position: 52% center;
    opacity: 0.54;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #050607 4%, rgba(5, 6, 7, 0.9) 42%, rgba(5, 6, 7, 0.22) 100%),
      linear-gradient(90deg, rgba(5, 6, 7, 0.45), transparent);
  }

  .hero-content {
    padding-top: 260px;
  }

  .hero-lead br {
    display: none;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .split-copy {
    gap: 42px;
  }

  .track-ribbon {
    grid-template-columns: 1fr;
  }

  .track-ribbon-item {
    min-height: 126px;
  }

  .image-break {
    height: 540px;
  }

  .image-break > img {
    object-position: 58% 50%;
  }

  .portrait-frame {
    aspect-ratio: 0.9;
  }

  .press-photo-stack {
    min-height: 440px;
  }

  .press-photo-stack img:first-child {
    width: 78%;
  }

  .press-photo-stack img:last-child {
    width: 52%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .page-intro {
    min-height: 560px;
    padding-bottom: 62px;
  }

  .page-intro .narrow {
    width: min(calc(100% - 32px), var(--max));
  }

  .album-narrative blockquote {
    margin-top: 46px;
    padding: 24px 0 0 20px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .track-list li {
    padding: 32px 0;
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .track-description {
    grid-column: 2;
  }

  .album-finale,
  .album-finale > img {
    min-height: 620px;
    height: 620px;
  }

  .download-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .download-card:last-child,
  .photo-grid figure:last-child {
    max-width: none;
    grid-column: auto;
  }

  .download-card {
    min-height: 130px;
  }

  .photo-grid figure > img,
  .photo-grid figure:nth-child(3) > img {
    aspect-ratio: 1;
  }

  .cover-download-grid {
    gap: 50px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .social-row {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .legal-page,
  .page-intro {
    min-height: 0;
    padding: 20px;
    background: white;
    color: black;
  }

  .legal-copy,
  .legal-copy a {
    color: black;
  }
}
