/* ═══════════════════════════════════════════════════════════
   getinked.ie — Shared Design System
   Injected by nginx into every page alongside GA.
   Edit here to update nav/footer/tokens across the whole site.
═══════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --black:  #0D0D0D;
  --dark:   #1A1A1A;
  --mid:    #2A2A2A;
  --cream:  #FAF5E8;
  --orange: #E85420;
  --grey:   #666;
  --lgrey:  #999;
  --warm:   #BDB8AE;
}

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--black);
  border-bottom: 2px solid var(--orange);
}
.nav-logo {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: -.01em;
  color: var(--cream); text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-link {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--grey); transition: color .2s; text-decoration: none;
}
.nav-link:hover { color: var(--cream); }
.nav-cta {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: .65rem; font-weight: 900;
  letter-spacing: .15em; text-transform: uppercase;
  background: var(--orange); color: var(--cream);
  padding: 10px 22px;
  border: 2px solid var(--orange);
  box-shadow: 3px 3px 0 var(--cream);
  transition: box-shadow .15s, transform .15s;
  text-decoration: none;
}
.nav-cta:hover { box-shadow: 5px 5px 0 var(--cream); transform: translate(-1px,-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid rgba(250,245,232,.2);
  padding: 10px 14px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--cream); transition: transform .3s, opacity .25s;
}
body.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--black); z-index: 10001;
  flex-direction: column; padding: 100px 40px 48px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900; font-size: clamp(2.5rem,10vw,4.5rem);
  text-transform: uppercase; letter-spacing: -.02em;
  padding: 16px 0; border-bottom: 1px solid rgba(250,245,232,.08);
  display: block; transition: color .2s; color: var(--cream); text-decoration: none;
}
.nav-overlay a:hover { color: var(--orange); }
.nav-overlay .nav-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: var(--cream);
  font-size: 2rem; cursor: pointer; line-height: 1;
}
body.nav-open { overflow: hidden; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 2px solid var(--orange);
  padding: 48px 72px;
  display: flex; flex-wrap: wrap;
  gap: 24px; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900; font-size: 1.4rem; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
}
.footer-logo span { color: var(--orange); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-link {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey); transition: color .15s; text-decoration: none;
}
.footer-link:hover { color: var(--cream); }
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: .5rem; letter-spacing: .1em;
  color: var(--grey); width: 100%;
}
.footer-copy a { color: var(--grey); text-decoration: none; }
.footer-copy a:hover { color: var(--cream); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  footer { padding: 40px 24px; }
}
@media (max-width: 480px) {
  footer { padding: 32px 16px; }
}
