/* ==============================
   Worthington Forge – Header v2
   ============================== */

.site-header,
.wf-header {
  background: #0f0f12; /* softer than black */
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ==============================
   Worthington Forge – Modern Header
   ============================== */

.wf-header {
  background: #151515;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 2rem;
}

.wf-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wf-logo img {
  height: 54px;
  width: auto;
  opacity: 0.95;
}

.wf-nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.wf-nav a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  position: relative;
  transition: all 0.25s ease;
}

/* subtle underline animation */
.wf-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #d6a34f;
  transition: width 0.3s ease;
}

.wf-nav a:hover::after {
  width: 100%;
}

.wf-nav a:hover {
  color: #ffffff;
}

/* Modern CTA */
.wf-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6a34f, #c18b2f);
  color: #111 !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(214,163,79,0.25);
  transition: all 0.25s ease;
}

.wf-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214,163,79,0.35);
}



/* ==============================
   Worthington Forge – Footer v2
   ============================== */

.site-footer,
.wf-footer {
  background: #121214; /* charcoal, not black */
  color: #cfcfcf;
  
  border-top: 1px solid rgba(255,255,255,0.05);
}

.wf-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.wf-footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6a34f;
  margin-bottom: 1.3rem;
}

.wf-footer a {
  color: #bcbcbc;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.wf-footer a:hover {
  color: #ffffff;
}

.wf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #8a8a8a;
}
