:root {
  --ink: #090807;
  --deep: #11191a;
  --copper: #d68a4c;
  --parchment: #f0ddc4;
  --frost: #cce7e4;
  --bruise: #6e4b63;
  --moss: #77845f;
  --muted: rgba(240, 221, 196, 0.68);
  --line: rgba(240, 221, 196, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(240, 221, 196, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #090807 0%, #101314 44%, #090807 100%);
  color: var(--parchment);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--parchment);
  color: var(--ink);
  padding: 10px 14px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.9), rgba(9, 8, 7, 0.2));
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: clamp(12px, 3vw, 36px);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--frost);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: end;
  gap: clamp(22px, 5vw, 80px);
  padding: 104px clamp(18px, 4vw, 56px) 48px;
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  min-height: 70svh;
  align-self: stretch;
  border: 1px solid var(--line);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.12), transparent 52%, rgba(9, 8, 7, 0.46)),
    linear-gradient(180deg, transparent 58%, rgba(9, 8, 7, 0.72));
}

.map-trace {
  position: absolute;
  right: 8%;
  bottom: 8%;
  z-index: 2;
  width: min(38vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(204, 231, 228, 0.46);
  border-radius: 50%;
}

.map-trace::before,
.map-trace::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(214, 138, 76, 0.42);
  border-radius: 50%;
}

.map-trace::after {
  inset: 48% 6%;
  height: 1px;
  border: 0;
  background: rgba(204, 231, 228, 0.48);
  transform: rotate(-27deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(16px, 5vw, 70px);
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.94;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(4.8rem, 13vw, 11.5rem);
  font-weight: 700;
}

h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  font-weight: 600;
}

h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 600;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--parchment);
  color: var(--ink);
}

.button.secondary {
  color: var(--frost);
}

.button:hover {
  border-color: var(--copper);
}

.hero-ritual {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  z-index: 4;
  display: grid;
  gap: 4px;
  max-width: 270px;
  padding-left: 18px;
  border-left: 1px solid var(--copper);
}

.hero-ritual span,
.hero-ritual small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ritual strong {
  color: var(--frost);
  font-size: 1.1rem;
}

.intro-band {
  padding: clamp(42px, 8vw, 90px) clamp(18px, 4vw, 56px);
  border-block: 1px solid var(--line);
  background: rgba(204, 231, 228, 0.04);
}

.intro-band p {
  max-width: var(--max);
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.content-section,
.listen-section,
.contact-section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(68px, 11vw, 132px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 5vw, 58px);
  align-items: start;
  margin-bottom: clamp(32px, 6vw, 64px);
}

.release-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.release-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
  padding: clamp(18px, 4vw, 38px);
  background: rgba(9, 8, 7, 0.82);
}

.release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.64;
  white-space: pre-line;
}

.visual-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 4vw, 52px);
}

.video-column {
  display: grid;
  align-content: start;
  gap: 22px;
}

.video-card {
  border: 1px solid var(--line);
  background: rgba(17, 25, 26, 0.66);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.video-card h3 {
  padding: 14px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-mosaic {
  columns: 2 230px;
  column-gap: 14px;
}

.image-tile {
  break-inside: avoid;
  margin: 0 0 14px;
  border: 1px solid var(--line);
  background: var(--deep);
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  filter: saturate(0.86);
  transition: transform 500ms ease, filter 500ms ease;
}

.image-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.listen-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  border-block: 1px solid var(--line);
}

.listen-copy {
  position: sticky;
  top: 96px;
}

.audio-list {
  display: grid;
  gap: 14px;
}

.audio-item {
  border: 1px solid var(--line);
  background: rgba(240, 221, 196, 0.045);
}

.audio-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 62px;
  border: 0;
  padding: 16px;
  background: transparent;
  color: var(--parchment);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.audio-summary span {
  color: var(--copper);
}

.audio-embed {
  display: none;
  padding: 0 12px 12px;
}

.audio-item.is-open .audio-embed {
  display: block;
}

.audio-embed iframe {
  width: 100%;
}

.contact-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.contact-link {
  color: var(--frost);
  font-size: clamp(1.1rem, 3vw, 2rem);
  text-decoration-color: rgba(204, 231, 228, 0.38);
  text-underline-offset: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero-image-wrap {
    min-height: 54svh;
    order: 2;
  }

  .hero-copy {
    order: 1;
    padding-bottom: 0;
  }

  .hero-ritual {
    position: relative;
    right: auto;
    bottom: auto;
    order: 3;
    margin-top: 4px;
  }

  .section-heading,
  .release-card,
  .visual-layout,
  .listen-section {
    grid-template-columns: 1fr;
  }

  .listen-copy {
    position: static;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 14px;
  }

  .brand-mark {
    max-width: 130px;
  }

  .site-nav {
    font-size: 0.68rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 5.5rem);
  }

  .release-card {
    padding: 16px;
  }

  .site-footer {
    flex-direction: column;
  }
}
