/* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: var(--z-navbar);
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(10,8,6,0.95) 0%, transparent 100%);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: background 0.3s;
  }

  nav.scrolled {
    background: rgba(10,8,6,0.97);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color var(--transition-base);
  }

  .nav-links a:hover { color: var(--gold); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .footer-brand .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .footer-brand p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
  }

  .footer-col h4 {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 0.6rem;
  }

  .footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition-base);
  }

  .footer-col ul li a:hover { color: var(--gold); }

  /* Ocultar link "Sitio Web" redundante en footer — todos los viewports */
  .footer-col:last-child li:last-child { display: none; }

  .footer-bottom {
    background: var(--dark);
    padding: 1.5rem 4rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
  }

  .social-links {
    display: flex;
    gap: 1.5rem;
  }

  .social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color var(--transition-base);
  }

  .social-links a:hover { color: var(--gold); }

  /* HAMBURGER + MOBILE MENU                             */
  /* ═══════════════════════════════════════════════════ */

  /* Hamburger button — hidden on desktop */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    padding: 0;
    z-index: 10002;
    position: relative;
  }

  .ham-line {
    display: block;
    height: 1px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                opacity 0.3s ease,
                width 0.3s ease;
  }
  .ham-line-1 { width: 24px; }
  .ham-line-2 { width: 32px; }
  .ham-line-3 { width: 18px; }

  /* Animated state — X */
  .hamburger.is-open .ham-line-1 {
    transform: translateY(6px) rotate(45deg);
    width: 28px;
  }
  .hamburger.is-open .ham-line-2 {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.is-open .ham-line-3 {
    transform: translateY(-6px) rotate(-45deg);
    width: 28px;
  }

  /* Mobile overlay menu */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(10,8,6,0.0);
    pointer-events: none;
    transition: background 0.4s ease;
  }
  .mobile-menu.is-open {
    background: rgba(10,8,6,0.96);
    pointer-events: all;
  }

  .mobile-menu-inner {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 360px);
    background: #0D0B08;
    border-left: 1px solid rgba(201,168,76,0.12);
    padding: 5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  }
  .mobile-menu.is-open .mobile-menu-inner {
    transform: translateX(0);
  }

  /* Grain texture on menu */
  .mobile-menu-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22200%22 height=%22200%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%224%22/></filter><rect width=%22200%22 height=%22200%22 filter=%22url(%23n)%22 opacity=%221%22/></svg>');
    pointer-events: none;
  }

  .mobile-menu-eyebrow {
    font-size: 0.5rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.45);
    margin: 0 0 0.2rem;
  }
  .mobile-menu-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.1em;
    margin: 0 0 1.5rem;
  }
  .mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: rgba(201,168,76,0.3);
    margin-bottom: 2.5rem;
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
  }

  .mobile-nav-link {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.07);
    text-decoration: none;
    color: rgba(212,201,176,0.65);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease, padding-left 0.2s ease;
  }
  .mobile-nav-link::before {
    content: attr(data-label);
    font-size: 0.45rem;
    color: rgba(201,168,76,0.35);
    letter-spacing: 0.15em;
    flex-shrink: 0;
  }
  .mobile-nav-link:hover {
    color: var(--gold);
    padding-left: 6px;
  }

  /* Todos los ítems visibles al abrir el menú */
  .mobile-menu.is-open .mobile-nav-link { opacity:1; transform:none; }
  /* Stagger: solo ajusta el delay de la animación de entrada */
  .mobile-menu.is-open .mobile-nav-link:nth-child(1)  { transition-delay:0.15s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(2)  { transition-delay:0.20s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(3)  { transition-delay:0.25s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(4)  { transition-delay:0.30s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(5)  { transition-delay:0.35s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(6)  { transition-delay:0.40s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(7)  { transition-delay:0.45s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(8)  { transition-delay:0.50s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(9)  { transition-delay:0.55s; }
  .mobile-menu.is-open .mobile-nav-link:nth-child(10) { transition-delay:0.60s; }

  .mobile-menu-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(201,168,76,0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .mobile-social {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.45);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  .mobile-social:hover { color: var(--gold); }
  .mobile-social-sep { color: rgba(201,168,76,0.2); font-size: 0.7rem; }

  /* ── Mobile breakpoint ── */
  


  /* ═══════════════════════════════════════════════════ */
  /* MOBILE TYPOGRAPHY — Legibilidad en pantallas <900px */
  /* ═══════════════════════════════════════════════════ */
  

  /* ── Extra pequeño: <480px ── */
  


  /* ═══════════════════════════════════════════════════ */
