/* =====================================================
   GASSANDRA — style.css
   Approach: editorial zine meets gallery. Asymmetric,
   human-feeling. Not a template.
   ===================================================== */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --ink:        #0b1719;
  --ink-2:      #102326;
  --ink-3:      #173338;

  --bone:       #f4efe6;
  --bone-dim:   rgba(244, 239, 230, 0.76);
  --bone-ghost: rgba(244, 239, 230, 0.18);

  --ash:        #8fb9b8;
  --ash-light:  #b9d8d5;

  --blood:      #c9433d;
  --blood-mid:  #ff6961;

  --gold:       #c4a66a;

  --f-display: 'DM Serif Display', Georgia, serif;
  --f-body:    'Space Grotesk', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.1, 0.1, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
ul { list-style: none; }
::selection { background: var(--blood); color: var(--bone); }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); }

/* ── CUSTOM CURSOR ──────────────────────────────────── */
.cursor {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242, 240, 235, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out),
              width 0.2s var(--ease-out),
              height 0.2s var(--ease-out),
              border-color 0.2s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--bone);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.06s linear;
  mix-blend-mode: difference;
}
body.cursor-hover .cursor {
  width: 60px;
  height: 60px;
  border-color: rgba(242, 240, 235, 0.7);
}

/* ── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── TAGS / LABELS ──────────────────────────────────── */
.tag-h {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
}
.tag-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 500;
}

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.35s var(--ease), background 0.35s;
}
.site-header.stuck {
  padding: 18px 48px;
  background: rgba(12, 11, 11, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bone-ghost);
}
.header-logo {
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--bone);
  font-style: italic;
  opacity: 0.9;
}
.header-nav {
  display: flex;
  gap: 32px;
}
.nav-item {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  position: relative;
  transition: color 0.2s;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--bone);
  transition: width 0.25s var(--ease-out);
}
.nav-item:hover { color: var(--bone); }
.nav-item:hover::after { width: 100%; }
.nav-item.active { color: var(--bone); }
.nav-item.active::after { width: 100%; }

/* ── BURGER ─────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 600;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ── MOBILE OVERLAY ─────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 48px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s var(--ease-out);
}
.mobile-overlay.open {
  clip-path: inset(0 0 0% 0);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(242, 240, 235, 0.15);
  transition: color 0.2s;
  line-height: 1.2;
}
.mobile-nav-link:hover { color: var(--bone); }
.mobile-overlay-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: grayscale(15%) contrast(1.02) brightness(0.9);
}

.hero-bg-img::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: inherit;
  filter: blur(20px) brightness(0.7);
  z-index: -1;
}
.hero-bg-placeholder {
  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(175,255,255,0.25),
      transparent 20%
    ),

    radial-gradient(
      circle at 50% 25%,
      rgba(80,180,180,0.12),
      transparent 45%
    ),

    linear-gradient(
      to bottom,
      #081013 0%,
      #040608 45%,
      #010203 100%
    );
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0 48px 56px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-wordmark {
  display: block;
  line-height: 0.82;
  overflow: visible;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.45s forwards;
}
.hw-line {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(5rem, 18vw, 18rem);
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hw-line--2 {
  margin-left: clamp(2rem, 8vw, 8rem);
  color: rgba(242, 240, 235, 0.45);
}
.hw-line--3 {
  margin-left: clamp(4rem, 16vw, 16rem);
  color: rgba(242, 240, 235, 0.15);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.85s forwards;
}
.hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--bone-dim);
  max-width: 320px;
}
.hero-tagline em {
  font-style: italic;
  color: var(--bone);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.cta-pill {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(242, 240, 235, 0.3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  transition: background 0.25s, border-color 0.25s;
}
.cta-pill:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.cta-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.2s, gap 0.2s;
}
.cta-text:hover {
  color: var(--bone);
  gap: 12px;
}

.hero-scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero-scroll-hint span {
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ash);
  writing-mode: vertical-rl;
}
.scroll-track {
  width: 1px;
  height: 48px;
  background: var(--bone-ghost);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  width: 1px;
  height: 50%;
  background: var(--ash);
  position: absolute;
  top: -50%;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STORY ──────────────────────────────────────────── */
.story-section {
  background: var(--ink-2);
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  padding: 120px 0 120px 48px;
  position: relative;
  overflow: hidden;
}
.story-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.story-year {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ash);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
.story-main {
  padding-right: 48px;
  max-width: 820px;
}
.story-heading {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 48px;
}
.story-heading em {
  font-style: italic;
  color: var(--bone-dim);
}
.story-body {
  max-width: 560px;
  margin-bottom: 48px;
}
.story-body p {
  font-size: 15px;
  color: var(--bone-dim);
  line-height: 1.85;
  margin-bottom: 18px;
}
.story-body p:last-child { margin-bottom: 0; }

.story-quote {
  border-left: 2px solid var(--blood-mid);
  padding-left: 28px;
  max-width: 520px;
}
.story-quote blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(242, 240, 235, 0.72);
  line-height: 1.55;
  margin-bottom: 14px;
}
.story-quote figcaption {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash);
}

/* deco text — background watermark */
.story-deco {
  position: absolute;
  right: -5%;
  bottom: -10%;
  font-family: var(--f-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-style: italic;
  color: rgba(242, 240, 235, 0.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

/* ── FEATURED ───────────────────────────────────────── */
.featured-section {
  background:
    linear-gradient(
      135deg,
      #081013 0%,
      #102226 45%,
      #081013 100%
    );
  padding: 100px 48px;
}

.featured-label {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
}
.featured-date {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(242, 240, 235, 0.45);
}
.featured-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.artwork-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
}
.artwork-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artwork-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.artwork-placeholder-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: rgba(242, 240, 235, 0.18);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
/* four corner brackets */
.artwork-frame-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(242, 240, 235, 0.35);
  border-style: solid;
}
.artwork-frame-corner.tl { top: -6px; left: -6px; border-width: 1px 0 0 1px; }
.artwork-frame-corner.tr { top: -6px; right: -6px; border-width: 1px 1px 0 0; }
.artwork-frame-corner.bl { bottom: -6px; left: -6px; border-width: 0 0 1px 1px; }
.artwork-frame-corner.br { bottom: -6px; right: -6px; border-width: 0 1px 1px 0; }

.featured-track-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.5);
  margin-bottom: 16px;
}
.featured-heading {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--bone);
  margin-bottom: 28px;
}
.featured-heading em {
  font-style: italic;
  opacity: 0.65;
}
.featured-desc {
  font-size: 14.5px;
  color: rgba(242, 240, 235, 0.6);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 40px;
}
.featured-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.stream-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 240, 235, 0.25);
  color: var(--bone);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.stream-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}
.stream-link:hover {
  background: var(--bone);
  color: var(--blood);
  border-color: var(--bone);
}

/* ── RELEASES ───────────────────────────────────────── */
.releases-section {
  background: var(--ink);
  padding: 100px 48px;
}
.releases-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.releases-heading {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bone);
  line-height: 1.1;
}
.releases-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--bone-ghost);
}
.release-row {
  display: grid;
  grid-template-columns: 48px 56px 1fr 90px 1fr 80px;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--bone-ghost);
  transition: background 0.2s, padding-left 0.25s var(--ease-out);
  cursor: default;
}
.release-row:hover {
  background: rgba(242, 240, 235, 0.02);
  padding-left: 12px;
}
.release-row--active {
  border-bottom-color: rgba(242, 240, 235, 0.15);
}
.release-num {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--ash);
}
.release-artwork-sm {
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
}
.release-artwork-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-artwork-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a1212, #1a1010);
}
.release-artwork-ph--dark {
  background: linear-gradient(135deg, #1a0e0e, #0f0f18);
}

.release-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 2px;
}
.release-sub {
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 0.05em;
}
.release-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.release-type {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 500;
}
.release-year {
  font-size: 12px;
  color: var(--ash-light);
}
.release-theme {
  font-size: 11px;
  color: rgba(242, 240, 235, 0.3);
  font-style: italic;
  font-family: var(--f-display);
}
.release-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.release-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--ash);
  transition: color 0.2s;
}
.release-links a:hover { color: var(--bone); }
.release-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ── MEMBERS ────────────────────────────────────────── */
.members-section {
  background: var(--ink-2);
  padding: 100px 48px 0;
  overflow: hidden;
}
.members-header {
  margin-bottom: 48px;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.member {
  position: relative;
  cursor: none;
}
.member-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-3);
}
.member-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(55%) contrast(1.1);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease-out);
}
.member:hover .member-photo-wrap img {
  filter: grayscale(10%) contrast(1.1);
  transform: scale(1.04);
}
.member-ph {
  width: 100%;
  height: 100%;
  background: var(--ink-3);
}
.member-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,11,0.75) 0%, transparent 55%);
}
.member-label {
  padding: 16px 0 12px;
  border-top: 1px solid var(--bone-ghost);
}
.member-name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 2px;
}
.member-role {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

/* scrolling names marquee at bottom */
.members-deco {
  margin-top: 80px;
  display: flex;
  gap: 0;
  overflow: visible;
  padding: 34px 0 46px;
  border-top: 1px solid var(--bone-ghost);
  white-space: nowrap;
}

.members-deco span {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-style: italic;
  color: rgba(243, 239, 232, 0.12);
  padding: 0 3rem;
  flex-shrink: 0;
}

/* ── GALLERY ────────────────────────────────────────── */
.gallery-section {
  background: var(--ink);
  padding: 100px 48px;
}
.gallery-header {
  margin-bottom: 40px;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 220px;
  gap: 3px;
}
.g-cell {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.g-cell--wide  { grid-column: span 7; }
.g-cell--tall  { grid-row: span 2; grid-column: span 3; }
.g-cell:not(.g-cell--wide):not(.g-cell--tall) { grid-column: span 5; }

/* layout override for remaining cells */
.g-cell:nth-child(1) { grid-column: span 7; }
.g-cell:nth-child(2) { grid-column: span 5; }
.g-cell:nth-child(3) { grid-column: span 4; }
.g-cell:nth-child(4) { grid-column: span 5; }
.g-cell:nth-child(5) { grid-column: span 3; grid-row: span 2; grid-row-start: 1; }
.g-cell:nth-child(6) { grid-column: span 4; }

.gallery-ph {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: grayscale(50%) brightness(0.7);
}
.g-cell:hover .gallery-ph {
  transform: scale(1.05);
  filter: grayscale(10%) brightness(0.9);
}
.gph-1 { background: linear-gradient(155deg, #1e0e0e 0%, #0e0e0e 100%); }
.gph-2 { background: linear-gradient(155deg, #0e1218 0%, #0a0a0a 100%); }
.gph-3 { background: linear-gradient(155deg, #12100f 0%, #181010 100%); }
.gph-4 { background: linear-gradient(155deg, #0e0f14 0%, #0a0a0a 100%); }
.gph-5 { background: linear-gradient(155deg, #180a0a 0%, #0f0f0f 100%); }
.gph-6 { background: linear-gradient(155deg, #0a0a10 0%, #0c0c0c 100%); }

.gallery-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.2);
  pointer-events: none;
  transition: opacity 0.3s;
}
.g-cell:hover .gallery-caption {
  opacity: 0;
}

/* ── CONTACT ────────────────────────────────────────── */
.contact-section {
  background: var(--ink-2);
  padding: 100px 48px 120px;
  position: relative;
  overflow: hidden;
}
.contact-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(6rem, 18vw, 18rem);
  font-style: italic;
  color: rgba(242, 240, 235, 0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-left .tag-h { margin-bottom: 24px; display: block; }
.contact-heading {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--bone);
}
.contact-heading em {
  font-style: italic;
  color: var(--bone-dim);
}
.contact-list {
  align-self: center;
}
.contact-item {
  border-bottom: 1px solid var(--bone-ghost);
}
.contact-item:first-child {
  border-top: 1px solid var(--bone-ghost);
}
.contact-link-row {
  display: grid;
  grid-template-columns: 120px 1fr 20px;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  transition: padding-left 0.2s var(--ease-out);
}
.contact-link-row:hover {
  padding-left: 10px;
}
.contact-platform {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 500;
  flex-shrink: 0;
}
.contact-handle {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--bone);
  font-style: italic;
}
.contact-arrow {
  color: var(--ash);
  font-size: 1rem;
  text-align: right;
  transition: transform 0.2s, color 0.2s;
}
.contact-link-row:hover .contact-arrow {
  transform: translate(3px, -3px);
  color: var(--bone);
}

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--bone-ghost);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(242, 240, 235, 0.3);
}
.footer-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.footer-copy {
  font-size: 11px;
  color: rgba(242, 240, 235, 0.2);
  letter-spacing: 0.1em;
}

/* ── KEYFRAMES ──────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }
  .members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .release-row {
    grid-template-columns: 40px 48px 1fr 80px;
    gap: 14px;
  }
  .release-theme { display: none; }
  .release-links { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .site-header { padding: 22px 28px; }
  .site-header.stuck { padding: 15px 28px; }
  .header-nav { display: none; }
  .burger { display: flex; }
  .mobile-overlay { padding: 80px 28px 40px; }

  .hero-body { padding: 0 28px 48px; }
  .hero-scroll-hint { display: none; }

  .story-section { padding: 80px 0 80px 28px; }
  .story-aside { display: none; }
  .story-section {
    grid-template-columns: 1fr;
    padding: 80px 28px;
  }
  .story-main { padding-right: 0; }

  .featured-section { padding: 80px 28px; }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .artwork-frame { max-width: 100%; }

  .releases-section { padding: 80px 28px; }
  .release-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 20px 0;
  }
  .release-num { display: none; }
  .release-artwork-sm { display: none; }
  .release-meta { display: none; }

  .members-section { padding: 80px 28px 0; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .members-deco span { font-size: 2rem; }

  .gallery-section { padding: 80px 28px; }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .g-cell:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-section { padding: 80px 28px 100px; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer { padding: 28px; }
}

@media (max-width: 500px) {
  .hw-line--3 { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .g-cell:nth-child(n) { grid-column: span 1; }
}

/* ── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* ===== PITI FIX / POLISH ===== */

body {
  min-width: 320px;
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }

  a,
  button,
  .member,
  .g-cell {
    cursor: pointer;
  }
}

.header-logo {
  font-style: normal;
  letter-spacing: 0.18em;
}

.header-logo::after {
  content: "ANDRA";
  opacity: 0.45;
}

.hero-wordmark {
  width: 100%;
  max-width: 100%;
}

.hw-line {
  font-size: clamp(4.5rem, 15vw, 15rem);
}

.hw-line--1 {
  color: var(--bone);
}

.hw-line--2 {
  margin-left: clamp(1.5rem, 6vw, 6rem);
}

.hw-line--3 {
  margin-left: clamp(3rem, 12vw, 12rem);
}

.hero-bg-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(180,255,255,0.15),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.45) 45%,
      rgba(0,0,0,0.85) 100%
    );
}

.featured-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(242,240,235,0.06), transparent 25%),
    linear-gradient(135deg, #4A1111 0%, #1A0909 70%, #0C0B0B 100%);
}

.artwork-placeholder {
  background:
    radial-gradient(circle at 50% 35%, rgba(242,240,235,0.08), transparent 35%),
    linear-gradient(145deg, rgba(0,0,0,0.25), rgba(0,0,0,0.7));
}

.release-row {
  cursor: pointer;
}

.release-row:hover .release-title {
  color: var(--bone);
}

.release-row:hover .release-theme {
  color: rgba(242, 240, 235, 0.55);
}

.member-ph {
  background:
    linear-gradient(to top, rgba(12,11,11,0.9), transparent 60%),
    radial-gradient(circle at 50% 30%, rgba(242,240,235,0.08), transparent 32%),
    linear-gradient(145deg, #242020, #0c0b0b);
}

.gallery-ph {
  min-height: 100%;
}

.contact-link-row:hover .contact-handle {
  color: var(--bone);
}

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

  .hero-body {
    justify-content: center;
    padding-top: 90px;
  }

  .hero-meta {
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
  }

  .hero-wordmark {
    margin-bottom: 34px;
  }

  .hw-line {
    font-size: clamp(4rem, 22vw, 8rem);
    line-height: 0.86;
  }

  .hw-line--2 {
    margin-left: 1.2rem;
  }

  .hw-line--3 {
    margin-left: 2.4rem;
  }

  .hero-bottom {
    margin-top: 10px;
  }

  .featured-label {
    flex-direction: column;
    gap: 8px;
  }

  .release-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .site-header {
    padding: 20px;
  }

  .site-header.stuck {
    padding: 14px 20px;
  }

  .header-logo::after {
    content: "";
  }

  .hero {
    min-height: 640px;
  }

  .hero-body {
    padding: 0 20px 42px;
  }

  .hero-meta {
    font-size: 8px;
  }

  .hw-line {
    font-size: clamp(3.6rem, 25vw, 6.2rem);
  }

  .hw-line--3 {
    display: block;
    color: rgba(242, 240, 235, 0.16);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .story-section,
  .featured-section,
  .releases-section,
  .members-section,
  .gallery-section,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .members-grid {
    gap: 8px;
  }

  .contact-link-row {
    grid-template-columns: 1fr 20px;
  }

  .contact-platform {
    grid-column: 1 / -1;
  }

  .contact-handle {
    font-size: 1rem;
    word-break: break-word;
  }
}

.cursor,
.cursor-dot {
  display: none !important;
}

a,
button,
.release-row,
.member,
.g-cell,
.stream-link {
  cursor: pointer;
}

/* ===== MERCH SECTION ===== */

.merch-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(156, 204, 204, 0.08), transparent 30%),
    linear-gradient(135deg, #020506 0%, #071215 55%, #020506 100%);
  padding: 110px 48px;
}

.merch-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.merch-visual {
  position: relative;
  background: rgba(243, 239, 232, 0.035);
  border: 1px solid rgba(243, 239, 232, 0.12);
  padding: 28px;
  overflow: hidden;
}

.merch-visual::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 50% 40%, rgba(185, 47, 47, 0.16), transparent 34%),
    radial-gradient(circle at 25% 20%, rgba(156, 204, 204, 0.12), transparent 28%);
  pointer-events: none;
}

.merch-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  filter: contrast(1.04);
}

.merch-heading {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--bone);
  margin: 22px 0 26px;
}

.merch-heading em {
  color: var(--bone-dim);
  font-style: italic;
}

.merch-desc {
  max-width: 540px;
  color: var(--bone-dim);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 34px;
}

.merch-btn {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid rgba(243, 239, 232, 0.28);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.merch-btn:hover {
  background: var(--blood);
  border-color: var(--blood);
  color: var(--bone);
}

@media (max-width: 860px) {
  .merch-section {
    padding: 80px 28px;
  }

  .merch-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .merch-visual {
    padding: 18px;
  }
}

.header-logo-img {
  display: inline-flex;
  align-items: center;
  width: 52px;
  height: auto;
}

.header-logo-img::after {
  content: "";
}

.header-logo-img img {
  width: 52px;
  height: auto;
  display: block;
  opacity: 0.85;
  filter: invert(1) brightness(1.8) contrast(1.05);
}

.header-logo-img:hover img {
  opacity: 1;
}

/* ===== HEADER SIZE FIX ===== */

.site-header {
  padding: 14px 48px;
  min-height: 76px;
}

.site-header.stuck {
  padding: 10px 48px;
  min-height: 64px;
}

.header-logo-img {
  width: 42px;
}

.header-logo-img img {
  width: 42px;
  max-height: 58px;
  object-fit: contain;
}

.header-nav {
  align-items: center;
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 28px;
    min-height: 68px;
  }

  .site-header.stuck {
    padding: 10px 28px;
    min-height: 60px;
  }

  .header-logo-img,
  .header-logo-img img {
    width: 36px;
  }
}

/* logo disembunyikan saat masih di hero */
.site-header:not(.stuck) .header-logo-img {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

/* logo muncul setelah scroll */
.site-header.stuck .header-logo-img {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-logo-img {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ===== PITI BRIGHTER UNDERWATER PALETTE ===== */

body {
  background: #0b1719;
}

.story-section,
.members-section,
.contact-section {
  background: #102326;
}

.releases-section,
.gallery-section,
.site-footer {
  background: #0b1719;
}

.featured-section,
.merch-section {
  background:
    radial-gradient(circle at 25% 20%, rgba(143, 185, 184, 0.13), transparent 30%),
    linear-gradient(135deg, #102326 0%, #173338 48%, #0b1719 100%);
}

.hero-bg-veil {
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 216, 213, 0.22), transparent 32%),
    linear-gradient(
      180deg,
      rgba(11, 23, 25, 0.08) 0%,
      rgba(11, 23, 25, 0.32) 45%,
      rgba(11, 23, 25, 0.72) 100%
    );
}

.hero-bg-img {
  filter: grayscale(15%) contrast(1.02) brightness(0.9);
}

.hw-line--2 {
  color: rgba(244, 239, 230, 0.52);
}

.hw-line--3 {
  color: rgba(244, 239, 230, 0.28);
}

/* ===== DISCOGRAPHY RED ALBUM MOOD ===== */

.releases-section {
  background:
    radial-gradient(circle at 18% 35%, rgba(185, 47, 47, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255, 77, 77, 0.08), transparent 25%),
    linear-gradient(135deg, #160809 0%, #0b1719 45%, #071215 100%);
}

.releases-heading {
  color: #f3efe8;
}

.release-row {
  border-bottom-color: rgba(255, 77, 77, 0.18);
}

.releases-list {
  border-top-color: rgba(255, 77, 77, 0.18);
}

.release-num,
.release-type,
.release-year {
  color: #ff6961;
}

.release-sub {
  color: #c48a83;
}

.release-theme {
  color: rgba(255, 180, 170, 0.5);
}

.release-links a {
  color: #ff6961;
}

.release-row:hover {
  background: rgba(185, 47, 47, 0.08);
}

.release-row:hover .release-title {
  color: #ff6961;
}

.release-row:hover .release-theme {
  color: rgba(255, 210, 200, 0.75);
}

/* ===== RED FLAME DISCOGRAPHY ===== */

.releases-section {
  background:
    radial-gradient(
      circle at 24% 38%,
      rgba(185, 47, 47, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 77, 77, 0.08),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      #081013 0%,
      #102226 50%,
      #081013 100%
    );
}

/* ===== MOBILE HERO COMPOSITION FIX ===== */

@media (max-width: 600px) {
  .hero-body {
    justify-content: flex-end;
    padding: 0 22px 72px;
  }

  .hero-meta {
    justify-content: flex-start;
    margin-bottom: 22px;
  }

  .hero-bottom {
    align-items: flex-start;
    gap: 26px;
  }

  .hero-tagline {
    max-width: 260px;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-pill {
    padding: 12px 28px;
  }
}

/* ===== MOBILE DISCOGRAPHY FIX FINAL ===== */

@media (max-width: 860px) {
  .release-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 22px 0;
  }

  .release-artwork-sm {
    display: block !important;
    width: 64px;
    height: 64px;
    grid-column: 1;
  }

  .release-artwork-sm img {
    display: block !important;
    width: 64px;
    height: 64px;
    object-fit: cover;
  }

  .release-info {
    grid-column: 2;
    min-width: 0;
  }

  .release-title {
    font-size: 14px;
  }

  .release-sub {
    font-size: 11px;
  }

  .release-links {
    grid-column: 3;
    justify-content: flex-end;
    align-self: center;
  }

  .release-links a {
    width: auto;
    height: auto;
    font-size: 13px;
    color: var(--blood-mid);
  }

  .release-num,
  .release-meta,
  .release-theme {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .release-row {
    grid-template-columns: 54px 1fr;
  }

  .release-artwork-sm,
  .release-artwork-sm img {
    width: 54px;
    height: 54px;
  }

  .release-links {
    grid-column: 2;
    margin-top: 6px;
    justify-content: flex-start;
  }
}

/* ===== GASSANDRA GLITCH LOADING SCREEN ===== */

.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(circle at 50% 35%, rgba(156, 204, 204, 0.12), transparent 28%),
    linear-gradient(180deg, #071215 0%, #020506 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.035) 0px,
    rgba(255,255,255,0.035) 1px,
    transparent 1px,
    transparent 5px
  );
  opacity: 0.28;
  animation: scanlineMove 0.55s linear infinite;
}

.loader-inner {
  text-align: center;
  position: relative;
  animation: glitchShake 1.4s steps(2, end) infinite;
}

.loader-logo {
  width: 90px;
  height: auto;
  margin: 0 auto 22px;
  filter: invert(1) brightness(1.7);
  opacity: 0.92;
  animation: logoGlitch 1.1s infinite;
}

.loader-text {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.48em;
  color: var(--bone);
  margin-bottom: 24px;
  text-shadow:
    2px 0 rgba(255, 77, 77, 0.75),
    -2px 0 rgba(156, 204, 204, 0.75);
}

.loader-text::before,
.loader-text::after {
  content: "GASSANDRA";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.loader-text::before {
  color: #ff4d4d;
  transform: translateX(2px);
  clip-path: inset(0 0 55% 0);
  animation: glitchTop 0.9s infinite linear alternate-reverse;
}

.loader-text::after {
  color: #9ccccc;
  transform: translateX(-2px);
  clip-path: inset(45% 0 0 0);
  animation: glitchBottom 1.1s infinite linear alternate-reverse;
}

.loader-line {
  display: block;
  width: 160px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--blood-mid), #9ccccc, transparent);
  animation: loaderLineGlitch 0.9s infinite;
}

@keyframes scanlineMove {
  from { transform: translateY(0); }
  to { transform: translateY(5px); }
}

@keyframes glitchShake {
  0%, 88%, 100% { transform: translate(0, 0); }
  90% { transform: translate(-2px, 1px); }
  92% { transform: translate(2px, -1px); }
  94% { transform: translate(-1px, -1px); }
  96% { transform: translate(1px, 2px); }
}

@keyframes logoGlitch {
  0%, 82%, 100% {
    filter: invert(1) brightness(1.7);
    transform: translate(0, 0) scale(1);
  }
  84% {
    filter: invert(1) brightness(2.4) drop-shadow(3px 0 #ff4d4d);
    transform: translate(-2px, 1px) scale(1.02);
  }
  86% {
    filter: invert(1) brightness(2.2) drop-shadow(-3px 0 #9ccccc);
    transform: translate(2px, -1px) scale(0.99);
  }
  88% {
    filter: invert(1) brightness(1.8);
    transform: translate(0, 0) scale(1);
  }
}

@keyframes glitchTop {
  0% { clip-path: inset(0 0 70% 0); }
  25% { clip-path: inset(0 0 45% 0); transform: translateX(3px); }
  50% { clip-path: inset(0 0 62% 0); transform: translateX(-2px); }
  75% { clip-path: inset(0 0 35% 0); transform: translateX(2px); }
  100% { clip-path: inset(0 0 58% 0); transform: translateX(0); }
}

@keyframes glitchBottom {
  0% { clip-path: inset(60% 0 0 0); }
  25% { clip-path: inset(35% 0 0 0); transform: translateX(-3px); }
  50% { clip-path: inset(50% 0 0 0); transform: translateX(2px); }
  75% { clip-path: inset(72% 0 0 0); transform: translateX(-2px); }
  100% { clip-path: inset(44% 0 0 0); transform: translateX(0); }
}

@keyframes loaderLineGlitch {
  0%, 100% { opacity: 0.35; transform: scaleX(0.7); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* ===== HERO CINEMATIC REVEAL ===== */

.hero-meta,
.hero-tagline,
.hero-cta {
  opacity: 0;
  transform: translateY(24px);
}

.loaded .hero-meta {
  animation: fadeUp .8s ease forwards;
}

.loaded .hero-tagline {
  animation: fadeUp .8s ease .4s forwards;
}

.loaded .hero-cta {
  animation: fadeUp .8s ease .8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================
   GALLERY PLACEHOLDER
===================================== */

.gallery-placeholder {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 120px 40px;
  text-align: center;

  border: 1px solid rgba(255,255,255,.08);

  background:
    linear-gradient(
      135deg,
      rgba(120,25,25,.08),
      rgba(255,255,255,.02)
    );

  position: relative;
  overflow: hidden;
}

.gallery-placeholder::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.03),
      transparent
    );

  animation: archiveScan 8s linear infinite;
}

.archive-code {
  font-size: 12px;
  letter-spacing: .5em;
  text-transform: uppercase;

  color: #c95050;

  margin-bottom: 24px;
}

.archive-title {
  font-size: clamp(42px, 7vw, 90px);
  line-height: .9;
  margin-bottom: 24px;
}

.archive-desc {
  max-width: 600px;
  margin: auto;

  line-height: 1.8;
  color: rgba(255,255,255,.65);
}

.archive-status {
  margin-top: 36px;

  font-size: 12px;
  letter-spacing: .4em;

  color: #c95050;
}

@keyframes archiveScan {

  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }

}


/* ── MERCH SECTION REDESIGN ── */

.merch-header {
  text-align: center;
  margin-bottom: 70px;
}

.merch-section-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--bone);
  margin-top: 14px;
  line-height: 1;
}

.merch-row-alt {
  margin-bottom: 0;
}

.merch-blueprint {
  grid-template-columns: 0.9fr 1.1fr;
}

.merch-content-left {
  order: -1;
}

.merch-era-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid rgba(243, 239, 232, 0.2);
  padding: 5px 12px;
  margin-bottom: 18px;
}

.merch-era-blue {
  border-color: rgba(100, 160, 200, 0.4);
  color: #9ac8e0;
}

.merch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 60px 0;
  opacity: 0.3;
  font-size: 18px;
  color: var(--bone);
}

/* Blueprint merch visual: two photos side by side */
.merch-visual-blueprint {
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
}

.merch-visual-blueprint::before {
  display: none;
}

.merch-blueprint-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.blueprint-photo {
  position: relative;
  border: 1px solid rgba(243, 239, 232, 0.1);
  overflow: hidden;
  background: rgba(243, 239, 232, 0.03);
}

.blueprint-photo-front {
  transform: translateY(0);
}

.blueprint-photo-worn {
  transform: translateY(28px);
}

.blueprint-photo img {
  width: 100%;
  display: block;
  filter: contrast(1.05) saturate(0.9);
  transition: transform 0.5s ease;
}

.blueprint-photo:hover img {
  transform: scale(1.03);
}

.blueprint-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: linear-gradient(to top, rgba(7, 18, 21, 0.85), transparent);
  text-align: right;
}

/* Merch details table */
.merch-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  border: 1px solid rgba(243, 239, 232, 0.1);
  margin-bottom: 30px;
  background: rgba(243, 239, 232, 0.06);
}

.merch-detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  background: rgba(7, 18, 21, 0.6);
}

.merch-detail-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0.6;
}

.merch-detail-value {
  font-size: 12px;
  color: var(--bone);
  font-family: var(--f-display);
}

/* Blue CTA button variant */
.merch-btn-blue {
  border-color: rgba(100, 160, 200, 0.4);
  color: #9ac8e0;
}

.merch-btn-blue:hover {
  background: #1a4b6e;
  border-color: #2a6a9a;
  color: var(--bone);
}

@media (max-width: 860px) {
  .merch-blueprint {
    grid-template-columns: 1fr;
  }

  .merch-content-left {
    order: 0;
  }

  .merch-blueprint-photos {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .blueprint-photo-worn {
    transform: translateY(16px);
  }

  .merch-details {
    grid-template-columns: 1fr;
  }

  .merch-divider {
    padding: 40px 0;
  }
}