/* ── Purple Visuals — Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --dark: #141312;
  --dark-2: #1c1a18;
  --dark-3: #252220;
  --off-white: #F5F2EE;
  --off-white-2: #EDE9E4;
  --muted: #6e6b67;
  --muted-light: #9e9b97;
  --purple: oklch(0.55 0.2 290);
  --purple-dim: oklch(0.38 0.16 290);
  --purple-bright: oklch(0.68 0.2 290);
  --border-dark: rgba(245,242,238,0.08);
  --border-light: rgba(20,19,18,0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
}
.logo svg { flex-shrink: 0; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.35s, border-color 0.35s, padding 0.35s;
}
.site-nav.scrolled {
  background: rgba(20,19,18,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 48px;
}
.site-nav.light {
  color: var(--dark);
}
.site-nav.light.scrolled {
  background: rgba(245,242,238,0.94);
  border-bottom: 1px solid var(--border-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.6);
  transition: color 0.2s;
}
.site-nav.light .nav-links a { color: var(--muted); }
.nav-links a:hover,
.site-nav.light .nav-links a:hover { color: inherit; }
.nav-links a.active { color: var(--off-white); }
.site-nav.light .nav-links a.active { color: var(--dark); }

/* ── BURGER ── */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border-radius: 100px;
  position: relative;
  z-index: 410;
}
.nav-burger-bars { position: relative; width: 22px; height: 14px; }
.nav-burger-bars span {
  position: absolute; left: 0; right: 0;
  height: 1.5px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s, top 0.3s, opacity 0.2s;
}
.site-nav.light .nav-burger-bars span { background: var(--dark); }
.nav-burger-bars span:nth-child(1) { top: 0; }
.nav-burger-bars span:nth-child(2) { top: 6px; }
.nav-burger-bars span:nth-child(3) { top: 12px; }
.nav-burger.open .nav-burger-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-burger.open .nav-burger-bars span:nth-child(2) { opacity: 0; }
.nav-burger.open .nav-burger-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
.nav-burger.open .nav-burger-bars span { background: var(--off-white); }

.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(14,13,12,0.97);
  backdrop-filter: blur(20px);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--off-white);
  text-decoration: none;
}
.nav-drawer a.active { color: var(--purple-bright, var(--purple)); }
.nav-drawer .drawer-cta { margin-top: 16px; }
body.drawer-open { overflow: hidden; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  padding: 13px 28px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }
.btn-purple { background: var(--purple); color: var(--off-white); font-weight: 700; }
.btn-purple:hover { background: var(--purple-bright); }
.btn-white { background: var(--off-white); color: var(--dark); }
.btn-white:hover { background: #fff; }
.btn-outline-white { background: transparent; color: var(--off-white); border: 1px solid rgba(245,242,238,0.3); }
.btn-outline-white:hover { border-color: var(--off-white); background: rgba(245,242,238,0.06); transform: scale(1.03); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 1px solid rgba(20,19,18,0.2); }
.btn-outline-dark:hover { border-color: var(--dark); background: rgba(20,19,18,0.04); }

/* ── SECTION LABELS ── */
.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.label-muted { color: var(--muted-light); }
.label-purple { color: var(--purple); }

/* ── PLACEHOLDER IMAGES ── */
.placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.placeholder-stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -50deg,
    transparent,
    transparent 22px,
    rgba(255,255,255,0.025) 22px,
    rgba(255,255,255,0.025) 23px
  );
}
.placeholder-label {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  opacity: 0.35;
}

/* ── REVEALS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: var(--off-white);
  padding: 72px 48px 40px;
  border-top: 1px solid var(--border-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 32px;
}
.footer-brand-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 220px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,242,238,0.6);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--off-white); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .site-nav { padding: 20px 20px; }
  .site-nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .site-nav > .btn { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
