/* ══════ DIGITAL CRAFT — same tokens as the rest of the site ══════ */
    :root {
      --canvas: #060912;
      --surface: #0c1122;
      --surface-plus: #11182b;
      --accent: #d49a2e;
      --accent-soft: #f4d39e;
      --ink: #e5e7f0;
      --ink-muted: rgba(190,200,220,0.88);
      --border: rgba(255,255,255,0.08);
      --glass-border: rgba(255,255,255,0.11);
      --rule: rgba(255,255,255,0.09);
      --rule-soft: rgba(255,255,255,0.055);
      --radius-sm: 6px;
      --radius-md: 9px;
      --radius-lg: 14px;
      --transition-fast: 0.18s ease-out;
      --transition-med: 0.3s ease-out;
      --max-width: 1100px;
      --breakpoint-nav: 768px;
      --nav-height: 52px;
      --nav-height-mobile: 44px;

      /* ── Type scale — marketing weight, fluid across screens ── */
      --fs-label:         clamp(11px, 0.6vw + 8px, 12px);   /* eyebrows, tags, stat labels */
      --fs-body:          clamp(16px, 0.35vw + 14px, 18px); /* all running copy */
      --fs-item-title:    clamp(19px, 0.5vw + 16px, 22px);  /* service / column / experience names */
      --fs-lead:          clamp(22px, 1.2vw + 14px, 30px);  /* intro lead, CTA headline */
      --fs-section-title: clamp(26px, 1.6vw + 15px, 38px);
      --fs-stat:          clamp(34px, 3.5vw + 10px, 56px);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { font-size: 15px; scroll-behavior: smooth; }
    body {
      background: var(--canvas);
      color: var(--ink);
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-weight: 300;
      line-height: 1.6;
    }
    a:focus-visible, button:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    /* ══════ THE MOSAIC — full-page living mosaic backdrop ══════ */
    .mosaic-bg {
      position: fixed; inset: 0;
      z-index: 0;
      overflow: hidden;
      background: radial-gradient(140% 160% at 50% 46%, #0a111f 0%, #060a14 55%, #04060c 100%);
    }
    .mosaic-bg canvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%; display: block;
    }
    .mosaic-bg::after {
      content: ""; position: absolute; inset: 0;
      pointer-events: none;
      background: radial-gradient(120% 120% at 50% 46%, rgba(4,6,12,0) 58%, rgba(4,6,12,0.4) 100%);
    }

    /* ── Top Navigation ── */
    .nav-bar {
      display: flex; align-items: center;
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      background: linear-gradient(to bottom, rgba(10,15,30,0.72), rgba(6,9,18,0.58));
      backdrop-filter: blur(14px) saturate(1.15);
      -webkit-backdrop-filter: blur(14px) saturate(1.15);
      border-bottom: 1px solid var(--glass-border);
      padding: 0 clamp(20px, 3vw, 40px);
      height: 52px;
    }
    
    .nav-logo {
      font-family: 'Orbitron', sans-serif;
      font-weight: 500; font-size: 24px;
      letter-spacing: 0.14em;
      color: var(--accent);
      text-transform: uppercase; text-decoration: none;
      display: flex; align-items: center; gap: 4px;
    }
    .nav-links { display: flex; align-items: center; gap: 24px; }
    .nav-links a {
      position: relative;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 300; font-size: 13px;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink-muted); text-decoration: none;
      padding: 2px 0 4px 0;
      transition: color var(--transition-fast);
    }
    .nav-links a::after {
      content: "";
      position: absolute; left: 0; right: 0;
      bottom: -1px;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: center;
      opacity: 0;
      transition: transform var(--transition-fast), opacity var(--transition-fast);
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--ink);
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      transform: scaleX(1);
      opacity: 1;
    }

    .page-wrapper {
      position: relative; z-index: 1;
      padding-top: 52px;
    }

    /* ── Footer: quiet glass strip ── */
    .site-footer {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: clamp(14px, 2vw, 22px) clamp(20px, 4vw, 48px) clamp(18px, 3vw, 28px);
    }
    .footer-bar {
      background: linear-gradient(165deg, rgba(12,18,35,0.58), rgba(7,10,20,0.50));
      backdrop-filter: blur(14px) saturate(1.15);
      -webkit-backdrop-filter: blur(14px) saturate(1.15);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-md);
      box-shadow: 0 8px 32px rgba(0,0,0,0.45),
                  inset 0 1px 0 rgba(255,255,255,0.08);
      padding: 13px 20px;
      text-align: center;
    }
    .footer-text {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 300; font-size: 11px;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(200,210,228,0.8);
    }

    /* ── Animations ── */
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { animation: fade-up 0.3s ease-out both; }

    /* ── Reduced Motion ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
  
/* Unified Container Pattern:
   - Exact alignment for header controls and main content.
   - Same max-width and padding used everywhere.
*/
.site-container {
  width: 100%;
  max-width: 1100px;
  padding: 0 clamp(20px, 4vw, 48px);
  margin: 0 auto;
}

/* Header wrapper: same alignment rules as content-wrap. */
.header-inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ══════ NAV — Blog item + mobile hamburger (blog parity) ══════ */
.nav-links a.nav-blog::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
  margin-right: 7px;
  vertical-align: middle;
  transition: opacity var(--transition-fast);
}
.nav-links a.nav-blog:hover::before,
.nav-links a.nav-blog.active::before {
  opacity: 1;
  box-shadow: 0 0 8px rgba(212,154,46,0.6);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  width: 44px; height: 44px;
  margin-left: auto;
  background: transparent; border: none;
  cursor: pointer; padding: 0;
}
.nav-toggle-bar {
  width: 20px; height: 2px;
  background: var(--ink-muted);
  transition: transform var(--transition-med), opacity var(--transition-med), background var(--transition-med);
}
.nav-toggle:hover .nav-toggle-bar { background: var(--ink); }
.nav-toggle.open .nav-toggle-bar { background: var(--accent); }
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; top: var(--nav-height-mobile); left: 0; right: 0; z-index: 49;
    display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #060912;
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 20px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: flex; align-items: center;
    min-height: 48px;
    font-weight: 400; font-size: 16px;
    border-top: 1px solid var(--rule-soft);
    padding: 0;
  }
  .nav-links a:first-child { border-top: 0; }
  .nav-links a.active { color: var(--accent-soft); }
  .nav-links a::after { display: none; }
}
@media (min-width: 769px) {
  .nav-toggle { display: none; }
}
