:root {
  --principal: #D4B8A8;
  --secondaire: #A67C6D;
  --accent: #F5E8E0;
  --accent2: #E8D5C9;
  --texte: #3F2A1F;
  --blanc: #FFFBF8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--texte);
  background: linear-gradient(180deg, var(--accent) 0%, #faf6f2 40%, var(--accent2) 100%);
  min-height: 100vh;
  padding-top: 76px;
}
h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}
a { color: var(--secondaire); text-decoration: none; }
a:hover { opacity: 0.9; }
img { max-width: 100%; height: auto; display: block; }
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(245, 232, 224, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--principal);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.logo-row { display: flex; align-items: center; gap: 0.75rem; }
.logo-row img { height: 48px; width: auto; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; letter-spacing: 0.15em; color: var(--texte); }
.nav-desktop { display: none; gap: 0.35rem; flex-wrap: wrap; align-items: center; }
@media (min-width: 1100px) { .nav-desktop { display: flex; } }
.btn-menu {
  padding: 0.4rem 0.65rem; font-size: 0.7rem; font-weight: 600;
  color: var(--texte); border-radius: 999px; transition: background 0.2s;
}
.btn-menu:hover { background: var(--principal); }
.btn-rdv-header {
  background: var(--secondaire); color: #fff !important; padding: 0.6rem 1rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 600; white-space: nowrap;
}
.btn-rdv-header:hover { background: #8C5F4A; }
.burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
@media (min-width: 1100px) { .burger { display: none; } }
.burger span { width: 26px; height: 2px; background: var(--texte); }
.nav-mobile {
  display: none; width: 100%; flex-direction: column; gap: 0.5rem; padding: 1rem 0;
  border-top: 1px solid var(--principal);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 0.5rem; }
.fab-rdv {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 999;
  background: var(--secondaire); color: #fff; padding: 0.85rem 1.15rem;
  border-radius: 999px; font-size: 0.8rem; font-weight: 600; box-shadow: 0 8px 24px rgba(166,124,109,0.45);
  animation: pulse-soft 3s ease-in-out infinite;
}
@keyframes pulse-soft { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
.hero {
  position: relative; min-height: 58vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 0 0 40% 40% / 0 0 8% 8%;
}
.hero--compact { min-height: 180px; height: 26vh; max-height: 280px; }
.hero--compact .hero-content { padding: 0.85rem 1.25rem; }
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; filter: blur(2px) brightness(0.92); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(212,184,168,0.35), rgba(63,42,31,0.5));
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem 1.5rem; color: #fff; max-width: 720px; }
.hero-content h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); margin-bottom: 0.5rem; text-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.section { max-width: 900px; margin: 0 auto; padding: 3rem 1.25rem; }
.section-wide { max-width: 1100px; }
.section h2 { color: var(--secondaire); margin-bottom: 1rem; font-size: 1.65rem; }
.wave-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23D4B8A8' fill-opacity='0.12' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,75 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: bottom; background-size: 100% auto;
}
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card {
  background: var(--blanc); border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(63,42,31,0.08); border: 1px solid var(--accent2);
  transition: transform 0.25s ease;
}
.card:hover { transform: translateY(-4px); }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.btn-pill {
  display: inline-block; margin-top: 0.75rem; padding: 0.5rem 1.25rem;
  background: var(--principal); color: var(--texte); border-radius: 999px; font-size: 0.85rem; font-weight: 600;
}
.btn-pill:hover { background: var(--secondaire); color: #fff; }
footer {
  background: var(--principal); color: var(--texte); padding: 3rem 1.25rem; margin-top: 3rem; text-align: center;
}
footer a { color: var(--texte); font-weight: 500; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; }
.round-photo { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent2); margin: 0 auto 1rem; }
.two-col { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 768px) { .two-col { grid-template-columns: 220px 1fr; } }
.bloc-theme {
  padding: 1.5rem; border-radius: 16px; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-left: 4px solid var(--secondaire);
}
table.tarifs { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
table.tarifs th, table.tarifs td { border: 1px solid var(--principal); padding: 0.65rem; text-align: left; }
table.tarifs th { background: var(--accent); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-weight: 500; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.65rem; border: 1px solid var(--principal); border-radius: 10px; font-family: inherit;
}
.fade-in { animation: fadeIn 0.8s ease forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }
ul.check li { list-style: none; padding-left: 1.25rem; position: relative; margin: 0.35rem 0; }
ul.check li::before { content: '✓'; position: absolute; left: 0; color: var(--secondaire); font-weight: bold; }
.star-list li { list-style: none; padding: 0.5rem 0 0.5rem 1.5rem; position: relative; }
.star-list li::before { content: '★'; position: absolute; left: 0; color: var(--secondaire); font-size: 0.85rem; }
