:root {
  color-scheme: light;
  --surface: #fcf8fa;
  --surface-soft: #f3f0f1;
  --surface-card: #ffffff;
  --ink: #151821;
  --muted: #575a64;
  --line: #d8d4d7;
  --accent: #4648d4;
  --accent-soft: #e7e7ff;
  --warm: #c86f3c;
  --shadow: 0 18px 50px rgba(21, 24, 33, 0.08);
  --container: 1180px;
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 212, 215, 0.72);
  background: rgba(252, 248, 250, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 40px), var(--container));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding: 6px 0;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent);
  border-color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-card);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn.secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
}

.btn.icon {
  width: 44px;
  padding: 0;
  border-radius: 999px;
}

.page {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) 0 clamp(64px, 9vw, 124px);
}

.eyebrow,
.tag,
.meta,
.small-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero h1,
.page-title,
.section-title,
.card h3,
.article h2,
.article h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 16px 0 24px;
  font-size: clamp(44px, 6vw, 76px);
}

.lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

.hero-media img,
.media-card img,
.article-image img,
.gallery-item img,
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.hero-media:hover img,
.media-card:hover img,
.article:hover img,
.gallery-item:hover img,
.album-cover:hover img {
  transform: scale(1.035);
  filter: grayscale(0);
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section.band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--surface-soft);
}

.section-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 48px);
}

.section-copy {
  margin: 0;
  color: var(--muted);
}

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

.media-card,
.article,
.contact-panel {
  border-radius: 8px;
  background: var(--surface-card);
}

.media-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.media-card:hover,
.article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.media-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-soft);
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(21, 24, 33, 0.18);
  color: #fff;
  opacity: 0;
  transition: opacity 180ms ease;
}

.media-card:hover .play {
  opacity: 1;
}

.media-body,
.article-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  padding: 7px 10px;
}

.tag.warm {
  color: var(--warm);
  background: #f8e7dd;
}

.card h3,
.article h3 {
  margin: 12px 0 4px;
  font-size: 28px;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 12;
  background: var(--surface-soft);
}

.page-hero {
  padding: clamp(48px, 7vw, 92px) 0 40px;
}

.page-title {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 78px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.chip.is-active,
.chip:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.music-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-bottom: 112px;
}

.album-cover {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}

.track-list {
  border-top: 1px solid var(--line);
}

.track {
  display: grid;
  grid-template-columns: 42px 1fr auto 44px;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.track strong {
  display: block;
  line-height: 1.2;
}

.track .material-symbols-outlined {
  color: var(--accent);
}

.player {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 18;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  border: 1px solid rgba(216, 212, 215, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 50px rgba(21, 24, 33, 0.12);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
}

.progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.progress span {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--accent);
}

.gallery {
  columns: 3 250px;
  column-gap: 24px;
  padding-bottom: 96px;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 24px;
  cursor: pointer;
}

.gallery-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-soft);
}

.gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 24px;
  padding-bottom: 96px;
}

.article {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.article.featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-column: 1 / -1;
}

.article-image {
  min-height: 340px;
  overflow: hidden;
  background: var(--surface-soft);
}

.article.featured .article-image {
  min-height: 520px;
}

.article-body p {
  margin: 12px 0 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 32px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 0;
}

.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(252, 248, 250, 0.94);
  backdrop-filter: blur(18px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-content {
  width: min(980px, 100%);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface-card);
}

.lightbox-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

@media (max-width: 860px) {
  .nav {
    min-height: 66px;
  }

  .nav-links {
    position: fixed;
    inset: 66px 0 auto 0;
    display: none;
    border-bottom: 1px solid var(--line);
    background: rgba(252, 248, 250, 0.98);
    padding: 18px 20px 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-actions .btn:not(.icon) {
    display: none;
  }

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

  .hero,
  .split,
  .music-layout,
  .contact-panel,
  .article.featured {
    grid-template-columns: 1fr;
  }

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

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

  .album-cover {
    position: static;
  }

  .track {
    grid-template-columns: 32px 1fr 54px;
  }

  .track button {
    display: none;
  }

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

  .player .progress {
    grid-column: 1 / -1;
  }

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