/* ════════════════════════════════════════════════════
   LUMIÈRE — Layout (Header, Footer, Nav)
   ════════════════════════════════════════════════════ */

/* ── Top bar (announcement) ───────────────────────── */
.topbar {
  background: var(--ink-900);
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 9px 14px;
  letter-spacing: 0.04em;
}
.topbar span { opacity: 0.85; }

/* ── Header / Navbar ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 245, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(253, 250, 245, 0.96);
  border-bottom-color: var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-7);
  padding: var(--sp-5) 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.brand .brand-dot { color: var(--rose-500); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 9px 16px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-pill);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  letter-spacing: -0.005em;
}
.nav-menu a:hover { color: var(--rose-600); background: var(--rose-50); }
.nav-menu a.active { color: var(--rose-600); background: var(--rose-50); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  position: relative;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav-icon-btn:hover { background: var(--rose-50); color: var(--rose-600); }
.nav-icon-btn .badge {
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--rose-500);
  color: #fff;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle {
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.04em;
  transition: all var(--dur-fast) var(--ease);
}
.lang-toggle:hover { border-color: var(--ink-900); color: var(--ink-900); }

.menu-burger { display: none; width: 42px; height: 42px; }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: var(--sp-11) 0 var(--sp-7);
  margin-top: var(--sp-12);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -150px;
  inset-inline-end: -120px;
  width: 400px;
  height: 400px;
  background: var(--rose-100);
  opacity: 0.4;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-9);
  margin-bottom: var(--sp-9);
  position: relative;
  z-index: 1;
}
.footer-brand {
  max-width: 320px;
}
.footer-brand .brand { font-size: 32px; margin-bottom: var(--sp-4); }
.footer-about {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.footer-socials {
  display: flex;
  gap: var(--sp-2);
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.footer-socials a:hover {
  color: var(--rose-600);
  border-color: var(--rose-300);
  background: var(--rose-50);
}

.footer-col h4 {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  transition: color var(--dur-fast) var(--ease);
}
.footer-col a:hover { color: var(--rose-600); }

.footer-bottom {
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-copy {
  font-size: var(--fs-xs);
  color: var(--ink-500);
}
.footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-payments img {
  height: 26px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  padding: 3px 7px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .menu-burger { display: flex; align-items: center; justify-content: center; color: var(--ink-700); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .footer-brand { grid-column: 1 / -1; max-width: 460px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
