:root {
  color-scheme: dark;
  --ink: #f5f0e8;
  --muted: #b9b2a7;
  --soft: #80786e;
  --black: #040404;
  --panel: #0b0b0b;
  --panel-2: #111111;
  --line: rgba(245, 240, 232, 0.16);
  --line-strong: rgba(245, 240, 232, 0.32);
  --red: #e22418;
  --gold: #f6d23d;
  --violet: #574bff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --nav-height: 68px;
  --page-pad: clamp(18px, 4vw, 56px);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.drawer-open,
body.menu-open {
  overflow: hidden;
}

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

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--gold);
  color: #070707;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-height);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.92), rgba(4, 4, 4, 0.64));
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(4, 4, 4, 0.94);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.brand-mark {
  display: inline-grid;
  gap: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 17px;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark span:last-child {
  color: var(--gold);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  padding: 25px 0 23px;
}

.nav-links a strong {
  font: inherit;
}

.nav-sheet-top,
.nav-index,
.nav-links small,
.nav-sheet-cta,
.nav-backdrop,
.mobile-dock {
  display: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="true"] {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="true"]::after {
  transform: scaleX(1);
}

.icon-button,
.cart-button,
.album-card button,
.shop-card button,
.play-button,
.quantity-control button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.nav-toggle {
  display: none;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transform: translate(-50%, -5px);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span:last-child {
  transform: translate(-50%, 5px);
}

body.menu-open .nav-toggle span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

body.menu-open .nav-toggle span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-button:hover,
.icon-button:hover,
.album-card button:hover,
.shop-card button:hover,
.mobile-dock a:hover,
.mobile-dock button:hover,
.quantity-control button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.09);
}

.cart-icon {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -7px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
}

.hero-section {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-height) + 72px) var(--page-pad) 64px;
  isolation: isolate;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: calc(var(--nav-height) + 26px);
  right: var(--page-pad);
  width: min(26vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 210, 61, 0.72));
  opacity: 0.8;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 48%;
  filter: saturate(1.05) contrast(1.04);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.82), rgba(4, 4, 4, 0.35) 42%, rgba(4, 4, 4, 0.12)),
    linear-gradient(0deg, rgba(4, 4, 4, 0.88), rgba(4, 4, 4, 0.18) 38%, rgba(4, 4, 4, 0.24));
}

.hero-content {
  width: min(640px, 100%);
  padding-bottom: 66px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(64px, 12vw, 178px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 104px);
  text-wrap: balance;
}

h3 {
  margin-bottom: 6px;
  font-size: 15px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(245, 240, 232, 0.88);
  font-size: clamp(16px, 1.6vw, 21px);
  text-wrap: pretty;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius);
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-action {
  background: var(--red);
  color: #fff;
}

.primary-action:hover {
  background: #ff3024;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
  color: var(--ink);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.12);
}

.full-width {
  width: 100%;
}


.artist-link-row,
.stream-links,
.connect-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.artist-link-row a,
.stream-links a,
.connect-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  padding: 0 13px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-link-row a:hover,
.stream-links a:hover,
.connect-links a:hover,
.artist-link-row a:focus-visible,
.stream-links a:focus-visible,
.connect-links a:focus-visible {
  border-color: rgba(246, 210, 61, 0.62);
  background: rgba(246, 210, 61, 0.11);
  color: var(--gold);
}

.stream-links {
  margin-top: 28px;
}

.stream-links a {
  min-height: 46px;
  padding-inline: 18px;
}

.connect-links {
  margin-top: 24px;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(4, 4, 4, 0.72);
  backdrop-filter: blur(12px);
}

.hero-strip span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 var(--page-pad);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.release-section,
.brand-section,
.album-section,
.physical-section,
.visuals-section,
.tour-section,
.access-section {
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) var(--page-pad);
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.brand-statement h2 {
  max-width: 760px;
}

.hub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--panel);
}

.hub-stats article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.hub-stats article:last-child {
  border-right: 0;
}

.hub-stats span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.hub-stats p,
.album-card p,
.visual-copy p,
.access-copy p {
  color: var(--muted);
}

.release-section {
  min-height: 74svh;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(87, 75, 255, 0.12), transparent 220px),
    var(--black);
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: stretch;
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(260px, 0.8fr);
  min-height: 560px;
  border: 1px solid var(--line);
  background: #090909;
}

.release-cover {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.artist-cover img {
  object-position: 48% 46%;
}

.play-button {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(4, 4, 4, 0.72);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--ink);
}

.release-info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(24px, 4vw, 44px);
}

.release-info p:last-child,
.product-detail p:not(.product-price),
.access-copy h2 {
  color: var(--muted);
}

.tracklist {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  border-top: 1px solid var(--line);
}

.tracklist-header,
.tracklist button,
.tour-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.tracklist-header {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tracklist ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tracklist li {
  border-bottom: 1px solid var(--line);
}

.tracklist button {
  width: 100%;
  min-height: 76px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.tracklist button span:last-child {
  color: var(--soft);
  font-size: 12px;
}

.tracklist button:hover {
  color: var(--gold);
}

.now-playing {
  margin-top: auto;
  padding: 18px 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.physical-section {
  border-top: 1px solid var(--line);
}

.album-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(226, 36, 24, 0.08), transparent 280px),
    var(--black);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 860px;
}

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

.album-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.album-art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.text-art {
  background:
    linear-gradient(135deg, rgba(246, 210, 61, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(226, 36, 24, 0.2), transparent 36%),
    #0b0b0b;
}

.text-art span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(84px, 10vw, 140px);
  line-height: 1;
  color: var(--ink);
}

.vinyl-art {
  background:
    radial-gradient(circle at center, #111 0 13%, #222 13% 15%, #060606 15% 30%, #171717 30% 32%, #040404 32% 60%, #181818 60% 61%, #050505 61%),
    #050505;
}

.vinyl-art::after {
  content: "";
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(246, 210, 61, 0.42);
  background: rgba(246, 210, 61, 0.12);
}

.album-card > div:not(.album-art) {
  padding: 24px;
}

.album-card button {
  min-height: 52px;
  margin: 0 24px 24px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  border: 1px solid var(--line);
  min-height: 690px;
  background:
    linear-gradient(180deg, rgba(246, 210, 61, 0.06), transparent 48%),
    var(--panel);
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
  background: #050505;
  overflow: hidden;
}

.product-art img {
  width: min(100%, 760px);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.product-campaign img {
  object-position: 50% 42%;
}

.campaign-tag {
  position: absolute;
  left: clamp(32px, 5vw, 72px);
  bottom: clamp(32px, 5vw, 72px);
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.66);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 72px);
}

.product-price {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.product-form {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend,
.quantity-row label,
.signup-form label {
  margin-bottom: 10px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.option-grid input:checked + span {
  border-color: var(--gold);
  background: rgba(246, 210, 61, 0.14);
  color: var(--gold);
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 44px 60px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-control button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
}

.quantity-control input {
  width: 60px;
  height: 44px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #080808;
  color: var(--ink);
  text-align: center;
  font-weight: 900;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.shop-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 124px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.shop-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: 50% 42%;
}

.shop-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.shop-card button {
  min-width: 64px;
  min-height: 42px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visuals-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.visual-copy h2 {
  max-width: 720px;
}

.visual-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}

.photo-card,
.poster-card {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.photo-card.large {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 44%;
}

.poster-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84)),
    linear-gradient(135deg, rgba(246, 210, 61, 0.18), rgba(226, 36, 24, 0.2)),
    #0a0a0a;
}

.poster-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-card strong {
  margin: 10px 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
}

.poster-card small {
  color: var(--muted);
  font-weight: 800;
}

.tour-section {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.tour-list {
  border-top: 1px solid var(--line);
}

.tour-row {
  grid-template-columns: 120px 1fr 1.2fr auto;
  gap: 18px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.tour-row time,
.tour-row span:first-of-type {
  color: var(--ink);
  font-weight: 900;
}

.tour-row a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-section {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(72px, 10vw, 132px);
}

.access-copy h2 {
  max-width: 720px;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.split-field {
  display: grid;
  gap: 8px;
}

.signup-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 0 16px;
}

.signup-form input::placeholder {
  color: var(--soft);
}

.fan-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fan-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fan-options span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.fan-options input:checked + span {
  border-color: var(--gold);
  background: rgba(246, 210, 61, 0.12);
  color: var(--gold);
}

.consent {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
}

.form-status {
  min-height: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  height: 100%;
  border-left: 1px solid var(--line);
  background: #080808;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer[aria-hidden="false"] .cart-backdrop {
  opacity: 1;
}

.cart-drawer[aria-hidden="false"] .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  margin: 0;
  font-size: 34px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 22px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line strong {
  display: block;
}

.cart-line span {
  color: var(--muted);
  font-size: 13px;
}

.empty-cart {
  color: var(--muted);
}

.cart-footer {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}


/* Page architecture and dedicated forms */
.page-main {
  background:
    linear-gradient(180deg, rgba(87, 75, 255, 0.09), transparent 420px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--black);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.page-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--nav-height) + 82px) var(--page-pad) 74px;
  isolation: isolate;
}

.page-hero-media,
.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.page-hero-media {
  object-fit: cover;
  object-position: 48% 48%;
  filter: saturate(1.08) contrast(1.05);
}

.page-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.88), rgba(4, 4, 4, 0.46) 42%, rgba(4, 4, 4, 0.18)),
    linear-gradient(0deg, rgba(4, 4, 4, 0.86), rgba(4, 4, 4, 0.18) 50%);
}

.page-hero-content {
  width: min(760px, 100%);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(72px, 12vw, 164px);
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(245, 240, 232, 0.9);
  font-size: clamp(17px, 1.7vw, 22px);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.architecture-section,
.bento-section,
.form-section {
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) var(--page-pad);
  border-top: 1px solid var(--line);
}

.architecture-grid,
.bento-grid,
.contact-grid {
  display: grid;
  gap: 14px;
}

.architecture-grid {
  grid-template-columns: repeat(4, 1fr);
}

.architecture-card,
.bento-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.architecture-card {
  display: grid;
  gap: 18px;
  min-height: 260px;
  padding: clamp(20px, 3vw, 30px);
}

.architecture-card span,
.bento-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.architecture-card strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
}

.architecture-card small,
.bento-card p,
.contact-form p:not(.eyebrow),
.form-status-inline {
  color: var(--muted);
}

.bento-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.bento-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 270px;
  padding: clamp(20px, 3vw, 30px);
  overflow: hidden;
}

.bento-card.is-wide {
  grid-column: span 2;
}

.bento-card.is-tall {
  grid-row: span 2;
  min-height: 554px;
}

.bento-card h3,
.contact-form h3 {
  margin: 10px 0 12px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.98;
}

.image-card {
  padding: 0;
  justify-content: stretch;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: 50% 42%;
}

.bento-card button,
.mini-link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.form-section {
  padding-top: clamp(48px, 7vw, 96px);
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.contact-form.is-featured {
  grid-row: span 4;
  background:
    linear-gradient(135deg, rgba(226, 36, 24, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

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

.form-grid.compact {
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  padding: 0 15px;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.form-field textarea {
  min-height: 136px;
  padding-top: 14px;
  resize: vertical;
}

.form-field select {
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--soft);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(246, 210, 61, 0.72);
  outline: 2px solid rgba(246, 210, 61, 0.28);
  outline-offset: 2px;
}

.form-status-inline {
  min-height: 20px;
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .brand-section,
  .section-heading,
  .release-layout,
  .feature-product,
  .visuals-section,
  .tour-section,
  .access-section {
    grid-template-columns: 1fr;
  }

  .hub-stats,
  .album-grid {
    grid-template-columns: 1fr;
  }

  .hub-stats article {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hub-stats article:last-child {
    border-bottom: 0;
  }

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

  .release-cover,
  .product-art {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tracklist {
    min-height: auto;
  }

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

  .visual-board {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 62px;
    --page-pad: clamp(18px, 5vw, 24px);
  }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }


  .page-hero {
    min-height: 74svh;
    padding-top: calc(var(--nav-height) + 54px);
    padding-bottom: 104px;
  }

  .page-hero h1 {
    font-size: clamp(62px, 20vw, 102px);
  }

  .page-hero p:not(.eyebrow) {
    max-width: 34ch;
    font-size: 16px;
  }

  .page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .architecture-grid,
  .bento-grid,
  .contact-grid,
  .form-grid,
  .mini-link-grid {
    grid-template-columns: 1fr;
  }

  .architecture-section,
  .bento-section,
  .form-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .architecture-card,
  .bento-card {
    min-height: 230px;
  }

  .bento-card.is-wide,
  .bento-card.is-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }

  .contact-form.is-featured {
    grid-row: auto;
  }

  .site-nav {
    grid-template-columns: auto auto auto;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    left: var(--page-pad);
    right: var(--page-pad);
    display: grid;
    gap: 8px;
    max-height: calc(100svh - var(--nav-height) - 126px);
    padding: 12px;
    overflow: auto;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(87, 75, 255, 0.16), transparent 42%),
      rgba(7, 7, 7, 0.96);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.66);
    transform: translateY(-18px) scale(0.98);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 180ms ease;
    backdrop-filter: blur(22px);
  }

  .nav-links.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-sheet-top {
    display: grid;
    gap: 2px;
    padding: 8px 8px 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav-sheet-top span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .nav-sheet-top strong {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 44px;
    line-height: 0.88;
    text-transform: uppercase;
  }

  .nav-links a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 12px;
    align-items: center;
    min-height: 66px;
    padding: 12px;
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    color: var(--ink);
  }

  .nav-links a[aria-current="true"] {
    border-color: rgba(246, 210, 61, 0.48);
    background: rgba(246, 210, 61, 0.1);
  }

  .nav-links a strong {
    font-size: 16px;
    line-height: 1.1;
  }

  .nav-links small {
    display: block;
    grid-column: 2;
    color: var(--soft);
    font-size: 12px;
    font-weight: 800;
    text-transform: none;
  }

  .nav-index {
    display: grid;
    grid-row: span 2;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-sheet-cta {
    display: flex !important;
    justify-content: center;
    min-height: 52px !important;
    margin-top: 4px;
    border-color: transparent !important;
    background: var(--red) !important;
    color: #fff !important;
  }

  .nav-sheet-cta .nav-index,
  .nav-sheet-cta small {
    display: none;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 42;
    display: block;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
    backdrop-filter: blur(4px);
  }

  body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-dock {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 48;
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr 1fr;
    gap: 6px;
    min-height: 66px;
    padding: 7px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
      rgba(7, 7, 7, 0.88);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(22px);
  }

  .mobile-dock a,
  .mobile-dock button {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    min-width: 0;
    min-height: 52px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: transparent;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-dock a[aria-current="true"],
  .mobile-dock button[aria-expanded="true"] {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line);
  }

  .mobile-dock .dock-primary {
    color: #fff;
    background: var(--red);
  }

  .dock-mark {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: 10px;
    line-height: 1;
  }

  .dock-bars {
    position: relative;
    width: 20px;
    height: 14px;
  }

  .dock-bars::before,
  .dock-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform 180ms ease;
  }

  .dock-bars::before {
    top: 3px;
  }

  .dock-bars::after {
    bottom: 3px;
  }

  body.menu-open .dock-bars::before {
    transform: translateY(3px) rotate(45deg);
  }

  body.menu-open .dock-bars::after {
    transform: translateY(-3px) rotate(-45deg);
  }

  .cart-button {
    padding: 0 10px;
  }

  .cart-button span:nth-child(2) {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
  }

  .hero-section {
    min-height: 90svh;
    padding-top: calc(var(--nav-height) + 44px);
    padding-bottom: 138px;
  }

  .hero-media {
    object-position: 45% 50%;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(4, 4, 4, 0.24), rgba(4, 4, 4, 0.18) 34%, rgba(4, 4, 4, 0.92)),
      linear-gradient(90deg, rgba(4, 4, 4, 0.62), rgba(4, 4, 4, 0.16));
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-section::after {
    top: calc(var(--nav-height) + 18px);
    right: var(--page-pad);
    width: 42vw;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(64px, 22vw, 108px);
    line-height: 0.82;
  }

  h2 {
    font-size: clamp(40px, 13vw, 72px);
  }

  .hero-copy {
    max-width: 33ch;
    margin-bottom: 24px;
  }

  .hero-actions {
    display: none;
  }

  
  .artist-link-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .artist-link-row::-webkit-scrollbar {
    display: none;
  }

  .artist-link-row a {
    flex: 0 0 auto;
    min-height: 34px;
    padding-inline: 11px;
    background: rgba(4, 4, 4, 0.42);
    backdrop-filter: blur(12px);
  }

  .stream-links,
  .connect-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .connect-links a {
    min-height: 42px;
  }

.hero-strip {
    display: none;
  }

  .hero-strip span {
    min-height: 36px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .release-section,
  .brand-section,
  .album-section,
  .physical-section,
  .visuals-section,
  .tour-section,
  .access-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .release-panel,
  .feature-product {
    min-height: auto;
  }

  .release-cover {
    min-height: 360px;
  }

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

  .shop-card {
    grid-template-columns: 84px 1fr;
  }

  .shop-card img {
    width: 84px;
    height: 84px;
  }

  .shop-card button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .album-card {
    min-height: auto;
  }

  .visual-board {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 220px 260px;
  }

  .photo-card.large {
    grid-row: auto;
  }

  .fan-options {
    grid-template-columns: 1fr;
  }

  .tour-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
}

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

/* Editorial fashion pass inspired by the supplied reference */
:root {
  --ink: #f8f6ef;
  --muted: #b9b6ae;
  --soft: #73716c;
  --black: #020202;
  --panel: #090909;
  --panel-2: #141414;
  --line: rgba(248, 246, 239, 0.13);
  --line-strong: rgba(248, 246, 239, 0.28);
  --red: #b58b96;
  --gold: #dce5ec;
  --violet: #a997f3;
  --mint: #29d1aa;
  --sand: #d7b99d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  --nav-height: 72px;
}

body {
  background:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #060606 0, #000 34%, #050505 100%);
}

::selection {
  background: var(--ink);
  color: var(--black);
}

:focus-visible {
  outline-color: var(--ink);
}

.site-header {
  inset: 18px var(--page-pad) auto;
  height: 64px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
}

.site-nav {
  padding: 0 16px 0 20px;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
  text-transform: none;
}

.brand-mark span:first-child {
  position: relative;
  width: max-content;
}

.brand-mark span:first-child::after {
  content: "";
  position: absolute;
  left: 8%;
  right: -18%;
  bottom: 0.18em;
  height: 1px;
  background: currentColor;
  transform: rotate(-5deg);
}

.brand-mark span:last-child {
  color: var(--ink);
}

.nav-links {
  gap: 8px;
  font-size: 11px;
}

.nav-links a {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(248, 246, 239, 0.72);
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="true"],
.nav-links a[aria-current="page"] {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.cart-button,
.icon-button {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.cart-count {
  background: var(--ink);
  color: var(--black);
}

h1 {
  text-transform: uppercase;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
  text-transform: none;
}

h3 {
  letter-spacing: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(41, 209, 170, 0.1);
}

.primary-action,
.secondary-action,
.artist-link-row a,
.stream-links a,
.connect-links a,
.album-card button,
.shop-card button,
.bento-card button,
.mini-link-grid a {
  border-radius: 999px;
}

.primary-action {
  background: var(--ink);
  color: var(--black);
}

.primary-action:hover {
  background: #ffffff;
}

.secondary-action {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-section {
  min-height: 100svh;
  align-items: center;
  padding-top: calc(var(--nav-height) + 92px);
  padding-bottom: 118px;
  background: #000;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0 38%, rgba(0, 0, 0, 0.76) 55%, rgba(0, 0, 0, 0.38) 100%),
    repeating-linear-gradient(132deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 16px);
}

.hero-section::after {
  top: calc(var(--nav-height) + 58px);
  right: clamp(28px, 7vw, 112px);
  width: min(28vw, 300px);
  height: 42px;
  border-top: 1px solid rgba(248, 246, 239, 0.72);
  border-radius: 50%;
  background: transparent;
  transform: rotate(-8deg);
}

.hero-media {
  inset: auto clamp(26px, 6vw, 92px) 126px auto;
  z-index: -2;
  width: min(38vw, 560px);
  height: min(58vh, 610px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  object-position: 46% 48%;
  box-shadow: var(--shadow);
  filter: saturate(0.82) contrast(1.08);
}

.hero-vignette {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0 44%, rgba(0, 0, 0, 0.46) 76%, rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0 12%, rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding-bottom: 0;
}

.hero-content::before {
  content: "New music / official";
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}

.hero-content::after {
  content: "";
  display: block;
  width: min(190px, 46vw);
  height: 34px;
  margin-top: 34px;
  border-top: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.hero-section h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(86px, 13vw, 208px);
  line-height: 0.78;
  color: var(--ink);
}

.hero-copy {
  max-width: 39ch;
  color: rgba(248, 246, 239, 0.86);
}

.hero-lookbook {
  position: absolute;
  top: calc(var(--nav-height) + 92px);
  right: clamp(24px, 5vw, 78px);
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(110px, 0.42fr);
  gap: 12px;
  width: min(43vw, 630px);
  pointer-events: none;
}

.lookbook-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: #ecebea;
  box-shadow: var(--shadow);
}

.lookbook-card-main {
  aspect-ratio: 1.32;
}

.lookbook-card-mini {
  align-self: end;
  aspect-ratio: 0.76;
}

.lookbook-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08);
}

.lookbook-card-main img {
  object-position: 50% 50%;
}

.lookbook-card span {
  position: absolute;
  left: 12px;
  top: 12px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-strip {
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-strip span {
  justify-content: center;
  min-height: 48px;
  color: rgba(248, 246, 239, 0.78);
}

.brand-section,
.release-section,
.album-section,
.physical-section,
.visuals-section,
.tour-section,
.access-section,
.architecture-section,
.bento-section,
.form-section {
  border-top-color: var(--line);
}

.hub-stats,
.release-panel,
.album-card,
.feature-product,
.shop-card,
.photo-card,
.poster-card,
.signup-form,
.architecture-card,
.bento-card,
.contact-form {
  overflow: hidden;
  border-color: var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.hub-stats article,
.album-card > div:not(.album-art),
.product-detail,
.signup-form,
.contact-form {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 36%),
    transparent;
}

.hub-stats span,
.architecture-card span,
.bento-card span,
.poster-card span,
.product-price,
.now-playing,
.form-status,
.form-status-inline,
.tour-row a {
  color: var(--gold);
}

.release-section,
.album-section,
.page-main {
  background:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 260px),
    var(--black);
}

.release-panel {
  min-height: 590px;
}

.release-cover {
  border-right-color: var(--line);
  background: #ecebea;
}

.release-cover img,
.album-art img,
.photo-card img,
.image-card img {
  filter: saturate(0.84) contrast(1.06);
}
.tracklist {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.tracklist button {
  padding: 0 12px;
  border-radius: var(--radius);
}

.tracklist button:hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
}

.now-playing {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.album-art,
.product-art {
  background: #efeeeb;
}

.text-art,
.vinyl-art {
  background-color: #080808;
}

.feature-product {
  background: var(--panel);
}

.product-art {
  padding: clamp(18px, 4vw, 44px);
}

.product-art::before {
  content: "New arrival";
  position: absolute;
  left: clamp(28px, 5vw, 64px);
  top: clamp(28px, 5vw, 64px);
  z-index: 1;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-art img {
  width: min(100%, 760px);
  aspect-ratio: 1.16;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 50%;
}

.campaign-tag {
  background: rgba(0, 0, 0, 0.76);
  color: var(--ink);
}

.option-grid span,
.fan-options span,
.quantity-control,
.signup-form input,
.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 999px;
}

.form-field textarea {
  border-radius: var(--radius);
}

.shop-card {
  grid-template-columns: 108px 1fr auto;
  min-height: 136px;
  padding: 12px;
}

.shop-card img {
  width: 108px;
  height: 108px;
  border-radius: 6px;
}

.poster-card {
  position: relative;
}

.poster-card::before,
.visual-copy::after,
.access-copy::after,
.page-hero-content::after {
  content: "";
  display: block;
  width: 170px;
  height: 30px;
  margin-top: 22px;
  border-top: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.poster-card::before {
  position: absolute;
  left: 24px;
  top: 18px;
  margin: 0;
  opacity: 0.7;
}

.architecture-card strong,
.bento-card h3,
.contact-form h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
}

.architecture-card,
.bento-card {
  position: relative;
}

.architecture-card::after,
.bento-card::after {
  content: "->";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
}

.image-card::after {
  display: none;
}

.page-hero {
  min-height: 82svh;
  background: #000;
}

.page-hero-media {
  inset: auto var(--page-pad) 72px auto;
  z-index: -2;
  width: min(42vw, 620px);
  height: min(54vh, 560px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-position: 48% 44%;
  filter: saturate(0.82) contrast(1.08);
}

.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0 50%, rgba(0, 0, 0, 0.48) 76%, rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0, rgba(0, 0, 0, 0.14) 52%, rgba(0, 0, 0, 0.78) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-transform: none;
}

.bento-card button,
.mini-link-grid a {
  width: max-content;
  min-width: 120px;
}

.cart-panel {
  border-left-color: var(--line-strong);
  background:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 18px),
    #060606;
}

@media (max-width: 1020px) {
  .hero-lookbook {
    display: none;
  }

  .hero-media,
  .page-hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    opacity: 0.58;
  }

  .hero-vignette,
  .page-hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.22) 36%, rgba(0, 0, 0, 0.96)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24));
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 62px;
  }

  .site-header {
    inset: 10px 12px auto;
    height: 56px;
  }

  .site-nav {
    grid-template-columns: auto auto auto;
    gap: 8px;
    padding: 0 8px 0 14px;
  }

  .brand-mark {
    font-size: 16px;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    max-height: calc(100svh - 154px);
    padding: 12px;
    overflow: auto;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
      repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
      rgba(3, 3, 3, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px) scale(0.98);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(22px);
  }

  .nav-links.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 12px;
    min-height: 66px;
    padding: 12px;
    border-color: rgba(248, 246, 239, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
  }

  .nav-links a strong {
    font-size: 16px;
  }

  .nav-links small {
    display: block;
    grid-column: 2;
  }

  .nav-index {
    display: grid;
    grid-row: span 2;
  }

  .nav-sheet-top,
  .nav-sheet-cta {
    display: grid !important;
  }

  .nav-sheet-cta {
    justify-content: center;
    background: var(--ink) !important;
    color: var(--black) !important;
  }

  .hero-section {
    min-height: 96svh;
    align-items: end;
    padding-top: calc(var(--nav-height) + 78px);
    padding-bottom: 118px;
  }

  .hero-section::after {
    top: calc(var(--nav-height) + 54px);
    right: 22px;
    width: 138px;
  }

  .hero-section h1 {
    font-size: clamp(70px, 21vw, 118px);
    line-height: 0.8;
  }

  .hero-content::before {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .hero-content::after {
    width: 140px;
    margin-top: 24px;
  }

  .hero-copy {
    max-width: 34ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-strip {
    display: none;
  }

  .page-hero {
    min-height: 78svh;
    padding-top: calc(var(--nav-height) + 76px);
  }

  .page-hero h1 {
    font-size: clamp(58px, 17vw, 94px);
  }

  .eyebrow,
  .section-kicker {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .primary-action,
  .secondary-action {
    min-height: 50px;
  }

  .shop-card {
    grid-template-columns: 88px 1fr;
  }

  .shop-card img {
    width: 88px;
    height: 88px;
  }

  .poster-card::before,
  .visual-copy::after,
  .access-copy::after,
  .page-hero-content::after {
    width: 128px;
  }
}

/* Final QA tune: keep the editorial hero polished at real viewport sizes. */
@media (min-width: 761px) {
  .hero-section {
    min-height: 92svh;
  }
}

@media (max-width: 760px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    justify-self: end;
  }

  .cart-button {
    width: 56px;
    min-width: 56px;
    padding: 0 7px;
    gap: 6px;
  }

  .cart-icon {
    width: 13px;
    height: 13px;
  }

  .cart-count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
  }

  .hero-section {
    min-height: 84svh;
    padding-bottom: 96px;
  }

  .hero-content {
    width: min(100%, calc(100vw - var(--page-pad) * 2));
  }

  .hero-content::before,
  .hero-content > .eyebrow {
    display: flex;
    width: max-content;
    max-width: calc(100vw - var(--page-pad) * 2);
  }

  .hero-content > .eyebrow {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-actions,
  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    width: 100%;
  }
}

/* Final polish from screenshot QA. */
@media (min-width: 761px) {
  .hero-section {
    min-height: 88svh;
  }

  .brand-section {
    padding-top: clamp(48px, 6vw, 86px);
  }
}

@media (max-width: 760px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    grid-column: 3;
  }

  .cart-button {
    display: none;
  }

  .hero-section {
    min-height: 82svh;
    padding-bottom: 76px;
  }

  .hero-copy {
    margin-bottom: 20px;
  }

  .artist-link-row {
    display: none;
  }


  .brand-section {
    padding-top: 58px;
  }
}

/* Mobile overflow guard. */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-nav {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
  }

  .brand-mark {
    position: absolute;
    left: 16px;
    top: 14px;
  }

  .nav-toggle {
    position: absolute;
    right: 8px;
    top: 7px;
    grid-column: auto;
    display: inline-grid;
  }

  .site-header .cart-button {
    display: none !important;
  }

  .hero-actions {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    position: fixed !important;
    top: 20px;
    right: 28px;
    z-index: 70;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    left: min(calc(100vw - 70px), 332px) !important;
    right: auto !important;
  }
}

@media (max-width: 760px) {
  .hero-actions {
    max-width: 342px !important;
  }
}


/* CardTilt-style interaction layer. */
.card-tilt {
  --tilt-rotate-x: 0deg;
  --tilt-rotate-y: 0deg;
  --tilt-scale: 1;
  --tilt-depth: 14px;
  --tilt-glare-x: 50%;
  --tilt-glare-y: 50%;
  position: relative;
  isolation: isolate;
  transform:
    perspective(900px)
    rotateX(var(--tilt-rotate-x))
    rotateY(var(--tilt-rotate-y))
    scale3d(var(--tilt-scale), var(--tilt-scale), 1);
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.card-tilt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at var(--tilt-glare-x) var(--tilt-glare-y),
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0.09) 22%,
      transparent 52%
    );
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(calc(var(--tilt-depth) + 2px));
  transition: opacity 180ms ease;
}

.card-tilt > * {
  transform: translateZ(var(--tilt-depth));
}

.card-tilt:hover,
.card-tilt:focus-within {
  border-color: rgba(248, 246, 239, 0.44);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.card-tilt:hover::before,
.card-tilt:focus-within::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .card-tilt,
  .card-tilt > *,
  .card-tilt::before {
    transform: none;
  }
}


/* Chrome audit fixes: keep image cards visible and make the Dropbox portrait lead harder. */
.lookbook-card {
  background: #090909;
}

.lookbook-card-main img {
  object-position: 31% 47%;
}

.lookbook-card-mini img {
  object-position: 29% 43%;
}

.card-tilt > * {
  transform: none;
}

.card-tilt:hover,
.card-tilt:focus-within {
  transform:
    perspective(900px)
    rotateX(var(--tilt-rotate-x))
    rotateY(var(--tilt-rotate-y))
    scale3d(var(--tilt-scale), var(--tilt-scale), 1);
}

@media (max-width: 1020px) {
  .hero-media,
  .page-hero-media {
    object-position: 30% 47%;
    opacity: 0.72;
    filter: saturate(1.06) contrast(1.08);
  }

  .hero-vignette,
  .page-hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.3) 34%, rgba(0, 0, 0, 0.94)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.1));
  }
}

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

  .hero-media {
    object-position: 32% 48%;
    opacity: 0.78;
  }

  .hero-section h1 {
    text-shadow: 0 10px 36px rgba(0, 0, 0, 0.52);
  }
}


/* Chrome audit stacking fix: keep media above section backgrounds. */
.hero-section::before {
  z-index: 0;
}

.hero-media {
  z-index: 1;
}

.hero-vignette {
  z-index: 2;
  pointer-events: none;
}

.hero-lookbook,
.hero-content {
  z-index: 3;
}

.hero-strip {
  z-index: 4;
}

.page-hero-media {
  z-index: 0;
}

.page-hero-shade {
  z-index: 1;
}

.page-hero-content {
  z-index: 2;
}


/* Chrome audit interaction fixes: no hidden overflow, better target sizes. */
.brand-mark {
  min-width: 52px;
  min-height: 44px;
  align-content: center;
}

.nav-toggle,
.icon-button {
  width: 44px;
  height: 44px;
}

.nav-links a,
.artist-link-row a,
.stream-links a,
.connect-links a,
.tour-row a,
.cart-button,
.shop-card button {
  min-height: 44px;
}

.tour-row a {
  display: inline-flex;
  align-items: center;
}

.option-grid input,
.fan-options input {
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.cart-panel {
  transform: none;
}

.cart-drawer[aria-hidden="false"] .cart-panel {
  transform: none;
}


/* Chrome audit final target-size pass for compact social pills. */
.artist-link-row a,
.connect-links a,
.stream-links a,
.mini-link-grid a {
  min-width: 44px;
}


/* Dawn-inspired storefront refinement: cleaner commerce rhythm, less template noise. */
:root {
  --storefront-surface: rgba(255, 255, 255, 0.052);
  --storefront-surface-strong: rgba(255, 255, 255, 0.085);
  --storefront-border: rgba(248, 246, 239, 0.18);
  --storefront-border-strong: rgba(248, 246, 239, 0.34);
  --storefront-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  --radius: 6px;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 340px),
    #050505;
}

.site-header {
  border-color: var(--storefront-border);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
}

.site-nav {
  width: min(100%, calc(1240px + var(--page-pad) * 2));
}

.hero-content::before {
  display: none;
}

.hero-content::after,
.poster-card::before,
.visual-copy::after,
.access-copy::after,
.page-hero-content::after {
  opacity: 0.48;
}

.hero-section h1 {
  max-width: 760px;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  color: rgba(248, 246, 239, 0.82);
}

.release-section,
.album-section,
.physical-section,
.visuals-section,
.tour-section,
.access-section,
.architecture-section,
.bento-section,
.form-section {
  width: min(100%, calc(1240px + var(--page-pad) * 2));
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(64px, 8vw, 108px);
}

.section-heading {
  align-items: start;
  margin-bottom: clamp(24px, 3.2vw, 42px);
}

.section-heading h2,
.brand-statement h2,
.visual-copy h2,
.access-copy h2 {
  max-width: 760px;
}

.hub-stats,
.release-panel,
.album-card,
.feature-product,
.shop-card,
.photo-card,
.poster-card,
.signup-form,
.architecture-card,
.bento-card,
.contact-form,
.tracklist {
  border-color: var(--storefront-border);
  background:
    linear-gradient(180deg, var(--storefront-surface-strong), rgba(255, 255, 255, 0.018)),
    #0a0a0a;
  box-shadow: none;
}

.architecture-grid,
.album-grid,
.shop-grid,
.bento-grid,
.contact-grid {
  gap: clamp(16px, 2vw, 24px);
}

.architecture-card,
.bento-card {
  min-height: 220px;
  padding: clamp(22px, 2.6vw, 32px);
}

.architecture-card strong,
.bento-card h3,
.contact-form h3 {
  font-size: clamp(25px, 3vw, 46px);
  line-height: 1.03;
}

.album-card {
  min-height: auto;
}

.album-art,
.product-art,
.release-cover {
  background: #f2f0eb;
}

.album-card > div:not(.album-art) {
  padding: 20px 20px 10px;
}

.album-card button {
  margin: 12px 20px 20px;
}

.feature-product {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  min-height: 620px;
}

.product-art {
  padding: clamp(18px, 3.5vw, 46px);
}

.product-art img {
  width: min(100%, 620px);
  aspect-ratio: 4 / 5;
  box-shadow: var(--storefront-shadow);
}

.product-detail {
  justify-content: start;
  padding: clamp(28px, 4vw, 56px);
}

.shop-grid {
  align-items: stretch;
}

.shop-card {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  min-height: auto;
  padding: 0;
}

.shop-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  border-bottom: 1px solid var(--storefront-border);
}

.shop-card > div {
  padding: 18px 18px 4px;
}

.shop-card button {
  width: calc(100% - 36px);
  margin: 12px 18px 18px;
}

.primary-action,
.secondary-action,
.album-card button,
.shop-card button,
.bento-card button,
.mini-link-grid a,
.cart-button,
.artist-link-row a,
.stream-links a,
.connect-links a {
  border-color: var(--storefront-border-strong);
  box-shadow: none;
}

.primary-action {
  background: #f8f6ef;
  color: #050505;
}

.secondary-action,
.album-card button,
.shop-card button,
.bento-card button,
.mini-link-grid a {
  background: rgba(255, 255, 255, 0.035);
}

.primary-action:hover,
.secondary-action:hover,
.album-card button:hover,
.shop-card button:hover,
.bento-card button:hover,
.mini-link-grid a:hover {
  transform: translateY(-1px);
}

.card-tilt {
  --tilt-depth: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.card-tilt::before {
  background:
    radial-gradient(
      circle at var(--tilt-glare-x) var(--tilt-glare-y),
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.055) 24%,
      transparent 56%
    );
}

.card-tilt:hover,
.card-tilt:focus-within {
  border-color: var(--storefront-border-strong);
  box-shadow: var(--storefront-shadow);
}

.cart-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 220px),
    #070707;
}

@media (max-width: 1020px) {
  .feature-product {
    grid-template-columns: 1fr;
  }

  .product-detail {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .release-section,
  .album-section,
  .physical-section,
  .visuals-section,
  .tour-section,
  .access-section,
  .architecture-section,
  .bento-section,
  .form-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    gap: 18px;
  }

  .architecture-card,
  .bento-card {
    min-height: 190px;
  }

  .shop-card {
    grid-template-columns: 1fr !important;
  }

  .shop-card img {
    width: 100%;
    height: auto;
  }

  .shop-card button {
    grid-column: auto;
  }
}


/* Store page QA: keep campaign media visible and mobile headlines contained. */
.page-hero-media {
  z-index: 1 !important;
  background: #f2f0eb;
  opacity: 0.92;
}

.page-hero-shade {
  z-index: 2 !important;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0 44%, rgba(0, 0, 0, 0.42) 68%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0, rgba(0, 0, 0, 0.1) 54%, rgba(0, 0, 0, 0.54) 100%);
}

.page-hero-content {
  z-index: 3 !important;
}

.page-hero h1 {
  overflow-wrap: break-word;
}

@media (max-width: 1020px) {
  .page-hero-media {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    border-radius: 0;
    opacity: 0.68;
  }
}

@media (max-width: 760px) {
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 15vw, 68px);
    line-height: 0.96;
  }
}


/* Subpage hero media layer: use a CSS image layer so page heroes never render as empty panels. */
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto var(--page-pad) 72px auto;
  z-index: 1;
  width: min(42vw, 620px);
  height: min(54vh, 560px);
  border: 1px solid var(--storefront-border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 48%),
    url("assets/client-hero-1280.webp") 31% 47% / cover no-repeat,
    #f2f0eb;
  opacity: 0.92;
  box-shadow: var(--storefront-shadow);
}

.page-hero-media {
  opacity: 0 !important;
}

@media (max-width: 1020px) {
  .page-hero::before {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    opacity: 0.7;
  }
}

@media (max-width: 760px) {
  .page-hero h1 {
    max-width: 9.5ch;
    font-size: clamp(44px, 14vw, 58px);
    line-height: 0.98;
    text-wrap: wrap;
  }
}


/* Shopify flowing storefront pass: full sections, product shelves, service rhythm. */
:root {
  --announcement-height: 36px;
  --store-cream: #f4efe6;
  --store-ink: #0b0b0b;
  --store-muted: #62605a;
  --store-rule: rgba(11, 11, 11, 0.14);
}

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 72;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: var(--announcement-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(248, 246, 239, 0.12);
  background: #f8f6ef;
  color: #050505;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.announcement-bar span:first-child {
  justify-self: start;
}

.announcement-bar a {
  justify-self: end;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  inset: calc(var(--announcement-height) + 12px) var(--page-pad) auto;
}

.hero-section {
  min-height: 92svh;
  padding-top: calc(var(--nav-height) + var(--announcement-height) + 72px);
}

.commerce-section {
  width: 100%;
  padding: clamp(64px, 8vw, 112px) var(--page-pad);
  background: var(--store-cream);
  color: var(--store-ink);
}

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

.commerce-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.commerce-heading .section-kicker {
  border-color: var(--store-rule);
  background: rgba(11, 11, 11, 0.05);
  color: var(--store-ink);
  backdrop-filter: none;
}

.commerce-heading h2 {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--store-ink);
}

.commerce-heading p:not(.section-kicker) {
  max-width: 60ch;
  margin: 0;
  color: var(--store-muted);
  font-size: 16px;
}

.commerce-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--store-rule);
  border-radius: 999px;
  color: var(--store-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.commerce-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.commerce-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--store-rule);
  border-radius: 6px;
  background: #fffaf2;
}

.commerce-product-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e8e3da;
}

.commerce-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 31% 47%;
  filter: saturate(0.84) contrast(1.04);
  transition: transform 260ms ease;
}

.commerce-product-media span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.9);
  color: var(--store-ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.commerce-product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.commerce-product-info p {
  margin: 0;
  color: var(--store-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.commerce-product-info h3 {
  margin: 0;
  color: var(--store-ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
  text-transform: none;
}

.commerce-product-meta {
  display: grid;
  gap: 2px;
  margin-top: 2px;
}

.commerce-product-meta strong {
  color: var(--store-ink);
  font-size: 16px;
}

.commerce-product-meta span {
  color: var(--store-muted);
  font-size: 12px;
}

.commerce-product-info button {
  min-height: 46px;
  margin-top: 8px;
  border: 1px solid var(--store-ink);
  border-radius: 999px;
  background: var(--store-ink);
  color: #fffaf2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.commerce-product-card:hover .commerce-product-media img {
  transform: scale(1.035);
}

.brand-section {
  border-top: 0;
}

.architecture-section {
  position: relative;
}

.architecture-section::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #080808;
}

.architecture-card {
  min-height: 300px;
}

.architecture-card small {
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.45;
}

.release-section,
.album-section,
.physical-section,
.visuals-section {
  border-top: 0;
}

.service-band {
  width: min(1240px, calc(100% - var(--page-pad) * 2));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--storefront-border);
  border-bottom: 1px solid var(--storefront-border);
}

.service-card {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--storefront-border);
}

.service-card:last-child {
  border-right: 0;
}

.service-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.service-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.service-card p {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
}

.store-footer {
  width: 100%;
  padding: clamp(52px, 8vw, 86px) var(--page-pad) calc(96px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--storefront-border);
  background: #020202;
  color: var(--ink);
}

.store-footer-main,
.store-footer-bottom {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.store-footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(24px, 5vw, 64px);
}

.store-footer p {
  max-width: 40ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-brand {
  width: max-content;
}

.store-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.store-footer h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
}

.store-footer a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.store-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: 18px;
  border-top: 1px solid var(--storefront-border);
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.merch-commerce {
  padding-top: clamp(52px, 7vw, 92px);
}

@media (max-width: 1020px) {
  .announcement-bar {
    grid-template-columns: 1fr auto;
  }

  .announcement-bar span:nth-child(2) {
    display: none;
  }

  .commerce-heading,
  .store-footer-main {
    grid-template-columns: 1fr;
  }

  .commerce-view-all {
    width: max-content;
  }

  .commerce-product-grid,
  .service-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--storefront-border);
  }
}

@media (max-width: 760px) {
  :root {
    --announcement-height: 34px;
  }

  .announcement-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-inline: 14px;
    text-align: center;
  }

  .announcement-bar span:first-child,
  .announcement-bar a {
    display: none;
  }

  .site-header {
    inset: calc(var(--announcement-height) + 10px) 12px auto;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + var(--announcement-height) + 48px);
  }

  .commerce-section {
    padding: 56px var(--page-pad);
  }

  .commerce-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .commerce-product-grid,
  .service-band {
    grid-template-columns: 1fr;
  }

  .commerce-product-card {
    border-radius: 5px;
  }

  .service-card,
  .service-card:nth-child(2),
  .service-card:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--storefront-border);
  }

  .service-card:first-child {
    border-top: 0;
  }

  .store-footer-main {
    gap: 28px;
  }

  .store-footer-bottom {
    display: grid;
  }
}


/* Premium men's fashion ecommerce homepage. */
body.fashion-home {
  --fashion-black: #030303;
  --fashion-ink: #f5efe4;
  --fashion-cream: #f4efe5;
  --fashion-charcoal: #151515;
  --fashion-charcoal-2: #202020;
  --fashion-muted: #a9a39a;
  --fashion-soft: #6f6a64;
  --fashion-chrome: #d8dde0;
  --fashion-line: rgba(245, 239, 228, 0.16);
  --fashion-line-strong: rgba(245, 239, 228, 0.32);
  --fashion-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(216, 221, 224, 0.16), transparent 28rem),
    linear-gradient(180deg, #080808 0, #030303 38rem, #070707 100%);
  color: var(--fashion-ink);
}

.fashion-home .atelier-announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 36px;
  padding: 0 var(--page-pad);
  background: var(--fashion-cream);
  color: var(--fashion-black);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.fashion-home .atelier-announcement a {
  justify-self: end;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fashion-home .fashion-header {
  inset: 48px var(--page-pad) auto;
  height: 66px;
  border: 1px solid var(--fashion-line-strong);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.62);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px) saturate(1.2);
}

.fashion-home .fashion-nav {
  width: min(100%, calc(1260px + 40px));
  padding: 0 16px 0 22px;
}

.fashion-home .fashion-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  line-height: 0.92;
  text-transform: none;
}

.fashion-home .fashion-brand span:last-child {
  color: var(--fashion-chrome);
}

.fashion-home .fashion-nav-links {
  gap: 8px;
}

.fashion-home .fashion-nav-links a {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(245, 239, 228, 0.72);
}

.fashion-home .fashion-nav-links a::after {
  display: none;
}

.fashion-home .fashion-nav-links a:hover,
.fashion-home .fashion-nav-links a:focus-visible {
  border-color: var(--fashion-line);
  background: rgba(245, 239, 228, 0.07);
  color: var(--fashion-ink);
}

.fashion-home .cart-button,
.fashion-home .icon-button {
  border-color: var(--fashion-line-strong);
  background: rgba(245, 239, 228, 0.06);
  color: var(--fashion-ink);
}

.fashion-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 5vw, 82px);
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 168px var(--page-pad) 72px;
  isolation: isolate;
}

.fashion-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: 62%;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.14) 38%, rgba(3, 3, 3, 0.64)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
}

.fashion-hero-media {
  position: absolute;
  right: var(--page-pad);
  bottom: 72px;
  z-index: -1;
  width: min(46vw, 620px);
  height: min(70vh, 760px);
  overflow: hidden;
  border: 1px solid var(--fashion-line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--fashion-shadow);
}

.fashion-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 31% 47%;
  filter: saturate(0.82) contrast(1.1);
}

.fashion-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 3, 3, 0.72), transparent 46%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.62), transparent 46%);
}

.fashion-hero-copy {
  max-width: 780px;
  padding-bottom: clamp(18px, 4vw, 52px);
}

.fashion-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid var(--fashion-line);
  border-radius: 999px;
  background: rgba(245, 239, 228, 0.06);
  color: var(--fashion-chrome);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.fashion-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fashion-chrome);
  box-shadow: 0 0 0 4px rgba(216, 221, 224, 0.1);
}

.fashion-hero h1,
.fashion-section-heading h2,
.lookbook-copy h2,
.story-section h2,
.newsletter-section h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.fashion-hero h1 {
  max-width: 840px;
  font-size: clamp(66px, 10vw, 158px);
}

.fashion-hero-copy > p:not(.fashion-kicker) {
  max-width: 54ch;
  margin: 24px 0 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: clamp(17px, 1.6vw, 22px);
}

.fashion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.fashion-button,
.hero-product-panel button,
.fashion-product-info button,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.fashion-button-primary,
.hero-product-panel button,
.fashion-product-info button,
.newsletter-form button {
  border: 1px solid var(--fashion-cream);
  background: var(--fashion-cream);
  color: var(--fashion-black);
}

.fashion-button-secondary {
  border: 1px solid var(--fashion-line-strong);
  background: rgba(245, 239, 228, 0.04);
  color: var(--fashion-ink);
}

.fashion-button:hover,
.hero-product-panel button:hover,
.fashion-product-info button:hover,
.newsletter-form button:hover {
  transform: translateY(-2px);
}

.hero-product-panel {
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 12px;
  width: min(320px, 100%);
  padding: 20px;
  border: 1px solid var(--fashion-line);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.64);
  box-shadow: var(--fashion-shadow);
  backdrop-filter: blur(18px);
}

.hero-product-panel span,
.hero-product-panel small {
  color: var(--fashion-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product-panel strong {
  color: var(--fashion-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.fashion-marquee {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--fashion-line);
  border-bottom: 1px solid var(--fashion-line);
  background: rgba(245, 239, 228, 0.035);
}

.fashion-marquee span {
  flex: 1 0 auto;
  min-width: 240px;
  padding: 16px var(--page-pad);
  border-right: 1px solid var(--fashion-line);
  color: var(--fashion-muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.fashion-section,
.lookbook-section,
.story-section,
.reviews-section,
.newsletter-section {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 128px) var(--page-pad);
}

.fashion-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.fashion-section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.fashion-section-heading h2,
.lookbook-copy h2,
.story-section h2,
.newsletter-section h2 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 98px);
}

.fashion-section-heading p:not(.fashion-kicker),
.lookbook-copy p,
.story-copy p,
.newsletter-section p {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--fashion-muted);
}

.drop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.drop-controls button {
  min-height: 40px;
  border: 1px solid var(--fashion-line);
  border-radius: 999px;
  background: rgba(245, 239, 228, 0.04);
  color: var(--fashion-muted);
  padding: 0 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.drop-controls button.is-active,
.drop-controls button:hover {
  border-color: var(--fashion-cream);
  background: var(--fashion-cream);
  color: var(--fashion-black);
}

.fashion-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.fashion-product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--fashion-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.065), rgba(245, 239, 228, 0.018)),
    var(--fashion-charcoal);
  transition:
    transform 220ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.fashion-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--fashion-line-strong);
  box-shadow: var(--fashion-shadow);
}

.fashion-product-card[hidden] {
  display: none;
}

.fashion-product-image {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 310px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 221, 224, 0.2), transparent 36%),
    linear-gradient(145deg, #222, #050505);
}

.fashion-product-image::before {
  content: "";
  position: absolute;
  inset: 18% 22% 12%;
  border: 1px solid rgba(245, 239, 228, 0.12);
  border-radius: 32px 32px 10px 10px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.09), transparent 42%),
    rgba(0, 0, 0, 0.22);
  transform: skewX(-2deg);
}

.product-cargo::before {
  inset: 15% 28% 10%;
  border-radius: 12px;
}

.product-tee::before {
  inset: 18% 20% 16%;
  border-radius: 22px 22px 8px 8px;
  background: linear-gradient(145deg, #f1e7d5, #9a9489);
}

.product-jacket::before {
  inset: 14% 18% 10%;
  border-radius: 42px 42px 12px 12px;
  background: linear-gradient(145deg, #1c1c1c, #080808 58%, #cad0d2);
}

.product-cap::before {
  inset: 36% 22% 28%;
  border-radius: 999px 999px 18px 18px;
}

.fashion-product-image span,
.fashion-product-image strong {
  position: relative;
  z-index: 2;
}

.fashion-product-image span {
  color: var(--fashion-chrome);
  font-size: 11px;
  font-weight: 900;
}

.fashion-product-image strong {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.fashion-product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.fashion-product-info p {
  margin: 0;
  color: var(--fashion-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.fashion-product-info h3 {
  margin: 0;
  color: var(--fashion-ink);
  font-size: 20px;
  line-height: 1.08;
  text-transform: none;
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--fashion-muted);
  font-size: 12px;
}

.product-row strong {
  color: var(--fashion-ink);
  font-size: 15px;
}

.fashion-product-info button {
  min-height: 46px;
  margin-top: 4px;
}

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

.seller-card,
.review-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--fashion-line);
  border-radius: 8px;
  background: rgba(245, 239, 228, 0.045);
}

.seller-card span {
  color: var(--fashion-chrome);
  font-size: 12px;
  font-weight: 900;
}

.seller-card h3 {
  margin: 52px 0 10px;
  color: var(--fashion-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.seller-card p,
.review-card blockquote {
  color: var(--fashion-muted);
}

.seller-card strong {
  display: block;
  margin-top: 22px;
  color: var(--fashion-ink);
}

.lookbook-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.lookbook-copy {
  max-width: 560px;
}

.lookbook-copy .fashion-button {
  margin-top: 28px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.lookbook-frame {
  overflow: hidden;
  border: 1px solid var(--fashion-line);
  border-radius: 8px;
  background: var(--fashion-charcoal);
}

.lookbook-frame.tall {
  grid-row: span 2;
}

.lookbook-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 31% 47%;
  filter: saturate(0.78) contrast(1.08);
}

.chrome-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(216, 221, 224, 0.2), transparent 48%),
    linear-gradient(180deg, #222, #060606);
}

.chrome-card span {
  color: var(--fashion-chrome);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.chrome-card strong {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 92px);
  border-top: 1px solid var(--fashion-line);
  border-bottom: 1px solid var(--fashion-line);
}

.story-copy > p {
  max-width: 66ch;
  font-size: clamp(17px, 2vw, 22px);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 38px 0 0;
  border: 1px solid var(--fashion-line);
}

.story-stats div {
  padding: 22px;
  border-right: 1px solid var(--fashion-line);
}

.story-stats div:last-child {
  border-right: 0;
}

.story-stats dt {
  color: var(--fashion-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.9;
}

.story-stats dd {
  margin: 8px 0 0;
  color: var(--fashion-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card {
  display: grid;
  align-content: space-between;
  margin: 0;
}

.review-card blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.1;
}

.review-card figcaption {
  margin-top: 28px;
  color: var(--fashion-chrome);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--fashion-line);
  border-radius: 8px;
  background: rgba(245, 239, 228, 0.045);
}

.newsletter-form label {
  color: var(--fashion-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--fashion-line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--fashion-ink);
  padding: 0 16px;
}

.newsletter-status {
  min-height: 20px;
  margin: 0;
  color: var(--fashion-chrome);
  font-size: 12px;
  font-weight: 900;
}

.fashion-footer {
  padding: clamp(54px, 8vw, 92px) var(--page-pad) calc(92px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--fashion-line);
  background: #020202;
}

.fashion-footer-grid,
.fashion-footer-bottom {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.fashion-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.5fr));
  gap: clamp(26px, 5vw, 70px);
}

.fashion-footer p,
.fashion-footer a {
  color: var(--fashion-muted);
}

.fashion-footer p {
  max-width: 36ch;
  margin: 18px 0 0;
}

.fashion-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.fashion-footer h3 {
  margin: 0 0 8px;
  color: var(--fashion-ink);
  font-size: 12px;
}

.fashion-footer a {
  font-size: 13px;
  font-weight: 800;
}

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

.fashion-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: 18px;
  border-top: 1px solid var(--fashion-line);
  color: var(--fashion-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .fashion-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .fashion-home .atelier-announcement {
    grid-template-columns: 1fr auto;
  }

  .fashion-home .atelier-announcement span:nth-child(2) {
    display: none;
  }

  .fashion-hero,
  .lookbook-section,
  .story-section,
  .newsletter-section,
  .fashion-section-heading {
    grid-template-columns: 1fr;
  }

  .fashion-hero {
    align-items: end;
    min-height: 94svh;
  }

  .fashion-hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    opacity: 0.72;
  }

  .hero-product-panel {
    justify-self: start;
  }

  .seller-grid,
  .review-grid,
  .fashion-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .story-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--fashion-line);
  }

  .story-stats div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .fashion-home .atelier-announcement {
    min-height: 34px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fashion-home .atelier-announcement span:first-child,
  .fashion-home .atelier-announcement a {
    display: none;
  }

  .fashion-home .fashion-header {
    inset: 44px 12px auto;
    height: 56px;
  }

  .fashion-home .fashion-nav {
    padding: 0;
  }

  .fashion-hero {
    padding: 128px var(--page-pad) 58px;
    min-height: 91svh;
  }

  .fashion-hero h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .fashion-actions,
  .newsletter-form > div {
    grid-template-columns: 1fr;
    display: grid;
  }

  .fashion-button,
  .newsletter-form button {
    width: 100%;
  }

  .hero-product-panel {
    display: none;
  }

  .fashion-product-grid {
    grid-template-columns: 1fr;
  }

  .fashion-product-image {
    min-height: 360px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 220px 280px;
  }

  .lookbook-frame.tall {
    grid-row: auto;
  }

  .fashion-footer-bottom {
    display: grid;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SAINT CHRIS — PREMIUM ARTIST PORTFOLIO / STORE SYSTEM
   ═══════════════════════════════════════════════════════════════ */

:root {
  --artist-black: #050505;
  --artist-panel: #0d0d0e;
  --artist-ink: #f7f1e8;
  --artist-muted: rgba(247, 241, 232, 0.68);
  --artist-soft: rgba(247, 241, 232, 0.42);
  --artist-line: rgba(247, 241, 232, 0.12);
  --artist-line-strong: rgba(247, 241, 232, 0.22);
  --artist-yellow: #ffd91a;
  --artist-blue: #263cff;
  --artist-red: #f20f1d;
  --artist-chrome: #d9dce2;
  --artist-pad: clamp(18px, 4vw, 64px);

  /* Premium typography */
  --font-display: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", Inter, ui-sans-serif, system-ui, sans-serif;

  /* Glow & depth tokens */
  --glow-blue: rgba(38, 60, 255, 0.35);
  --glow-yellow: rgba(255, 217, 26, 0.18);
  --glow-soft: 0 28px 100px rgba(0, 0, 0, 0.52);
  --card-radius: 16px;
  --transition-smooth: 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-reveal-delay="1"] { transition-delay: 180ms; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 360ms; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 540ms; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 80ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 180ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 280ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 380ms; }
[data-reveal-stagger].is-visible > *:nth-child(n+5) { transition-delay: 460ms; }

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Base ── */
body.artist-store-home {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 120% 60% at 78% 6%, rgba(38, 60, 255, 0.18), transparent),
    radial-gradient(ellipse 80% 50% at 12% 90%, rgba(255, 217, 26, 0.06), transparent),
    linear-gradient(180deg, #050505 0%, #080808 40%, #050505 100%);
  color: var(--artist-ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.artist-store-home * {
  box-sizing: border-box;
}

.artist-store-home img {
  display: block;
  max-width: 100%;
}

.artist-store-home a {
  color: inherit;
  text-decoration: none;
}

/* ── Header / Navigation ── */
.artist-shell-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 14px var(--artist-pad) 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0));
}

.split-nav {
  width: min(1440px, 100%);
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) minmax(320px, 1fr) minmax(220px, 0.5fr);
  align-items: center;
  gap: 18px;
  padding: 0 12px 0 24px;
  border: 1px solid var(--artist-line);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.6);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 22px 80px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(28px) saturate(1.4);
}

.saint-logo {
  display: grid;
  width: max-content;
  color: var(--artist-ink);
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.1vw, 34px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.02em;
  transition: opacity var(--transition-smooth);
}

.saint-logo:hover {
  opacity: 0.82;
}

.saint-logo span:last-child {
  padding-left: 22px;
}

.split-nav-center {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3.2vw, 48px);
}

.split-nav-center a,
.cart-pill,
.split-menu-button,
.split-menu-links a,
.artist-footer nav a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-nav-center a {
  position: relative;
  color: var(--artist-muted);
  transition: color var(--transition-smooth);
}

.split-nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--artist-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-smooth);
}

.split-nav-center a:hover,
.split-nav-center a:focus-visible {
  color: var(--artist-ink);
}

.split-nav-center a:hover::after,
.split-nav-center a:focus-visible::after {
  transform: scaleX(1);
}

.split-nav-actions {
  display: flex;
  justify-content: end;
  gap: 8px;
}

.cart-pill,
.split-menu-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--artist-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--artist-ink);
  padding: 0 16px;
  cursor: pointer;
  transition:
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.cart-pill span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--artist-yellow);
  color: var(--artist-black);
  font-weight: 800;
  font-size: 11px;
}

.cart-pill-label,
.split-menu-label {
  line-height: 1;
}

.split-menu-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition-smooth);
}

.split-menu-button[aria-expanded="true"] .split-menu-arrow {
  transform: rotate(225deg) translateY(-2px);
}

.cart-pill:hover,
.split-menu-button:hover {
  border-color: rgba(255, 217, 26, 0.42);
  background: rgba(255, 217, 26, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255, 217, 26, 0.08);
}

/* ── Dropdown Menu ── */
.split-menu-panel {
  width: min(1320px, calc(100% - (var(--artist-pad) * 2)));
  margin: 12px auto 0;
}

.split-menu-panel[hidden] {
  display: none;
}

.split-menu-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(360px, 1.1fr) minmax(190px, 0.44fr);
  gap: clamp(18px, 4vw, 56px);
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid var(--artist-line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 217, 26, 0.05), transparent 36%),
    rgba(10, 10, 12, 0.94);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 40px 120px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(32px) saturate(1.3);
}

/* ── Shared Typography ── */
.split-menu-brand h2,
.hero-showcase h1,
.section-head h2,
.campaign-copy h2,
.story-content h2,
.artist-newsletter h2 {
  margin: 0;
  color: var(--artist-ink);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.split-menu-brand h2 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 78px);
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
}

.split-menu-brand p,
.hero-copy-block > p:not(.artist-kicker),
.section-head > p,
.campaign-copy p,
.story-content p,
.artist-newsletter p,
.artist-footer p {
  color: var(--artist-muted);
  line-height: 1.55;
  font-weight: 300;
}

.split-menu-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.split-menu-links a {
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--artist-line);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.split-menu-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 217, 26, 0.36);
  background: rgba(255, 217, 26, 0.06);
  box-shadow: 0 12px 40px rgba(255, 217, 26, 0.06);
}

.split-menu-links span,
.split-menu-links small,
.artist-kicker,
.media-meta span,
.card-copy span,
.artist-stats dd,
.hero-media-info span,
.artist-footer > span {
  color: var(--artist-soft);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-menu-links strong {
  color: var(--artist-ink);
  font-weight: 700;
}

.split-menu-feature {
  display: grid;
  gap: 12px;
  margin: 0;
  align-content: start;
}

.split-menu-feature .portfolio-img {
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
}

.split-menu-feature figcaption {
  display: grid;
  gap: 6px;
}

/* ── Kicker Badge ── */
.artist-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 7px 14px;
  border: 1px solid var(--artist-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--artist-muted);
  backdrop-filter: blur(8px);
}

/* ── Hero Section ── */
.hero-showcase {
  width: min(1480px, 100%);
  min-height: calc(100svh - 84px);
  margin: -84px auto 0;
  padding: clamp(152px, 20vh, 228px) var(--artist-pad) clamp(52px, 8vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  position: relative;
  isolation: isolate;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(38, 60, 255, 0.12), transparent),
    linear-gradient(115deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.7) 48%, rgba(38, 60, 255, 0.1)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 22px);
}

/* Subtle ambient light glow */
.hero-showcase::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 60, 255, 0.14), transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero-copy-block {
  max-width: 820px;
  min-width: 0;
}

.hero-showcase h1 {
  max-width: 9.1ch;
  font-size: clamp(68px, 10vw, 160px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--artist-ink) 40%, rgba(247, 241, 232, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy-block > p:not(.artist-kicker) {
  max-width: 52ch;
  margin: 32px 0 0;
  font-size: clamp(17px, 1.8vw, 22px);
}

.artist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ── Buttons ── */
.artist-button,
.artist-form button,
.product-row button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--artist-line);
  border-radius: 999px;
  padding: 0 26px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.artist-button:hover,
.artist-form button:hover,
.product-row button:hover {
  transform: translateY(-2px);
}

.artist-button-primary,
.artist-form button,
.product-row button {
  border-color: var(--artist-yellow);
  background: var(--artist-yellow);
  color: #050505;
}

.artist-button-primary:hover,
.artist-form button:hover,
.product-row button:hover {
  box-shadow: 0 10px 36px rgba(255, 217, 26, 0.22);
}

.artist-button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--artist-ink);
}

.artist-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

/* ── Cards (shared) ── */
.hero-media-card,
.media-card,
.release-card,
.store-product-card,
.story-image,
.press-card {
  margin: 0;
  border: 1px solid var(--artist-line);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--glow-soft);
  transition:
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    transform var(--transition-smooth);
}

.hero-media-card {
  align-self: stretch;
  min-height: min(72svh, 740px);
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: 0 40px 140px rgba(38, 60, 255, 0.2);
}

/* ── Media Frame ── */
.media-frame {
  overflow: hidden;
  background: #0a0a0b;
}

.media-frame.square {
  aspect-ratio: 1;
}

.media-frame.poster-ratio {
  aspect-ratio: 739 / 1600;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image zoom on card hover */
.release-card:hover .portfolio-img,
.store-product-card:hover .portfolio-img,
.media-card:hover .portfolio-img {
  transform: scale(1.04);
}

.hero-media-card .media-frame {
  min-height: 0;
}

.hero-media-card .portfolio-img {
  object-position: 50% 18%;
}

/* ── Card Copy ── */
.hero-media-info,
.media-meta,
.card-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.hero-media-info strong,
.media-meta strong,
.card-copy h3 {
  margin: 0;
  color: var(--artist-ink);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.media-meta small,
.card-copy p {
  color: var(--artist-muted);
  line-height: 1.45;
  font-weight: 300;
  font-size: 14px;
}

/* ── Hero Index Row ── */
.hero-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--artist-line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.hero-index span,
.marquee-strip span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--artist-line);
  color: var(--artist-soft);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-index span:last-child,
.marquee-strip span:last-child {
  border-right: 0;
}

/* ── Marquee Strip ── */
.marquee-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  overflow-x: auto;
  border-block: 1px solid var(--artist-line);
  background:
    linear-gradient(90deg, rgba(38, 60, 255, 0.04), transparent 20%, transparent 80%, rgba(255, 217, 26, 0.03)),
    #080809;
}

/* ── Sections ── */
.artist-section,
.campaign-section,
.artist-story,
.artist-newsletter {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 148px) var(--artist-pad);
}

.section-head {
  margin-bottom: clamp(32px, 6vw, 64px);
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
}

.section-head h2,
.campaign-copy h2,
.story-content h2,
.artist-newsletter h2 {
  font-size: clamp(48px, 7vw, 112px);
}

.section-head > p,
.campaign-copy p,
.story-content p,
.artist-newsletter p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 20px);
}

/* ── Release Grid ── */
.release-grid,
.shop-grid,
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.release-card,
.store-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.release-card:hover,
.store-product-card:hover {
  border-color: rgba(255, 217, 26, 0.2);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 217, 26, 0.08);
}

.release-card .media-frame,
.store-product-card .media-frame:not(.poster-ratio) {
  aspect-ratio: 1;
}

.product-copy {
  align-content: space-between;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.product-row strong {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-body);
}

.product-row button {
  min-height: 40px;
  padding-inline: 20px;
  font-size: 10px;
}

/* ── Campaign Section ── */
.campaign-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.campaign-media-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.54fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: end;
}

.campaign-media-grid .wide .media-frame {
  aspect-ratio: 720 / 1026;
}

/* ── Portfolio Filter ── */
.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.portfolio-controls button {
  min-height: 40px;
  border: 1px solid var(--artist-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--artist-muted);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color var(--transition-smooth),
    color var(--transition-smooth),
    background var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.portfolio-controls button.is-active,
.portfolio-controls button:hover {
  border-color: var(--artist-yellow);
  color: var(--artist-ink);
  background: rgba(255, 217, 26, 0.06);
}

.portfolio-controls button.is-active {
  box-shadow: 0 0 16px rgba(255, 217, 26, 0.1);
}

/* ── Media Grid (Portfolio) ── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.media-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.media-card .media-frame {
  aspect-ratio: 4 / 5;
}

.media-card.tall {
  grid-row: span 2;
}

.media-card.tall .media-frame {
  aspect-ratio: 4 / 6;
}

.media-card.wide {
  grid-column: span 2;
}

.media-card.wide .media-frame {
  aspect-ratio: 16 / 10;
}

/* ── Artist Story ── */
.artist-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.story-image .media-frame {
  aspect-ratio: 4 / 5;
}

.artist-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0 0;
  border: 1px solid var(--artist-line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.artist-stats div {
  padding: 20px;
  border-right: 1px solid var(--artist-line);
}

.artist-stats div:last-child {
  border-right: 0;
}

.artist-stats dt {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 60px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.artist-stats dd {
  margin: 0;
  font-weight: 400;
}

/* ── Newsletter ── */
.artist-newsletter {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 0.6fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: center;
  border-top: 1px solid var(--artist-line);
}

.artist-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--artist-line);
  border-radius: var(--card-radius);
  background:
    linear-gradient(135deg, rgba(255, 217, 26, 0.03), transparent 50%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.artist-form label {
  color: var(--artist-soft);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.artist-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--artist-line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--artist-ink);
  padding: 0 18px;
  font-family: var(--font-body);
  font-weight: 400;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.artist-form input:focus {
  border-color: rgba(255, 217, 26, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 217, 26, 0.08);
  outline: none;
}

.artist-form input::placeholder {
  color: var(--artist-soft);
}

.artist-form .form-status {
  min-height: 20px;
  margin: 0;
  color: var(--artist-yellow);
  font-size: 12px;
  font-weight: 700;
}

/* ── Footer ── */
.artist-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 32px;
  align-items: end;
  padding: clamp(48px, 8vw, 96px) var(--artist-pad);
  border-top: 1px solid var(--artist-line);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(2, 2, 3, 1) 30%),
    #020203;
}

.artist-footer p {
  max-width: 42ch;
  margin: 20px 0 0;
  font-size: 14px;
}

.artist-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.artist-footer nav a {
  color: var(--artist-soft);
  transition: color var(--transition-smooth);
}

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

.artist-footer > span {
  font-size: 10px;
}

/* ── Card Tilt (3D hover effect) ── */
.card-tilt {
  transform:
    perspective(900px)
    rotateX(var(--tilt-rotate-x, 0deg))
    rotateY(var(--tilt-rotate-y, 0deg))
    translateZ(var(--tilt-depth, 0))
    scale(var(--tilt-scale, 1));
  transition:
    transform 220ms ease,
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
  transform-style: preserve-3d;
}

.card-tilt:hover {
  border-color: rgba(255, 217, 26, 0.24);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(38, 60, 255, 0.06);
}

/* ── Responsive ── */
@media (max-width: 1180px) {
  .shop-grid,
  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .split-nav {
    position: relative;
    grid-template-columns: auto 1fr;
    min-height: 62px;
    padding-right: 104px;
  }

  .split-nav-center {
    display: none;
  }

  .split-nav-actions {
    position: absolute;
    top: 50%;
    right: 10px;
    justify-self: end;
    transform: translateY(-50%);
  }

  .cart-pill {
    display: none;
  }

  .split-menu-panel {
    width: calc(100% - 24px);
  }

  .split-menu-inner,
  .hero-showcase,
  .section-head.split,
  .campaign-section,
  .artist-story,
  .artist-newsletter {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    margin-top: -78px;
    min-height: auto;
  }

  .hero-showcase::after {
    display: none;
  }

  .hero-media-card {
    min-height: 620px;
    order: -1;
  }

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

  .campaign-media-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  }

  .artist-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .artist-shell-header {
    padding-inline: 12px;
  }

  .split-nav {
    width: 100%;
    min-height: 60px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 0 98px 0 16px;
    overflow: hidden;
  }

  .split-nav-center {
    display: none;
  }

  .split-nav-actions {
    min-width: 0;
    gap: 6px;
  }

  .saint-logo {
    font-size: 22px;
  }

  .cart-pill,
  .split-menu-button {
    min-height: 42px;
    padding-inline: 12px;
  }

  .cart-pill {
    gap: 0;
    padding-inline: 10px;
  }

  .cart-pill-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .split-menu-button {
    gap: 8px;
  }

  .split-menu-inner {
    padding: 16px;
  }

  .split-menu-links {
    grid-template-columns: 1fr;
  }

  .split-menu-feature {
    display: none;
  }

  .hero-showcase {
    padding: 116px var(--artist-pad) 48px;
    gap: 24px;
  }

  .hero-showcase h1 {
    max-width: 8.4ch;
    font-size: clamp(52px, 15vw, 78px);
    -webkit-text-fill-color: var(--artist-ink);
    background: none;
  }

  .hero-copy-block > p:not(.artist-kicker),
  .section-head > p,
  .campaign-copy p,
  .story-content p,
  .artist-newsletter p {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .artist-actions,
  .artist-form > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .artist-button,
  .artist-form button {
    width: 100%;
  }

  .hero-media-card {
    min-height: 520px;
  }

  .hero-index {
    grid-template-columns: 1fr 1fr;
  }

  .hero-index span:nth-child(2n) {
    border-right: 0;
  }

  .campaign-media-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card,
  .media-card.tall,
  .media-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .media-card .media-frame,
  .media-card.tall .media-frame,
  .media-card.wide .media-frame {
    aspect-ratio: 4 / 5;
  }

  .campaign-media-grid .poster-card:first-child {
    max-width: 320px;
  }

  .artist-stats {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .artist-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--artist-line);
  }

  .artist-stats div:last-child {
    border-bottom: 0;
  }
}



/* Multipage route refinements */
.split-nav-center a[aria-current="page"],
.artist-footer nav a[aria-current="page"] {
  color: var(--artist-ink);
}

.split-nav-center a[aria-current="page"]::after {
  transform: scaleX(1);
}

.split-menu-links a[aria-current="page"] {
  border-color: rgba(255, 217, 26, 0.48);
  background: rgba(255, 217, 26, 0.08);
}

.page-lane-card .artist-button {
  width: max-content;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .page-lane-card .artist-button {
    width: 100%;
  }
}


/* Rectangular editorial header refinement */
.artist-shell-header {
  padding: 10px var(--artist-pad);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0));
}

.split-nav {
  min-height: 56px;
  grid-template-columns: minmax(112px, 0.42fr) minmax(420px, 1fr) minmax(148px, 0.42fr);
  gap: clamp(14px, 2vw, 24px);
  padding: 0 clamp(14px, 2vw, 24px);
  border: 1px solid rgba(247, 241, 232, 0.16);
  border-radius: 10px;
  background: rgba(8, 8, 10, 0.54);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px) saturate(1.25);
}

.saint-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.38em;
  width: max-content;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.saint-logo span:last-child {
  padding-left: 0;
}

.split-nav-center {
  gap: clamp(14px, 2.4vw, 34px);
}

.split-nav-center a {
  color: rgba(247, 241, 232, 0.66);
}

.split-nav-center a::after {
  display: none;
}

.split-nav-center a:hover,
.split-nav-center a:focus-visible,
.split-nav-center a[aria-current="page"] {
  color: var(--artist-ink);
}

.split-nav-actions {
  gap: 18px;
}

.cart-pill,
.split-menu-button {
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(247, 241, 232, 0.72);
  padding: 8px 0;
}

.cart-pill span {
  display: inline;
  min-width: 0;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.cart-pill:hover,
.split-menu-button:hover,
.cart-pill:focus-visible,
.split-menu-button:focus-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--artist-ink);
  transform: none;
}

.split-menu-arrow {
  display: none;
}

.split-menu-panel {
  margin-top: 8px;
}

.split-menu-inner {
  border: 1px solid rgba(247, 241, 232, 0.14);
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.split-menu-links a {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(247, 241, 232, 0.1);
  border-radius: 0;
  background: transparent;
  padding: 16px 0;
  box-shadow: none;
}

.split-menu-links a:hover,
.split-menu-links a:focus-visible,
.split-menu-links a[aria-current="page"] {
  border-color: rgba(247, 241, 232, 0.1);
  background: transparent;
  box-shadow: none;
  color: var(--artist-ink);
  transform: none;
}

.split-menu-links a[aria-current="page"] strong,
.split-menu-links a:hover strong,
.split-menu-links a:focus-visible strong {
  color: var(--artist-yellow);
}

@media (max-width: 1080px) {
  .split-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 54px;
    padding: 0 14px;
  }

  .split-nav-actions {
    position: static;
    justify-self: end;
    transform: none;
  }

  .cart-pill {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .artist-shell-header {
    padding: 8px 10px;
  }

  .split-nav {
    min-height: 52px;
    gap: 10px;
    padding: 0 12px;
    border-radius: 8px;
    overflow: visible;
  }

  .saint-logo {
    font-size: 11px;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }

  .split-nav-actions {
    gap: 13px;
  }

  .cart-pill,
  .split-menu-button {
    min-height: auto;
    padding: 0;
  }

  .cart-pill-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .split-menu-label {
    white-space: nowrap;
  }
}


/* Dedicated visual gallery page */
.gallery-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(76, 82, 255, 0.22), transparent 34%),
    radial-gradient(circle at 84% 24%, rgba(255, 217, 26, 0.1), transparent 28%),
    #050506;
}

.gallery-hero,
.gallery-room {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: clamp(96px, 13vw, 164px) var(--artist-pad) clamp(56px, 8vw, 104px);
}

.gallery-hero {
  min-height: min(940px, 100svh);
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.gallery-hero-copy {
  display: grid;
  gap: 24px;
}

.gallery-hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 164px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.gallery-hero-copy p {
  max-width: 58ch;
  margin: 0;
  color: var(--artist-muted);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.55;
}

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

.gallery-hero-meta span {
  border: 1px solid rgba(247, 241, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--artist-soft);
  padding: 10px 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-hero-card {
  min-height: min(74svh, 760px);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-hero-card .portfolio-img {
  object-position: 50% 18%;
}

.gallery-room {
  padding-top: clamp(56px, 8vw, 96px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(12px, 1.5vw, 20px);
}

.gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(247, 241, 232, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
  transition:
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    transform var(--transition-smooth);
}

.gallery-card:hover {
  border-color: rgba(255, 217, 26, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.gallery-card.feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-image-button {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #08080a;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-image-button:focus-visible {
  outline: 2px solid var(--artist-yellow);
  outline-offset: -2px;
}

.gallery-image-button .portfolio-img {
  display: block;
  aspect-ratio: 4 / 5;
}

.gallery-card.feature .portfolio-img,
.gallery-card.wide .portfolio-img {
  aspect-ratio: 16 / 11;
}

.gallery-card.tall .portfolio-img {
  aspect-ratio: 4 / 6;
}

.gallery-card:hover .portfolio-img {
  transform: scale(1.035);
}

.gallery-caption {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.gallery-caption span,
.gallery-lightbox figcaption span {
  color: var(--artist-yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-caption strong,
.gallery-lightbox figcaption strong {
  color: var(--artist-ink);
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.05;
}

.gallery-caption small,
.gallery-lightbox figcaption small {
  color: var(--artist-muted);
  font-size: 13px;
  line-height: 1.45;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 34px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.gallery-lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(18px);
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: min(760px, 92svh);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.gallery-lightbox-panel figure {
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(247, 241, 232, 0.16);
  border-radius: 12px;
  background: rgba(10, 10, 12, 0.88);
  overflow: hidden;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.58);
}

.gallery-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
  background: #050506;
}

.gallery-lightbox figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 1px solid rgba(247, 241, 232, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--artist-ink);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(calc(-100% - 10px));
}

.gallery-lightbox-nav {
  min-height: 72px;
  writing-mode: vertical-rl;
}

body.gallery-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .gallery-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 70px);
  }

  .gallery-hero-copy h1 {
    max-width: 11ch;
  }

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

@media (max-width: 760px) {
  .gallery-hero,
  .gallery-room {
    padding-inline: 10px;
  }

  .gallery-grid {
    display: block;
    column-count: 1;
    column-gap: 12px;
  }

  .gallery-card,
  .gallery-card.feature,
  .gallery-card.wide,
  .gallery-card.tall {
    display: inline-grid;
    width: 100%;
    margin: 0 0 12px;
    break-inside: avoid;
  }

  .gallery-card.feature .portfolio-img,
  .gallery-card.wide .portfolio-img,
  .gallery-card.tall .portfolio-img,
  .gallery-image-button .portfolio-img {
    aspect-ratio: auto;
  }

  .gallery-caption {
    padding: 14px;
  }

  .gallery-lightbox-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-lightbox-nav {
    min-height: 44px;
    writing-mode: initial;
  }

  .gallery-lightbox-nav.prev,
  .gallery-lightbox-nav.next {
    position: static;
  }

  .gallery-lightbox-close {
    position: static;
    transform: none;
    justify-self: end;
  }
}


/* Production UI/UX polish pass */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.artist-home {
  overflow-x: hidden;
}

.artist-home *,
.artist-home *::before,
.artist-home *::after {
  min-width: 0;
}

.hero-showcase h1,
.section-head h2,
.campaign-copy h2,
.story-content h2,
.artist-newsletter h2,
.gallery-hero-copy h1,
.gallery-caption strong,
.hero-media-info strong,
.media-meta strong,
.card-copy h3 {
  letter-spacing: 0;
  text-wrap: balance;
  font-kerning: normal;
}

.hero-copy-block > p:not(.artist-kicker),
.section-head > p,
.campaign-copy p,
.story-content p,
.artist-newsletter p,
.gallery-hero-copy p,
.gallery-caption small,
.media-meta small,
.card-copy p {
  text-wrap: pretty;
}

.hero-showcase h1,
.gallery-hero-copy h1 {
  line-height: 0.9;
}

.section-head h2,
.campaign-copy h2,
.story-content h2,
.artist-newsletter h2 {
  line-height: 0.94;
}

.hero-copy-block,
.story-content,
.section-head > div,
.artist-newsletter > div:first-child,
.gallery-hero-copy {
  display: grid;
  align-content: center;
}

.artist-newsletter > div:first-child {
  gap: clamp(16px, 2.4vw, 26px);
}

.artist-newsletter .artist-kicker {
  margin: 0;
}

.artist-newsletter h2 {
  max-width: 12ch;
}

.artist-newsletter h2 + p {
  max-width: 52ch;
}

.artist-section,
.campaign-section,
.artist-story,
.artist-newsletter,
.gallery-room {
  scroll-margin-top: calc(var(--nav-height) + 28px);
}

.media-frame,
.gallery-image-button {
  isolation: isolate;
}

.portfolio-img {
  display: block;
  backface-visibility: hidden;
  transform-origin: center;
}

.hero-media-card,
.story-image,
.media-card,
.release-card,
.store-product-card,
.gallery-card,
.press-card {
  will-change: transform;
}

.artist-button,
.artist-form button,
.product-row button,
.portfolio-controls button,
.split-menu-button,
.cart-pill,
.gallery-image-button,
.gallery-lightbox button,
.icon-button {
  -webkit-tap-highlight-color: transparent;
}

.artist-button:focus-visible,
.artist-form button:focus-visible,
.product-row button:focus-visible,
.portfolio-controls button:focus-visible,
.split-menu-button:focus-visible,
.cart-pill:focus-visible,
.gallery-lightbox button:focus-visible,
.icon-button:focus-visible,
.artist-form input:focus-visible,
.split-nav-center a:focus-visible,
.artist-footer a:focus-visible {
  outline: 2px solid rgba(255, 217, 26, 0.82);
  outline-offset: 3px;
}

.artist-form {
  position: relative;
  gap: 16px;
}

.artist-form > div {
  align-items: stretch;
}

.artist-form input {
  min-width: 0;
}

.artist-form[data-state="error"] {
  border-color: rgba(255, 103, 103, 0.54);
  box-shadow: 0 0 0 1px rgba(255, 103, 103, 0.12);
}

.artist-form[data-state="success"] {
  border-color: rgba(255, 217, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 217, 26, 0.12);
}

.artist-form input[aria-invalid="true"],
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: rgba(255, 103, 103, 0.74);
  box-shadow: 0 0 0 3px rgba(255, 103, 103, 0.1);
}

.artist-form .form-status:not(:empty),
.form-status-inline:not(:empty) {
  color: var(--artist-yellow);
  line-height: 1.45;
}

.artist-form[data-state="error"] .form-status:not(:empty),
.contact-form[data-state="error"] .form-status-inline:not(:empty) {
  color: #ff9b9b;
}

.split-menu-panel {
  z-index: 40;
}

@media (max-width: 1180px) {
  .gallery-grid,
  .media-grid {
    gap: 14px;
  }

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

@media (max-width: 1080px) {
  .artist-newsletter {
    gap: clamp(26px, 5vw, 42px);
    align-items: stretch;
  }

  .artist-newsletter h2 {
    max-width: 14ch;
  }

  .hero-media-card {
    min-height: clamp(520px, 72svh, 680px);
  }
}

@media (max-width: 760px) {
  :root {
    --artist-pad: 14px;
  }

  .hero-showcase,
  .gallery-hero {
    padding-top: calc(var(--nav-height) + 64px);
  }

  .hero-showcase {
    gap: 28px;
  }

  .hero-showcase h1,
  .gallery-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(48px, 13.5vw, 72px);
    line-height: 0.96;
  }

  .section-head h2,
  .campaign-copy h2,
  .story-content h2,
  .artist-newsletter h2 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1;
  }

  .artist-kicker {
    max-width: 100%;
    padding: 6px 10px;
    font-size: 9px;
    line-height: 1.25;
    white-space: normal;
  }

  .hero-copy-block > p:not(.artist-kicker),
  .section-head > p,
  .campaign-copy p,
  .story-content p,
  .artist-newsletter p,
  .gallery-hero-copy p {
    font-size: 15px;
    line-height: 1.58;
  }

  .artist-section,
  .campaign-section,
  .artist-story,
  .artist-newsletter,
  .gallery-room {
    padding-block: clamp(56px, 16vw, 86px);
  }

  .section-head {
    margin-bottom: 28px;
  }

  .release-grid,
  .shop-grid,
  .press-grid,
  .media-grid,
  .campaign-media-grid {
    gap: 12px;
  }

  .hero-media-card {
    min-height: min(620px, 74svh);
  }

  .hero-media-card .portfolio-img {
    object-position: 50% 18%;
  }

  .story-image .portfolio-img,
  .media-card .portfolio-img,
  .release-card .portfolio-img,
  .store-product-card .portfolio-img {
    object-position: 50% 20%;
  }

  .hero-media-info,
  .media-meta,
  .card-copy,
  .gallery-caption {
    padding: 14px;
  }

  .artist-actions {
    width: 100%;
    gap: 10px;
  }

  .artist-button,
  .artist-form button,
  .product-row button {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
  }

  .artist-newsletter {
    gap: 24px;
  }

  .artist-newsletter > div:first-child {
    gap: 14px;
  }

  .artist-newsletter h2 {
    max-width: 12ch;
  }

  .artist-form {
    padding: 18px;
    border-radius: 12px;
  }

  .artist-form > div {
    grid-template-columns: 1fr;
  }

  .artist-form input {
    min-height: 50px;
  }

  .artist-footer {
    gap: 24px;
  }

  .artist-footer nav {
    gap: 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-img,
  .artist-button,
  .media-card,
  .release-card,
  .store-product-card,
  .gallery-card,
  .card-tilt {
    transition-duration: 1ms !important;
  }
}


/* Production audit fixes */
.contact-form[data-state="error"] {
  border-color: rgba(255, 103, 103, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 103, 103, 0.1);
}

.contact-form[data-state="success"] {
  border-color: rgba(255, 217, 26, 0.32);
  box-shadow: 0 0 0 1px rgba(255, 217, 26, 0.1);
}

.contact-form[data-state="error"] .form-status:not(:empty) {
  color: #ff9b9b;
}

@media (max-width: 1080px) {
  .artist-story {
    overflow: hidden;
  }

  .story-content > .photo-card,
  .story-content > .photo-card.card-tilt {
    width: 100% !important;
    max-width: 100%;
    transform: none !important;
  }

  .card-tilt {
    --tilt-rotate-x: 0deg !important;
    --tilt-rotate-y: 0deg !important;
    --tilt-scale: 1 !important;
    --tilt-depth: 0 !important;
  }
}


/* Keep story content naturally inside tablet/mobile viewports */
@media (max-width: 1080px) {
  .artist-story > .story-content {
    width: 100%;
    max-width: calc(100vw - (var(--artist-pad) * 2));
    justify-self: center;
  }
}


/* Keep inline contact story media clear of viewport edges */
@media (max-width: 1080px) {
  .story-content > figure.photo-card {
    width: min(calc(100% - 18px), 680px) !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 760px) {
  .story-content > figure.photo-card {
    width: calc(100% - 32px) !important;
  }
}


/* Captionless bento gallery refinement */
.gallery-page .gallery-hero-copy {
  max-width: 760px;
}

.gallery-page .gallery-room .section-head {
  align-items: end;
}

.gallery-page .gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(92px, 8.5vw, 154px);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.25vw, 18px);
}

.gallery-page .gallery-card,
.gallery-page .gallery-card.feature,
.gallery-page .gallery-card.wide,
.gallery-page .gallery-card.tall {
  display: block;
  grid-column: span 3;
  grid-row: span 3;
  min-height: 0;
  border-color: rgba(247, 241, 232, 0.1);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.gallery-page .gallery-card.feature {
  grid-column: span 6;
  grid-row: span 5;
}

.gallery-page .gallery-card.wide {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-page .gallery-card.tall {
  grid-column: span 3;
  grid-row: span 5;
}

.gallery-page .gallery-card:nth-child(5),
.gallery-page .gallery-card:nth-child(10) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-page .gallery-card:nth-child(8),
.gallery-page .gallery-card:nth-child(15) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-page .gallery-card:nth-child(11) {
  grid-column: span 4;
  grid-row: span 5;
}

.gallery-page .gallery-card:nth-child(14),
.gallery-page .gallery-card:nth-child(18) {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-page .gallery-image-button {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.gallery-page .gallery-image-button .portfolio-img,
.gallery-page .gallery-card.feature .portfolio-img,
.gallery-page .gallery-card.wide .portfolio-img,
.gallery-page .gallery-card.tall .portfolio-img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.gallery-page .gallery-caption {
  display: none !important;
}

.gallery-page .gallery-lightbox-panel figure {
  border-radius: 10px;
}

.gallery-page .gallery-lightbox figcaption {
  display: none;
}

.gallery-page .gallery-lightbox-panel img {
  max-height: 82svh;
}

.gallery-page .gallery-story .story-content {
  align-content: center;
}

@media (max-width: 1180px) {
  .gallery-page .gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: clamp(94px, 11vw, 142px);
  }

  .gallery-page .gallery-card,
  .gallery-page .gallery-card.feature,
  .gallery-page .gallery-card.wide,
  .gallery-page .gallery-card.tall,
  .gallery-page .gallery-card:nth-child(5),
  .gallery-page .gallery-card:nth-child(8),
  .gallery-page .gallery-card:nth-child(10),
  .gallery-page .gallery-card:nth-child(11),
  .gallery-page .gallery-card:nth-child(14),
  .gallery-page .gallery-card:nth-child(15),
  .gallery-page .gallery-card:nth-child(18) {
    grid-column: span 4;
    grid-row: span 3;
  }

  .gallery-page .gallery-card.feature,
  .gallery-page .gallery-card.wide,
  .gallery-page .gallery-card:nth-child(14),
  .gallery-page .gallery-card:nth-child(18) {
    grid-column: span 8;
    grid-row: span 4;
  }

  .gallery-page .gallery-card.tall,
  .gallery-page .gallery-card:nth-child(11) {
    grid-row: span 5;
  }
}

@media (max-width: 760px) {
  .gallery-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(132px, 42vw, 178px);
    gap: 10px;
  }

  .gallery-page .gallery-card,
  .gallery-page .gallery-card.feature,
  .gallery-page .gallery-card.wide,
  .gallery-page .gallery-card.tall,
  .gallery-page .gallery-card:nth-child(5),
  .gallery-page .gallery-card:nth-child(8),
  .gallery-page .gallery-card:nth-child(10),
  .gallery-page .gallery-card:nth-child(11),
  .gallery-page .gallery-card:nth-child(14),
  .gallery-page .gallery-card:nth-child(15),
  .gallery-page .gallery-card:nth-child(18) {
    display: block;
    width: auto;
    margin: 0;
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-page .gallery-card.feature,
  .gallery-page .gallery-card.wide,
  .gallery-page .gallery-card:nth-child(4),
  .gallery-page .gallery-card:nth-child(14),
  .gallery-page .gallery-card:nth-child(18) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-page .gallery-card.tall,
  .gallery-page .gallery-card:nth-child(11) {
    grid-column: span 1;
    grid-row: span 3;
  }

  .gallery-page .gallery-room .section-head {
    margin-bottom: 22px;
  }

  .gallery-page .gallery-lightbox-panel img {
    max-height: 82svh;
  }
}
