/* Shared: tokens, base, footer (all pages) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #660066; --purple-dark: #4d004d; --purple-light: #f5e6f5;
  --yellow: #ffcc00; --yellow-dark: #c49a00; --yellow-pale: #fffae0;
  --blue: #0099ff; --blue-light: #e6f5ff;
  --ink: #1a1a1a; --ink-muted: #555; --ink-faint: #999;
  --bg: #ffffff; --bg-soft: #f8f7f9; --border: #e5e0e8;
  --fd: 'Rubik', sans-serif; --fb: 'Lato', sans-serif;
  --r: 5px; --rlg: 10px;
}
html { scroll-behavior: smooth; }

/* Skip-to-content */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--purple); color: #fff; padding: .5rem 1rem; border-radius: var(--r); z-index: 300; font-size: .875rem; text-decoration: none; }
.skip-link:focus { top: .75rem; }

/* Focus states */
:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
body { font-family: var(--fb); background: var(--bg); color: var(--ink); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }

/* SITE HEADER (all pages) */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 4rem; height: 70px; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
nav.scrolled { border-color: var(--border); box-shadow: 0 2px 16px rgba(102,0,102,.07); }
.nav-logo { display: flex; align-items: center; gap: 6px; text-decoration: none; }
.nav-logo-text { font-family: var(--fd); font-style: italic; font-weight: 900; font-size: 1.6rem; color: var(--purple); letter-spacing: -.03em; line-height: 1; }
.nav-logo svg { width: 18px; height: 26px; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: .9rem; color: var(--ink-muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--purple); }
.nav-cta { font-size: .875rem; font-weight: 700; padding: .6rem 1.4rem; background: var(--purple); color: #fff; border: none; border-radius: var(--r); text-decoration: none; transition: background .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--purple-dark); }

/* FOOTER */
footer { background: #1a0a1a; padding: 3.5rem 4rem 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 1.5rem; }
.f-brand { display: flex; flex-direction: column; gap: .5rem; }
.f-logo { font-family: var(--fd); font-style: italic; font-weight: 900; font-size: 1.6rem; color: #fff; letter-spacing: -.03em; display: flex; align-items: center; gap: 5px; }
a.f-logo { text-decoration: none; color: #fff; }
a.f-logo:hover { color: rgba(255,255,255,.92); }
.f-logo svg { width: 18px; height: 26px; }
.f-tagline { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.35); letter-spacing: .02em; line-height: 1.6; }
.footer-top .f-links { display: flex; gap: 4rem; }
.f-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .75rem; }
.f-col a { display: block; font-size: .875rem; font-weight: 300; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: .4rem; transition: color .2s; }
.f-col a:hover { color: var(--yellow); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.f-copy { font-size: .78rem; color: rgba(255,255,255,.2); }
.f-legal { display: flex; gap: 1.5rem; }
.f-legal a { font-size: .78rem; color: rgba(255,255,255,.2); text-decoration: none; transition: color .2s; }
.f-legal a:hover { color: rgba(255,255,255,.45); }

@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-top .f-links { gap: 2rem; flex-wrap: wrap; }
  .footer-bot { flex-direction: column; text-align: center; }
}
