:root {
    --fal-gold: #c9ae70;
    --fal-dark: #14120e;
    --fal-white: #ffffff;
    --header-height: 100px;
  }

  /* Scoped Reset */
  .site-header-dark,
  .site-header-dark *,
  .nav-panel,
  .nav-panel * {
    box-sizing: border-box;
  }

  .site-header-dark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent; /* Transparent initially */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: var(--header-height);
    display: flex;
    align-items: center;
  }

  /* Scrolled State - Glassy Dark */
  .site-header-dark.scrolled {
    background: rgba(20, 18, 14, 0.6); /* Semi-transparent Dark */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 174, 112, 0.1);
    height: 80px; /* Shrink slightly */
  }

  .fal-nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Brand */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
  }

  .brand {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .brand img {
    height: auto;
    max-height: 80px; /* Limit initial height */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
  }

  .site-header-dark.scrolled .brand img {
    max-height: 60px; /* Shrink on scroll */
  }

  /* Navigation */
  .site-nav {
    display: flex;
    align-items: center;
  }

  .nav-list {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    color: var(--fal-white);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.active {
    color: var(--fal-gold);
    background-color: rgba(255, 255, 255, 0.05);
  }

  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    color: var(--fal-white);
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: currentColor;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Menu Panel */
  .panel-close {
    display: none;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 14, 0.8); /* Dark overlay */
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9990;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  /* Responsive Styles */
  @media (max-width: 991px) {
    .header-actions {
      width: 100%;
      justify-content: space-between;
    }

    .menu-toggle {
      display: flex;
      order: 2;
    }

    .nav-panel {
      position: fixed;
      top: 0;
      left: 0;
      right: auto;
      bottom: 0;
      width: 280px;
      height: 100vh;
      height: 100dvh;
      /* Transparent Background as requested */
      background: transparent;

      padding: 20px;
      padding-top: 80px;
      transform: translateX(-100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 99999;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .nav-panel.is-open {
      transform: translateX(0);
    }

    .panel-close {
      display: flex;
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      font-size: 24px;
      color: var(--fal-white);
      cursor: pointer;
      transition: all 0.2s;
    }

    .panel-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--fal-gold);
    }

    .nav-list {
      flex-direction: column;
      gap: 10px;
      width: 100%;
      margin-top: 20px;
    }

    .nav-link {
      width: 100%;
      justify-content: flex-start;
      padding: 14px 20px;
      border-radius: 12px;
      background-color: rgba(
        20,
        18,
        14,
        0.8
      ); /* Semi-transparent background for links to be readable */
      border: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--fal-white);
      font-size: 18px;
    }

    .nav-link:hover,
    .nav-link.active {
      background-color: var(--fal-gold);
      color: var(--fal-dark);
      border-color: var(--fal-gold);
      padding-right: 25px;
    }
  }

  @media (min-width: 992px) {
    .nav-panel {
      display: block !important;
      transform: none !important;
      background: transparent;
      box-shadow: none;
      padding: 0;
      height: auto;
      width: auto;
      position: static;
    }

    .nav-overlay {
      display: none !important;
    }
  }

  /* Language Switcher Styles */
  .language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .language-switcher ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .language-switcher li {
    display: flex;
  }

  .language-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 174, 112, 0.2);
  }

  .language-switcher a:hover {
    background: rgba(201, 174, 112, 0.15);
    border-color: var(--fal-gold);
    transform: translateY(-2px);
  }

  .language-switcher li.current-lang a {
    background: var(--fal-gold);
    border-color: var(--fal-gold);
  }

  .language-switcher img {
    width: 24px;
    height: auto;
    border-radius: 3px;
  }

  /* Mobile Language Switcher */
  @media (max-width: 991px) {
    .language-switcher {
      order: 1;
      margin-left: auto;
      margin-right: 10px;
    }
  }