/* ===== VARIABLES ===== */
:root {
  --brown-deep: #5c3d2e;
  --brown-mid: #8a5d4b;
  --brown-light: #b07860;
  --terracota: #c4785a;
  --terracota-light: #d4956f;
  --beige-dark: #d4bfad;
  --beige-mid: #e8d5c4;
  --beige-light: #f5ede4;
  --beige-pale: #faf5f0;
  --rose: #e8c4bc;
  --rose-light: #f4e0da;
  --rose-pale: #fdf0ec;
  --white: #fff9f5;
  --text-dark: #2d1f18;
  --text-mid: #5c3d2e;
  --text-light: #8a6a5a;
  --text-pale: #b09080;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 12px rgba(92, 61, 46, 0.08);
  --shadow-md: 0 8px 32px rgba(92, 61, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(92, 61, 46, 0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--beige-pale);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

.page { display: none; }
.page.active { display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracota);
  background: var(--rose-pale);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

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

.section-header h2, h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--brown-deep);
}

h2 em, h1 em {
  font-style: italic;
  color: var(--terracota);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown-deep);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown-deep);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--brown-deep);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--brown-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brown-deep);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.btn-light:hover {
  background: var(--beige-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.full-width { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--beige-dark);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.logo-icon {
  font-size: 22px;
  color: var(--terracota);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--brown-deep);
  line-height: 1.2;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-pale);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--brown-deep);
  background: var(--beige-mid);
}
.nav-links a.nav-cta {
  background: var(--brown-deep);
  color: var(--white);
  font-weight: 500;
}
.nav-links a.nav-cta:hover {
  background: var(--terracota);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--beige-pale);
  z-index: 999;
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--beige-dark);
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: 16px;
  color: var(--brown-deep);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--beige-mid); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--beige-pale);
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--beige-mid) 0%, transparent 70%);
  bottom: 0; left: -80px;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease both;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracota);
  background: var(--rose-pale);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown-deep);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--terracota);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 0 0 400px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-placeholder {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--beige-mid), var(--rose-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--terracota);
  line-height: 1;
}
.badge-txt {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--brown-deep);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--beige-mid);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.strip-icon { font-size: 16px; }
.strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ===== WHY SECTION ===== */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
.why-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.why-text .btn-primary { margin-top: 16px; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--beige-pale);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--beige-dark);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--beige-mid);
}
.why-icon { font-size: 28px; margin-bottom: 12px; }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== SOINS PREVIEW ===== */
.soins-preview { background: var(--beige-pale); }

.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.soin-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--beige-dark);
  transition: var(--transition);
  cursor: pointer;
}
.soin-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.soin-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--beige-mid), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.soin-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(92,61,46,0.15));
}

.soin-card-body {
  padding: 24px;
}

.soin-card-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 500;
  margin-bottom: 8px;
}

.soin-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 10px;
}

.soin-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.soin-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.soin-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terracota);
}

.soin-duration {
  font-size: 12px;
  color: var(--text-pale);
}

.soin-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-deep);
  font-size: 16px;
  transition: var(--transition);
}
.soin-card:hover .soin-arrow {
  background: var(--brown-deep);
  color: var(--white);
}

.center-btn { text-align: center; }

/* ===== SOINS FULL PAGE ===== */
.soins-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.soin-full-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--beige-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.soin-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}

.soin-full-icon {
  font-size: 40px;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--beige-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.soin-full-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 4px;
}

.soin-full-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.soin-full-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--terracota);
}

.soin-full-dur {
  font-size: 12px;
  color: var(--text-pale);
  background: var(--beige-light);
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.soin-full-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.soin-more {
  font-size: 12px;
  color: var(--terracota);
  font-weight: 500;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 31, 24, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.3s ease both;
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brown-deep);
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--beige-mid); }

.modal-icon { font-size: 48px; margin-bottom: 16px; }

.modal-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brown-deep);
  margin-bottom: 8px;
}

.modal-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--terracota);
}

.modal-dur {
  font-size: 13px;
  background: var(--beige-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.modal-desc {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-benefits {
  background: var(--beige-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.modal-benefits h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-deep);
  margin-bottom: 12px;
}
.modal-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-benefits li {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-benefits li::before {
  content: '✿';
  color: var(--terracota);
  font-size: 12px;
}

.modal-footer {
  display: flex;
  gap: 12px;
}

/* ===== FORFAITS ===== */
.forfaits-section { margin-top: 0; }
.forfaits-section h2 { margin-bottom: 48px; }

.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.forfait-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--beige-dark);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.forfait-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.forfait-card.featured {
  background: var(--brown-deep);
  border-color: transparent;
  color: var(--white);
}

.forfait-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracota);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.forfait-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--terracota);
  line-height: 1;
}
.forfait-card.featured .forfait-num { color: var(--rose-light); }

.forfait-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-pale);
  margin-bottom: 12px;
}
.forfait-card.featured .forfait-label { color: rgba(255,255,255,0.6); }

.forfait-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.forfait-card.featured .forfait-name { color: var(--white); }

.forfait-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--terracota);
  margin-bottom: 16px;
}
.forfait-card.featured .forfait-price { color: var(--rose-light); }

.forfait-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.forfait-card.featured p { color: rgba(255,255,255,0.75); }

/* ===== TEMOIGNAGES ===== */
.temoignages-section { background: var(--beige-light); }

.temoignages-slider { overflow: hidden; }

.temo-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.temo-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--beige-dark);
}

.temo-stars {
  color: var(--terracota);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.temo-card p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.temo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.temo-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-deep);
  font-weight: 500;
}

.temo-author strong {
  display: block;
  font-size: 14px;
  color: var(--brown-deep);
}
.temo-author span {
  font-size: 12px;
  color: var(--text-pale);
}

.temo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.temo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--beige-dark);
  transition: var(--transition);
}
.temo-dot.active { background: var(--terracota); width: 24px; border-radius: 4px; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--beige-pale); }

.cta-box {
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--terracota-light) 0%, transparent 60%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-deco {
  font-size: 36px;
  color: var(--rose);
  opacity: 0.6;
  margin-bottom: 24px;
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-box h2 em { color: var(--rose-light); }

.cta-box p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--beige-pale) 0%, var(--rose-pale) 100%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 500px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.about-img-wrap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--beige-mid), var(--rose));
}

.about-certifs {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.certif-item {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--beige-light);
  border-radius: var(--radius-md);
}

.about-text-col h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.about-intro {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-style: italic;
}

.about-text-col p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values { margin: 36px 0; }
.about-values h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-deep);
  margin-bottom: 20px;
}

.values-list { display: flex; flex-direction: column; gap: 16px; }

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--beige-pale);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige-dark);
}
.value-item span { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.value-item strong {
  display: block;
  color: var(--brown-deep);
  font-size: 14px;
  margin-bottom: 4px;
}
.value-item p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }

.about-parcours { margin: 36px 0; }
.about-parcours h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-deep);
  margin-bottom: 20px;
}

.timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 24px;
  bottom: 0;
  width: 1px;
  background: var(--beige-dark);
}
.timeline-item:last-child::before { display: none; }

.tl-year {
  flex-shrink: 0;
  width: 56px;
  height: 28px;
  background: var(--rose-pale);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  color: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1px solid var(--rose);
  position: relative;
  z-index: 1;
}

.tl-content {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.tl-content strong { color: var(--brown-deep); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown-deep);
  margin-bottom: 28px;
}

.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  background: var(--beige-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 4px;
}
.info-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--beige-dark);
  font-size: 13px;
  color: var(--brown-mid);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  border-color: var(--brown-mid);
  background: var(--beige-light);
}

.contact-note {
  background: var(--rose-pale);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--rose);
}
.contact-note p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== FORM ===== */
.contact-form-wrap h3, .rdv-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown-deep);
  margin-bottom: 28px;
}

.contact-form, .rdv-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--beige-pale);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terracota);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 120, 90, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  cursor: pointer;
}

.form-success {
  display: none;
  background: #d4f0d4;
  color: #2d6b2d;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  text-align: center;
}
.form-success.show { display: block; }

.form-mention {
  font-size: 12px;
  color: var(--text-pale);
  text-align: center;
  line-height: 1.6;
}

/* ===== RDV PAGE ===== */
.rdv-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.rdv-info { display: flex; flex-direction: column; gap: 20px; }

.rdv-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--beige-dark);
}
.rdv-info-card.highlight {
  background: var(--rose-pale);
  border-color: var(--rose);
}

.rdv-info-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown-deep);
  margin-bottom: 20px;
}

.steps { display: flex; flex-direction: column; gap: 16px; }

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--brown-deep);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.step strong {
  display: block;
  font-size: 13px;
  color: var(--brown-deep);
  margin-bottom: 2px;
}
.step p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

.infos-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.infos-list li {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rdv-info-card.highlight p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-links h5, .footer-contact h5 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-social a {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; min-height: auto; padding-bottom: 60px; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; flex: 0 0 auto; width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-badge { left: 8px; }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .soins-grid { grid-template-columns: repeat(2, 1fr); }
  .temo-track { grid-template-columns: repeat(2, 1fr); }
  .forfaits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { max-width: 320px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section { padding: 64px 0; }
  .hero { padding: 100px 16px 60px; gap: 40px; }

  .soins-grid { grid-template-columns: 1fr; }
  .soins-full-grid { grid-template-columns: 1fr; }
  .temo-track { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .rdv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-box { padding: 32px 24px; }
  .modal-footer { flex-direction: column; }
  .soin-full-card { flex-direction: column; }
  .intro-strip { gap: 16px; }
  .strip-divider { display: none; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 120px 16px 60px; }
}

@media (max-width: 480px) {
  .why-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .hero-img-placeholder { height: 300px; }
}


/* ===== CALENDRIER EMBED ===== */
.cal-embed-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-dark);
}

/* NOTICE DE CONFIGURATION */
.cal-setup-notice {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--beige-dark);
  box-shadow: var(--shadow-md);
}

.cal-setup-icon { font-size: 56px; margin-bottom: 20px; }

.cal-setup-notice h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brown-deep);
  margin-bottom: 12px;
}

.cal-setup-notice > p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.cal-setup-steps {
  background: var(--beige-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.cal-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.cal-step-item span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--terracota);
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cal-step-item a { color: var(--terracota); text-decoration: underline; }

.cal-alt {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--beige-dark);
}
.cal-alt p { font-size: 13px; color: var(--text-pale); margin-bottom: 12px; }
