/* ===== Style inspiré Elisa Kerrache – doux, aéré, élégant ===== */
:root {
  --bg: #faf7f4;
  --bg-soft: #f5f0eb;
  --blanc: #ffffff;
  --texte: #3d3632;
  --texte-clair: #6b635c;
  --taupe: #8a7e74;
  --accent: #a89b8f;
  --lavande: #c9b8c8;
  --menthe: #a8c5b8;
  --peche: #e8d0c0;
  --creme: #f9f5f1;
  --ombre: rgba(80, 70, 60, 0.06);
  --ombre-forte: rgba(80, 70, 60, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.28s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--texte);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--texte);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER – blanc propre ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: 0 2px 16px var(--ombre); }

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; object-fit: contain; }

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texte-clair);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--texte); }

.btn-rdv {
  background: transparent;
  color: var(--texte);
  border: 1.5px solid var(--texte);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-rdv:hover {
  background: var(--texte);
  color: white;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--texte);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--blanc);
  z-index: 999;
  padding: 90px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -8px 0 28px var(--ombre-forte);
  transition: right 0.35s ease;
}

.mobile-menu.open { right: 0; }

.mobile-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--texte);
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-soft);
}

.mobile-rdv { margin-top: 12px; text-align: center; }

/* ===== HERO – dégradé doux + photo ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #faf6f2 0%, #f0e8e4 40%, #e8e0ec 100%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-portrait {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 8px 28px rgba(100,80,70,0.15);
  border: 3px solid white;
}

.hero-eyebrow {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: var(--texte-clair);
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.02rem;
  color: var(--texte-clair);
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--texte);
  color: white;
  border: 1.5px solid var(--texte);
}

.btn-primary:hover {
  background: transparent;
  color: var(--texte);
}

.btn-secondary {
  background: transparent;
  color: var(--texte);
  border: 1.5px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--bg-soft);
}

.hero-photo-wrap {
  position: relative;
  z-index: 2;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(80,60,50,0.12);
  object-fit: cover;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 130px 24px 55px;
  text-align: center;
  background: linear-gradient(160deg, #faf6f2, #f0e8ec);
}

.page-hero.sage { background: linear-gradient(160deg, #f2f6f3, #eef2f0); }
.page-hero.reflexo { background: linear-gradient(160deg, #f5f0f6, #f0eaf0); }
.page-hero.massage { background: linear-gradient(160deg, #f8f3ee, #f5efe8); }

.page-hero .eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--taupe);
  margin-bottom: 8px;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--texte-clair);
  max-width: 460px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--taupe);
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
}

/* ===== ABOUT ===== */
.about { background: var(--blanc); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-card {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--ombre);
}

.about-icon { font-size: 1.8rem; margin-bottom: 14px; }
.about-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.about-card p { font-size: 0.95rem; color: var(--texte-clair); }

/* ===== ACTIVITY CARDS (style Elisa) ===== */
.activities { background: var(--blanc); }

.act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.act-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px var(--ombre);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.act-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--ombre-forte);
}

.act-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}

.act-card.sage .act-icon-circle { background: #d4e8dc; }
.act-card.reflexo .act-icon-circle { background: #e4d8ec; }
.act-card.massage .act-icon-circle { background: #f0e4d4; }

.act-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.act-card p { font-size: 0.94rem; color: var(--texte-clair); margin-bottom: 20px; }

.act-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--texte);
  border: 1.5px solid var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all var(--transition);
}

.act-link:hover {
  background: var(--texte);
  color: white;
  border-color: var(--texte);
}

/* ===== PRESTATIONS ===== */
.presta-block {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 24px;
  box-shadow: 0 3px 16px var(--ombre);
}

.presta-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.badge-sage { background: #d4e8dc; color: #3d6b55; }
.badge-reflexo { background: #e4d8ec; color: #5c4a78; }
.badge-massage { background: #f0e4d4; color: #7a5c3a; }

.presta-block h3 { font-size: 1.35rem; margin-bottom: 14px; }
.presta-intro { color: var(--texte-clair); margin-bottom: 18px; font-size: 0.98rem; }

.presta-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.presta-list li { display: flex; gap: 12px; align-items: flex-start; }

.check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--bg-soft);
  color: var(--taupe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

.presta-list strong { display: block; margin-bottom: 1px; font-size: 0.98rem; }
.presta-list p { font-size: 0.88rem; color: var(--texte-clair); }

.note {
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--creme);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--texte-clair);
  border-left: 3px solid var(--peche);
}

/* ===== TARIFS COMPACTS ===== */
.tarifs-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
}

.tarif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--blanc);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px var(--ombre);
  flex-wrap: wrap;
}

.tarif-row .label {
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
  min-width: 140px;
}

.tarif-row .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.tarif-row .duree {
  font-size: 0.85rem;
  color: var(--texte-clair);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 20px;
}

.tarif-row .prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--texte);
  min-width: 70px;
  text-align: right;
}

.tarif-row.highlight {
  background: linear-gradient(135deg, #f5f0eb, #f0ebe6);
  border: 1px solid rgba(0,0,0,0.04);
}

/* ===== CONTACT ===== */
.contact { background: linear-gradient(160deg, #faf6f2, #f0ebe6); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 28px;
}

.contact-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 14px var(--ombre);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px var(--ombre-forte);
}

.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.contact-value { font-size: 0.95rem; color: var(--texte-clair); margin-bottom: 14px; word-break: break-all; }
.contact-cta { font-size: 0.88rem; font-weight: 600; color: var(--taupe); }

.contact-note {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.8);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--texte-clair);
}

/* ===== FOOTER ===== */
.footer {
  background: #3d3632;
  color: rgba(255,255,255,0.85);
  padding: 40px 0 30px;
  text-align: center;
}

.footer-brand { display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.footer-logo { height: 56px; width: auto; object-fit: contain; filter: brightness(1.15); opacity: 0.95; }
.footer-text { font-size: 0.88rem; opacity: 0.8; margin-bottom: 16px; line-height: 1.6; }
.footer-copy { font-size: 0.78rem; opacity: 0.5; }

/* ===== FLOATING RDV ===== */
.floating-rdv {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--texte);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  box-shadow: 0 5px 20px rgba(60,50,40,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-rdv:hover {
  transform: scale(1.08);
  box-shadow: 0 7px 24px rgba(60,50,40,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .nav, .btn-rdv { display: none; }
  .burger { display: flex; }
  .logo-img { height: 40px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-photo { margin: 0 auto; max-width: 320px; }
  .hero-portrait { margin-left: auto; margin-right: auto; }

  .hero { min-height: auto; padding: 110px 20px 60px; }
  .page-hero { padding: 110px 20px 45px; }
  .section { padding: 60px 0; }

  .floating-rdv {
    bottom: 18px; right: 18px;
    width: 50px; height: 50px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 260px; text-align: center; }

  .tarif-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .tarif-row .meta { width: 100%; justify-content: space-between; }
}
