/* ============================================================
   NORTHERN FORGE CONSTRUCTION — Utilities
   ============================================================ */

/* ── TEXT ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-white  { color: var(--white) !important; }
.text-green  { color: var(--green) !important; }
.text-orange { color: var(--orange) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-light  { color: var(--text-light) !important; }
.text-sm     { font-size: 14px; }
.text-xs     { font-size: 12px; }
.text-lg     { font-size: 18px; }
.text-xl     { font-size: 22px; }
.fw-700      { font-weight: 700; }
.fw-800      { font-weight: 800; }
.fw-900      { font-weight: 900; }
.uppercase   { text-transform: uppercase; letter-spacing: .08em; }

/* ── DISPLAY ─────────────────────────────────────────────── */
.d-flex       { display: flex; }
.d-grid       { display: grid; }
.d-block      { display: block; }
.d-inline     { display: inline; }
.d-none       { display: none; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.flex-col     { flex-direction: column; }
.gap-8        { gap: 8px; }
.gap-12       { gap: 12px; }
.gap-16       { gap: 16px; }
.gap-24       { gap: 24px; }
.gap-32       { gap: 32px; }
.gap-48       { gap: 48px; }

/* ── SPACING ─────────────────────────────────────────────── */
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-0   { padding: 0; }
.p-16  { padding: 16px; }
.p-24  { padding: 24px; }
.p-32  { padding: 32px; }
.p-48  { padding: 48px; }

/* ── VISIBILITY ──────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none !important; }
.invisible { visibility: hidden; }

/* ── SHOW/HIDE BY BREAKPOINT ─────────────────────────────── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .show-mobile-only { display: none !important; }
}

/* ── BORDERS & RADIUS ────────────────────────────────────── */
.rounded    { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: 9999px; }

/* ── BACKGROUNDS ─────────────────────────────────────────── */
.bg-white     { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-black     { background: var(--black); }
.bg-green     { background: var(--green); }

/* ── OVERFLOW ────────────────────────────────────────────── */
.overflow-hidden { overflow: hidden; }

/* ── WIDTH HELPERS ───────────────────────────────────────── */
.w-full { width: 100%; }
.max-w-780 { max-width: 780px; margin-left: auto; margin-right: auto; }
.max-w-640 { max-width: 640px; margin-left: auto; margin-right: auto; }
