    html { font-family: 'Jost', sans-serif; }

    .gold-line      { display:block; width:48px; height:2px; background:#B8952A; margin:0 auto 1.5rem; }
    .gold-line-left { display:block; width:48px; height:2px; background:#B8952A; margin:0 0 1.5rem; }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity:1; transform:translateY(0); }

    .hero-bg {
      background:
        linear-gradient(to bottom, rgba(30,45,74,1) 0%, rgba(18,18,22,0.65) 70%, rgba(18,18,22,0.88) 100%),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }

    #navbar { transition: background 0.4s, box-shadow 0.4s; }
    #navbar.scrolled {
      background: rgba(30,45,74,0.97) !important;
      box-shadow: 0 2px 24px rgba(0,0,0,0.4);
    }

    .area-card {
      border: 1px solid rgba(184,149,42,0.2);
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
    }
    .area-card:hover {
      border-color: rgba(184,149,42,0.7);
      background: rgba(184,149,42,0.05);
      transform: translateY(-4px);
    }

    input:focus, textarea:focus, select:focus { outline:none; border-color:#B8952A; }

    /* ── Language Dropdown ── */
    .lang-dropdown { position: relative; }

    .lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      background: transparent;
      border: 1px solid rgba(184,149,42,0.35);
      padding: 5px 10px;
      cursor: pointer;
      transition: color 0.25s, border-color 0.25s;
      white-space: nowrap;
    }
    .lang-btn:hover { color: #B8952A; border-color: #B8952A; }

    .lang-btn svg {
      width: 10px; height: 10px;
      stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      transition: transform 0.25s;
      flex-shrink: 0;
    }
    .lang-btn.open svg { transform: rotate(180deg); }

    .lang-menu {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 160px;
      background: rgba(18,18,22,0.98);
      border: 1px solid rgba(184,149,42,0.25);
      z-index: 100;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    .lang-menu.open { display: block; }

    .lang-option {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 9px 14px;
      font-family: 'Jost', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      transition: color 0.2s, background 0.2s;
    }
    .lang-option:hover      { color: #B8952A; background: rgba(184,149,42,0.07); }
    .lang-option.active     { color: #B8952A; }
    .lang-option .flag      { font-size: 1rem; line-height: 1; }
    .lang-option + .lang-option { border-top: 1px solid rgba(255,255,255,0.05); }


    /* ── Mobile Menu ── */
    #mobileMenu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100vh;
      background: rgba(18,18,22,0.98);
      z-index: 40;
      padding: 100px 32px 48px;
      gap: 0;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    #mobileMenu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    #mobileMenu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid rgba(184,149,42,0.12);
      transition: color 0.2s;
      letter-spacing: 0.04em;
    }
    #mobileMenu a:hover { color: #B8952A; }

    #menuToggle span {
      display: block;
      height: 1px;
      background: white;
      transition: transform 0.3s, opacity 0.3s, width 0.3s;
      transform-origin: center;
    }
    #menuToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px !important; }
    #menuToggle.open span:nth-child(2) { opacity: 0; }
    #menuToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px !important; }

    .mobile-lang-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 32px;
    }
    .mobile-lang-btn {
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      background: transparent;
      border: 1px solid rgba(184,149,42,0.2);
      padding: 6px 12px;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s;
    }
    .mobile-lang-btn:hover,
    .mobile-lang-btn.active { color: #B8952A; border-color: #B8952A; }