
    :root {
      --navy: #0D1B2A;
      --gold: #C8963E;
      --white: #FFFFFF;
      --light-gray: #F5F5F5;
      --dark-text: #1A1A2E;
      --text-muted: #6B7280;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--white);
      color: var(--dark-text);
      min-height: 100vh;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4 {
      font-family: 'DM Serif Display', serif;
      line-height: 1.2;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; }
    ul { list-style: none; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }

    /* NAVIGATION — KEEP DARK */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13, 27, 42, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(13, 27, 42, 0.95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .navbar-logo-bar {
      width: 3px;
      height: 36px;
      background: linear-gradient(180deg, #C8963E, #E8B85E);
      border-radius: 2px;
    }

    .navbar-logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      color: #FFFFFF;
      letter-spacing: 1.5px;
      line-height: 1.2;
    }

    .navbar-logo-text span {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      color: #C8963E;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 2px;
    }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .navbar-links a {
      font-size: 14px;
      font-weight: 500;
      color: #8899AA;
      transition: color 0.3s ease;
      position: relative;
    }

    .navbar-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: #C8963E;
      transition: width 0.3s ease;
    }

    .navbar-links a:hover,
    .navbar-links a.active { color: #FFFFFF; }

    .navbar-links a:hover::after,
    .navbar-links a.active::after { width: 100%; }

    .navbar-links a:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 4px;
      border-radius: 2px;
    }

    .navbar-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      background: #C8963E;
      color: #FFFFFF;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      transition: background 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .navbar-cta:hover {
      background: #B8862E;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #E0E7EE;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0; bottom: 0;
      background: rgba(13, 27, 42, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      padding: 40px 24px;
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 20px;
      font-weight: 500;
      color: #8899AA;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: color 0.3s ease;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active { color: #FFFFFF; }

    .mobile-menu .navbar-cta {
      margin-top: 24px;
      text-align: center;
      justify-content: center;
      padding: 16px 24px;
      font-size: 16px;
    }

    /* HERO — KEEP DARK */
    .hero {
      position: relative;
      padding: 180px 0 80px;
      overflow: hidden;
      text-align: center;
      background: var(--navy);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #C8963E;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(40px, 6vw, 64px);
      color: #FFFFFF;
      margin-bottom: 24px;
      line-height: 1.1;
    }

    .hero h1 em {
      font-style: italic;
      color: #C8963E;
    }

    .hero-text {
      font-size: 18px;
      color: #8899AA;
      line-height: 1.8;
      max-width: 620px;
      margin: 0 auto;
    }

    .hero-divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #C8963E, #E8B85E);
      border-radius: 2px;
      margin: 40px auto 0;
    }

    /* LEGAL CONTENT — WHITE BG, DARK TEXT */
    .legal-section {
      padding: 60px 0 100px;
      background: var(--white);
    }

    .legal-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .legal-updated {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 48px;
      padding-bottom: 24px;
      border-bottom: 1px solid #E5E7EB;
    }

    .legal-block {
      margin-bottom: 48px;
    }

    .legal-block h2 {
      font-size: 28px;
      color: var(--dark-text);
      margin-bottom: 16px;
    }

    .legal-block h3 {
      font-size: 20px;
      color: var(--gold);
      margin-bottom: 12px;
      margin-top: 24px;
    }

    .legal-block p {
      font-size: 15px;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .legal-block ul {
      list-style: disc;
      padding-left: 24px;
      margin-bottom: 16px;
    }

    .legal-block ul li {
      font-size: 15px;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 8px;
    }

    .legal-block a {
      color: var(--gold);
      text-decoration: underline;
      text-decoration-color: rgba(200, 150, 62, 0.4);
      transition: text-decoration-color 0.3s ease;
    }

    .legal-block a:hover {
      text-decoration-color: #C8963E;
    }

    /* FOOTER — KEEP DARK */
    .footer {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 80px 0 40px;
      position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      font-size: 14px;
      color: #667788;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo-bar {
      width: 3px; height: 30px;
      background: linear-gradient(180deg, #C8963E, #E8B85E);
      border-radius: 2px;
    }

    .footer-logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 16px;
      color: #FFFFFF;
      letter-spacing: 1px;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C8963E;
      margin-bottom: 20px;
    }

    .footer-col ul li { margin-bottom: 12px; }

    .footer-col ul li a {
      font-size: 14px;
      color: #667788;
      transition: color 0.3s ease;
    }

    .footer-col ul li a:hover { color: #FFFFFF; }

    .footer-col ul li a:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 2px;
      border-radius: 2px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p { font-size: 13px; color: #4A5568; }

    .footer-bottom-links { display: flex; gap: 24px; }

    .footer-bottom-links a {
      font-size: 13px;
      color: #4A5568;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover { color: #C8963E; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .navbar-links, .navbar-cta-desktop { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 140px 0 60px; }
      .hero-text { font-size: 16px; }
      .legal-section { padding: 40px 0 70px; }
      .legal-block h2 { font-size: 24px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 34px; }
      .navbar-inner { padding: 0 16px; }
      .container { padding: 0 16px; }
    }

    .skip-link {
      position: absolute;
      top: -100%; left: 16px;
      background: #C8963E;
      color: #FFFFFF;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      z-index: 10000;
      transition: top 0.3s ease;
    }

    .skip-link:focus { top: 16px; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .fade-in { opacity: 1; transform: none; transition: none; }
      .navbar-links a::after { transition: none; }
    }
