:root {
  --black: #050505;
  --white: #ffffff;
  --ink: #141414;
  --muted: #727272;
  --line: #d9d9d9;
  --soft: #f4f4f4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: clamp(124px, 14vw, 188px);
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--white);
}

.nav-button {
  justify-self: end;
  padding: 13px 20px;
  border: 1px solid var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.nav-button:hover {
  background: var(--white);
  color: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(88vh - 76px);
  padding: clamp(34px, 5vw, 68px) clamp(18px, 5vw, 64px) 30px;
  align-items: center;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted);
}

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

h1 {
  margin-bottom: 22px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(4.2rem, 8.5vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  max-width: 620px;
}

.hero-title span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-title img {
  display: block;
  width: min(100%, 600px);
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(255, 255, 255, 0.08));
}

h2 {
  margin-bottom: 0;
  color: inherit;
  font-size: clamp(2.3rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-text {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--black);
}

.hero-photo {
  margin: 0;
}

.photo-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-photo.jpg");
  background-size: cover;
  background-position: center;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.1)),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0 2px, transparent 2px 12px);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-strip div {
  min-height: 126px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

.stats-strip strong,
.stats-strip span {
  display: block;
  text-transform: uppercase;
}

.stats-strip strong {
  font-size: clamp(1.65rem, 4vw, 3.5rem);
  line-height: 1;
}

.stats-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.section-light {
  background: var(--white);
  color: var(--black);
}

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

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading a,
.section-heading span {
  max-width: 360px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.section-heading a {
  text-transform: uppercase;
}

.section-heading a:hover {
  color: var(--black);
}

.episode-grid,
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.episode-card {
  position: relative;
  min-height: 330px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
}

.episode-card-linked {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.episode-card-linked:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.episode-cover-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.episode-thumb {
  display: flex;
  align-items: end;
  min-height: 172px;
  margin-bottom: 20px;
  padding: 16px;
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 0, 0, 0.14) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--black), #4b4b4b);
  color: var(--white);
}

.episode-thumb.has-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68)),
    var(--episode-image);
  background-size: cover;
  background-position: center;
}

.episode-thumb span {
  position: relative;
  z-index: 1;
  font-family: "Anton", Impact, sans-serif;
  font-size: 4.2rem;
  line-height: 0.8;
}

.episode-card p,
.product-info p,
.about-section p {
  color: var(--muted);
  line-height: 1.55;
}

.merch-section {
  background: var(--black);
}

.shopify-merch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 360px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0b0b0b;
}

.shopify-merch iframe {
  max-width: 100%;
}

.shopify-product-listing {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.shopify-gallery:empty {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    #111;
}

.shopify-gallery-launcher {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--white);
  cursor: pointer;
}

.shopify-gallery-launcher img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shopify-gallery-launcher span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  background: rgba(5, 5, 5, 0.88);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shopify-gallery-launcher:hover {
  border-color: var(--white);
}

.product-slideshow {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
  background: rgba(0, 0, 0, 0.88);
}

.product-slideshow.is-open {
  display: grid;
}

.product-slideshow-panel {
  width: 100%;
  max-width: 920px;
  color: var(--white);
}

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

.product-slideshow-top h3 {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
}

.product-slideshow-top button,
.slideshow-arrow {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--white);
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.product-slideshow-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.product-slideshow-stage img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: var(--white);
}

.product-slideshow-count {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-align: center;
}

.merch-card {
  display: grid;
  min-height: 520px;
  background: var(--white);
  color: var(--black);
}

.product-art {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--soft);
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
}

.product-art.hoodie::before {
  top: 52px;
  width: 178px;
  height: 210px;
  border-radius: 48px 48px 20px 20px;
}

.product-art.hoodie::after {
  top: 74px;
  width: 76px;
  height: 54px;
  border: 8px solid var(--white);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
  background: transparent;
}

.product-art.tee::before {
  top: 56px;
  width: 188px;
  height: 190px;
  clip-path: polygon(24% 0, 76% 0, 100% 24%, 82% 42%, 82% 100%, 18% 100%, 18% 42%, 0 24%);
  background: var(--white);
  border: 6px solid var(--black);
}

.product-art.tee::after {
  top: 142px;
  width: 66px;
  height: 26px;
  background: var(--black);
}

.product-art.cap::before {
  top: 96px;
  width: 174px;
  height: 88px;
  border-radius: 90px 90px 18px 18px;
}

.product-art.cap::after {
  top: 166px;
  width: 178px;
  height: 42px;
  border-radius: 0 60px 60px 0;
  background: var(--black);
}

.product-info {
  display: grid;
  align-content: end;
  padding: 24px;
}

.product-badge,
.size-label {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-badge {
  margin-bottom: 14px;
}

.size-label {
  margin-top: 18px;
  margin-bottom: 8px;
}

.size-select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-weight: 900;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.price-row span {
  font-size: 1.6rem;
  font-weight: 900;
}

.price-row button,
.cart-panel a {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.price-row button:hover {
  background: var(--white);
  color: var(--black);
}

.cart-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.cart-panel small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.5;
}

.cart-panel a {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.about-section p {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .photo-frame {
    aspect-ratio: 16 / 11;
  }

  .episode-grid,
  .merch-grid,
  .shopify-merch,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-slideshow-stage {
    grid-template-columns: 1fr 1fr;
  }

  .product-slideshow-stage img {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .slideshow-arrow {
    grid-row: 2;
  }
}

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

  .brand-logo {
    width: 116px;
  }

  .nav-button {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 7rem);
  }

  .hero-title img {
    width: min(100%, 430px);
  }

  .button,
  .hero-actions,
  .button-light,
  .button-outline {
    width: 100%;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
