/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:    #ffffff;
  --offwhite: #f8f7f4;
  --cream:    #f0ede6;
  --ink:      #1a1816;
  --ink-soft: #4a4540;
  --gold:     #b8975a;
  --gold-lt:  #d4b483;
  --line:     rgba(26,24,22,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; overflow-x: hidden; }
::selection { background: var(--gold); color: var(--white); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── NAVBAR ─── */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: flex-end; align-items: center;
  padding: 0 clamp(24px, 5vw, 48px); height: var(--nav-h);
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.lang-logo { margin-left: auto; margin-right: 2rem; text-decoration: none; display: flex; align-items: center; order: 2; }
.lang-logo img { height: 52px; width: auto; mix-blend-mode: multiply; transition: opacity 0.2s; }
.lang-logo:hover img { opacity: 0.7; }
.nav-links { display: flex; gap: 2rem; margin-right: auto; margin-left: clamp(24px,4vw,48px); list-style: none; order: 1; }
.nav-links a { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.lang-btns { display: flex; order: 3; }
.lang-btn { background: none; border: none; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); cursor: pointer; padding: 6px 10px; transition: color 0.2s; position: relative; }
.lang-btn::after { content: ''; position: absolute; bottom: 2px; left: 10px; right: 10px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s; }
.lang-btn.active { color: var(--gold); }
.lang-btn.active::after, .lang-btn:hover::after { transform: scaleX(1); }
.lang-btn:hover { color: var(--gold); }

/* ─── HAMBURGER ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-right: 1rem; order: 0; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); z-index: 199; padding: 1.5rem clamp(20px,5vw,40px) 2rem; flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.85rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; padding: 0.9rem 0; border-bottom: 1px solid var(--line); transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn-primary { display: inline-block; padding: 14px 36px; background: var(--ink); color: var(--white); font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: background 0.3s, transform 0.2s; }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-ghost { display: inline-block; padding: 13px 36px; border: 1px solid var(--line); color: var(--ink); font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: border-color 0.3s, color 0.3s, transform 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ─── SECTION BASE ─── */
section { padding: var(--section-pad) clamp(24px,5vw,64px); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.section-label::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--gold); }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 2rem 0; }

/* ─── FOOTER ─── */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); padding: 2rem clamp(24px,5vw,64px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 48px; width: auto; mix-blend-mode: screen; opacity: 0.9; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-bar { padding: 0 20px; }
  .lang-logo img { height: 42px; }
}
@media (max-width: 600px) {
  section { padding: 56px 20px; }
  footer { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 0.72rem; }
}
