:root {
  --bg: #050505;
  --ink: #f3eee6;
  --muted: #aaa39a;
  --soft: #746d65;
  --line: rgba(243, 238, 230, 0.12);
  --line-strong: rgba(243, 238, 230, 0.22);
  --gold: #c8ad72;
  --panel: rgba(13, 12, 11, 0.88);
  --shadow: rgba(0, 0, 0, 0.55);
  --display: "Bodoni 72", "Bodoni MT", Didot, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --text: "Neue Haas Grotesk Text", "Helvetica Neue", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 18%, rgba(200, 173, 114, 0.075), transparent 28rem),
    linear-gradient(180deg, #080807 0%, #050505 46%, #030303 100%),
    var(--bg);
  color: var(--ink);
  font-family: var(--text);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
  opacity: 0.42;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: 82px;
  padding: 0.85rem clamp(1.1rem, 4vw, 4.25rem);
  background: rgba(7, 6, 4, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(108px, 12vw, 176px);
}

.nav {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  border: 0;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 82px));
  padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 6rem);
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  right: clamp(-6rem, -6vw, -2rem);
  top: 10%;
  width: min(68vw, 780px);
  opacity: 0.045;
  transform: rotate(-5deg);
}

.hero-copy {
  position: relative;
  max-width: 1150px;
}

.kicker,
.label,
.edition,
.release-facts dt {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p,
dl {
  margin-top: 0;
}

h1 {
  max-width: 1120px;
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.45rem, 9.5vw, 9.4rem);
  font-weight: 500;
  line-height: 0.88;
}

.intro {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.32rem);
  line-height: 1.72;
}

.latest {
  padding: clamp(3.75rem, 7vw, 7rem) clamp(1.2rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
}

.latest-head {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) 1fr;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.6rem, 4vw, 3.5rem);
}

.latest-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
}

.release-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 0.68fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: stretch;
}

.gallery {
  position: relative;
}

.gallery-frame {
  position: relative;
  min-height: clamp(460px, 58vw, 760px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: 0 34px 86px var(--shadow);
}

.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 -180px 150px rgba(0, 0, 0, 0.22);
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 680ms ease;
}

.gallery-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-controls button {
  min-width: 92px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.04);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.gallery-controls button:hover {
  border-color: var(--gold);
}

.release-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  padding: clamp(1.35rem, 4vw, 3.5rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0)),
    var(--panel);
  border: 1px solid var(--line);
}

.subtitle {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
}

.release-story > p:not(.edition):not(.subtitle) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.release-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.release-facts div {
  min-height: 104px;
  padding: 1rem;
  background: rgba(7, 6, 4, 0.78);
}

.release-facts dd {
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1;
}

.buy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  padding: 0 1.45rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #0d0b09;
  font-weight: 850;
}

.buy-link.is-disabled {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.45rem clamp(1.2rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
  }

  .latest-head,
  .release-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-frame {
    min-height: min(118vw, 620px);
  }

  .release-story {
    justify-content: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 0.85rem;
    min-height: auto;
    padding-block: 0.75rem;
  }

  .nav {
    font-size: 0.68rem;
    flex: 0 0 auto;
  }

  .brand img {
    width: clamp(104px, 32vw, 132px);
  }

  .nav a {
    min-height: 32px;
    white-space: nowrap;
  }

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

  .hero-mark {
    width: 110vw;
    right: -40vw;
    top: 12%;
  }

  .latest {
    padding-top: 3rem;
  }

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

  .buy-link {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    justify-items: center;
    text-align: center;
  }

  .footer :last-child {
    justify-self: center;
  }
}
