:root {
  --ink: #11100e;
  --muted: #64605a;
  --paper: #f6f3ee;
  --paper-soft: #ebe6df;
  --line: rgba(17, 16, 14, 0.13);
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(17, 16, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 3vw, 44px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.78), rgba(17, 16, 14, 0));
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(246, 243, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.9vw, 14px);
  font-size: 0.76rem;
  font-weight: 400;
}

.site-nav a,
.nav-dropdown-toggle {
  text-decoration: none;
  opacity: 0.82;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.5em;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-0.18em) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 10px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.07), rgba(255, 253, 249, 0.025)),
    #120820;
  border: 1px solid rgba(214, 208, 223, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    #11100e url("assets/hero.png") center center / cover no-repeat;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 8, 35, 0.78), rgba(45, 23, 78, 0.32) 52%, rgba(20, 10, 38, 0.24)),
    linear-gradient(0deg, rgba(11, 7, 24, 0.78), rgba(58, 30, 94, 0.06) 55%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 14vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.72;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(4.1rem, 10vw, 8.8rem);
  line-height: 0.92;
  font-weight: 760;
  overflow-wrap: normal;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 720;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 253, 249, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-subheading {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
}

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

.button-ghost {
  border-color: rgba(255, 253, 249, 0.48);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.section {
  padding: clamp(72px, 11vw, 132px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.intro-section {
  background: var(--white);
}

.intro-section p:not(.eyebrow),
.section-heading p,
.release-panel p,
.text-stack p,
.update-card p {
  color: var(--muted);
}

.intro-section strong {
  color: var(--ink);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.doorway-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 208, 223, 0.16), transparent 28%),
    linear-gradient(180deg, #100822, #170b2f 48%, #120820);
  color: var(--white);
}

.doorway-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 253, 249, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.18;
}

.doorway-section .section-inner {
  position: relative;
}

.doorway-heading p:last-child {
  color: #d6d0df;
}

.doorway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.doorway-card {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(214, 208, 223, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.055), rgba(255, 253, 249, 0.02)),
    rgba(255, 253, 249, 0.025);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16), 0 0 20px rgba(104, 73, 148, 0.08), inset 0 1px 0 rgba(255, 253, 249, 0.06);
  color: var(--white);
  text-decoration: none;
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.doorway-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: 6px;
  opacity: 0.18;
  transition: opacity 280ms ease;
}

.doorway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 26% 14%, rgba(214, 208, 223, 0.12), transparent 32%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.doorway-card:nth-child(1)::before {
  border: 1px solid rgba(255, 253, 249, 0.14);
  box-shadow: inset 0 0 22px rgba(214, 208, 223, 0.1), 0 0 18px rgba(214, 208, 223, 0.05);
}

.doorway-card:nth-child(1) .doorway-icon {
  text-shadow: 0 14px 22px rgba(214, 208, 223, 0.24);
}

.doorway-card:nth-child(2)::before {
  background:
    radial-gradient(circle, transparent 0 28%, rgba(214, 208, 223, 0.13) 29%, transparent 30%),
    radial-gradient(circle, transparent 0 45%, rgba(214, 208, 223, 0.08) 46%, transparent 47%);
  background-position: 50% 28%;
  background-size: 190px 190px;
}

.doorway-card:nth-child(3)::before {
  background:
    linear-gradient(0deg, transparent 0 27px, rgba(255, 253, 249, 0.08) 28px),
    linear-gradient(90deg, rgba(255, 253, 249, 0.055) 1px, transparent 1px);
  background-size: 100% 28px, 36px 100%;
}

.doorway-card:nth-child(4)::before {
  background:
    radial-gradient(circle at 25% 32%, rgba(255, 253, 249, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 45%, rgba(255, 253, 249, 0.16) 0 1px, transparent 2px),
    linear-gradient(34deg, transparent 0 38%, rgba(255, 253, 249, 0.07) 39%, transparent 40%);
}

.doorway-card:nth-child(5)::before {
  border: 1px dashed rgba(255, 253, 249, 0.14);
  background:
    repeating-linear-gradient(0deg, rgba(255, 253, 249, 0.045) 0 1px, transparent 1px 13px),
    linear-gradient(0deg, rgba(255, 253, 249, 0.035), rgba(255, 253, 249, 0.035));
}

.doorway-card:nth-child(5)::after {
  background:
    linear-gradient(145deg, rgba(168, 54, 46, 0.14), transparent 28%),
    radial-gradient(circle at 30% 15%, rgba(255, 253, 249, 0.08), transparent 34%);
}

.doorway-card:nth-child(6)::before {
  background:
    radial-gradient(circle at 50% 42%, transparent 0 30%, rgba(255, 253, 249, 0.11) 31%, transparent 32%),
    radial-gradient(circle at 50% 42%, transparent 0 48%, rgba(255, 253, 249, 0.07) 49%, transparent 50%),
    linear-gradient(30deg, transparent 0 49%, rgba(255, 253, 249, 0.06) 50%, transparent 51%),
    linear-gradient(150deg, transparent 0 49%, rgba(255, 253, 249, 0.05) 50%, transparent 51%);
}

.doorway-card:hover,
.doorway-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(214, 208, 223, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.075), rgba(255, 253, 249, 0.028)),
    rgba(255, 253, 249, 0.04);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.22), 0 0 34px rgba(104, 73, 148, 0.18);
}

.doorway-card:hover::after,
.doorway-card:focus-visible::after {
  opacity: 1;
}

.doorway-card:hover::before,
.doorway-card:focus-visible::before {
  opacity: 0.34;
}

.doorway-icon {
  margin-bottom: auto;
  color: rgba(214, 208, 223, 0.7);
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 0 14px rgba(214, 208, 223, 0.22));
}

.doorway-card h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.doorway-card p {
  margin: 12px 0 0;
  color: rgba(214, 208, 223, 0.78);
}

.doorway-link {
  display: inline-flex;
  margin-top: 18px;
  color: #fffdf9;
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.82;
}

.doorway-stamp {
  position: absolute;
  top: 18px;
  right: 16px;
  color: rgba(255, 253, 249, 0.38);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gallery-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.045), transparent 42%),
    linear-gradient(180deg, #180b30, #120820 58%, #0f071d);
  color: var(--white);
}

.gallery-exhibition {
  display: grid;
  gap: clamp(36px, 7vw, 92px);
}

.gallery-intro {
  width: min(780px, 100%);
}

.gallery-intro .text-stack {
  margin: 22px 0 28px;
  color: #d6d0df;
}

.gallery-intro .button {
  margin-top: 4px;
}

.gallery-note {
  margin: 18px 0 0;
  color: rgba(214, 208, 223, 0.72);
  font-size: 0.9rem;
}

.gallery-featured {
  position: relative;
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(255, 253, 249, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.1), rgba(255, 253, 249, 0.04)),
    rgba(255, 253, 249, 0.04);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.26);
}

.gallery-featured img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 8.5;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.gallery-featured figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  color: #d6d0df;
}

.gallery-featured figcaption span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.gallery-featured figcaption strong {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.105), rgba(255, 253, 249, 0.055)),
    rgba(255, 253, 249, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(255, 253, 249, 0.24);
  background: rgba(255, 253, 249, 0.1);
}

.gallery-image {
  display: block;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  background: #120820;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 420ms ease;
}

.gallery-card:hover .gallery-image img,
.gallery-card:focus-within .gallery-image img {
  transform: scale(1.04);
}

.gallery-card-body {
  padding: 20px;
}

.gallery-card-body h3 {
  color: var(--white);
}

.gallery-card-body p {
  margin: 8px 0 0;
  color: rgba(214, 208, 223, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-card-body span {
  display: inline-flex;
  margin-top: 16px;
  color: #d6d0df;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.gallery-card-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.story-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.story-section-soft {
  background:
    linear-gradient(180deg, var(--paper), var(--white));
}

.story-section .text-stack {
  max-width: 720px;
}

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

.story-index-card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 240ms ease, border-color 240ms ease;
}

.story-index-card:hover,
.story-index-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(17, 16, 14, 0.24);
}

.story-index-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.collection-placeholder-section {
  background: var(--paper);
}

.reflection-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(214, 208, 223, 0.16), transparent 28%),
    linear-gradient(180deg, #f6f3ee, #fffdf9 78%);
}

.reflection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.reflection-card {
  min-height: 280px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow);
}

.reflection-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.reflection-card p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.gallery-info-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 5vw, 54px);
}

.gallery-info {
  padding: 20px;
  border: 1px solid rgba(255, 253, 249, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.055);
}

.gallery-info span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 999px;
  color: #d6d0df;
}

.gallery-info svg {
  width: 18px;
  height: 18px;
}

.gallery-info svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-info h3 {
  color: var(--white);
  font-size: 1rem;
}

.gallery-info p {
  margin: 9px 0 0;
  color: rgba(214, 208, 223, 0.74);
  font-size: 0.92rem;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.song-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 0.55fr);
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.artwork {
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.9), rgba(235, 230, 223, 0.92)),
    var(--paper-soft);
}

.artwork img {
  width: 92%;
  height: 92%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(17, 16, 14, 0.16));
  transform: scale(1);
  transition: transform 420ms ease, filter 420ms ease;
}

.song-card:hover .artwork img,
.song-card:focus-within .artwork img {
  filter: drop-shadow(0 22px 32px rgba(17, 16, 14, 0.2));
  transform: scale(1.04);
}

/*
  Legacy placeholder artwork styling kept out of use now that real covers are loaded.
  Re-enable a class below only if you temporarily need generated color placeholders again.
*/
.artwork-placeholder {
  display: flex;
  align-items: end;
  padding: 20px;
  color: rgba(255, 253, 249, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 62% 34%, rgba(255, 253, 249, 0.82), transparent 20%),
    linear-gradient(135deg, #11100e, #4d4942 45%, #ddd5ca);
}

.artwork-placeholder-fire {
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 253, 249, 0.92), transparent 18%),
    linear-gradient(145deg, #11100e, #6f6254 48%, #d8d0c5);
}

.artwork-placeholder-moment {
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 253, 249, 0.9), transparent 19%),
    linear-gradient(145deg, #181713, #a9a193 54%, #f7f0e6);
}

.artwork-placeholder-fear {
  background:
    radial-gradient(circle at 74% 32%, rgba(255, 253, 249, 0.88), transparent 18%),
    linear-gradient(145deg, #101010, #555958 45%, #d6d8d1);
}

.artwork-placeholder-matters {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 253, 249, 0.84), transparent 18%),
    linear-gradient(145deg, #11100e, #81776d 46%, #efe9de);
}

.artwork-placeholder-chaos {
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 253, 249, 0.84), transparent 17%),
    repeating-linear-gradient(115deg, rgba(255, 253, 249, 0.08) 0 8px, transparent 8px 19px),
    linear-gradient(145deg, #11100e, #5d5a53 45%, #ded8ce);
}

.song-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.song-body p {
  margin: 0;
  color: var(--muted);
}

.song-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.song-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.1;
}

.song-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.song-actions .button {
  flex: 1 1 140px;
}

.release-section,
.contact-section {
  background: var(--white);
}

.release-date {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.release-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.release-panel h3 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
}

.release-panel p + p {
  margin-top: 14px;
}

.release-panel .button {
  margin-top: 28px;
}

.release-panel .release-status {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 760;
}

.release-quote {
  margin: clamp(22px, 4vw, 34px) 0 0;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--line);
}

.release-quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.35;
}

.release-quote cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

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

.update-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(20px, 4vw, 56px);
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.update-card:last-child {
  border-bottom: 1px solid var(--line);
}

.update-card time {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.update-card p {
  margin: 0;
}

.update-detail p + p {
  margin-top: 12px;
}

.text-stack p {
  margin: 0;
  font-size: 1.06rem;
}

.text-stack p + p,
.text-stack p + h3,
.text-stack h3 + p {
  margin-top: 18px;
}

.text-stack h3 {
  font-size: 1rem;
  letter-spacing: 0;
}

.journal-section {
  background:
    linear-gradient(180deg, #fffdf9, #f6f0e3);
}

.journal-paper {
  position: relative;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(122, 101, 70, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(122, 101, 70, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf0, #f8f0df);
  background-size: 42px 100%, 100% 100%;
  box-shadow: 0 28px 80px rgba(88, 68, 38, 0.12);
}

.journal-paper::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 28px;
  width: 1px;
  background: rgba(122, 101, 70, 0.18);
}

.journal-paper time {
  display: block;
  margin-bottom: 24px;
  color: #7b6b55;
  font-size: 0.92rem;
  font-weight: 800;
}

.journal-paper p {
  margin: 0;
  color: #2a241c;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.75;
}

.journal-paper p + p {
  margin-top: 16px;
}

.journal-signature {
  font-weight: 800;
}

.journal-paper .button {
  margin-top: 30px;
}

.termite-section {
  background:
    linear-gradient(180deg, #171612, #232018);
  color: #f6f0e3;
}

.termite-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.termite-layout > div > p:not(.eyebrow):not(.classified-stamp) {
  max-width: 520px;
  color: rgba(246, 240, 227, 0.72);
}

.classified-stamp {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 8px 14px;
  border: 2px solid #b84135;
  color: #d64b3f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  transform: rotate(-4deg);
}

.termite-report {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(246, 240, 227, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(246, 240, 227, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(246, 240, 227, 0.04) 1px, transparent 1px),
    #ede3cf;
  background-size: 28px 28px;
  color: #16130e;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.termite-report h3 {
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  text-transform: uppercase;
}

.termite-report time,
.termite-archive time {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 900;
}

.termite-report time {
  color: rgba(22, 19, 14, 0.62);
}

.termite-archive time {
  color: rgba(246, 240, 227, 0.54);
}

.termite-report dl {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.termite-report dl div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(22, 19, 14, 0.17);
}

.termite-report dt {
  font-weight: 900;
  text-transform: uppercase;
}

.termite-report dd {
  margin: 0;
  font-weight: 700;
}

.termite-report p {
  margin: 0;
  color: #2b251d;
  font-size: 1.02rem;
}

.termite-report p + p {
  margin-top: 12px;
}

.termite-report .button {
  margin-top: 28px;
}

.termite-archive {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 5vw, 54px);
}

.termite-archive article {
  padding: 22px;
  border: 1px solid rgba(246, 240, 227, 0.18);
  border-radius: 8px;
  background: rgba(237, 227, 207, 0.08);
}

.termite-archive h3 {
  margin-top: 10px;
  color: #f6f0e3;
}

.report-number {
  margin: 10px 0 0;
  color: rgba(246, 240, 227, 0.54);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.termite-archive p {
  margin: 12px 0 0;
  color: rgba(246, 240, 227, 0.7);
}

.termite-archive .button {
  margin-top: 18px;
}

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

.termite-categories span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(246, 240, 227, 0.16);
  border-radius: 999px;
  color: rgba(246, 240, 227, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.research-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.05), transparent 42%),
    linear-gradient(180deg, #180b30, #150a2a 55%, #100822);
  color: var(--white);
}

.research-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 253, 249, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
}

.research-section .section-inner {
  position: relative;
}

.research-intro {
  width: min(820px, 100%);
  margin-bottom: clamp(34px, 6vw, 64px);
}

.research-intro .text-stack {
  max-width: 690px;
  color: #d6d0df;
}

.research-lede {
  margin: 22px 0 20px;
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 720;
  line-height: 1.18;
}

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

.research-card {
  min-height: 210px;
  display: block;
  padding: 22px;
  border: 1px solid rgba(255, 253, 249, 0.14);
  background: rgba(255, 253, 249, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  color: inherit;
  text-decoration: none;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.research-card:hover,
.research-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 253, 249, 0.26);
  background: rgba(255, 253, 249, 0.08);
}

.research-card .eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 253, 249, 0.62);
}

.research-card h3 {
  color: var(--white);
}

.research-card p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 253, 249, 0.74);
}

.research-card span {
  display: inline-flex;
  margin-top: 18px;
  color: #d6d0df;
  font-size: 0.88rem;
  font-weight: 800;
}

.research-document-section {
  background: var(--paper);
}

.research-document-section:nth-of-type(even) {
  background: var(--white);
}

.contact-panel {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper);
}

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

.contact-form label {
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 8px;
}

.form-note,
.form-status {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status:empty {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(46px, 8vw, 84px) clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 208, 223, 0.12), transparent 26%),
    linear-gradient(180deg, #120820, #0f071d);
  color: #d6d0df;
  font-size: 0.98rem;
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.site-footer small {
  display: block;
  max-width: 560px;
  margin-top: 26px;
  color: rgba(214, 208, 223, 0.62);
}

.site-footer a {
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 64px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    font-size: 0.86rem;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 13px 12px;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    margin: 0 0 6px;
    padding: 4px 10px 10px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    color: var(--ink);
    background: rgba(246, 243, 238, 0.92);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px 10px 22px;
  }
}

@media (max-width: 980px) {
  .song-grid,
  .termite-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .doorway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-intro {
    position: static;
  }

  .gallery-grid,
  .gallery-info-row,
  .reflection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .song-card {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  }

  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-bottom: 8vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 8, 35, 0.86), rgba(45, 23, 78, 0.44)),
      linear-gradient(0deg, rgba(11, 7, 24, 0.84), rgba(58, 30, 94, 0.1) 62%);
  }

  .gallery-grid,
  .gallery-info-row,
  .reflection-grid,
  .story-index-grid,
  .termite-archive,
  .doorway-grid {
    grid-template-columns: 1fr;
  }

  .gallery-featured img {
    aspect-ratio: 4 / 3;
  }

  .song-card {
    grid-template-columns: 1fr;
  }

  .artwork {
    min-height: 0;
    height: min(82vw, 320px);
  }

  .update-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .research-card {
    min-height: 0;
  }

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

@media (max-width: 430px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .brand {
    max-width: none;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.1rem);
  }
}
