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

:root {
  --bg: #0a0a0a;
  --surface: #111;
  --surface2: #161616;
  --surface3: #1c1c1c;
  --border: rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.12);
  --accent: #c8a96e;
  --accent2: #e8c98e;
  --accent-dim: rgba(200,169,110,.12);
  --accent-border: rgba(200,169,110,.28);
  --text: #f0ede8;
  --muted: #888880;
  --muted2: #555550;
  --display: 'Bebas Neue', sans-serif;
  --body: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
  --radius: 0px;
  --nav-h: 72px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* GRAIN */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: .45; mix-blend-mode: overlay;
}

/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,.97) 0%, rgba(10,10,10,.8) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--display);
  font-size: 20px; letter-spacing: .14em;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--accent);
}
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: 8px 14px;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1px; background: var(--accent);
}
.nav-cta {
  background: var(--accent); color: #0a0a0a !important;
  font-weight: 500 !important; padding: 10px 20px !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--accent2) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* HAMBURGER */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px; background: var(--text);
  transition: all .3s;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(10,10,10,.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display); font-size: 48px; letter-spacing: .06em;
  color: var(--text); text-decoration: none;
  padding: 12px 0; transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: 1px solid var(--border); color: var(--muted);
  width: 44px; height: 44px; cursor: pointer; font-size: 18px;
  transition: all .2s;
}
.mobile-close:hover { border-color: var(--accent); color: var(--accent); }

/* UTILITY */
.page-wrap { padding-top: var(--nav-h); }
section { padding: 100px 48px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: .95; letter-spacing: .02em;
  margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  padding: 15px 32px; border: none; cursor: pointer;
  transition: all .25s; white-space: nowrap;
}
.btn-gold { background: var(--accent); color: #0a0a0a; }
.btn-gold:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--accent);
  border: 1px solid var(--accent-border);
}
.btn-ghost:hover { background: var(--accent-dim); transform: translateY(-2px); }

/* DIVIDERS */
.rule { height: 1px; background: var(--border); }
.rule-gold { height: 1px; background: linear-gradient(to right, var(--accent), transparent); }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  font-family: var(--display); font-size: 18px;
  letter-spacing: .14em; color: var(--muted);
  text-decoration: none;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .1em; color: var(--muted2);
  text-transform: uppercase;
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideRight { from { transform:scaleX(0); } to { transform:scaleX(1); } }
.anim-1 { opacity:0; animation: fadeUp .9s ease .1s forwards; }
.anim-2 { opacity:0; animation: fadeUp .9s ease .25s forwards; }
.anim-3 { opacity:0; animation: fadeUp .9s ease .4s forwards; }
.anim-4 { opacity:0; animation: fadeUp .9s ease .55s forwards; }
.anim-5 { opacity:0; animation: fadeUp .9s ease .7s forwards; }

/* CARDS */
.card {
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color .3s, background .3s;
}
.card:hover { border-color: rgba(200,169,110,.2); background: var(--surface2); }
.card::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover::before { opacity: 1; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  section { padding: 80px 32px; }
  .site-nav { padding: 0 32px; }
  .site-footer { padding: 40px 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 64px 20px; }
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .site-footer { padding: 36px 20px; flex-direction: column; align-items: flex-start; }
}
