/* === BASE STYLES === */:root {
      --accent: #c8a84b;
      --accent-light: #f0d078;
      --accent-glow: rgba(200, 168, 75, 0.35);
      --surface: #0a0a0f;
      --surface-2: #111118;
      --surface-3: #18181f;
      --surface-4: #202028;
      --text-primary: #f5f0e8;
      --text-secondary: #a89f8c;
      --text-muted: #6e6860;
      --border-subtle: rgba(200, 168, 75, 0.18);
      --border-card: rgba(200, 168, 75, 0.12);
      --shadow-card: 0 8px 32px rgba(0,0,0,0.55), 0 1px 0 rgba(200,168,75,0.1);
      --shadow-glow: 0 0 28px rgba(200, 168, 75, 0.22);
      --radius: 14px;
      --radius-sm: 8px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html, body {
      overflow-x: hidden;
      max-width: 100vw;
      background: var(--surface);
      color: var(--text-primary);
      font-family: 'Georgia', serif;
      font-size: 16px;
      line-height: 1.7;
    }

    h1, h2, h3, h4 {
      font-family: 'Georgia', serif;
      color: var(--text-primary);
      line-height: 1.2;
    }

    h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.6rem);
      margin-bottom: 1.25rem;
      background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 60%, #a07830 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h3 {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--accent-light);
      margin-bottom: 0.6rem;
    }

    p { color: var(--text-secondary); margin-bottom: 1rem; }
    p:last-child { margin-bottom: 0; }

    a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
    a:hover { color: #fff; text-decoration: underline; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Georgia', serif;
      font-weight: 700;
      letter-spacing: 0.06em;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f0d078 0%, #c8a84b 50%, #9a7828 100%);
      color: #0a0a0f;
      padding: 0.75rem 2rem;
      font-size: 0.95rem;
      box-shadow: 0 4px 20px rgba(200,168,75,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #fff0a0 0%, #f0d078 50%, #c8a84b 100%);
      box-shadow: 0 6px 32px rgba(200,168,75,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
      transform: translateY(-2px);
      color: #0a0a0f;
      text-decoration: none;
    }

    .btn-hero {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      border-radius: 50px;
    }

    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
      margin: 0;
    }

    .info-card {
      background: var(--surface-3);
      border: 1px solid var(--border-card);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-top: 1.5rem;
      box-shadow: var(--shadow-card);
    }

    .info-card p { color: var(--text-secondary); margin-bottom: 0; }
    .info-card a { color: var(--accent-light); }

    .content-image {
      margin: 1.5rem 0;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-card);
      box-shadow: var(--shadow-card);
    }

    .content-image img {
      width: 100%;
      height: auto;
      display: block;
      max-height: 420px;
      object-fit: cover;
    }

    /* === LAYOUT STYLES === */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 10, 15, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
      box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    }

    .site-header .container {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding-top: 0.9rem;
      padding-bottom: 0.9rem;
      flex-wrap: nowrap;
    }

    .logo {
      flex-shrink: 0;
      margin-right: auto;
    }

    .logo a {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo .logo-text {
      font-family: 'Georgia', serif;
      font-size: 1.25rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent-light), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.04em;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: var(--surface-3);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      cursor: pointer;
      flex-shrink: 0;
      padding: 0;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: all var(--transition);
    }

    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .main-nav .nav-list {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .main-nav .nav-list a {
      display: block;
      padding: 0.5rem 1rem;
      color: var(--text-secondary);
      font-size: 0.9rem;
      border-radius: var(--radius-sm);
      transition: all var(--transition);
      text-decoration: none;
    }

    .main-nav .nav-list a:hover {
      color: var(--accent-light);
      background: rgba(200,168,75,0.08);
      text-decoration: none;
    }

    .header-cta {
      flex-shrink: 0;
      max-width: 160px;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .site-footer {
      background: var(--surface-2);
      border-top: 1px solid var(--border-subtle);
      padding: 2.5rem 0;
      margin-top: 4rem;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
    }

    .footer-logo .logo-text {
      font-family: 'Georgia', serif;
      font-size: 1.1rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent-light), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-nav-list {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-nav-list a {
      color: var(--text-muted);
      font-size: 0.875rem;
      transition: color var(--transition);
    }

    .footer-nav-list a:hover { color: var(--accent-light); text-decoration: none; }

    .footer-copy {
      color: var(--text-muted);
      font-size: 0.8rem;
      margin: 0;
    }

    @media (max-width: 767.98px) {
      .site-header .container {
        flex-wrap: wrap;
        row-gap: 0;
        position: relative;
      }

      .logo { flex: 1 1 auto; }

      .hamburger {
        display: flex;
        margin-left: auto;
      }

      .header-cta {
        display: none;
      }

      .main-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }

      .main-nav.open {
        max-height: 300px;
      }

      .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0 1rem;
        gap: 0.15rem;
      }

      .main-nav .nav-list a {
        padding: 0.65rem 0.75rem;
        font-size: 1rem;
      }

      .mobile-cta-wrap {
        width: 100%;
        padding: 0.5rem 0 0.75rem;
      }

      .mobile-cta-wrap .btn-primary {
        width: 100%;
        max-width: 100%;
        text-overflow: ellipsis;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
    }

    @media (min-width: 768px) {
      .mobile-cta-wrap { display: none; }
    }

@media (max-width: 767.98px) {
      .site-header .container {
        flex-wrap: wrap;
        row-gap: 0;
        position: relative;
      }

      .logo { flex: 1 1 auto; }

      .hamburger {
        display: flex;
        margin-left: auto;
      }

      .header-cta {
        display: none;
      }

      .main-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }

      .main-nav.open {
        max-height: 300px;
      }

      .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0 1rem;
        gap: 0.15rem;
      }

      .main-nav .nav-list a {
        padding: 0.65rem 0.75rem;
        font-size: 1rem;
      }

      .mobile-cta-wrap {
        width: 100%;
        padding: 0.5rem 0 0.75rem;
      }

      .mobile-cta-wrap .btn-primary {
        width: 100%;
        max-width: 100%;
        text-overflow: ellipsis;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
    }

@media (max-width: 767.98px) {
      .hero-section { padding: 3.5rem 0 3rem; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .hero-trust-strip { gap: 1rem; }
      .stats-grid-inner { grid-template-columns: 1fr 1fr; }
      .highlight-boxes-grid { grid-template-columns: 1fr 1fr; }
      .feature-blocks-grid { grid-template-columns: 1fr 1fr; }
      .footer-nav-list { flex-direction: column; gap: 0.75rem; }
    }