/* ============================================================
   shared-chrome.css — Canonical nav + footer styles
   Loaded on every page AFTER inline <style> so these win.
   ============================================================ */

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,240,235,0.06);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 72px; width: auto; display: block; }
.nav-links { display: flex; gap: 0; list-style: none; position: relative; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(245,240,235,0.55);
  text-decoration: none; padding: 8px 16px; display: block; transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #f5f0eb; }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.has-dropdown::after {
  content: ""; display: block; position: absolute;
  bottom: -14px; left: 0; right: 0; height: 14px;
}
.dropdown {
  position: absolute; top: 100%; left: 0; background: #141414;
  border: 1px solid rgba(245,240,235,0.08); min-width: 260px; padding: 8px 0;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s; z-index: 200;
}
.dropdown a {
  display: block; padding: 11px 20px; font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,235,0.55);
  text-decoration: none;
  transition: color 0.15s, background 0.15s, border-left-color 0.15s;
  border-left: 2px solid transparent;
}
.dropdown a:hover {
  color: #f5f0eb; background: rgba(245,240,235,0.03);
  border-left-color: #f27d0c;
}
.mega-menu { display: flex !important; padding: 0 !important; }
.mega-col { flex: 1; padding: 8px 0; }
.mega-col + .mega-col { border-left: 1px solid rgba(245,240,235,0.06); }
.mega-col a { white-space: nowrap; }
.nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: #0a0a0a;
  background: linear-gradient(135deg, #c0187a 0%, #d42b2b 45%, #f27d0c 100%);
  border: none; padding: 12px 24px; cursor: pointer;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #0a0a0a !important;
  border-top: 1px solid rgba(245,240,235,0.06) !important;
  padding: 64px 0 40px !important;
}
.footer-layout {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
  gap: 52px !important;
  margin-bottom: 52px !important;
}
.footer-tagline {
  font-size: 13px !important; font-weight: 300 !important;
  line-height: 1.68 !important; color: rgba(245,240,235,0.55) !important;
  margin-bottom: 24px !important; max-width: 280px !important;
}
.footer-social { display: flex !important; gap: 12px !important; margin-top: 4px !important; }
.footer-social a {
  width: 36px !important; height: 36px !important;
  border: 1px solid rgba(245,240,235,0.12) !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important; color: rgba(245,240,235,0.55) !important;
  text-decoration: none !important; transition: border-color 0.2s, color 0.2s !important;
}
.footer-social a:hover {
  border-color: #f27d0c !important; color: #f27d0c !important;
}
.footer-col-title {
  font-size: 10px !important; font-weight: 500 !important;
  letter-spacing: 0.2em !important; text-transform: uppercase !important;
  color: #f27d0c !important; margin-bottom: 18px !important;
}
.footer-links { list-style: none !important; display: flex !important; flex-direction: column !important; gap: 10px !important; }
.footer-links a {
  font-size: 13px !important; font-weight: 300 !important;
  color: rgba(245,240,235,0.55) !important; text-decoration: none !important;
  transition: color 0.2s !important;
}
.footer-links a:hover { color: #f5f0eb !important; }
.footer-bottom {
  display: flex !important; align-items: center !important;
  justify-content: space-between !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(245,240,235,0.06) !important;
  font-size: 11px !important; font-weight: 300 !important;
  color: rgba(245,240,235,0.28) !important;
}
.footer-bottom a {
  color: rgba(245,240,235,0.28) !important; text-decoration: none !important;
}
.footer-bottom a:hover { color: rgba(245,240,235,0.6) !important; }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-layout {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
  .footer-bottom {
    flex-direction: column !important; gap: 10px !important; text-align: center !important;
  }
}
@media (max-width: 480px) {
  .footer-layout { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-tagline { max-width: 100% !important; }
}

/* ── PROCESS STEPS — matched to the "Why BEEFY" beat cards ─────── */
.process-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  margin-top: 56px !important;
}
.process-grid .process-step {
  background: #141414 !important;
  padding: 40px 32px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: background 0.3s !important;
}
.process-grid .process-step::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, #c0187a, #f27d0c) !important;
}
.process-grid .process-step::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #c0187a, #f27d0c) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.4s !important;
}
.process-grid .process-step:hover { background: #1c1c1c !important; }
.process-grid .process-step:hover::after { transform: scaleX(1) !important; }
.process-grid .process-num {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #f27d0c !important;
  -webkit-text-fill-color: #f27d0c !important;
  background: none !important;
  opacity: 0.9 !important;
  margin-bottom: 20px !important;
  display: block !important;
}
.process-grid .process-name {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 0.05em !important;
  color: #f5f0eb !important;
  margin-bottom: 12px !important;
  line-height: 1.15 !important;
}
.process-grid .process-desc {
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  color: rgba(245,240,235,0.55) !important;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr !important; }
}
