@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Playfair+Display:wght@400;700&display=swap');

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

:root {
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-dim: #8a6610;
  --ink: #0A0A0F;
  --ink2: #12121A;
  --surface: #16161F;
  --surface2: #1E1E2A;
  --mist: #2A2A3A;
  --text: #E8E4D9;
  --text-dim: #8A8A9A;
  --red: #E8341C;
  --teal: #00C9A7;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

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

/* CURSOR */
#cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; mix-blend-mode: difference; }
#cursor-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); position: absolute; transform: translate(-50%, -50%); transition: width 0.2s var(--ease), height 0.2s var(--ease); }
#cursor-ring { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold); position: absolute; transform: translate(-50%, -50%); transition: width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s; opacity: 0.6; }
body.hovering #cursor-dot { width: 16px; height: 16px; }
body.hovering #cursor-ring { width: 56px; height: 56px; opacity: 1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
nav.top { background: transparent; border-bottom: none; }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 3px; color: var(--gold);
  text-decoration: none; position: relative;
}
.nav-logo::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nav-logo:hover::after { width: 100%; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--text-dim); text-decoration: none; font-size: 13px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  position: relative; padding-bottom: 4px; transition: color 0.3s;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease); }
.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 {
  background: var(--gold) !important; color: var(--ink) !important;
  padding: 10px 24px !important; font-weight: 500 !important;
  border-radius: 2px; transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px) !important; }
.nav-cta::after { display: none !important; }

/* PAGE WRAPPER */
.page-wrapper { padding-top: 80px; min-height: 100vh; }

/* SECTION BASE */
section { padding: 100px 48px; }
.section-tag {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95; letter-spacing: -1px; margin-bottom: 24px;
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 18px 0; background: var(--ink2);
}
.marquee-track { display: flex; gap: 0; animation: marquee 20s linear infinite; width: max-content; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 4px; padding: 0 48px; white-space: nowrap; }
.marquee-item.gold { color: var(--gold); }
.marquee-item.dim { color: var(--surface2); -webkit-text-stroke: 1px rgba(212,160,23,0.3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* BUTTONS */
.btn-primary {
  background: var(--gold); color: var(--ink);
  padding: 16px 40px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: none; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease); display: inline-block;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: translateX(-100%); transition: transform 0.4s var(--ease); }
.btn-primary:hover { transform: translateY(-3px); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost { color: var(--text); text-decoration: none; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; transition: gap 0.3s var(--ease), color 0.3s; }
.btn-ghost:hover { gap: 20px; color: var(--gold); }
.btn-ghost::after { content: '→'; font-size: 18px; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* FOOTER */
footer {
  background: #050508; padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(212,160,23,0.1);
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--gold); letter-spacing: 3px; }
.footer-copy { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 12px; color: var(--text-dim); text-decoration: none; letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
}

/* SHARED CURSOR + REVEAL JS — included inline in each page */
