:root {
  --ink: #0d0d0b;
  --charcoal: #11110f;
  --paper: #f3d8a7;
  --sand: #e8c18a;
  --ember: #cc5a28;
  --teal: #102f31;
  --teal-2: #24595a;
  --cream: #f5e9cf;
  --muted: #d6c8ad;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--ink); }
body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--serif);
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(calc(100% - 56px), 1440px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
  color: var(--cream);
}

.brand-link {
  display: block;
  width: clamp(176px, 18vw, 260px);
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.header-logo { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 34px); }
.site-nav a {
  color: #f7e5c2;
  text-decoration: none;
  letter-spacing: .24em;
  font-size: .69rem;
  text-shadow: 0 1px 14px rgba(0,0,0,.6);
  transition: opacity .2s ease;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible { opacity: .65; }

.hero {
  position: relative;
  min-height: min(980px, 100svh);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  background:
    linear-gradient(to bottom, rgba(5,18,18,.06), rgba(17,10,5,.03) 62%, rgba(10,8,6,.72) 100%),
    url("assets/hero-bg.webp") 50% 50% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 53% 46%, rgba(3,10,10,.13) 0%, rgba(3,10,10,.06) 34%, transparent 58%),
    linear-gradient(90deg, rgba(5,21,22,.08) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,.04) 74%, rgba(0,0,0,.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(690px, 58vw);
  margin: 10vh 0 0 15vw;
  padding: 28px 24px 24px;
  text-align: center;
  color: #f8e8c8;
  text-shadow: 0 2px 15px rgba(0,0,0,.24);
}
.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18% -14%;
  background: radial-gradient(ellipse, rgba(14,20,17,.24) 0%, rgba(13,18,16,.10) 40%, transparent 72%);
  pointer-events: none;
}

h1 {
  margin: 0;
  font-size: clamp(4.5rem, 9vw, 8.4rem);
  line-height: .88;
  font-weight: 500;
  letter-spacing: .065em;
  color: #f4e2bd;
  text-shadow: 1px 3px 0 rgba(42,25,13,.28), 0 6px 24px rgba(0,0,0,.22);
}

.album-title-mark {
  width: min(520px, 88%);
  height: auto;
  margin: 1.1rem auto .45rem;
  filter: drop-shadow(0 5px 9px rgba(0,0,0,.45));
}

.release-line,
.about-jump,
.album-facts,
.section-kicker,
.closing-tagline,
.previous-album-link {
  letter-spacing: .24em;
}
.rule,
.short-rule {
  display: block;
  height: 1px;
  background: currentColor;
}
.rule {
  width: 38px;
  margin: .65rem auto .9rem;
  opacity: .82;
  color: #2a2118;
}
.release-line {
  display: inline-block;
  margin: 0;
  padding: .72rem 1.35rem .68rem;
  color: #ffe2ad;
  background: rgba(8, 11, 10, .84);
  border: 1px solid rgba(232, 118, 56, .92);
  border-left-width: 3px;
  border-right-width: 3px;
  box-shadow:
    0 10px 30px rgba(0,0,0,.30),
    inset 0 0 0 1px rgba(255,225,177,.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  font-size: clamp(.86rem, 1.28vw, 1.12rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,.88);
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 1.2rem 0 .95rem;
}
.primary-button,
.stream-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(244,226,189,.72);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.primary-button {
  appearance: none;
  cursor: pointer;
  min-width: 265px;
  padding: 17px 26px;
  background: rgba(8,13,12,.94);
  color: #f6e8ca;
  font-family: var(--serif);
  font-size: .75rem;
  letter-spacing: .22em;
}
.primary-button span { margin-left: 12px; font-size: .68rem; }
.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  background: #f2d5a2;
  color: #15100a;
  border-color: #f2d5a2;
}
.about-jump {
  display: inline-block;
  margin-top: .25rem;
  color: #21180f;
  text-decoration: none;
  font-size: .66rem;
  font-weight: 700;
  text-shadow: 0 1px rgba(255,255,255,.1);
}
.about-jump span { margin-left: 7px; }

.album-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 30%, rgba(97,47,22,.18), transparent 31%),
    #10100e;
  color: var(--cream);
  padding: clamp(72px, 9vw, 124px) 28px;
  border-top: 1px solid rgba(237,201,145,.08);
}
.album-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .83fr) 1.17fr;
  gap: clamp(52px, 7vw, 100px);
  align-items: center;
}
.cover-wrap {
  margin: 0;
  padding: 0;
  box-shadow: 0 28px 75px rgba(0,0,0,.45);
  border: 1px solid rgba(242,212,165,.25);
}
.cover-art { width: 100%; height: auto; }
.album-copy { max-width: 620px; }
.section-kicker {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: .68rem;
}
.album-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 3.65rem);
  line-height: 1.09;
  font-weight: 400;
  letter-spacing: .12em;
}
.short-rule {
  width: 42px;
  margin: 27px 0;
  color: var(--sand);
}
.album-description {
  max-width: 590px;
  margin: 0;
  color: #ddd3bf;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.62;
  letter-spacing: .045em;
}
.album-facts {
  margin: 26px 0 0;
  color: #dc6b38;
  font-size: .77rem;
  font-weight: 700;
  line-height: 1.5;
}
blockquote { margin: 0; }
blockquote p {
  margin: 0 0 10px;
  color: #e2bf82;
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
}
blockquote cite {
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .22em;
  color: #b9aa91;
}
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.streaming-links:empty { display: none; }
.stream-button {
  min-height: 42px;
  padding: 10px 14px;
  color: #f4ddba;
  border-color: rgba(232,193,138,.35);
  font-family: var(--sans);
  font-size: .67rem;
  letter-spacing: .12em;
}
.stream-button:hover,
.stream-button:focus-visible {
  background: var(--paper);
  color: #16110c;
  border-color: var(--paper);
}

.closing-landscape {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: end center;
  background: url("assets/footer-landscape.webp") center center / cover no-repeat;
  overflow: hidden;
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,7,4,.02), rgba(7,8,7,.10) 46%, rgba(9,10,9,.96) 100%);
}
.closing-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 175px 24px 34px;
  text-align: center;
  background: linear-gradient(to top, rgba(7,8,7,.96), rgba(7,8,7,.45) 48%, transparent);
}
.closing-logo {
  width: min(360px, 92vw);
  margin: 0 auto 12px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.62));
}
.closing-tagline {
  margin: 0;
  color: #baa98f;
  font-size: .58rem;
}
.previous-album-link {
  display: inline-block;
  margin-top: 19px;
  color: #d9c6a7;
  text-decoration: none;
  font-size: .55rem;
  opacity: .72;
  transition: opacity .2s ease;
}
.previous-album-link:hover,
.previous-album-link:focus-visible { opacity: 1; }

/* Teaser modal */
.video-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .16s ease;
}
.video-modal.is-open { opacity: 1; }
.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,8,8,.78);
  backdrop-filter: blur(4px);
}
.video-dialog {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100vw - 38px));
  background: #0b0d0c;
  border: 1px solid rgba(231,194,137,.5);
  box-shadow: 0 28px 100px rgba(0,0,0,.65);
  transform: translateY(8px) scale(.985);
  transition: transform .16s ease;
}
.video-modal.is-open .video-dialog { transform: translateY(0) scale(1); }
.video-dialog-bar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  color: #e9d5b4;
  border-bottom: 1px solid rgba(231,194,137,.18);
}
.video-dialog-bar p {
  margin: 0;
  font-size: .64rem;
  letter-spacing: .22em;
}
.video-close {
  appearance: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #f2ddbb;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.65rem;
  line-height: 1;
}
.video-close:hover,
.video-close:focus-visible { background: rgba(255,255,255,.08); }
.video-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-direct-link {
  display: block;
  padding: 11px 14px 12px;
  color: #d9c6a7;
  text-align: center;
  text-decoration: none;
  font-family: var(--sans);
  font-size: .60rem;
  letter-spacing: .16em;
  border-top: 1px solid rgba(231,194,137,.16);
  transition: color .18s ease, background .18s ease;
}
.video-direct-link:hover,
.video-direct-link:focus-visible {
  color: #fff0d2;
  background: rgba(255,255,255,.05);
}

.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;
}

@media (max-width: 920px) {
  .site-header { width: calc(100% - 36px); padding-top: 18px; }
  .brand-link { width: 205px; }
  .site-nav { gap: 18px; }
  .hero {
    min-height: 900px;
    align-items: start;
    background-position: 53% center;
  }
  .hero-copy {
    width: min(620px, 72vw);
    margin: 22vh 2vw 0 24vw;
  }
  h1 { font-size: clamp(4.1rem, 12.5vw, 7rem); }
  .album-title-mark { width: min(460px, 88%); }
  .album-inner { grid-template-columns: 1fr 1.15fr; gap: 42px; }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 28px);
    padding-top: 14px;
    align-items: flex-start;
  }
  .brand-link { width: 150px; }
  .site-nav { gap: 12px; padding-top: 9px; }
  .site-nav a { font-size: .55rem; letter-spacing: .14em; }
  .hero {
    min-height: 820px;
    background-position: 52% center;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,.02) 0%, rgba(0,0,0,.02) 34%, rgba(13,8,4,.38) 70%, rgba(10,9,7,.90) 100%);
    pointer-events: none;
  }
  .hero-copy {
    z-index: 5;
    width: calc(100% - 28px);
    margin: 185px auto 0;
    padding: 22px 0;
  }
  .hero-copy::before { inset: -12% -4%; }
  h1 { font-size: clamp(4rem, 21vw, 6.3rem); }
  .album-title-mark { width: min(410px, 88%); margin-top: .9rem; }
  .release-line {
    font-size: .75rem;
    color: #ffe2ad;
    padding: .64rem .9rem .60rem;
    background: rgba(8, 11, 10, .90);
    text-shadow: 0 2px 8px rgba(0,0,0,.92);
  }
  .rule { color: #f1c98e; }
  .primary-button { min-width: 230px; padding: 15px 18px; }
  .about-jump { color: #f2d4a0; text-shadow: 0 2px 8px rgba(0,0,0,.8); }

  .album-section { padding: 68px 22px 76px; }
  .album-inner { grid-template-columns: 1fr; gap: 44px; }
  .cover-wrap { width: min(430px, 100%); margin: 0 auto; }
  .album-copy h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .closing-landscape { min-height: 420px; }
  .closing-copy { padding: 135px 18px 28px; }
  .closing-logo { width: min(760px, 94vw); }
}

@media (max-width: 470px) {
  .brand-link { width: 135px; }
  .site-nav { gap: 9px; }
  .site-nav a { font-size: .50rem; letter-spacing: .10em; }
  .hero { min-height: 780px; }
  .hero-copy { margin-top: 168px; }
  h1 { font-size: 4.5rem; }
  .album-title-mark { width: min(360px, 94%); }
  .release-line { letter-spacing: .15em; }
  .video-modal { padding: 12px; }
  .video-dialog { width: calc(100vw - 24px); }
}

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


/* Interaction hardening: decorative layers never intercept navigation. */
.hero-shade,
.closing-overlay { pointer-events: none; }

.site-nav a,
.about-jump,
.previous-album-link,
.primary-button,
.stream-button { position: relative; z-index: 3; }

.site-nav a:focus-visible,
.about-jump:focus-visible,
.previous-album-link:focus-visible,
.primary-button:focus-visible,
.stream-button:focus-visible {
  outline: 2px solid #f4c47e;
  outline-offset: 4px;
}

/* Ensure the native hidden state of the modal cannot be overridden by component CSS. */
.video-modal[hidden] { display: none !important; }
