*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #FAFAF8;
  --off: #F2F0EC;
  --dark: #1C1C1A;
  --mid: #6B6860;
  --accent: #C4873A;
  --accent-light: #F0E0C8;
  --line: rgba(28,28,26,0.1);
}

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--dark); font-family: 'DM Sans', sans-serif; font-weight: 300; overflow-x: hidden; padding-bottom: 64px; }

/* ── PHONE BAR ── */
.phone-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; gap: 0.8rem; padding: 1rem;
  text-decoration: none; transition: background 0.3s;
}
.phone-bar:hover { background: #b07832; }
.phone-bar svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
.phone-bar span { color: white; font-size: 1rem; font-weight: 500; letter-spacing: 0.05em; }
.phone-bar small { color: rgba(255,255,255,0.75); font-size: 0.75rem; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--dark); color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: flex-end;
  gap: 2rem; padding: 0.5rem 5vw;
  font-size: 0.72rem; letter-spacing: 0.08em;
}
.top-bar a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.25s;
}
.top-bar a:hover { color: var(--accent); }
.top-bar svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }
.top-bar .sep { opacity: 0.2; }
@media (max-width: 768px) { .top-bar { display: none; } }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5vw;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; color: var(--dark); letter-spacing: 0.05em; }
.nav-logo-sub { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.3s;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a.active { color: var(--dark); border-bottom-color: var(--accent); }
.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--dark); color: white; padding: 0.7rem 1.4rem;
  text-decoration: none; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.05em; transition: background 0.3s;
}
.nav-phone:hover { background: var(--accent); }
.nav-phone svg { width: 14px; height: 14px; fill: white; }

/* Burger menu (mobile) */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 61px; left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--line);
  flex-direction: column; padding: 1.5rem 5vw;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; padding: 1rem 0;
  border-bottom: 1px solid var(--line); transition: color 0.3s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--accent); font-weight: 500; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--dark); }

/* ── PAGE HEADER (toutes pages sauf accueil) ── */
.page-header {
  padding: 5rem 5vw 4rem;
  background: var(--off);
  border-bottom: 1px solid var(--line);
}
.page-header-tag { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.page-header h1 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1; }
.page-header h1 em { font-style: italic; color: var(--accent); }
.page-header p { font-size: 0.9rem; color: var(--mid); margin-top: 1rem; max-width: 520px; line-height: 1.8; }
.breadcrumb { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── COMMUNS ── */
.section-tag { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2; margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--accent); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CTA COMMUNS ── */
.cta-main {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: white; padding: 1rem 2rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none; transition: background 0.3s, transform 0.2s;
}
.cta-main:hover { background: #b07832; transform: translateY(-2px); }
.cta-main svg { width: 16px; height: 16px; fill: white; }
.cta-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--line); color: var(--dark); padding: 1rem 1.8rem;
  font-size: 0.85rem; text-decoration: none; transition: border-color 0.3s, background 0.3s;
}
.cta-secondary:hover { border-color: var(--dark); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: white;
  padding: 3rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  body { padding-bottom: 64px; }
}
