*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0a; --bg2: #111111; --white: #f2f0ec; --dim: #777770;
  --faint: #222220; --accent: #c8b89a;
  --serif: 'Cormorant', Georgia, serif; --sans: 'Inter', system-ui, sans-serif;
  --nav-h: 68px;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--sans); font-weight: 300; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; background: rgba(10,10,10,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--faint); z-index: 100; }
.nav-logo { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; letter-spacing: 0.06em; }
.nav-logo em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle { display: flex; border: 1px solid var(--faint); }
.lang-btn { font-size: 0.68rem; letter-spacing: 0.1em; padding: 0.3rem 0.7rem; color: var(--dim); transition: all 0.2s; }
.lang-btn.active { background: var(--white); color: var(--bg); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all 0.3s; }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; top: var(--nav-h); background: var(--bg); z-index: 99; flex-direction: column; padding: 3rem 2rem; border-top: 1px solid var(--faint); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; padding: 1rem 0; border-bottom: 1px solid var(--faint); }

/* PAGE HEADER */
.page-header { padding: calc(var(--nav-h) + 4rem) 3rem 3rem; border-bottom: 1px solid var(--faint); }
.page-title { font-family: var(--serif); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1; }
.page-title em { font-style: italic; color: var(--accent); }
.page-subtitle { margin-top: 1rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim); }

/* FOOTER */
footer { padding: 2rem 3rem; border-top: 1px solid var(--faint); display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--serif); font-size: 1rem; font-weight: 300; font-style: italic; color: var(--dim); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.68rem; color: #333; }

/* WHATSAPP */
.wa-btn { position: fixed; bottom: 2rem; right: 2rem; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 200; box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: transform 0.2s; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 26px; height: 26px; fill: white; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(5,5,5,0.97); z-index: 300; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-inner { max-width: 90vw; max-height: 90vh; display: flex; gap: 3rem; align-items: center; }
.lb-img { max-height: 85vh; max-width: 65vw; width: auto; height: auto; object-fit: contain; display: block; }
.lb-info { min-width: 180px; max-width: 260px; }
.lb-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; margin-bottom: 0.4rem; }
.lb-meta { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.lb-desc { font-size: 0.85rem; color: var(--dim); line-height: 1.8; }
.lb-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); cursor: pointer; transition: color 0.2s; }
.lb-close:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-header { padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 560px) {
  .lb-inner { flex-direction: column; }
  .lb-img { max-width: 92vw; max-height: 60vh; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }
