/* Emplace Consulting — shared base, nav, footer */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:   #1c1c1c;
  --blue:  #2c4a8c;
  --red:   #c0392b;
  --stone: #e8e4dc;
  --chalk: #f8f6f1;
  --grey:  #9a9590;
  --blt:   #7b9fd4;
  --rlt:   #e06b5f;
  --white: #ffffff;
}

body {
  background: #ebe8e3;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  color: var(--ink);
}

/* ── PAGE WRAPPER ── */
.page-label {
  font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase;
  color: #888; text-align: center; padding: 48px 0 20px;
}

.browser {
  width: 1100px;
  margin: 0 auto 80px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 20px 60px rgba(0,0,0,0.16), 0 60px 120px rgba(0,0,0,0.10);
}

.browser-bar {
  background: #e8e6e3;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #d8d5d1;
}
.dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.url-bar {
  flex: 1; background: #fff; border-radius: 6px; padding: 5px 14px;
  font-size: 12px; color: #666; letter-spacing: 0.02em;
  border: 1px solid #d0cdc9;
}

.page { background: var(--chalk); }

/* ── SHARED NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--blue) 33.33%, #d4cfc8 33.33% 66.66%, var(--red) 66.66%);
}

.nav-logo svg { display: block; width: 200px; height: auto; }

.nav-links {
  display: flex; gap: 40px; align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--grey); text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--blue); }
.nav-cta {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--white) !important;
  background: var(--red); padding: 10px 22px; border-radius: 2px;
}
.nav-cta:hover { background: var(--ink) !important; color: var(--white) !important; }

/* ── SHARED FOOTER ── */
footer {
  background: var(--ink);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-col-head {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-link {
  display: block; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.55); text-decoration: none;
  line-height: 2.1; letter-spacing: 0.02em;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-tagline {
  font-size: 11px; color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em; line-height: 1.8; margin-top: 8px;
}
.footer-bottom {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-legal {
  font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 0.12em;
}
