/* === BASE STYLES === */:root {
      --accent: #b8860b;
      --accentBright: #ffd700;
      --accentGlow: #ffec6e;
      --surface: #0a0a0f;
      --surfaceCard: #13131f;
      --surfaceCardHover: #1a1a2e;
      --surfaceElevated: #1c1c2e;
      --textPrimary: #f0e6c8;
      --textSecondary: #a89070;
      --textMuted: #6b5b45;
      --borderSubtle: rgba(184,134,11,0.2);
      --borderAccent: rgba(255,215,0,0.5);
      --gradientGold: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
      --gradientDark: linear-gradient(180deg, #0a0a0f 0%, #13131f 100%);
      --shadowCard: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(184,134,11,0.1);
      --shadowGlow: 0 0 30px rgba(255,215,0,0.15), 0 0 60px rgba(184,134,11,0.08);
      --shadowAccent: 0 4px 20px rgba(255,215,0,0.3);
      --radius: 12px;
      --radiusLg: 20px;
    }

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

    html, body {
      overflow-x: hidden;
      max-width: 100vw;
      background: var(--surface);
      color: var(--textPrimary);
      font-family: 'Georgia', 'Times New Roman', serif;
      line-height: 1.7;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4 {
      font-family: 'Georgia', serif;
      font-weight: 700;
      line-height: 1.2;
    }

    h1 { font-size: clamp(2rem, 5vw, 4rem); }
    h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
    h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

    p { color: var(--textPrimary); margin-bottom: 1rem; }

    a { color: var(--accentBright); text-decoration: none; transition: color 0.3s ease; }
    a:hover { color: var(--accentGlow); }

    .btnPrimary {
      display: inline-block;
      padding: 14px 32px;
      background: var(--gradientGold);
      color: #0a0a0f;
      font-weight: 700;
      font-size: 1rem;
      font-family: 'Georgia', serif;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
      box-shadow: var(--shadowAccent);
      letter-spacing: 0.5px;
      text-align: center;
    }

    .btnPrimary:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 8px 30px rgba(255,215,0,0.45);
      filter: brightness(1.1);
      color: #0a0a0f;
    }

    .btnPrimary:active { transform: translateY(-1px); }

    .btnSecondary {
      display: inline-block;
      padding: 12px 28px;
      background: transparent;
      color: var(--accentBright);
      font-weight: 700;
      font-size: 0.95rem;
      font-family: 'Georgia', serif;
      border: 2px solid var(--accentBright);
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      letter-spacing: 0.5px;
    }

    .btnSecondary:hover {
      background: var(--accentBright);
      color: #0a0a0f;
      box-shadow: var(--shadowAccent);
      transform: translateY(-2px);
    }

    .sectionPadding { padding: 80px 0; }

    .goldDivider {
      width: 60px;
      height: 3px;
      background: var(--gradientGold);
      border-radius: 2px;
      margin: 16px 0 28px;
    }

    .goldDividerCenter {
      width: 60px;
      height: 3px;
      background: var(--gradientGold);
      border-radius: 2px;
      margin: 16px auto 28px;
    }

    .sectionLabel {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accentBright);
      margin-bottom: 8px;
    }

    .contentImage {
      width: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      margin: 28px 0;
      border: 1px solid var(--borderSubtle);
      box-shadow: var(--shadowCard);
    }

    .contentImage img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 420px;
      transition: transform 0.5s ease;
    }

    .contentImage:hover img { transform: scale(1.02); }

    .card {
      background: var(--surfaceCard);
      border: 1px solid var(--borderSubtle);
      border-radius: var(--radiusLg);
      box-shadow: var(--shadowCard);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadowCard), var(--shadowGlow);
      border-color: var(--borderAccent);
    }

    .cardBody { padding: 24px; }

    .featureList {
      list-style: none;
      padding: 0;
    }

    .featureList li {
      position: relative;
      padding: 10px 16px 10px 36px;
      border-bottom: 1px solid var(--borderSubtle);
      color: var(--textPrimary);
    }

    .featureList li:last-child { border-bottom: none; }

    .featureList li::before {
      content: '';
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gradientGold);
      box-shadow: 0 0 8px rgba(255,215,0,0.5);
    }

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

    .headerInner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      gap: 16px;
    }

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

    .logoText {
      font-size: 1.3rem;
      font-weight: 700;
      font-family: 'Georgia', serif;
      background: var(--gradientGold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      background: var(--surfaceCard);
      border: 1px solid var(--borderSubtle);
      border-radius: 8px;
      cursor: pointer;
      gap: 5px;
      padding: 10px;
      transition: border-color 0.3s ease;
      flex-shrink: 0;
    }

    .hamburger:hover { border-color: var(--accentBright); }

    .hamburgerBar {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--accentBright);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

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

    .mainNav { display: flex; align-items: center; }

    .navList {
      display: flex;
      list-style: none;
      gap: 8px;
      margin: 0;
      padding: 0;
    }

    .navList li a {
      display: block;
      padding: 8px 18px;
      color: var(--textPrimary);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      border-radius: 50px;
      border: 1px solid transparent;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .navList li a:hover {
      color: var(--accentBright);
      border-color: var(--borderAccent);
      background: rgba(255,215,0,0.05);
    }

    .headerCta {
      max-width: 200px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .siteFooter {
      background: #070710;
      border-top: 1px solid var(--borderSubtle);
      padding: 48px 0 32px;
    }

    .footerInner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      text-align: center;
    }

    .footerNavList {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      gap: 8px;
      padding: 0;
      margin: 0;
    }

    .footerNavList li a {
      display: block;
      padding: 8px 18px;
      color: var(--textSecondary);
      font-size: 0.85rem;
      border: 1px solid var(--borderSubtle);
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .footerNavList li a:hover {
      color: var(--accentBright);
      border-color: var(--borderAccent);
    }

    .footerDisclaimer p {
      font-size: 0.8rem;
      color: var(--textMuted);
      margin-bottom: 6px;
    }

    .footerDisclaimer a { color: var(--textSecondary); }
    .footerDisclaimer a:hover { color: var(--accentBright); }

    @media (max-width: 767px) {
      .hamburger { display: flex; }

      .mainNav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--borderSubtle);
        display: none;
        padding: 16px;
        z-index: 999;
      }

      .mainNav.open { display: block; }

      .navList {
        flex-direction: column;
        gap: 4px;
      }

      .navList li a {
        border-radius: 8px;
        text-align: center;
        padding: 12px 16px;
      }

      .headerInner { position: relative; }
      .headerCta { font-size: 0.85rem; padding: 10px 18px; }
    }

    @media (min-width: 768px) {
      .hamburger { display: none; }
      .mainNav { display: flex !important; }
    }

@media (max-width: 767px) {
      .hamburger { display: flex; }

      .mainNav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--borderSubtle);
        display: none;
        padding: 16px;
        z-index: 999;
      }

      .mainNav.open { display: block; }

      .navList {
        flex-direction: column;
        gap: 4px;
      }

      .navList li a {
        border-radius: 8px;
        text-align: center;
        padding: 12px 16px;
      }

      .headerInner { position: relative; }
      .headerCta { font-size: 0.85rem; padding: 10px 18px; }
    }

@media (min-width: 768px) {
      .hamburger { display: none; }
      .mainNav { display: flex !important; }
    }