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

:root {
  --black: #080808;
  --black-mid: #111111;
  --black-soft: #1a1a1a;
  --silver: #c8c8c8;
  --silver-light: #e8e8e8;
  --silver-dim: #888888;
  --white: #f5f5f5;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--silver-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  cursor: none;
  overflow-x: hidden;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--silver-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(200,200,200,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

/* 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: linear-gradient(180deg, rgba(8,8,8,0.98) 0%, transparent 100%);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--silver-dim);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

/* FOOTER */
footer {
  background: var(--black);
  padding: 80px 56px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.footer-brand span {
  display: block;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 6px;
  color: var(--silver-dim);
  margin-top: 8px;
}
.footer-links { display: flex; gap: 80px; }
.footer-col h4 {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-copy {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

/* SECTION COMMON */
section { padding: 140px 56px; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -1px;
  color: var(--white);
}
.section-link {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.section-link:hover { color: var(--white); }

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  .section-header { flex-direction: column; gap: 12px; }
  .footer-top { flex-direction: column; gap: 48px; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  footer { padding: 60px 24px 40px; }
}
