/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Tokens ── */
:root {
  --bg: #FDFAF6;
  --beige: #F6F2EC;
  --sep: #F0ECE6;
  --border: #E8E4DE;
  --accent: #B58C64;
  --accent-text: #7A5C3E;
  --text: #1A1614;
  --secondary: #888;
  --tertiary: #555;
}

/* ── Utilitaires ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0,0,0,0); overflow: hidden;
}

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 56px;
  background: rgba(253,250,246,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sep);
  display: flex; align-items: center;
  padding: 0 max(24px, 5vw);
}
.site-header__inner {
  max-width: 1120px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header__logo {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 21px;
  color: var(--text); text-decoration: none;
}
.site-header__nav { display: flex; gap: 24px; align-items: center; }
.site-header__nav a {
  font-size: 13px; color: var(--secondary);
  text-decoration: none; transition: color 0.15s;
}
.site-header__nav a:hover { color: var(--accent); }

/* ── Footer ── */
.site-footer {
  background: var(--beige);
  border-top: 1px solid var(--sep);
  padding: 44px max(24px, 5vw);
}
.site-footer__inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.site-footer__logo {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 19px; color: var(--text);
}
.site-footer__links { display: flex; gap: 28px; }
.site-footer__links a {
  font-size: 13px; color: var(--secondary);
  text-decoration: none; transition: color 0.15s;
}
.site-footer__links a:hover { color: var(--accent); }
.site-footer__copy {
  max-width: 1120px; margin: 24px auto 0;
  padding-top: 24px; border-top: 1px solid var(--sep);
  font-size: 11px; color: var(--secondary); opacity: 0.55;
  text-align: center;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .badge, .badge-dot { animation: none !important; }
}
