/* ============================================================
   NORTHERN FORGE CONSTRUCTION — Base Typography & Global
   ============================================================ */

/* SKIP TO CONTENT */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
}
.skip-to-content:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

/* FOCUS STYLES */
*:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 2px; }
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

/* LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-black { background: var(--black); color: var(--white); }
.section-black .section-header h2 { color: var(--white); }
.section-black .section-header p { color: rgba(255,255,255,.58); }
.section-beige { background: var(--beige-light); }
.section-alt { background: var(--off-white); }
.section-charcoal { background: var(--charcoal); color: var(--white); }
.section-charcoal .section-header h2 { color: var(--white); }
.section-charcoal .section-header p { color: rgba(255,255,255,.65); }

/* TYPOGRAPHY */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 12px;
}
.section-tag.light { color: var(--green-light); }
.section-tag.blue { color: #5aaeff; }
.section-tag.red { color: #ff8a9a; }
.section-tag.orange { color: var(--orange); }
.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}
.section-header p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* HIDDEN (for JS filter) */
.hidden { display: none !important; }

/* RESPONSIVE MEDIA QUERIES — base */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
}
@media (max-width: 480px) {
  .section { padding: 40px 0; }
}
