/* =========================================================
   KETS PULLS — TRICK OR TRADE 2024 COLLECTION
   ========================================================= */

.collection-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 204, 0, .13), transparent 30%),
    radial-gradient(circle at 10% 85%, rgba(255, 204, 0, .05), transparent 32%),
    var(--bg);
}

.collection-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.collection-hero-copy h1 {
  margin-bottom: 28px;
}

.collection-hero-copy h1 span,
.collection-closing h2 span {
  color: var(--accent);
}

.collection-intro {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
}

.collection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.collection-status-card,
.collection-goal-card,
.episode-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), #101014);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.collection-status-card {
  padding: clamp(26px, 4vw, 42px);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.status-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 204, 0, .09);
}

.status-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.status-total strong {
  color: var(--accent);
  font-family: "Anton", sans-serif;
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: .9;
}

.status-total span {
  color: var(--muted);
  font-weight: 700;
}

.status-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #272730;
}

.status-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.status-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: .88rem;
}

.status-meta strong {
  color: var(--text);
}

.collection-stats {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.collection-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.collection-stat {
  padding: 14px 28px;
  border-right: 1px solid var(--border);
}

.collection-stat:last-child {
  border-right: 0;
}

.collection-stat strong {
  display: block;
  color: var(--accent);
  font-family: "Anton", sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.collection-stat span {
  color: var(--muted);
  font-size: .88rem;
}

.collection-story-grid,
.set-information-grid,
.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: start;
  gap: clamp(42px, 7vw, 90px);
}

.collection-goal-card {
  padding: clamp(26px, 4vw, 38px);
}

.collection-goal-card h3 {
  margin: 10px 0 24px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.goal-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.goal-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.goal-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.binder-count {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.binder-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 20px);
  max-width: 860px;
  margin: 36px auto 0;
  padding: clamp(16px, 2.5vw, 28px);
  border: 1px solid #32323b;
  border-radius: 22px;
  background: #101014;
  box-shadow: inset 0 0 0 5px #0b0b0e, 0 30px 70px rgba(0, 0, 0, .3);
}

.binder-slot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 63 / 88;
  overflow: hidden;
  border: 1px solid #33333d;
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 55%),
    #18181e;
  color: #595965;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.binder-slot::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed #33333d;
  border-radius: 7px;
}

.binder-slot span {
  position: relative;
  z-index: 1;
  font-family: "Anton", sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.1rem);
  font-weight: 400;
}

.binder-slot:hover {
  z-index: 2;
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(255, 204, 0, .75);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .35);
  color: var(--accent);
}

.binder-action {
  margin-top: 30px;
  text-align: center;
}

.set-facts {
  margin: 0;
  border-top: 1px solid var(--border);
}

.set-facts div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.set-facts dt {
  color: var(--muted);
}

.set-facts dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.collection-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-timeline::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 6px;
  width: 1px;
  background: var(--border);
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 22px;
  padding-bottom: 30px;
  opacity: .52;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step.is-current {
  opacity: 1;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 5px;
  border: 2px solid #666672;
  border-radius: 50%;
  background: var(--bg-soft);
}

.timeline-step.is-current .timeline-icon {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 204, 0, .1);
}

.timeline-step p {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.timeline-step h3 {
  margin-bottom: 3px;
  font-size: 1.12rem;
}

.timeline-step div > span {
  color: var(--muted);
  font-size: .9rem;
}

.featured-episode-section {
  background:
    radial-gradient(circle at 85% 40%, rgba(255, 204, 0, .09), transparent 30%),
    var(--bg);
}

.episode-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  padding: clamp(26px, 5vw, 56px);
}

.episode-card h2 {
  margin-bottom: 18px;
}

.episode-card p:not(.eyebrow):not(.episode-number) {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--muted);
}

.episode-number {
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: .08em;
}

.episode-placeholder {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    linear-gradient(rgba(9, 9, 12, .25), rgba(9, 9, 12, .65)),
    repeating-linear-gradient(135deg, #1e1e25 0 12px, #18181e 12px 24px);
  text-align: center;
}

.play-symbol {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  padding-left: 4px;
  border: 1px solid rgba(255, 204, 0, .55);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.5rem;
}

.episode-placeholder strong {
  display: block;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.episode-placeholder small {
  color: var(--muted);
}

.collection-closing {
  padding: 100px 0;
  text-align: center;
}

.collection-closing h2 {
  margin-bottom: 22px;
}

.collection-closing p:last-child {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .05em;
}

/* Tablet */
@media (max-width: 900px) {
  .collection-hero-grid,
  .collection-story-grid,
  .set-information-grid,
  .timeline-layout,
  .episode-card {
    grid-template-columns: 1fr;
  }

  .collection-hero {
    min-height: auto;
  }

  .collection-status-card {
    max-width: 620px;
  }

  .collection-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-stat:nth-child(2) {
    border-right: 0;
  }

  .collection-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .episode-placeholder {
    min-height: 260px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .collection-hero {
    padding: 120px 0 64px;
  }

  .collection-hero-grid {
    gap: 38px;
  }

  .collection-intro {
    font-size: 1rem;
  }

  .collection-actions {
    flex-direction: column;
  }

  .collection-actions .button {
    width: 100%;
  }

  .collection-stats {
    padding: 0;
  }

  .collection-stat {
    padding: 22px 16px;
  }

  .collection-stat strong {
    font-size: 2.25rem;
  }

  .collection-stat span {
    font-size: .78rem;
  }

  .binder-preview {
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
  }

  .binder-slot {
    border-radius: 7px;
  }

  .binder-slot::before {
    inset: 5px;
    border-radius: 4px;
  }

  .binder-slot:hover {
    transform: translateY(-2px) scale(1.015);
  }

  .section-heading {
    align-items: flex-start;
  }

  .binder-count {
    margin-top: 4px;
  }

  .episode-placeholder {
    min-height: 230px;
  }

  .collection-closing {
    padding: 72px 0;
  }
}