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

:root {
  --black: #080808;
  --deep: #0d0d0d;
  --surface: #111111;
  --card: #161616;
  --border: #222222;
  --gold: #c8a84b;
  --gold-light: #e8c96a;
  --gold-dim: rgba(200,168,75,0.15);
  --white: #f0ede8;
  --muted: #7a7570;
  --accent: #c8a84b;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,168,75,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
  transition: backdrop-filter 0.4s, background 0.4s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 24px;
}
nav.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(8,8,8,0.9);
  border-bottom: 1px solid var(--border);
}
nav.scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 500;
}
.nav-cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 18px; height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--muted);
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: var(--muted);
}
.footer-credit {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--gold-light); }
.footer-links {
  display: flex;
  gap: 0;
  justify-content: flex-start !important;
  flex-wrap: wrap;
  padding: 16px 0 0;
}
.footer-links a + a::before {
  content: ' | ';
  color: var(--border);
  padding: 0 6px;
}
.footer-links a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION LABEL */
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu .mobile-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  margin-top: 16px;
}
.mobile-close {
  position: absolute;
  top: 28px; right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}
.mobile-close:hover { color: var(--white); }

/* Hamburger active animation */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* RESPONSIVE — SHARED */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 20px; }
  footer .container:not(.footer-links) { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center !important; padding: 12px 24px; }
  .mobile-menu a { font-size: 22px; letter-spacing: 3px; }
  .mobile-menu { gap: 18px; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 18px 16px; }
}
