/* ==========================================================================
   Belec 2026 — Base typography & layout utilities
   ========================================================================== */

/* Shell / container ------------------------------------------------------- */
.bel-shell {
  width: 100%;
  max-width: var(--bel-shell-max);
  margin: 0 auto;
  padding: 0 var(--bel-gutter);
}
.bel-shell--wide { max-width: none; }

/* Type helpers ------------------------------------------------------------ */
.bel-eyebrow {
  font-family: var(--bel-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bel-muted);
}
.bel-mono { font-family: var(--bel-font-mono); }

.bel-display {
  font-family: var(--bel-font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: .98;
}

.bel-section-title {
  font-family: var(--bel-font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.bel-section-title em { color: var(--bel-gold-lo); font-style: normal; }

.bel-section-sub {
  margin-top: 8px;
  color: var(--bel-muted);
  font-size: 14px;
  max-width: 540px;
}

/* Section head row (title + link) */
/* margin-block (not `margin: 56px 0`) so the horizontal `margin: 0 auto` from
   .bel-shell survives — otherwise the shorthand zeroes left/right and pins
   `.bel-shell.bel-section` blocks to the left on wide screens. */
.bel-section { margin-block: 56px; }
.bel-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bel-section__more {
  font-family: var(--bel-font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--bel-ink);
  padding-bottom: 2px;
  white-space: nowrap;
}
.bel-section__more:hover { color: var(--bel-gold-lo); border-color: var(--bel-gold-lo); }

/* Visually-hidden (a11y) */
.bel-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Generic helpers */
.bel-flex { display: flex; }
.bel-items-center { align-items: center; }
.bel-gap-8 { gap: 8px; }
.bel-gap-12 { gap: 12px; }
.bel-mt-auto { margin-top: auto; }
.bel-hide { display: none !important; }

/* Page scroll lock when a drawer/menu is open */
body.bel-no-scroll { overflow: hidden; }

/* Breadcrumb (mono) */
.bel-crumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: var(--bel-font-mono);
  font-size: 11px;
  color: var(--bel-muted);
}
.bel-crumb a:hover { color: var(--bel-ink); }
.bel-crumb__sep { opacity: .4; }
