/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f7f6f3;
  --ink: #0f0f0e;
  --ink-muted: #7a7974;
  --ink-faint: #c4c2bc;
  --accent: #ff2d78;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  cursor: none;
  overflow-x: hidden;
}

/* ── CURSOR ── */
#cursor-orb {
  position: fixed;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,100,160,0.28) 0%, rgba(255,100,160,0.0) 70%);
  box-shadow: 0 0 32px 14px rgba(255,100,160,0.10), 0 0 80px 30px rgba(255,100,160,0.04);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease;
  mix-blend-mode: multiply;
}
#cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,100,160,0.7);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 56px;
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-logo:hover { color: var(--accent); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; background: var(--ink); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 160px 56px 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15,15,14,0.08);
}
.page-title {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}
.page-subtitle {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s ease forwards;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(15,15,14,0.07);
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.footer-year {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 20px; }
  .page-header { padding: 120px 24px 48px; flex-direction: column; gap: 12px; align-items: flex-start; }
  footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
}
