:root {
  --ink: #0b0b09;
  --coal: #15120d;
  --cream: #f7f1e8;
  --paper: #fbf8f0;
  --gold: #d8ae6d;
  --gold-dark: #ad7a37;
  --mist: rgba(255, 247, 232, 0.74);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(18, 14, 9, 0.2), rgba(18, 14, 9, 0.9)), var(--ink);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(244, 217, 170, 0.42);
  background: rgba(6, 6, 5, 0.82);
  backdrop-filter: blur(16px);
}

.brand,
footer strong {
  color: #f4d9aa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

nav,
.socials {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
}

nav a,
.socials a,
.section-heading a {
  color: #fff4df;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(244, 217, 170, 0.45);
}

nav a:first-child {
  color: #ffd88f;
  border-bottom: 2px solid #ffd88f;
  padding-bottom: 6px;
}

.socials {
  justify-content: end;
}

.socials a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(247, 241, 232, 0.28);
  font-size: 0.63rem;
}

.hero {
  position: relative;
  min-height: clamp(520px, 57vw, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 174, 109, 0.45);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: brightness(1.34) saturate(1.12) contrast(1.1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 4, 3, 0.42) 0%, rgba(4, 4, 3, 0.18) 36%, rgba(4, 4, 3, 0.04) 62%, rgba(4, 4, 3, 0.34) 100%), linear-gradient(0deg, rgba(4, 4, 3, 0.18), transparent 35%);
}

.eyebrow {
  margin: 0 0 18px;
  color: #efd4a9;
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.58em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #1a1510;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, #f1d19c, var(--gold));
  color: #070604;
}

.button.ghost {
  color: #f7ebd8;
  background: rgba(7, 7, 5, 0.34);
}

.button.ghost.light {
  background: transparent;
}

.button.black {
  border-color: #060604;
  background: #060604;
  color: #fff8e9;
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.25fr) minmax(320px, 1.55fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px) 5vw;
  background: radial-gradient(circle at 20% 10%, rgba(216, 174, 109, 0.22), transparent 25%), linear-gradient(90deg, #fbf7ef, #efe4d2);
  color: #120f0b;
}

.album-art {
  position: relative;
  aspect-ratio: 1;
  min-height: 260px;
  overflow: hidden;
  background: #140b08;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.album-art img,
.chapter-image img,
.studio-shot img,
.visual-card img,
.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-copy,
.chapter-card {
  min-width: 0;
}

.release-copy h1,
.chapter-card h2,
.story-copy h2,
.visuals-section h2 {
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.release-copy p,
.chapter-card p {
  max-width: 470px;
  margin: 16px 0 22px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.35;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: #080705;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.platforms span {
  font-size: 0.6rem;
  font-weight: 800;
}

.platforms a {
  font-size: 0.78rem;
  font-weight: 900;
  transition: color 160ms ease;
}

.platforms a:hover {
  color: var(--gold-dark);
}

.chapter-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(24px, 3vw, 38px);
  align-items: center;
  border-left: 1px solid rgba(18, 15, 11, 0.28);
  padding-left: clamp(24px, 3vw, 42px);
}

.chapter-image {
  position: relative;
  aspect-ratio: 1.07;
  overflow: hidden;
}

.chapter-image img {
  object-position: center 36%;
}

.story {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(330px, 0.92fr) minmax(180px, 0.38fr);
  min-height: 320px;
  background: #080806;
}

.studio-shot {
  min-height: 320px;
  overflow: hidden;
}

.studio-shot img {
  object-position: left 78%;
  filter: brightness(0.82) sepia(0.08);
}

.story-copy {
  align-self: center;
  padding: clamp(32px, 4vw, 64px);
}

.story-copy h2 {
  color: #fff7e8;
}

.story-copy p {
  max-width: 650px;
  color: var(--mist);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.45;
}

blockquote {
  align-self: center;
  margin: 0;
  padding: 32px 5vw 32px 0;
  color: #ff7fbd;
  font-family: "Brush Script MT", "Snell Roundhand", "Segoe Script", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  font-style: italic;
  line-height: 0.92;
  text-align: right;
  text-shadow: 0 0 1px #ffe0ef, 0 0 20px rgba(255, 105, 180, 0.46), 0 2px 12px rgba(0, 0, 0, 0.82);
  transform: rotate(-4deg);
}

.atlanta-note {
  justify-self: end;
  max-width: 330px;
}

cite {
  display: block;
  margin-top: 22px;
  color: #e8d7bb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.updates {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px 5vw;
  background: linear-gradient(90deg, #fffaf1, #f0e3d1);
  color: #090806;
}

.calendar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  font-weight: 900;
}

.updates h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.updates p {
  margin: 2px 0 0;
  text-align: center;
}

.visuals-section {
  padding: 20px 5vw 26px;
  background: #080806;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 14px;
}

.section-heading a {
  color: #e4be80;
}

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

.visual-card {
  position: relative;
  aspect-ratio: 1.32;
  overflow: hidden;
  border: 1px solid rgba(247, 241, 232, 0.18);
  background: #1a1510;
}

.visual-card.portrait-card,
.visual-card.square-card {
  aspect-ratio: 1.32;
}

.visual-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.visual-card img {
  transition: transform 240ms ease;
}

.visual-card:hover img {
  transform: scale(1.04);
}

.visual-card span {
  position: absolute;
  left: 16px;
  bottom: 13px;
  z-index: 1;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.featured-visual {
  position: relative;
  min-height: clamp(360px, 48vw, 720px);
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(216, 174, 109, 0.32);
  background: #100e09;
}

.featured-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 5, 3, 0.64), transparent 42%), linear-gradient(0deg, rgba(5, 5, 3, 0.72), transparent 44%);
  pointer-events: none;
}

.featured-visual img {
  min-height: inherit;
  object-position: center;
}

.featured-visual div {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 66px);
  z-index: 1;
}

.featured-visual h3 {
  color: #f0c880;
  font-size: clamp(3rem, 8vw, 8.5rem);
  font-style: italic;
  line-height: 0.85;
  text-transform: uppercase;
}

.featured-visual span {
  display: block;
  margin-top: 18px;
  color: #fff1d5;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px 5vw;
  border-top: 1px solid rgba(216, 174, 109, 0.24);
  background: #0d0c09;
}

footer div:first-child {
  display: flex;
  align-items: baseline;
  gap: 28px;
}

footer span,
footer p {
  margin: 0;
  color: #d5c3a8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer p {
  justify-self: end;
  text-align: right;
  letter-spacing: 0.03em;
  text-transform: none;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

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

  .chapter-card {
    border-left: 0;
    padding-left: 0;
  }

  blockquote {
    padding: 0 5vw 44px;
  }

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

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer div:first-child,
  footer .socials {
    justify-content: center;
  }

  footer p {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 12px 5vw;
  }

  .brand {
    font-size: 1rem;
  }

  .topbar .socials {
    justify-content: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero > img {
    object-position: 56% 14%;
  }

  .eyebrow {
    letter-spacing: 0.25em;
  }

  .release-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 5vw 40px;
  }

  .album-art {
    width: min(100%, 380px);
    min-height: 0;
    justify-self: center;
  }

  .release-copy,
  .chapter-card {
    width: 100%;
  }

  .release-copy h1,
  .chapter-card h2 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .release-copy p,
  .chapter-card p {
    max-width: 100%;
  }

  .chapter-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .chapter-image {
    aspect-ratio: 1.25;
    background: #080806;
  }

  .chapter-image img {
    object-fit: contain;
    object-position: center;
  }

  .studio-shot {
    min-height: 360px;
  }

  .studio-shot img {
    object-position: center;
  }

  .updates {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .visual-card.portrait-card {
    aspect-ratio: 0.78;
  }

  .visual-card.square-card {
    aspect-ratio: 1;
  }

  .visual-card.portrait-card img,
  .visual-card.square-card img {
    object-position: center top !important;
  }

  .featured-visual {
    min-height: 410px;
  }

  .featured-visual img {
    object-position: 57% center;
  }

  footer div:first-child {
    display: grid;
    gap: 10px;
  }
}
