/* ============================================
   POWERS STAFFING GROUP — Shared Stylesheet
   powersstaffinggroup.com
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:        #0B1F3A;
  --navy-mid:    #152E52;
  --navy-light:  #1E3F6B;
  --gold:        #B8963E;
  --gold-light:  #D4AF6A;
  --gold-pale:   #F5EDD8;
  --cream:       #F8F7F4;
  --white:       #FFFFFF;
  --slate:       #4A5568;
  --slate-light: #718096;
  --border:      #E2E0D8;
  --text:        #1A202C;
  --max:         1100px;
  --pad:         2.5rem;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.w { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: 5.5rem 0; }

/* ── SKIP NAV ── */
.skip-nav {
  position: absolute; top: -40px; left: 0;
  background: var(--gold); color: var(--navy);
  padding: 8px 16px; z-index: 999;
  font-weight: 500; text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-nav:focus { top: 0; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,31,58,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,150,62,0.2);
}
.nav-w {
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad); height: 62px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-main { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: #fff; letter-spacing: 0.01em; }
.nav-brand-sub  { font-size: 10px; font-weight: 300; color: var(--gold-light); letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 12px; letter-spacing: 0.04em;
  transition: color 0.2s; padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.nav-links a:focus { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 7px 16px !important; border-radius: 2px;
  font-weight: 500 !important; font-size: 11px !important;
  letter-spacing: 0.08em !important; text-transform: uppercase;
  transition: background 0.2s !important; border-bottom: none !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta.active { border-bottom: none !important; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--navy);
  padding: 13px 26px; text-decoration: none;
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.2s;
  cursor: pointer; border: none;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.28); color: rgba(255,255,255,0.78);
  padding: 13px 26px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold-light); color: #fff; }
.btn-navy {
  display: inline-flex; align-items: center;
  background: var(--navy); color: #fff;
  padding: 13px 26px; text-decoration: none;
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline-navy {
  display: inline-flex; align-items: center;
  border: 1px solid var(--navy); color: var(--navy);
  padding: 13px 26px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.2s;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-outline-lt {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.28); color: rgba(255,255,255,0.75);
  padding: 13px 26px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.2s;
}
.btn-outline-lt:hover { border-color: var(--gold-light); color: #fff; }
.btn-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── TYPE ATOMS ── */
.tag {
  font-size: 10px; font-weight: 500; color: var(--gold);
  letter-spacing: 0.17em; text-transform: uppercase;
  margin-bottom: 0.875rem; display: block;
}
.h1-hero {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.25rem);
  font-weight: 500; color: #fff;
  line-height: 1.1; margin-bottom: 1.25rem; max-width: 680px;
}
.h1-hero em { font-style: italic; color: var(--gold-light); }
.h2-dk {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.25rem);
  font-weight: 500; color: var(--navy);
  line-height: 1.2; margin-bottom: 1rem;
}
.h2-lt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.25rem);
  font-weight: 500; color: #fff;
  line-height: 1.2; margin-bottom: 1rem;
}
.body-dk { font-size: 0.95rem; color: var(--slate); line-height: 1.75; max-width: 520px; }
.body-lt { font-size: 0.95rem; color: rgba(255,255,255,0.58); line-height: 1.75; max-width: 520px; }

/* ── CERT STRIP ── */
.cert-strip { background: var(--navy-mid); border-bottom: 1px solid rgba(184,150,62,0.16); }
.cert-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cert-lbl { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.28); letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }
.cert-div { width: 1px; height: 18px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.cert-items { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.cert-item { font-size: 11px; font-weight: 500; color: var(--gold-light); letter-spacing: 0.04em; display: flex; align-items: center; gap: 5px; }
.cert-chk { width: 13px; height: 13px; background: rgba(184,150,62,0.16); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 7px; color: var(--gold); flex-shrink: 0; line-height: 1; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); padding: 5rem 0 4.5rem; position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,150,62,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(184,150,62,0.06) 1px,transparent 1px); background-size: 64px 64px; pointer-events: none; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 1.5rem; }
.breadcrumb a { font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { font-size: 11px; color: rgba(255,255,255,0.2); }
.breadcrumb-cur { font-size: 11px; color: var(--gold-light); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.stat { padding: 0 2rem 0 0; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 2rem; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 500; color: var(--gold-light); display: block; }
.stat-l { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.42); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-top: 3px; }

/* ── CARDS ── */
.card-white { background: var(--white); border: 1px solid var(--border); padding: 1.75rem; border-radius: 2px; transition: border-color 0.2s; }
.card-white:hover { border-color: var(--gold); }
.card-navy { background: var(--navy); border-radius: 2px; padding: 2.25rem; }
.card-navy-border { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,62,0.2); border-radius: 2px; padding: 2.25rem; }

/* ── LABOR CATEGORY TAGS ── */
.cats { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 2rem; list-style: none; }
.cat-lt { font-size: 11px; font-weight: 500; letter-spacing: 0.04em; padding: 4px 11px; border-radius: 2px; background: rgba(184,150,62,0.14); color: var(--gold-light); border: 1px solid rgba(184,150,62,0.22); }
.cat-dk { font-size: 11px; font-weight: 500; letter-spacing: 0.04em; padding: 4px 11px; border-radius: 2px; background: rgba(11,31,58,0.06); color: var(--navy); border: 1px solid rgba(11,31,58,0.13); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.fq { border: 1px solid var(--border); border-radius: 2px; padding: 1.75rem; background: var(--white); }
.fq-q { font-size: 0.92rem; font-weight: 500; color: var(--navy); margin-bottom: 0.625rem; }
.fq-a { font-size: 0.85rem; color: var(--slate); line-height: 1.7; }

/* ── FOOTER ── */
footer { background: #070F1E; padding: 3.5rem 0 2rem; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ft-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: #fff; margin-bottom: 3px; }
.ft-sub { font-size: 10px; color: var(--gold); letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.ft-desc { font-size: 12px; color: rgba(255,255,255,0.33); line-height: 1.7; max-width: 260px; }
.ft-col-h { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.28); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.ft-links { display: flex; flex-direction: column; gap: 0.625rem; }
.ft-links a { font-size: 12px; color: rgba(255,255,255,0.43); text-decoration: none; transition: color 0.2s; }
.ft-links a:hover { color: var(--gold-light); }
.ft-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ft-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.ft-badge { font-size: 10px; color: var(--gold); letter-spacing: 0.1em; background: rgba(184,150,62,0.1); border: 1px solid rgba(184,150,62,0.2); padding: 4px 10px; border-radius: 2px; }

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11,31,58,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(184,150,62,0.2);
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav-drawer a:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.nav-drawer a:hover { color: var(--gold-light); }
.nav-drawer a.active { color: var(--gold-light); }
.nav-drawer .drawer-cta {
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 2px;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  border: none !important;
}
.nav-drawer .drawer-cta:hover { background: var(--gold-light); }
.nav-drawer-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.5rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --pad: 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat + .stat { border-left: none; padding-left: 0; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .h2-dk, .h2-lt { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .ft-top { grid-template-columns: 1fr; }
}

/* ── SHARED NAV + FOOTER HTML snippets are inlined per page ── */
