  :root {
    --color-bg: #050505;
    --color-surface: #0F0F0F;
    --color-border: #1C1C1C;
    --color-gold: #D4AF37;
    --color-gold-dim: #B8922A;
    --color-gold-glow: rgba(212,175,55,0.15);
    --color-text: #FAFAFA;
    --color-muted: #888888;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html.lenis { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }
  .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  .lenis.lenis-stopped { overflow: hidden; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    cursor: none;
  }

  a { text-decoration: none; color: inherit; }

  /* === CUSTOM CURSOR === */
  #cursor-dot {
    position: fixed; width: 8px; height: 8px;
    background: var(--color-gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
    mix-blend-mode: normal;
  }
  #cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid rgba(212,175,55,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  }
  body:hover #cursor-ring { opacity: 1; }
  .cursor-hover #cursor-dot { width: 12px; height: 12px; background: var(--color-gold); }
  .cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(212,175,55,0.8); }
  
  @keyframes click-burst {
    0%   { transform: translate(-50%,-50%) scale(0); opacity: 0.8; }
    100% { transform: translate(-50%,-50%) scale(3.5); opacity: 0; }
  }
  .cursor-burst {
    position: fixed; width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.7); pointer-events: none;
    z-index: 9997; animation: click-burst 0.5s ease-out forwards;
  }

  /* === PARTICLES CANVAS === */
  #web-particles {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
    mix-blend-mode: screen;
  }

  /* === NAVIGATION === */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    background: rgba(5,5,5,0.85); border-bottom: 1px solid rgba(212,175,55,0.12);
    height: 72px; display: flex; align-items: center;
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between; width: 100%;
  }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo img { transition: filter 0.3s ease; }
  .nav-logo:hover img { filter: drop-shadow(0 0 6px rgba(212,175,55,0.4)); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--color-muted); transition: color 0.2s; }
  .nav-links a:hover { color: var(--color-text); }
  
  .btn-gold {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
    border: none; cursor: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
    color: #050505; text-transform: uppercase;
  }
  .btn-gold:hover { transform: scale(1.02); box-shadow: 0 0 24px rgba(212,175,55,0.4); }

  /* === LEGAL CONTENT STYLES === */
  .legal-hero {
    padding: 180px 24px 80px;
    text-align: center;
    position: relative;
    z-index: 10;
  }
  .legal-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: 16px;
  }
  .legal-hero p {
    font-size: 16px;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 120px;
    position: relative;
    z-index: 10;
  }
  .legal-block {
    margin-bottom: 48px;
  }
  .legal-block h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding-bottom: 12px;
  }
  .legal-block p, .legal-block li {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
  }
  .legal-block ul {
    list-style-type: none;
    padding-left: 16px;
    margin-bottom: 24px;
  }
  .legal-block ul li {
    position: relative;
    margin-bottom: 12px;
  }
  .legal-block ul li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: -16px;
    top: 0;
    font-weight: bold;
  }
  .legal-block strong {
    color: var(--color-text);
    font-weight: 500;
  }

  /* === FOOTER STYLES === */
  footer { padding: 64px 0 40px; border-top: 1px solid var(--color-border); background: var(--color-bg); position: relative; z-index: 10; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
  .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
  .footer-logo { margin-bottom: 16px; }
  .footer-logo img { filter: drop-shadow(0 0 0px rgba(212,175,55,0)); transition: filter 0.4s ease; }
  .footer-logo:hover img { filter: drop-shadow(0 0 8px rgba(212,175,55,0.35)); }
  .footer-tagline { font-size: 13px; color: var(--color-muted); line-height: 1.6; max-width: 280px; margin-bottom: 24px; }
  .footer-wa { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-gold); border: 1px solid rgba(212,175,55,0.2); padding: 8px 16px; transition: border-color 0.2s; }
  .footer-wa:hover { border-color: var(--color-gold); box-shadow: 0 0 14px rgba(212,175,55,0.15); }
  .footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 14px; color: var(--color-muted); transition: color 0.2s; }
  .footer-col a:hover { color: var(--color-text); }
  .footer-bottom { padding-top: 24px; border-top: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: var(--color-muted); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 12px; color: var(--color-muted); transition: color 0.2s; }
  .footer-legal a:hover { color: var(--color-text); }

  /* Responsive */
  @media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .legal-hero { padding-top: 140px; }
  }
