@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
  --ink: #1c1c1a;
  --sage: #7a9e7e;
  --sage-light: #a8c5ab;
  --sage-dark: #4e7452;
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --beige: #e8e0d0;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --text-muted: #6b6560;
  --shadow: rgba(28, 28, 26, 0.08);
}

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

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 var(--beige);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--sage-dark); }

.nav-cta {
  background: var(--sage);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
}

.nav-cta:hover { background: var(--sage-dark) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--ink); }
.mobile-menu a:hover { color: var(--sage); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sage);
}

.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  background: var(--ink);
  color: var(--warm-white);
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover { background: var(--sage-dark); color: white; }

.btn-secondary {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover { color: var(--sage-dark); }
.btn-secondary::after { content: '→'; transition: transform 0.3s; }
.btn-secondary:hover::after { transform: translateX(4px); }

.hero-credentials {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-cred { text-align: left; }
.hero-cred-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--sage-dark);
  line-height: 1;
}

.hero-cred-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c8d8c2 0%, #8fb893 40%, #5a8a5e 100%);
  opacity: 0;
  animation: fadeIn 1.2s ease 0.3s forwards;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E");
}

.hero-botanical {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.12;
}

.hero-botanical svg { width: 70%; height: 70%; }

.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: -2rem;
  background: var(--warm-white);
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 60px var(--shadow);
  max-width: 220px;
  opacity: 0;
  animation: slideRight 0.8s ease 1.2s forwards;
}

.hero-badge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
  font-style: italic;
}

.hero-badge-author {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.8rem;
}

/* Floating needle decoration */
.hero-needle {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6), transparent);
  transform: rotate(15deg);
  animation: float 4s ease-in-out infinite;
}

.hero-needle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
}

/* ===== SECTIONS COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--sage-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--cream);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 3rem;
  align-items: center;
}

.strip-divider { background: var(--beige); align-self: stretch; }

.strip-item { text-align: center; padding: 1rem; }

.strip-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--sage);
}

.strip-item h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.strip-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 7rem 6rem;
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--beige);
}

.service-card {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-number { color: var(--sage-light); }

.service-name {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
}

.service-link::after { content: '→'; transition: transform 0.3s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 8rem 6rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(122, 158, 126, 0.15);
}

.philosophy::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(122, 158, 126, 0.1);
}

.philosophy-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cream);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 2rem;
}

.philosophy-author {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 7rem 6rem;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--warm-white);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--sage-light);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: white;
}

.testimonial-name { font-size: 0.85rem; font-weight: 400; color: var(--ink); }
.testimonial-stars { font-size: 0.7rem; color: var(--gold); margin-top: 0.1rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-content h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }

.cta-image {
  height: 300px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  position: relative;
  overflow: hidden;
}

.cta-image::after {
  content: '針';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(255,255,255,0.1);
  font-family: serif;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 6rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.5rem;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.5rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(245, 240, 232, 0.6); }
.footer-col ul a:hover { color: var(--sage-light); }
.footer-col p { font-size: 0.82rem; color: rgba(245, 240, 232, 0.6); line-height: 2; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 10rem 6rem 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(122, 158, 126, 0.08));
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--sage);
}

.page-hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); max-width: 600px; }
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-top: 1rem;
  font-weight: 300;
}

/* ===== PRESTATIONS PAGE ===== */
.prestations-section {
  padding: 6rem;
  background: var(--warm-white);
}

.prestation-item {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--beige);
  transition: all 0.3s;
}

.prestation-item:first-child { padding-top: 0; }
.prestation-item:last-child { border-bottom: none; }
.prestation-item:hover { padding-left: 1rem; }

.prestation-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--beige);
  line-height: 1;
  transition: color 0.3s;
}

.prestation-item:hover .prestation-number { color: var(--sage-light); }

.prestation-content h3 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.prestation-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(122, 158, 126, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 1px;
}

.prestation-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-top: 0.8rem;
}

.prestation-price-box {
  text-align: right;
}

.prestation-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--sage-dark);
  line-height: 1;
}

.prestation-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

.prestation-book {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  cursor: pointer;
  transition: gap 0.3s;
}

.prestation-book:hover { gap: 0.8rem; }

/* Forfaits */
.forfaits-section {
  padding: 6rem;
  background: var(--cream);
}

.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.forfait-card {
  background: var(--warm-white);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid transparent;
}

.forfait-card.featured {
  border-top-color: var(--sage);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px var(--shadow);
}

.forfait-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  white-space: nowrap;
}

.forfait-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px var(--shadow); }
.forfait-card.featured:hover { transform: translateY(-12px); }

.forfait-name { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.5rem; }
.forfait-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.forfait-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.forfait-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--ink);
  line-height: 1;
}

.forfait-currency { font-size: 1.2rem; color: var(--text-muted); }
.forfait-saving { font-size: 0.75rem; color: var(--sage-dark); background: rgba(122, 158, 126, 0.1); padding: 0.2rem 0.5rem; margin-bottom: 1.5rem; display: inline-block; }

.forfait-features { list-style: none; margin-bottom: 2rem; }
.forfait-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.forfait-features li::before { content: '✓'; color: var(--sage); font-weight: 500; }

.btn-forfait {
  width: 100%;
  padding: 0.9rem;
  background: transparent;
  border: 1px solid var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--ink);
}

.btn-forfait:hover, .forfait-card.featured .btn-forfait {
  background: var(--ink);
  color: var(--warm-white);
}

/* Remboursement note */
.remboursement {
  padding: 3rem 6rem;
  background: var(--warm-white);
}

.remboursement-box {
  background: rgba(122, 158, 126, 0.08);
  border-left: 3px solid var(--sage);
  padding: 2rem 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.remboursement-icon { color: var(--sage); font-size: 1.5rem; flex-shrink: 0; margin-top: 0.2rem; }
.remboursement-box h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.remboursement-box p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 6rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  background: var(--warm-white);
}

.contact-info h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.contact-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(122, 158, 126, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.contact-detail-text span { font-size: 0.88rem; color: var(--ink); }

.horaires {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
}

.horaires h3 { font-size: 1rem; margin-bottom: 1rem; }

.horaire-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--beige);
  font-size: 0.82rem;
}

.horaire-row span:first-child { color: var(--text-muted); }
.horaire-row span:last-child { color: var(--ink); font-weight: 400; }
.horaire-closed { color: var(--text-muted) !important; font-style: italic; }

/* Contact Form */
.contact-form-wrapper {
  background: var(--cream);
  padding: 3rem;
}

.form-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }

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

label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

input, select, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--beige);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus { border-color: var(--sage); }
textarea { resize: vertical; min-height: 130px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--sage);
}

.form-check label {
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--ink);
  color: var(--warm-white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover { background: var(--sage-dark); }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}

.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.85rem; color: var(--text-muted); }

/* Map placeholder */
.map-section {
  height: 350px;
  background: linear-gradient(135deg, #d4dfd5 0%, #b5cbb7 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.1) 40px,
    rgba(255,255,255,0.1) 41px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.1) 40px,
    rgba(255,255,255,0.1) 41px
  );
}

.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--warm-white);
  padding: 1.5rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.map-pin-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.map-pin-address { font-size: 0.85rem; color: var(--ink); line-height: 1.6; }
.map-pin-cta {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-15px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 3rem 4rem; }
  .hero-right { height: 400px; }
  .hero-badge { display: none; }
  .about-strip { padding: 4rem 3rem; }
  .services-preview, .philosophy { padding: 5rem 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { padding: 5rem 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 4rem 3rem; }
  .footer { padding: 3rem 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 8rem 3rem 4rem; }
  .prestations-section, .forfaits-section { padding: 4rem 3rem; }
  .remboursement { padding: 2rem 3rem; }
  .contact-section { padding: 4rem 3rem; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-left { padding: 7rem 1.5rem 3rem; }
  .hero-credentials { gap: 1.5rem; }
  .about-strip { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .strip-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .services-preview, .philosophy, .testimonials, .cta-section { padding: 4rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-image { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .prestations-section, .forfaits-section { padding: 3rem 1.5rem; }
  .prestation-item { grid-template-columns: 1fr; gap: 1rem; }
  .prestation-number { display: none; }
  .prestation-price-box { text-align: left; }
  .prestation-book { justify-content: flex-start; }
  .forfaits-grid { grid-template-columns: 1fr; }
  .forfait-card.featured { transform: none; }
  .remboursement { padding: 2rem 1.5rem; }
  .contact-section { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 2rem 1.5rem; }
}
