*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --card: #f4f4f4;
  --border: #e2e2e2;
  --purple: #593d8f;
  --purple-light: #7b5cb8;
  --purple-dark: #3d2760;
  --white: #ffffff;
  --gray: #666666;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  letter-spacing: -0.03em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NOTES CANVAS ── */
#notes-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89,61,143,0.10) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 20px 60px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#nav.scrolled { border-bottom-color: #2a2a2a; }

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.04em;
  margin-right: auto;
}
.nav-logo span { color: var(--purple); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a.active { color: #ffffff; }

/* ── MAIN ── */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  z-index: 1;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

/* ── PHOTO ── */
.photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  margin-bottom: 36px;
  position: relative;
  background: linear-gradient(135deg, #1c1c2e 0%, #2a1f42 100%);
  flex-shrink: 0;
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ede8f5 0%, #ddd3f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder svg {
  width: 56px;
  height: 56px;
  color: rgba(89,61,143,0.4);
}

/* ── NAME & TITLE ── */
.contact-name {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.contact-name span { color: var(--purple); }

.contact-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 48px;
}

/* ── DIVIDER ── */
.divider {
  width: 40px;
  height: 2px;
  background: var(--purple);
  margin: 0 auto 48px;
}

/* ── CONTACT ITEMS ── */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-item:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.contact-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-item-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

/* ── FOOTER ── */
footer {
  padding: 28px 60px;
  background: #0a0a0a;
  border-top: 1px solid #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.footer-logo span { color: var(--purple); }
.footer-copy { font-size: 12px; color: #888888; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 12px;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #ffffff; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #nav { padding: 16px 24px; }
  main { padding: 100px 24px 60px; }
  .contact-name { font-size: 32px; }
  footer { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
  .footer-links { justify-content: center; }
}
