/* ============================================================
   SHARED.CSS — Jennifer Wuorinen Portfolio
   Used by all 9 pages.
   Page-specific styles live in each page's <style> block.
   Case-study-specific styles live in case-study.css.
============================================================ */

/* ── Custom Properties ── */
:root {
  --orange:        #FF6B1A;
  --orange-light:  #FF8C47;
  --orange-glow:   rgba(255,107,26,0.07);
  --purple:        #7B3FBF;
  --purple-light:  #9D64D8;
  --purple-glow:   rgba(123,63,191,0.06);
  --black:         #0A0A0B;
  --surface:       #111114;
  --surface-2:     #18181C;
  --surface-3:     #222228;
  --border:        rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.14);
  --text-primary:  #F0EEF5;
  --text-secondary:#A8A3B8;
  --text-muted:    #5C5870;
  --font-display:  'Urbanist', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --container:     1200px;
  --content-width: 1200px;
  --wide-width:    1400px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--black); color: var(--text-primary); font-family: var(--font-body); line-height: 1.6; padding-top: 52px; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Navigation ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,11,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 52px;
}
.site-nav__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; max-width: 1200px;
  margin: 0 auto; padding: 0 40px; height: 52px;
}
.site-nav__left  { display: flex; gap: 28px; align-items: center; }
.site-nav__right { display: flex; gap: 28px; align-items: center; justify-content: flex-end; }
.site-nav__logo  {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--text-primary); text-align: center;
}
.site-nav__logo span { color: var(--orange); }
.site-nav__left a, .site-nav__right a {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--text-secondary);
  transition: color 0.2s; white-space: nowrap;
}
.site-nav__left a:hover,  .site-nav__right a:hover,
.site-nav__left a.active, .site-nav__right a.active { color: var(--text-primary); }
.site-nav__left a.active, .site-nav__right a.active { color: var(--orange); }
.site-nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
  justify-self: end;
}
.site-nav__burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform .3s, opacity .3s; }
.site-nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__burger.open span:nth-child(2) { opacity: 0; }
.site-nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav__mobile {
  display: none; position: fixed; inset: 0; top: 52px;
  background: rgba(10,10,11,0.97); backdrop-filter: blur(20px);
  z-index: 99; flex-direction: column; align-items: flex-start;
  justify-content: flex-start; padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.site-nav__mobile.open { display: flex; }
.site-nav__mobile::before {
  content: 'MENU'; font-family: var(--font-display); font-size: 10px;
  font-weight: 700; letter-spacing: 0.25em; color: var(--text-muted); margin-bottom: 16px;
}
.site-nav__mobile a {
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  color: var(--text-secondary); letter-spacing: -0.01em; line-height: 1;
  transition: color .2s, transform .2s; display: block; padding: 16px 0;
  width: 100%; border-bottom: 1px solid rgba(255,107,26,0.2);
}
.site-nav__mobile a:first-child { border-top: 1px solid rgba(255,107,26,0.2); }
.site-nav__mobile a:hover { color: var(--orange); transform: translateX(6px); }
@media (max-width: 768px) {
  .site-nav__left  { display: none; }
  .site-nav__right { display: none; }
  .site-nav__burger { display: flex; }
  .site-nav__inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 600px) { .site-nav__inner { padding: 0 24px; } }

/* ── Footer ── */
.footer { padding: 32px 0; border-top: 1px solid var(--border); background: var(--black); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; }
.footer__logo  { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.footer__logo span { color: var(--orange); }
.footer__copy  { font-size: 12px; color: var(--text-muted); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--text-primary); }
@media (max-width: 600px) {
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer__links { justify-content: center; }
}

/* "— Coming Soon" muted label used in card titles */
.cs-coming-soon { color: var(--text-muted); font-weight: 300; }
