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

    :root {
      --color-bg: #0a0a0a;
      --color-surface: #141414;
      --color-text: #e8e4df;
      --color-text-muted: #8a8580;
      --color-accent: #c9a96e;
      --color-accent-hover: #dfc08a;
      --color-overlay: rgba(10, 10, 10, 0.55);
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
      --nav-height: 72px;
      --transition-slow: 0.4s ease;
      --transition-fast: 0.25s ease;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ===== HEADER ===== */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
      height: var(--nav-height);
      display: flex; align-items: center; justify-content: space-between;
      background: transparent;
      transition: background var(--transition-slow), box-shadow var(--transition-slow);
    }
    .site-header.scrolled {
      background: rgba(10, 10, 10, 0.95);
      box-shadow: 0 1px 0 rgba(201, 169, 110, 0.15);
    }

    .header-name {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.5vw, 1.8rem);
      font-weight: 300;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-text);
      text-decoration: none;
    }

    .header-nav { display: flex; align-items: center; gap: 2rem; }
    .header-nav a {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      text-decoration: none;
      transition: color var(--transition-fast);
      position: relative;
    }
    .header-nav a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--color-accent);
      transition: width var(--transition-fast);
    }
    .header-nav a:hover { color: var(--color-accent); }
    .header-nav a:hover::after { width: 100%; }
    .header-nav a.active { color: var(--color-accent); }
    .header-nav a.active::after { width: 100%; }

    .lang-switch {
      display: flex; gap: 0.5rem; margin-left: 1rem;
      padding-left: 1rem;
      border-left: 1px solid rgba(255,255,255,0.15);
    }
    .lang-switch a {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      text-decoration: none;
      padding: 0.2rem 0.4rem;
      border-radius: 2px;
      transition: color var(--transition-fast), background var(--transition-fast);
    }
    .lang-switch a:hover { color: var(--color-accent); }
    .lang-switch a.active {
      color: var(--color-accent);
      background: rgba(201, 169, 110, 0.12);
    }

    /* Mobile hamburger */
    .mobile-toggle {
      display: none;
      background: none; border: none; cursor: pointer;
      width: 28px; height: 20px;
      position: relative;
    }
    .mobile-toggle span {
      display: block; width: 100%; height: 2px;
      background: var(--color-text);
      position: absolute; left: 0;
      transition: all var(--transition-fast);
    }
    .mobile-toggle span:nth-child(1) { top: 0; }
    .mobile-toggle span:nth-child(2) { top: 9px; }
    .mobile-toggle span:nth-child(3) { top: 18px; }

    .mobile-nav {
      display: none;
      position: fixed; top: var(--nav-height); left: 0; right: 0;
      z-index: 999;
      background: rgba(10, 10, 10, 0.98);
      padding: 2rem;
      flex-direction: column; gap: 1.5rem;
      border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      text-decoration: none;
    }
    .mobile-nav a:hover { color: var(--color-accent); }

    @media (max-width: 768px) {
      .header-nav { display: none; }
      .mobile-toggle { display: block; }
    }


    /* ===== FOOTER ===== */
    footer {
      padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid rgba(201, 169, 110, 0.12);
      font-size: 0.75rem;
      color: var(--color-text-muted);
      letter-spacing: 0.05em;
    }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a {
      color: var(--color-text-muted);
      text-decoration: none;
      transition: color var(--transition-fast);
    }
    .footer-links a:hover { color: var(--color-accent); }

    @media (max-width: 768px) {
      footer { flex-direction: column; gap: 1rem; text-align: center; }
    }

    /* ===== GALLERY SUB-NAV ===== */
    .sub-nav {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      padding: 1rem 0;
      background: var(--color-bg);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      position: sticky;
      top: var(--nav-height);
      z-index: 99;
    }
    .sub-nav a {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      text-decoration: none;
      padding-bottom: 4px;
      position: relative;
      transition: color 0.3s;
    }
    .sub-nav a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--color-accent);
      transition: width 0.3s;
    }
    .sub-nav a.active { color: var(--color-text); }
    .sub-nav a.active::after { width: 100%; }
    .sub-nav a:hover { color: var(--color-text); }
    .sub-nav a:hover::after { width: 100%; }