/* Homepage card sections — single column, full width */
.grid-cards--stack {
  grid-template-columns: 1fr;
}
/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — sandbar-inspired layout (shared across all locales)
   ═══════════════════════════════════════════════════════════ */

.sb-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.sb-hero__bg {
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.032'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 90% 70% at 55% 25%, rgba(196,98,45,.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(197,160,40,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(197,160,40,.04) 0%, transparent 50%),
    var(--clr-bg);
}
.sb-hero__content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem 8vh;
  max-width: 720px;
}
.sb-hero__title {
  font-size: clamp(2.8rem, 8vw, 5.3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}

/* "and fans" tag floated above the "Creators" word */
.sb-hero__word {
  position: relative;
  display: inline-block;
}
.sb-hero__tag {
  font-size: 0.15em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--clr-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* Title word links — inherit all visual styles, no underline */
.sb-hero__title-link {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}
.sb-hero__title-link:hover {
  opacity: 0.75;
}

.sb-hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--clr-muted);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.sb-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.sb-section { padding: 4.5rem 0; }
.sb-section--alt {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.sb-section__more { text-align: center; margin-top: 2rem; }

.sb-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -.025em;
  margin-bottom: 2rem;
}
.sb-h2__link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.sb-h2__link:hover { color: var(--clr-primary); }

/*
 * ── Dual grid (both columns) ────────────────────────────────
 * Flat 2-col CSS Grid. Cards from both columns are direct grid
 * children — pairs in the same grid row share identical height
 * automatically. No JS, no sub-grid hacks.
 */
.sb-dual {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3rem;
  row-gap: 1rem;
  align-items: stretch;
}

/*
 * Cell wrapper ensures the grid always has a box even when the
 * card slot is empty (mismatched column lengths).
 * The card inside fills the full cell height via height: 100%.
 */
.sb-dual__cell {
  display: flex;
  flex-direction: column;
}
.sb-dual__cell > * {
  flex: 1;
  height: 100%;
  min-height: 0;
}

/* Single-column fallback (only clashes OR only duels) */
.sb-dual--single {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.sb-dual--single .sb-dual__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sb-dual--single .grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 769px) {
  .sb-dual {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Collapse to single column */
  .sb-dual {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  /* Reorder: clashes block first, then duels block */
  .sb-dual__heading--clash { order: 1; margin-bottom: 0; }
  .sb-dual__cell--clash    { order: 2; }
  .sb-dual__more--clash    { order: 3; margin-bottom: 2.5rem; }
  .sb-dual__heading--duel  { order: 4; }
  .sb-dual__cell--duel     { order: 5; }
  .sb-dual__more--duel     { order: 6; }

  .sb-dual--single { flex-direction: column; gap: 2.5rem; align-items: stretch; }
  .sb-dual--single .sb-dual__col { width: 100%; }
}

.sb-link {
  font-size: .9rem;
  color: var(--clr-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.sb-link:hover { color: var(--clr-text); }

.sb-timeline-header { margin-bottom: 2rem; }
.sb-timeline-header__name {
  font-size: 1rem;
  color: var(--clr-muted);
  margin-top: .35rem;
}

.timeline {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 1px;
  background: var(--clr-border);
}
.timeline__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: .9rem 0;
  position: relative;
  opacity: .55;
  transition: opacity var(--transition);
}
.timeline__item--active { opacity: 1; }
.timeline__item--past   { opacity: .75; }

.timeline__step {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.timeline__item--active .timeline__step {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}
.timeline__num {
  font-size: .72rem;
  font-weight: 600;
  color: var(--clr-muted);
}
.timeline__item--active .timeline__num { color: #fff; }

.timeline__body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-top: .35rem;
}
.timeline__label  { font-size: .9rem; font-weight: 500; }
.timeline__dates  { font-size: .78rem; color: var(--clr-muted); }
.timeline__meta   { font-size: .75rem; color: var(--clr-muted); font-style: italic; }