:root {
  --black: #080808;
  --white: #f5f2ee;
  --accent: #ff4d1c;
  --accent2: #ffb347;
  --gray: #1a1a1a;
  --gray2: #2e2e2e;
  --text-muted: #888;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray2);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* FOOTER */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--gray2);
  padding: 48px 60px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.footer-logo span { color: var(--accent); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-legal {
  font-size: 11px;
  color: #444;
  letter-spacing: 0.08em;
}

/* LEGAL PAGES */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 60px 100px;
  flex: 1;
}
.legal-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-tag::before { content:''; width:24px; height:1px; background:var(--accent); }
.legal-wrap h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 12px;
}
.legal-meta {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray2);
}
.legal-wrap h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin: 48px 0 16px;
}
.legal-wrap p {
  font-size: 14px;
  line-height: 1.8;
  color: #999;
  margin-bottom: 16px;
}
.legal-wrap ul {
  list-style: none;
  margin: 0 0 20px;
}
.legal-wrap ul li {
  font-size: 14px;
  line-height: 1.8;
  color: #999;
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  gap: 12px;
}
.legal-wrap ul li::before { content:'→'; color:var(--accent); flex-shrink:0; }
.legal-wrap a { color: var(--accent); }
.highlight-box {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}
.highlight-box p { margin: 0; font-size: 14px; color: #bbb; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; }
  .legal-wrap { padding: 120px 24px 80px; }
  .site-footer { padding: 40px 24px; }
  .footer-links { gap: 16px; }
}
