:root {
  --sand: #F5F0EB; --sand-dark: #E8DFD5; --stone: #2C2825; --stone-light: #4A4540;
  --terracotta: #C4775A; --terracotta-dark: #A8614A; --sage: #6B7F5E; --sage-light: #8FA67E;
  --cream: #FDFBF8; --warm-gray: #9A918A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--stone); background: var(--cream); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(253,251,248,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(44,40,37,0.06); transition: box-shadow 0.3s; }
.nav.scrolled { box-shadow: 0 2px 20px rgba(44,40,37,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; padding: 16px 24px; }
.nav-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--stone); text-decoration: none; letter-spacing: 0.02em; }
.nav-logo span { color: var(--terracotta); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 400; color: var(--stone-light); text-decoration: none; letter-spacing: 0.03em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta { background: var(--terracotta); color: white; border: none; padding: 10px 24px; border-radius: 6px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--terracotta-dark); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger svg { width: 24px; height: 24px; stroke: var(--stone); }
@media (max-width: 768px) {
  .nav-links { display: none; } .nav-cta-desktop { display: none; } .nav-burger { display: block; }
  .nav-mobile { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { font-family: var(--font-display); font-size: 1.8rem; color: var(--stone); text-decoration: none; font-weight: 400; }
  .nav-mobile .close-btn { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--stone); }
}

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; background: var(--sand); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 30%, rgba(196,119,90,0.08) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(107,127,94,0.06) 0%, transparent 50%); }
.hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 120px 24px 80px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 300; line-height: 1.15; color: var(--stone); max-width: 700px; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.hero-sub { font-size: 1.1rem; line-height: 1.7; color: var(--stone-light); max-width: 520px; margin-bottom: 16px; font-weight: 300; }
.hero-price { font-size: 1rem; color: var(--stone); margin-bottom: 32px; font-weight: 400; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-price .price-struck { text-decoration: line-through; color: var(--warm-gray); font-family: var(--font-display); font-size: 1.3rem; }
.hero-price .price-now { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; color: var(--terracotta); }
.hero-price .price-badge { background: var(--sage); color: white; padding: 4px 14px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.btn-primary { background: var(--terracotta); color: white; border: none; padding: 16px 36px; border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--stone); border: 1.5px solid var(--stone); padding: 15px 36px; border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 400; cursor: pointer; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-secondary:hover { background: var(--stone); color: white; }
.hero-note { padding-top: 32px; border-top: 1px solid rgba(44,40,37,0.1); }
.hero-note p { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.6; }

/* SECTION TITLES */
.section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--terracotta); font-weight: 500; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; line-height: 1.2; color: var(--stone); margin-bottom: 20px; }
.section-subtitle { font-size: 1rem; color: var(--warm-gray); line-height: 1.7; max-width: 560px; font-weight: 300; }

/* TARIFS */
.tarifs { background: var(--sand); }
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.tarif-card { background: var(--cream); border-radius: 12px; padding: 32px; border: 1px solid rgba(44,40,37,0.06); text-align: center; }
.tarif-card.highlight { border: 2px solid var(--terracotta); position: relative; }
.tarif-card.highlight::before { content: 'Le plus demandé'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--terracotta); color: white; padding: 4px 16px; border-radius: 12px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.tarif-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 4px; }
.tarif-card .tarif-detail { font-size: 0.82rem; color: var(--warm-gray); margin-bottom: 16px; }
.tarif-card .tarif-prix { font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--stone); margin-bottom: 4px; }
.tarif-card .tarif-unit { font-size: 0.8rem; color: var(--warm-gray); margin-bottom: 16px; }
.tarif-card .tarif-save { font-size: 0.78rem; color: var(--sage); font-weight: 500; }
.tarif-lancement { margin-top: 32px; text-align: center; padding: 24px; background: rgba(107,127,94,0.08); border-radius: 12px; }
.tarif-lancement p { font-size: 0.92rem; color: var(--stone-light); line-height: 1.6; }
.tarif-lancement strong { color: var(--sage); }
@media (max-width: 768px) { .tarifs-grid { grid-template-columns: 1fr; } }

/* MASSAGES */
.massages { background: var(--cream); }
.massage-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 48px; }
.massage-item { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(44,40,37,0.1); min-height: 420px; }
.massage-item:last-child { border-bottom: 1px solid rgba(44,40,37,0.1); }
.massage-item:nth-child(even) .massage-visual { order: -1; }
.massage-visual { background: var(--sand); display: flex; align-items: center; justify-content: center; padding: 48px; }
.massage-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.massage-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.massage-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terracotta); font-weight: 600; margin-bottom: 12px; }
.massage-content h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 8px; color: var(--stone); }
.massage-content .duration { font-size: 0.82rem; color: var(--warm-gray); margin-bottom: 20px; }
.massage-content h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--stone); font-weight: 600; margin-bottom: 8px; margin-top: 20px; }
.massage-content p { font-size: 0.92rem; line-height: 1.75; color: var(--stone-light); font-weight: 300; }
.massage-content .reassurance { margin-top: 20px; padding: 16px; background: var(--sand); border-radius: 8px; font-size: 0.85rem; color: var(--stone-light); line-height: 1.6; }
.massage-content .reassurance strong { color: var(--stone); font-weight: 500; }
.massage-signature .massage-visual { background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%); }
.massage-signature .massage-icon { color: white; }
.cure-options { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 20px; }
.cure-option { padding: 16px; border-radius: 8px; background: var(--sand); text-align: center; }
.cure-option h5 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--stone); margin-bottom: 4px; }
.cure-option p { font-size: 0.78rem !important; color: var(--warm-gray) !important; margin-bottom: 0 !important; }
.cure-option .cure-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--terracotta); margin-top: 4px; }
@media (max-width: 768px) {
  .massage-item { grid-template-columns: 1fr; }
  .massage-item:nth-child(even) .massage-visual { order: 0; }
  .massage-visual { min-height: 200px; padding: 32px; }
  .massage-content { padding: 32px 24px; }
  .cure-options { grid-template-columns: 1fr; }
}

/* DEROULEMENT */
.deroulement { background: var(--sand); }
.deroulement-timeline { margin-top: 48px; position: relative; padding-left: 40px; }
.deroulement-timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 1px; background: rgba(44,40,37,0.15); }
.timeline-step { position: relative; padding-bottom: 40px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -33px; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--cream); border: 2px solid var(--terracotta); }
.timeline-step h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--stone); margin-bottom: 8px; }
.timeline-step p { font-size: 0.92rem; line-height: 1.75; color: var(--stone-light); font-weight: 300; max-width: 560px; }

/* A PROPOS */
.apropos { background: var(--cream); }
.apropos-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.apropos-visual { background: var(--sand); border-radius: 12px; padding: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 400px; position: relative; }
.apropos-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(196,119,90,0.06) 0%, transparent 70%); border-radius: 12px; }
.apropos-hands { font-size: 4rem; margin-bottom: 24px; position: relative; z-index: 1; opacity: 0.7; }
.apropos-ecole { text-align: center; position: relative; z-index: 1; }
.apropos-ecole p { font-size: 0.82rem; color: var(--warm-gray); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.apropos-ecole a { font-family: var(--font-display); font-size: 1.1rem; color: var(--terracotta); text-decoration: none; font-weight: 500; }
.apropos-text blockquote { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; line-height: 1.5; color: var(--stone); font-style: italic; margin-bottom: 28px; padding-left: 24px; border-left: 3px solid var(--terracotta); }
.apropos-text p { font-size: 0.95rem; line-height: 1.8; color: var(--stone-light); margin-bottom: 16px; font-weight: 300; }
.formation-note { margin-top: 24px; padding: 20px; background: var(--sand); border-radius: 8px; }
.formation-note p { font-size: 0.88rem; margin-bottom: 0; }
@media (max-width: 768px) { .apropos-inner { grid-template-columns: 1fr; gap: 40px; } .apropos-visual { min-height: 260px; } }

/* ZONES */
.zones { background: var(--sand); }
.zones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.zone-card { background: var(--cream); border-radius: 12px; padding: 40px; border: 1px solid rgba(44,40,37,0.06); }
.zone-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: 4px; }
.zone-card .zone-region { font-size: 0.82rem; color: var(--terracotta); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; margin-bottom: 16px; }
.zone-card p { font-size: 0.92rem; line-height: 1.7; color: var(--stone-light); font-weight: 300; }
.zone-dispo { margin-top: 16px; display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 500; background: rgba(107,127,94,0.12); color: var(--sage); }
@media (max-width: 768px) { .zones-grid { grid-template-columns: 1fr; } }

/* RESERVER */
.reserver { background: var(--stone); color: white; text-align: center; }
.reserver .section-label { color: var(--terracotta); }
.reserver .section-title { color: white; }
.reserver .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 40px; }
.reserver .btn-primary { font-size: 1.1rem; padding: 18px 48px; }
.reserver-info { margin-top: 40px; font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* FAQ */
.faq { background: var(--cream); }
.faq-list { margin-top: 48px; max-width: 700px; }
.faq-item { border-bottom: 1px solid rgba(44,40,37,0.1); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 24px 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--stone); transition: color 0.2s; }
.faq-question:hover { color: var(--terracotta); }
.faq-question .faq-toggle { flex-shrink: 0; font-size: 1.4rem; font-weight: 300; transition: transform 0.3s; color: var(--terracotta); }
.faq-question.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 500px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.92rem; line-height: 1.75; color: var(--stone-light); font-weight: 300; }

/* FOOTER */
.footer { background: var(--stone); color: rgba(255,255,255,0.5); padding: 48px 0; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: white; margin-bottom: 16px; }
.footer-logo span { color: var(--terracotta); }
.footer p { font-size: 0.82rem; line-height: 1.7; }
.footer a { color: var(--terracotta); text-decoration: none; }
.footer-links { margin-top: 20px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
#booking-btn { cursor: pointer !important; pointer-events: auto !important; }