/* 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: 55vh;
  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;
  width: 100%;
}
.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;
}

/* ── Audience blocks ────────────────────────────────────────────────────── */
.sb-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 2rem;
  text-align: left;
}

.sb-audience__block {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.25rem 1.1rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}
.sb-audience__block:hover {
  background: var(--clr-surface2);
}
.sb-audience__block:hover .sb-audience__cta {
  color: var(--clr-accent);
}

.sb-audience__label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-text);
}
.sb-audience__block--brands .sb-audience__label {
  color: var(--clr-accent);
}
.sb-audience__block--creators .sb-audience__label {
  color: var(--clr-primary);
}

.sb-audience__title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--clr-text);
}

.sb-audience__desc {
  font-size: .8rem;
  color: var(--clr-muted);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

.sb-audience__cta {
  font-size: .72rem;
  font-weight: 600;
  color: var(--clr-muted);
  margin-top: .4rem;
  transition: color var(--transition);
}

/* Mobile: stack vertically */
@media (max-width: 600px) {
  .sb-audience {
    grid-template-columns: 1fr;
  }
}

/* ── Sections ──────────────────────────────────────────────────────────── */
.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;
}

.marg-left-right {
  margin-left: 1rem; 
  margin-right: 1rem;
}

/*
 * 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%.
 */