@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Oxygen:wght@300;400;700&family=Teko:wght@300..700&display=swap");

:root {
  --color-bg: #131317;
  --color-text: #d5d3d2;
  --color-accent-orange: #c75b30;
  --color-accent-red: #8b2738;
  --color-accent-pink: #9e3f83;
  --color-dark-grey: #302e34;
  --color-grey: #403d45;
  --color-lighter-grey: #47444d;
  --color-dark-bg: #18161b;
  --color-EP-title: #fa9766;
  --color-light-orange: #c97c42;

  --header-h: 72px;
  --hero-offset: 22vh;
  --hero-logo-h: 230px;
  --hero-gap: 0.25rem;
  --hero-meta-lift: -14px;
  --ep-title-size: clamp(7rem, 7vw, 8rem);
  --ep-sub-size: 1.15rem;
  --cta-fs: 2rem;
  --cta-pad: 0.7rem 2rem 0.4rem 2rem;

  --fang-depth: 18px;
  --fang-x: 50%;
}

/* Reset / Base */
* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: var(--header-offset, 120px);
}
body {
  background-image: url("../images/sitebg.webp");
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Oxygen", sans-serif;
}
body:before {
  content: "";
  display: block;
  height: 120px;
}
a {
  color: var(--color-accent-orange);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   FULL-WIDTH HEADER PLATE + FANG
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  --hdr-bg: #18161b;
  --hdr-shadow: 0 30px 50px rgba(0, 0, 0, 0.45);
  opacity: 0.98;
  overflow: visible;
}
.site-header.scrolled {
  border-bottom: 1px solid var(--color-lighter-grey);
  border-left: none;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hdr-bg);
  box-shadow: var(--hdr-shadow);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.site-header.scrolled::before {
  opacity: 1;
}

.main-nav.left {
  grid-column: 1;
}
.logo {
  grid-column: 2;
  justify-self: center;
}
.main-nav.right {
  grid-column: 3;
  justify-self: end;
}
.nav-cta {
  grid-column: 4;
  justify-self: end;
  align-self: center;
}

.site-header .header-inner {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 120px;
  overflow: visible;
}
.main-nav.right ul {
  gap: 2rem;
}

/* stroke triangle (sides + bottom) */
.site-header .header-inner::before {
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--fang-depth));
  left: var(--fang-x);
  transform: translateX(-50%);
  width: 56px;
  height: var(--fang-depth);
  background: var(--color-lighter-grey);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0;
  transition: opacity 0.35s ease, left 0.35s ease;
  z-index: 4;
  pointer-events: none;
}
/* fill triangle */
.site-header .header-inner::after {
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--fang-depth));
  left: var(--fang-x);
  transform: translateX(-50%);
  width: 54px;
  height: var(--fang-depth);
  background: var(--hdr-bg);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.35s ease, left 0.35s ease;
  z-index: 5;
  pointer-events: none;
}
.site-header.scrolled .header-inner::before,
.site-header.scrolled .header-inner::after {
  opacity: 1;
}

@media (min-width: 1200px) {
  :root {
    --fang-depth: 20px;
  }
}

/* =========================
   NAV CONTENT
   ========================= */
.logo {
  padding-top: 1rem;
  grid-column: 2;
  justify-self: center;
}
.logo img {
  display: block;
  height: clamp(56px, 9vh, 110px); /* scale by height, keep ratio */
  width: auto; /* auto width preserves intrinsic ratio */
  max-width: 40vw; /* prevent overflow on very small screens */
}

.preorder-link {
  color: var(--color-accent-orange) !important;
  font-weight: 700;
  border: 1px solid var(--color-text);
}

.main-nav.left ul {
  justify-content: end;
  padding-right: 4rem;
}
.main-nav.right ul {
  justify-content: start;
  padding-left: 4rem;
}
.right-group {
  display: flex;
  align-items: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
  font-family: "Cinzel", sans-serif;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-orange);
  transition: width 0.28s ease;
}
.main-nav a:hover::after {
  width: 70%;
}
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--color-accent-orange);
}
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  white-space: nowrap;
  position: absolute;
  right: 2rem;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--color-accent-orange);
  color: var(--color-bg) !important;
  border: 1px solid var(--color-light-orange);
  transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.2s ease;
  z-index: 5;
}
.nav-cta:hover {
  transform: translateY(-50%) translateY(-2px);
  filter: saturate(1.05);
}

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: calc(190vh - var(--header-h));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 0 2rem 4rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    rgba(19, 19, 23, 0.55) 0%,
    rgba(19, 19, 23, 0.55) 65%,
    rgba(19, 19, 23, 0.35) 85%,
    rgba(19, 19, 23, 0) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--hero-offset) - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  height: var(--hero-logo-h);
  max-width: 30vw;
  margin-bottom: -5rem;
  margin-left: -3rem;
}
.ep-title {
  font-family: "Teko", serif;
  font-size: var(--ep-title-size);
  font-weight: 200;
  letter-spacing: 2px;
  margin-top: var(--hero-gap);
  margin-bottom: -2rem;
  color: var(--color-EP-title);
  text-shadow: 0 2px 0 #000;
}
.hero-meta {
  transform: translateY(var(--hero-meta-lift));
}
.ep-sub {
  margin: 0.35rem 0 1rem;
  font-family: "Oxygen", sans-serif;
  font-size: var(--ep-sub-size);
  opacity: 0.92;
}
.cta-btn {
  font-family: "Teko", sans-serif;
  font-weight: 200;
  display: inline-block;
  font-size: var(--cta-fs);
  padding: var(--cta-pad);
  border-radius: 25px;
  border: 1px solid var(--color-lighter-grey);
  background: var(--color-dark-bg);
  color: var(--color-text);
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.4);
  color: var(--color-accent-orange);
}

/* =========================
   BUNDLES
   ========================= */
.bundles {
  padding: 4rem 0 5rem;
  min-height: 100vh;
}
.bundles-head {
  margin-bottom: 2rem;
}
.bundles h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-accent-orange);
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
}
.bundles-head h2::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem auto;
}
.bundles-sub {
  font-family: "Oxygen", sans-serif;
  color: var(--color-text);
  opacity: 0.9;
  margin: 0;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.bundle-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: grid; /* grid for consistent heights */
  grid-template-rows: auto 1fr; /* media fixed, info fills */
  height: 100%;
  transition: transform 0.15s, box-shadow 0.25s, border-color 0.25s;
}
.bundle-card:hover {
  transform: translateY(-2px);
}
.bundle-card.is-soldout {
  opacity: 0.75;
}
.bundle-card .media {
  position: relative;
  background: transparent;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.bundle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bundle-card:hover img {
  transform: scale(1.03);
}
.badge {
  display: none;
}

.bundle-card[data-handle="aion-label-exclusive-tee"] .badge {
  display: inline-block;
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  background: var(--color-accent-orange);
  color: #000;
  border: 1px solid var(--color-light-orange);
}

.bundle-card[data-handle="aion-label-exclusive-tee"] .btn-row .btn {
  text-align: center;
  justify-content: center;
}
.price-row {
  flex-wrap: wrap;
  gap: 0.6rem;
}
.price-row .btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-left: auto; /* keeps price on the left, buttons on the right */
}
@media (max-width: 520px) {
  .price-row .btn-row {
    grid-template-columns: 1fr; /* still stack on mobile */
    width: auto; /* no full-width stretch */
    justify-self: end; /* push the stack to the right */
    justify-items: end; /* align each button's box to the right */
  }
}

@media (max-width: 520px) {
  .bundle-card .btn {
    width: auto;
  }
}

.bundle-card--everything {
  grid-column: 1 / -1; /* spans the full row */
  justify-self: center;
  max-width: 720px; /* consistent with wide art card */
}
.bundle-card--everything .media {
  aspect-ratio: 16 / 9;
}

.is-soldout .badge {
  background: var(--color-grey);
}

.bundles-grid {
  align-items: stretch;
  justify-items: stretch; /* cards fill their cells; no manual nudging */
}
.bundle-card .info {
  padding: 1rem 1rem 1.25rem;
  display: flex; /* use flex so price row can pin to bottom */
  flex-direction: column;
  gap: 0.5rem;
  min-height: 170px; /* ensures uniform content area */
}
.bundle-card .title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04rem;
}
.bundle-card .meta {
  margin: 0;
  color: var(--color-accent-orange);
  font-size: 0.95rem;
}
.price-row {
  margin-top: auto; /* push to bottom of the card */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-weight: 800;
  font-size: 1.05rem;
}
.bundle-card .btn {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--color-dark-bg);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid var(--color-lighter-grey);
  transition: transform 0.12s, box-shadow 0.25s, background 0.25s,
    border-color 0.25s;
}
.bundle-card .btn:hover {
  transform: translateY(-1px);
  background: var(--color-accent-orange);
  color: var(--color-bg);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.bundle-card.is-soldout .btn {
  pointer-events: none;
  opacity: 0.6;
}

/* =========================
   ABOUT
   ========================= */
.about {
  background: var(--color-bg);
  padding: 5rem 0;
}
.about-hero {
  position: relative;
  margin: 0 0 3rem;
  max-height: 62vh;
  overflow: hidden;
}
.about-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 30%;
  filter: contrast(1.02) saturate(1.02);
}
.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.about-hero::before {
  top: 0;
  height: 16rem;
  background: linear-gradient(
    to top,
    rgba(24, 22, 27, 0) 0%,
    rgba(24, 22, 27, 0.55) 85%,
    rgba(24, 22, 27, 0.85) 100%
  );
}
.about-hero::after {
  bottom: 0;
  height: 18rem;
  background: linear-gradient(
    to bottom,
    rgba(24, 22, 27, 0) 0%,
    rgba(24, 22, 27, 0.6) 55%,
    var(--color-bg) 100%
  );
}
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.about-bio h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-accent-orange);
  position: relative;
  display: inline-block;
}
.about-bio h2::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem auto;
}
.about-bio p {
  margin: 0 0 1rem;
  line-height: 1.7;
}
.about-block {
  margin-bottom: 5rem;
}
.about-block h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-orange);
  margin-bottom: 2rem;
}
.about-block h3::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem auto;
}
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.info-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.info-list i {
  color: var(--color-accent-orange);
  font-size: 1.1rem;
}
.info-list a {
  color: var(--color-text);
  text-decoration: none;
}
.info-list a:hover {
  color: var(--color-accent-pink);
}

/* =========================
   PRESS
   ========================= */
.press {
  background: var(--color-bg);
  padding: 4.5rem 0 5rem;
  height: 50vh;
}
.press-head {
  margin-bottom: 2.25rem;
}
.press-head h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-accent-orange);
  position: relative;
  display: inline-block;
}
.press-head h2::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem auto;
}
.press-quote {
  position: relative;
  max-width: 980px;
  margin: 0 auto 2.75rem;
  padding: 1.75rem 2.25rem 1.5rem;
  text-align: center;
  contain: layout paint;
}
.press-quote blockquote,
.press-quote figcaption {
  will-change: opacity, transform;
}
.press-quote blockquote {
  margin: 0;
  position: relative;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-text);
}
.press-quote blockquote::before {
  content: "“";
  font-family: "Cinzel", serif;
  position: absolute;
  left: -0.2em;
  top: -0.35em;
  font-size: 3.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.press-quote figcaption {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #cfcaca;
  opacity: 0.9;
}
.press-quote .source {
  font-weight: 800;
}
.press-quote .meta {
  opacity: 0.85;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.press-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
  border: 1px solid var(--color-grey);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1rem;
  transition: transform 0.15s, box-shadow 0.25s, border-color 0.25s;
}
.press-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  border-color: var(--color-lighter-grey);
}
.press-item blockquote {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-text);
}
.press-item .byline {
  color: #cfcaca;
  opacity: 0.85;
  font-size: 0.95rem;
}
.press-item .source {
  color: var(--color-accent-orange);
  font-weight: 700;
}
.press-quote::after {
  content: "";
  display: block;
  height: 6px;
  width: 200px;
  margin: 1rem auto 0;
  background: var(--color-accent-orange);
  border-radius: 999px;
  opacity: 0.9;
}
.press-item {
  min-height: 128px;
}
.press-quote blockquote,
.press-quote figcaption {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.press-quote.leaving blockquote,
.press-quote.leaving figcaption {
  opacity: 0;
  transform: translateY(8px);
}
.press-quote.entering blockquote,
.press-quote.entering figcaption {
  opacity: 0;
  transform: translateY(-6px);
}
.press-quote.ready blockquote,
.press-quote.ready figcaption {
  opacity: 1;
  transform: none;
}
.press-item {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: opacity, transform;
}
.press-item.entering {
  opacity: 0;
  transform: translateY(10px);
}
.press-quote {
  position: relative;
  overflow: visible;
}
.press-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  border: 1px solid var(--color-lighter-grey);
  background: rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease,
    opacity 0.2s ease;
  color: var(--color-text);
  opacity: 0.95;
}
.press-nav:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: var(--color-grey);
  transform: translateY(-50%) scale(1.04);
}
.press-nav:active {
  transform: translateY(-50%) scale(0.98);
}
.press-nav.prev {
  left: 0.5rem;
}
.press-nav.next {
  right: 0.5rem;
}
.press-nav i {
  font-size: 22px;
  line-height: 1;
}
@media (max-width: 600px) {
  .press-nav {
    display: none;
  }
}

/* =========================
   MERCH
   ========================= */
.merch {
  margin-top: 6rem;
  background: var(--color-bg);
  padding: 4.5rem 0 5.5rem;
}
.merch .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.merch-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
}
.merch-title {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 2rem;
  color: var(--color-accent-orange);
}
.merch-title::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem auto;
}
.section-divider.left {
  height: 20px;
  width: auto;
  margin: 0.25rem 0 1.25rem;
}
.merch-controls {
  display: grid;
  gap: 1rem;
}
.source-acc {
  display: grid;
  gap: 12px;
}
.acc-group {
  border: 1px solid var(--color-grey);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-dark-bg);
}
.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.1rem;
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.acc-head i {
  transition: transform 0.25s ease;
}
.acc-head[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.acc-head[aria-expanded="true"] {
  color: var(--color-accent-orange);
}
.acc-panel {
  padding: 0.4rem;
  background: transparent;
  display: grid;
  gap: 0.5rem;
}
.acc-panel[hidden] {
  display: block;
  height: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.acc-panel .src {
  width: 100%;
  text-align: left;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.acc-panel .src + .src {
  margin-top: 0.35rem;
}
.acc-panel .src:hover {
  background: rgba(255, 255, 255, 0.06);
}
.acc-panel .src[aria-selected="true"] {
  color: var(--color-accent-orange);
  border-color: var(--color-lighter-grey);
  background: rgba(255, 255, 255, 0.06);
}
.merch-cats {
  display: grid;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--color-dark-bg);
  border: 1px solid var(--color-grey);
  border-radius: 8px;
}
.merch-cats [role="tab"] {
  display: block;
  text-align: left;
  padding: 0.8rem 1rem;
  background: transparent;
  border: 0;
  color: var(--color-text);
  cursor: pointer;
  border-radius: 6px;
}
.merch-cats [role="tab"][aria-selected="true"] {
  color: var(--color-accent-orange);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-lighter-grey);
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.merch-card {
  background: #0f0f13;
  border: 1px solid var(--color-grey);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  transition: transform 0.15s, box-shadow 0.25s, border-color 0.25s;
}
.merch-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border-color: var(--color-lighter-grey);
}
.merch-card > img,
.merch-card .product-media {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--color-dark-bg);
  contain: paint;
}
.merch-card .inner {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--color-dark-grey);
  border-top: 1px solid var(--color-grey);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 160px;
}
.merch-card .title {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.merch-card .price {
  margin: 0.15rem 0 0.6rem;
}
.action-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid var(--color-lighter-grey);
  color: #fff;
  background: var(--color-dark-bg);
  transition: transform 0.12s, box-shadow 0.25s, background 0.25s,
    border-color 0.25s;
}
.btn.primary {
  background: linear-gradient(
    90deg,
    var(--color-accent-orange),
    var(--color-accent-pink)
  );
  border-color: transparent;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.skel {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}
.merch-cta {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--color-dark-bg);
  border: 1px solid var(--color-grey);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.merch-pager {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  gap: 1rem;
  background: var(--color-dark-bg);
  border: 1px solid var(--color-grey);
  border-radius: 8px;
  padding: 0.75rem;
}
.pager-prev,
.pager-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--color-lighter-grey);
  background: var(--color-dark-grey);
  color: var(--color-text);
  text-decoration: none;
  cursor: pointer;
}
.pager-pages {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.pager-page {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-lighter-grey);
  background: var(--color-dark-grey);
  color: var(--color-text);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.pager-page[aria-current="page"] {
  background: var(--color-accent-orange);
  color: #fff;
  border-color: transparent;
}
#merch-cta {
  display: none;
}
#merch-cta.has-content {
  display: flex;
}

/* =========================
   SHOWS
   ========================= */
#shows-panels {
  height: auto !important;
  overflow: visible !important;
}
.events.is-hidden {
  display: none;
}

.shows {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: visible;
  background: var(--color-bg);
  height: auto;
  min-height: 100vh;
}
.shows-bg {
  position: absolute;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  background: url("../images/live-bg.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.3;
  filter: contrast(1.05) saturate(1.05) brightness(0.85);
}
.shows-fade {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  pointer-events: none;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0) 45%
    ),
    linear-gradient(
      to right,
      var(--color-bg) 0%,
      rgba(19, 19, 23, 0) 14%,
      rgba(19, 19, 23, 0) 86%,
      var(--color-bg) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(19, 19, 23, 0) 70%,
      rgba(19, 19, 23, 0.75) 100%
    );
}
.shows .container {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  bottom-bottom: 4rem;
}

.shows-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.shows-head h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-orange);
  margin: 0;
}
.shows-head h2::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem auto;
}
.shows-filters {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-grey);
  border-radius: 999px;
  padding: 0.25rem;
}
.shows-filter {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}
.shows-filter.is-active {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-lighter-grey);
  color: var(--color-accent-orange);
}

/* List */
.shows-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.show-card {
  display: grid;
  grid-template-columns: 120px 1.2fr 1fr auto;
  align-items: center;
  gap: 0;
  padding: 16px 18px;
  margin: 0 0 12px;
  background: rgba(24, 22, 27, 0.7);
  border: 1px solid var(--color-grey);
  border-radius: 12px;
  position: relative;
  overflow: visible;
  margin-bottom: 1rem;
}
.show-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent-orange);
  opacity: 0.9;
}
.show-card > * {
  position: relative;
  padding-left: 18px;
}
.show-card > *:not(:first-child)::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-lighter-grey);
  opacity: 0.7;
}
.show-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-lighter-grey);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

/* Date block */
.show-date {
  font-family: "Cinzel", serif;
  color: var(--color-accent-orange);
  display: grid;
  justify-items: center;
  gap: 4px;
  padding-left: 0;
}
.show-date .day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.show-date .mon {
  letter-spacing: 0.15em;
  font-weight: 700;
  opacity: 0.9;
}
.show-date .year {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* text columns */
.show-main .title {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.show-venue {
  color: var(--color-accent-orange);
  opacity: 0.9;
}

/* CTA column */
.show-cta {
  display: flex;
  justify-content: flex-end;
}
.show-cta .btn {
  white-space: nowrap;
  padding: 0.6rem 1rem;
}
.skel-row {
  min-height: 84px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-grey);
  border-radius: 12px;
}
.show-cta .btn.primary {
  background: var(--color-accent-orange);
  color: #000;
  border-color: transparent;
}
.show-cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* Tabs */
.shows__tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-grey);
  border-radius: 999px;
  padding: 0.25rem;
}
#btn-upcoming,
#btn-past {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-text);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}
#btn-upcoming.active,
#btn-past.active {
  background: var(--color-dark-grey);
  border: 1px solid var(--color-lighter-grey);
  color: var(--color-accent-orange);
}
.events[hidden] {
  display: none !important;
}
.event,
.show-card {
  overflow: visible;
}

@media (max-width: 980px) {
  .show-card {
    grid-template-columns: 100px 1fr 160px;
  }
  .show-venue {
    display: none;
  }
}
@media (max-width: 640px) {
  .show-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.5rem;
  }
  .show-date {
    flex-direction: row;
    gap: 0.6rem;
  }
  .show-cta {
    justify-self: start;
  }
}

/* =========================
   Mobile nav & hamburger
   ========================= */
.hamburger {
  display: none;
  position: relative;
  width: 46px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--color-lighter-grey);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  justify-self: end;
  margin-left: auto;
}
.hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 17px;
}
.hamburger span:nth-child(3) {
  top: 24px;
}
body.nav-open .hamburger span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.nav-open .hamburger span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .main-nav.left,
  .main-nav.right {
    display: none;
  }
  .hamburger {
    display: grid;
    align-items: center;
  }
  .site-header .header-inner {
    min-height: 84px;
  }
  :root {
    --header-h: 84px;
  }
}

@media (max-width: 900px) {
  .main-nav.left,
  .main-nav.right,
  .preorder-link {
    display: none !important;
  }
  .hamburger {
    display: grid;
    align-items: center;
  }
}

/* CTA inside mobile drawer */
.mobile-nav .cta {
  margin: 0.25rem 0 1rem;
  display: block;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: var(--color-accent-orange);
  border: 1px solid transparent;
}
.mobile-nav .cta:hover {
  filter: brightness(1.05);
}

.mobile-nav .stack {
  list-style: none;
  margin: 0;
  padding: 8px 0 0; /* keep your existing padding if you want */
}
.mobile-nav .stack li {
  list-style: none;
}

/* =========================
   GALLERY (Grid: 6 per row on desktop)
   ========================= */

#gallery {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.gallery-head h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-orange);
  margin: 0;
}
.gallery-head h2::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem 0 0;
}

/* Container: CSS Grid with 4 columns on large screens */
#gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding: 1rem 0;
}

/* Tiles */
.gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-grey);
  transition: transform 0.12s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  aspect-ratio: 2 / 3; /* make neat portrait tiles; approx 400x600 */
}
.gallery-item:hover {
  transform: translateY(-1px);
  border-color: var(--color-accent-orange);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive columns */
@media (max-width: 1280px) {
  #gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  #gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  #gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  #gallery-grid {
    grid-template-columns: 1fr;
  }
}

.lb {
  position: fixed;
  inset: 0;
  display: none; /* toggled via [aria-hidden="false"] */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(2px);
  z-index: 9999;
  padding: clamp(12px, 3vw, 32px);
}
.lb[aria-hidden="false"] {
  display: flex;
}

.lb__stage {
  margin: 0;
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  display: grid;
  grid-template-rows: 1fr auto; /* image then caption */
  gap: 10px;
}
.lb__img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lb__cap {
  justify-content: flex-start;
  gap: 1rem;
  margin-left: 0.5rem;
  color: var(--color-text);
  font-size: 0.95rem;
  opacity: 0.9;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}
.lb__credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-accent-orange);
  text-decoration: none;
}
.lb__credit:hover {
  text-decoration: underline;
}

/* controls */
/* controls */
.lb__nav,
.lb__close {
  position: absolute;
  border: 1px solid var(--color-lighter-grey);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.6rem; /* bump up for visibility */
  width: 48px;
  height: 48px;
  padding-bottom: 5px;
  border-radius: 50%;
  display: flex; /* center with flexbox */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 0; /* squash vertical space */
  text-align: center;
  transition: background 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
}
.lb__nav::before,
.lb__close::before {
  display: block;
  line-height: 1; /* reset inside glyph */
}

/* prev/next positions keep their translate on hover */
.lb__prev,
.lb__next {
  top: 50%;
  transform: translateY(-50%);
}
.lb__prev {
  left: clamp(10px, 2vw, 24px);
}
.lb__next {
  right: clamp(10px, 2vw, 24px);
}

/* close position (no translate) */
.lb__close {
  top: clamp(10px, 2vw, 24px);
  right: clamp(10px, 2vw, 24px);
}

/* hover states – preserve translate for arrows */
.lb__prev:hover,
.lb__next:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.04);
  border-color: var(--color-grey);
}
.lb__close:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.04);
  border-color: var(--color-grey);
}

/* =========================
   CONTACT (full-width hero with two-column form)
   ========================= */

#contact.contact-hero {
  position: relative;
  isolation: isolate;
  padding: 96px 0;
}

#contact h2::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.78) 100%
    ),
    url("../images/Osiah-by-Mariana.JPEG") center center/cover no-repeat;
  transform: scale(1.02);
  z-index: -2;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: -1;
  pointer-events: none;
}

/* --- Card/container --- */
.contact-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-head h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-orange);
  margin: 0 0 18px;
}
.contact-head .sub {
  opacity: 0.8;
  margin: 0 0 28px;
}

/* --- Grid form --- */
.contact-form {
  display: grid;
  margin-left: -2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* two-up */
  gap: 16px 16px; /* row, column */
  background: rgba(0, 0, 0, 0.4);
  border: 0;
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: none;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--span2 {
  grid-column: 1 / -1;
} /* full width */

.contact-form label {
  font-size: 0.95rem;
  opacity: 0.9;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #3a373f;
  color: #eee;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a96a1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 110, 38, 0.18);
}

.btn.btn-accent {
  background: var(--color-accent-orange);
  color: var(--color-bg);
  border: 1px solid var(--color-light-orange);
  border-radius: 999px; /* pill like PRE-ORDER */
  width: 300px;
  justify-self: end;
  padding: 0.9rem 1.25rem;
  font-family: "Cinzel", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.08s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-size: 1.1rem;
}
.btn.btn-accent:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.btn.btn-accent:active {
  transform: translateY(1px);
}

/* --- Responsive: stack on mobile --- */
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr; /* stack */
  }
  .btn.btn-accent {
    width: 100%;
    justify-self: stretch;
  }
}

/* Footer layout: two columns */
.site-footer {
  background: var(--color-dark-bg);
  border-top: 1px solid var(--color-grey);
  padding: 2.25rem 0;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* brand | connect */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Right column alignment */
.footer-col.connect {
  justify-self: end; /* sit it on the right edge */
  text-align: right; /* align its content to the right */
}

/* Keep socials + CTA tidy on the right */
/* Socials row style */
.socials {
  display: flex;
  flex-direction: row; /* force row layout */
  gap: 0.6rem;
  list-style: none;
  margin: 0.25rem 0 1rem;
  padding: 0;
  justify-content: flex-end; /* align to the right in the footer */
}

.socials li {
  margin: 0; /* reset spacing if any */
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-lighter-grey);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: transform 0.12s ease, background 0.2s ease;
}

.socials a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.socials i {
  width: auto;
  height: auto;
  display: inline-block;
  line-height: 1;
}

.footer-col.connect h4 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-orange);
  margin: 0;
  font-size: 1.2rem;
}

.footer-col.connect h4::after {
  content: "";
  display: block;
  background: url("../images/divider2.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem -1rem 1rem auto;
}

/* Wordmark next to logo */
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 0.6rem;
}

.footer-wordmark {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-accent-orange);
  letter-spacing: 0.05em;
  margin-top: -0.9rem;
}

/* CTA button */
.footer-cta {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  background: var(--color-accent-orange);
  color: var(--color-bg) !important;
  border: 1px solid var(--color-light-orange);
  transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.footer-cta:hover {
  filter: brightness(1.05);
}

/* Responsive: stack & center on mobile */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col.connect {
    justify-self: center;
    text-align: center;
  }
  .socials {
    justify-content: center;
  }
}
[hidden] {
  display: none !important;
}
/* Read More styles for About bio */
.about-bio.is-collapsed {
  max-height: 540px;
  padding-left: 1rem;
  overflow: hidden;
  position: relative;
  padding-bottom: 6.5rem; /* extra space for Read more button */
}
.about-bio.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6rem;
  /* Fades out the last lines to suggest more content */
  background: linear-gradient(transparent, var(--page-bg, #0a0a0a));
  pointer-events: none;
  z-index: 0;
  border-radius: 15px;
}
.about-bio.is-expanded {
  max-height: none;
  padding-left: 1rem;
  overflow: visible;
}
.readmore-wrap {
  margin-top: 1rem;
}
.about-bio .readmore-wrap {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 3; /* above fade */
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-bio.is-collapsed > .readmore-wrap {
  display: flex !important;
}
.readmore-btn {
  font: inherit;
  padding: 0.6rem 1rem;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: saturate(120%) blur(2px);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  line-height: 1;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.about-bio:not(.is-collapsed):not(.is-expanded) > .readmore-wrap {
  display: none !important;
}

.about-bio.is-expanded > .readmore-wrap {
  position: static;
  margin-top: 1rem;
  justify-content: center;
}
.discog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.discog-head h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-accent-orange);
  position: relative;
  display: inline-block;
}

.discog-head h2::after {
  content: "";
  display: block;
  background: url("../images/divider.png") no-repeat center;
  height: 5px;
  width: 368px;
  margin: 0.5rem auto;
}

.discog-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-grey);
  border-radius: 999px;
  padding: 0.25rem;
}
.discog-tabs button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}
.discog-tabs button:hover {
  background: rgba(255, 255, 255, 0.04);
}
.discog-tabs button.active,
.discog-tabs button[aria-selected="true"] {
  color: var(--color-accent-orange);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-lighter-grey);
}
.discog-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .discog-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 720px) {
  .discog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.discog-card {
  grid-column: span 4;
  background: #0f0f13;
  border: 1px solid var(--color-grey);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  transition: transform 0.15s, box-shadow 0.25s, border-color 0.25s;
}
.discog-card:hover {
  border-color: var(--color-accent-orange);
}
.discog-card .art {
  aspect-ratio: 1/1;
  background: #000;
  overflow: hidden;
}
.discog-card .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.discog-card .meta {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--color-dark-grey);
  border-top: 1px solid var(--color-grey);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 160px;
  margin: 0;
  padding-bottom: 0.85rem;
}
.discog-card .title {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color-accent-orange);
}
.discog-card .sub {
  margin: 0.15rem 0 0.6rem;
}
.discog-card .actions .btn {
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
}
.discog-card .actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0;
  padding: 0.8rem 1.25rem 1.1rem;
  background: var(--color-dark-grey);
  border-top: 1px solid var(--color-grey);
}

@media (prefers-reduced-motion: no-preference) {
  .discog-card {
    transition: opacity 0.24s ease, transform 0.24s ease;
  }
  .discog-card.is-hiding {
    opacity: 0;
    transform: scale(0.98);
  }
  .discog-card.is-showing {
    opacity: 0;
    transform: scale(0.98);
  }
  .discog-card.is-showing.is-visible {
    opacity: 1;
    transform: none;
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  font-size: 22px;
  background-color: #111;
  color: #fff;
  border: none;
  outline: none;
  padding: 12px 14px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #b81b1b; /* your Osiah accent red */
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   Responsive tweaks (iPad & Mobile)
   ========================= */

/* iPad / tablets */
@media (max-width: 1024px) {
  /* Scale down hero sizing via custom props */
  :root {
    --hero-logo-h: 180px;
    --ep-title-size: clamp(5rem, 7.5vw, 6.5rem);
    --cta-fs: 1.6rem;
    --cta-pad: 0.6rem 1.6rem 0.35rem 1.6rem;
  }

  .hero {
    min-height: calc(130vh - var(--header-h));
    padding: 0 1.25rem 3rem;
  }
  .hero-content {
    margin-top: calc(var(--hero-offset) - var(--header-h));
  }
  .hero-logo {
    max-width: 44vw;
    height: auto;
    margin-left: 0;
  }

  /* Grids tighten on tablet */
  .bundles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .merch-layout {
    grid-template-columns: 280px 1fr;
  }
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Scroll-to-top button spacing */
  #scrollTopBtn {
    bottom: 28px;
    right: 28px;
  }
}

/* Large phones & small tablets */
@media (max-width: 768px) {
  :root {
    --hero-logo-h: 150px;
    --ep-title-size: clamp(3.6rem, 9vw, 5rem);
    --ep-sub-size: 1rem;
    --cta-fs: 1.35rem;
    --cta-pad: 0.55rem 1.2rem 0.35rem 1.2rem;
  }

  .container {
    padding: 0 1.25rem;
  }
  .hero {
    min-height: calc(120vh - var(--header-h));
  }

  /* Force 4-up mobile gallery per Andy's preference */
  #gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
  .gallery-item {
    aspect-ratio: 2 / 3;
  }

  .bundles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .merch-layout {
    grid-template-columns: 1fr;
  }
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Contact layout already stacks via existing rules; tweak card padding a touch */
  .contact-form {
    padding: 20px;
    margin: 0 auto;
  }

  /* Scroll-to-top button: smaller & tighter */
  #scrollTopBtn {
    bottom: 20px;
    right: 18px;
    font-size: 18px;
    padding: 10px 12px;
  }
}

/* Small phones */
@media (max-width: 560px) {
  :root {
    --hero-logo-h: 128px;
    --ep-title-size: clamp(3rem, 10vw, 4rem);
  }

  .hero {
    padding: 0 1rem 2.5rem;
  }

  /* Keep 4-up on very small screens as requested; tighten gaps further */
  #gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Footer spacing */
  .footer-grid {
    padding: 0 1rem;
  }

  /* Scroll-to-top button: even smaller */
  #scrollTopBtn {
    bottom: 16px;
    right: 14px;
    font-size: 16px;
    padding: 9px 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  }
}

/* =========================
   iPad / tablet overrides (<=1180px)
   Force hamburger, center header logo, and prevent sigil distortion
   ========================= */
@media (max-width: 1180px) {
  /* Hide desktop nav + header preorder; show burger */
  .main-nav.left,
  .main-nav.right,
  .preorder-link {
    display: none !important;
  }
  .hamburger {
    display: grid;
    align-items: center;
  }

  /* Compact header size */
  .site-header .header-inner {
    min-height: 84px;
    padding: 0 1rem;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  :root {
    --header-h: 84px;
  }

  /* Header sigil (top logo) — height-led to keep aspect */
  .site-header .logo {
    grid-column: 2;
    justify-self: center;
  }
  .site-header .logo img {
    width: auto !important;
    height: min(64px, calc(var(--header-h) - 16px)) !important;
    max-width: none !important;
    object-fit: contain;
    display: block;
  }

  /* Hero logo — width-led to stop stretch */
  .hero-logo {
    width: clamp(260px, 40vw, 560px);
    height: auto !important;
    max-width: 100%;
    object-fit: contain;
    margin-left: 0; /* cancel desktop nudge at this size */
  }
}

@media (max-width: 1180px) {
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: grid !important;
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    z-index: 10;
  }
}
.hero-countdown {
  --cd-accent: #e11d48;
  --cd-fg: #f5f5f5;
  --cd-dim: #a1a1aa;
  --cd-bg: rgba(0, 0, 0, 0.35);
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-family: "Cinzel", serif;
}

.countdown-label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cd-dim);
}

.countdown-grid {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1;
}

.cd-seg {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 8.5ch;
}

.cd-num {
  font-variant-numeric: tabular-nums;
  font-size: clamp(3rem, 2.8vw + 0.8rem, 4rem);
  color: var(--cd-fg);
}

.cd-unit {
  margin-top: 0.25rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cd-dim);
}

.cd-sep {
  font-weight: 700;
  font-size: clamp(1.8rem, 2vw + 0.9rem, 2.4rem);
  color: var(--cd-accent);
  transform: translateY(0.06em);
}

/* Tighten title/sub spacing nearby if needed */
.hero-countdown + * {
  margin-top: 0.75rem;
}

/* Mobile polish */
@media (max-width: 480px) {
  .hero-countdown {
    padding: 0.7rem 0.85rem;
  }
  .cd-unit {
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cd-sep {
    animation: none !important;
  }
}

.cd-sep {
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw + 0.5rem, 2.4rem);
  color: var(--color-accent-orange);
  transform: translateY(-0.5rem);
  opacity: 1;
}

.countdown-done {
  margin: 0.25rem 0 0;
  font-weight: 700;
  color: var(--cd-accent);
}

.hero-streams {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.stream-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0 4rem;
}

.stream-label {
  margin: 0 0 0.3rem;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.stream-icons a,
.stream-icons i {
  font-size: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  line-height: 0;
  color: var(--color-accent-orange);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.stream-icons i {
  font-size: 32px;
}

.stream-icons a:hover {
  color: var(--color-accent-orange);
  transform: translateY(-1px) scale(1.05);
  outline: none;
}

.hero-streams {
  margin-top: 1rem;
  text-align: center;
}
.hero-streams .stream-label {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.hero-streams .stream-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-streams .stream-icons a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.hero-streams .stream-icons a:hover,
.hero-streams .stream-icons a:focus-visible {
  color: #e11d48;
  transform: scale(1.1);
  outline: none;
}
@media (max-width: 480px) {
  .hero-streams .stream-icons a {
    font-size: 1.8rem;
  }
}

.ccy-manage-link {
  display: none !important;
}

.ccy-backdrop {
  display: none !important;
}
.ccy-root {
  pointer-events: none;
  z-index: 2147483000;
}
.ccy-panel {
  pointer-events: auto;
  left: 50% !important;
  bottom: 16px !important;
  transform: translateX(-50%) !important;
  width: min(92vw, 960px) !important;
  max-width: 960px !important;
  background: #131317 !important;
  color: #e7e7ea !important;
  border: 1px solid #2a2a2e !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4) !important;
}
.ccy-inner {
  padding: 16px 18px !important;
  gap: 12px !important;
}
.ccy-title {
  color: #ffffff !important;
  font-weight: 800 !important;
}
.ccy-copy {
  color: rgba(255, 255, 255, 0.8) !important;
}
.ccy-copy a {
  color: #e11d48 !important;
  text-decoration: underline !important;
}
.ccy-actions {
  justify-content: flex-end !important;
  gap: 8px !important;
}
.ccy-btn {
  background: #1a1a1f !important;
  border: 1px solid #3a3a40 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-weight: 700 !important;
}
.ccy-btn:hover {
  background: #22222a !important;
}
.ccy-btn.primary {
  background: #e11d48 !important;
  border-color: #e11d48 !important;
  color: #fff !important;
}
.ccy-btn.primary:hover {
  background: #c01a3f !important;
}
.ccy-row {
  border: 1px solid #2a2a2e !important;
  background: #101014 !important;
  border-radius: 10px !important;
}
.ccy-row .lbl {
  color: #fff !important;
}
.ccy-row .hint {
  color: #bcbcc4 !important;
}
.ccy-switch {
  background: #22222a !important;
}
.ccy-switch .dot {
  background: #9aa0a6 !important;
}
.ccy-switch input:checked + .dot {
  background: #e11d48 !important;
}
.ccy-manage-link {
  display: none !important;
}
