:root {
  --ink: #1a1714;
  --muted: #6b6560;
  --light: #b0aaa5;
  --accent: #8B6914;
  --accent-light: #C9A84C;
  --border: rgba(26,23,20,0.1);
  --bg: #ffffff;
  --white: #ffffff;
  --surface: #f7f6f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: 'Jost', sans-serif; background: var(--bg); color: var(--ink); font-weight: 300; overflow-x: hidden; width: 100%; max-width: 100vw; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; display: block; }
p, h1, h2, h3, h4, blockquote, span, a, li { overflow-wrap: break-word; word-break: break-word; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3.5rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); text-decoration: none; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.lang-switcher { display: flex; gap: 0.3rem; }
.lang-btn { background: none; border: none; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 2px 5px; transition: color 0.2s; }
.lang-btn.active { color: var(--accent); border-bottom: 1px solid var(--accent); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all 0.3s; }

/* FOOTER */
footer {
  background: var(--ink); color: rgba(255,255,255,0.4);
  padding: 2.5rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.footer-links { display: flex; gap: 1.8rem; list-style: none; }
.footer-links a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* SHARED MOBILE NAV/FOOTER */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 1.5rem; border-bottom: 1px solid var(--border);
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}
