:root {
  color-scheme: dark;
  --bg: #080807;
  --panel: #151411;
  --panel-soft: #201e18;
  --text: #f6f0df;
  --muted: #c5bda9;
  --accent: #ffd84f;
  --accent-strong: #78d06f;
  --line: #373225;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(8, 8, 7, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px var(--shadow);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--accent);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a,
.button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible {
  border-color: var(--accent);
  outline: none;
}

main {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

section {
  padding: clamp(48px, 8vw, 92px) 0;
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.intro {
  min-height: calc(100vh - 88px);
  align-items: center;
}

.copy {
  max-width: 720px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
}

h2 {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--panel-soft);
}

.button.primary {
  background: var(--accent);
  color: #151000;
}

.portrait {
  justify-self: center;
  width: min(100%, 360px);
  margin: 0;
}

.portrait img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 60px var(--shadow);
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.song-grid article,
.notice,
address,
.imprint {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.song-grid article {
  padding: 22px;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li + li {
  margin-top: 7px;
}

.notice,
address {
  padding: clamp(22px, 4vw, 34px);
}

.muted {
  color: var(--muted);
}

address {
  font-style: normal;
}

.imprint {
  padding: clamp(24px, 5vw, 42px);
}

.imprint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

details {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
}

details p:first-of-type {
  margin-top: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
}

footer p {
  margin: 0;
}

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

  .site-nav {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .section-grid,
  .song-grid,
  .imprint-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: auto;
  }

  h1 {
    max-width: 11ch;
  }
}

@media (max-width: 520px) {
  main,
  footer {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .site-nav a,
  .button {
    width: 100%;
  }

  .actions {
    display: grid;
  }

  footer {
    display: block;
  }
}
