:root {
  --ink: #f4e8df;
  --muted: #c5b6b3;
  --charcoal: #110e12;
  --charcoal-soft: #1b151a;
  --rose: #9e3f50;
  --rose-bright: #d46b78;
  --blush: #d6a3a8;
  --gold: #b99163;
  --line: rgba(208, 171, 132, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 18%, rgba(132, 49, 67, .22), transparent 30rem),
    var(--charcoal);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.25rem, 4vw, 4rem);
  background: linear-gradient(to bottom, rgba(12, 9, 12, .94), rgba(12, 9, 12, .68));
  border-bottom: 1px solid rgba(208, 171, 132, .16);
  backdrop-filter: blur(15px);
}

.wordmark {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.wordmark small {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

nav { display: flex; gap: clamp(1.3rem, 3vw, 3rem); }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}
nav a:hover, nav a:focus-visible { color: var(--ink); }

.menu-button {
  display: none;
  color: var(--ink);
  background: none;
  border: 1px solid var(--line);
  padding: .45rem .7rem;
  font: inherit;
}

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding: 8rem clamp(1.4rem, 7vw, 8rem) 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 14, 18, .95) 0%, rgba(17, 14, 18, .5) 55%, rgba(17, 14, 18, .78) 100%),
    url("embersrose-banner.png") center / cover no-repeat;
  opacity: .25;
  filter: saturate(.7);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, var(--charcoal), transparent);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: min(55vw, 44rem);
  height: min(55vw, 44rem);
  right: 3vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 78, 91, .2), transparent 67%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: .98;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.4rem);
  letter-spacing: -.045em;
}

h1 em, h2 em { color: var(--blush); font-weight: 500; }
.intro { max-width: 34rem; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.2rem); }

.text-link {
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.logo-frame {
  margin: 0;
  position: relative;
  width: min(42vw, 35rem);
  justify-self: center;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(211, 91, 104, .16);
  filter: blur(3rem);
}

.logo-frame img { display: block; width: 100%; height: auto; border-radius: 50%; }

.section {
  max-width: 88rem;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.4rem, 6vw, 6rem);
}

.story {
  display: grid;
  grid-template-columns: 5rem 1.2fr .8fr;
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-number {
  color: var(--rose-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}

h2 { margin: 0; font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.035em; }
.story-copy { max-width: 31rem; color: var(--muted); }
.story-copy strong { color: var(--ink); }

.music { border-top: 1px solid var(--line); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 28rem);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section-heading > p { color: var(--muted); margin: 0 0 .6rem; }

.release-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.release-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(47, 28, 35, .84), rgba(17, 14, 18, .98));
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.release-card:hover { transform: translateY(-.35rem); border-color: rgba(208, 171, 132, .55); }
.release-art { position: relative; overflow: hidden; }
.release-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(to top, rgba(17, 14, 18, .7), transparent);
  pointer-events: none;
}
.release-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .5s ease;
}
.release-card:hover .release-art img { transform: scale(1.018); }
.release-number {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(222, 186, 148, .55);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(17, 14, 18, .72);
  backdrop-filter: blur(8px);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
}
.release-content { padding: clamp(1.5rem, 3.5vw, 2.6rem); }
.release-label { color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.release-card h3 { margin: 0 0 1rem; font-size: clamp(2.35rem, 4vw, 3.8rem); }
.release-card p:last-child { max-width: 27rem; color: var(--muted); }

.artist {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  border-top: 1px solid var(--line);
}
.artist-mark {
  width: min(100%, 27rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(235, 202, 192, .48);
  background: radial-gradient(circle, rgba(143, 54, 70, .28), rgba(17, 14, 18, .2) 68%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 11vw, 10rem);
  letter-spacing: -.08em;
}
.artist-copy { max-width: 41rem; }
.artist-copy > p:last-child { color: var(--muted); font-size: 1.05rem; }
.roles { color: var(--gold); letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  padding: 3rem clamp(1.4rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--ink); font-family: "Cormorant Garamond", serif; font-size: 1.5rem; }

@media (max-width: 850px) {
  .site-header { flex-wrap: wrap; }
  .menu-button { display: block; }
  nav { display: none; width: 100%; padding: 1rem 0 .25rem; flex-direction: column; gap: .7rem; }
  nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 9rem; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .logo-frame { width: min(78vw, 31rem); grid-row: 1; }
  h1 { font-size: clamp(3.7rem, 15vw, 6.3rem); }
  .story { grid-template-columns: 2rem 1fr; }
  .story-copy { grid-column: 2; }
  .section-heading { grid-template-columns: 1fr; }
  .release-grid, .artist { grid-template-columns: 1fr; }
  .artist-mark { width: min(72vw, 24rem); justify-self: center; }
}

@media (max-width: 520px) {
  .wordmark small { display: none; }
  .section { padding-left: 1.2rem; padding-right: 1.2rem; }
  .story { grid-template-columns: 1fr; }
  .story-copy { grid-column: 1; }
  footer { flex-direction: column; align-items: flex-start; }
}

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