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

:root {
  --peach:       #f2b89a;
  --peach-light: #f9ddd0;
  --peach-pale:  #fdf4ef;
  --green:       #3a7a3a;
  --green-mid:   #5a9e5a;
  --green-light: #c8e6c8;
  --orange:      #e8793a;
  --cream:       #fdf8f2;
  --warm:        #faf0e8;
  --text:        #2a3a2a;
  --mid:         #6b7a6b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ══ BACKGROUND MESH ══ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(242,184,154,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(200,230,200,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(242,184,154,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(90,158,90,0.08) 0%, transparent 40%),
    var(--cream);
}

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5%;
  background: rgba(253,248,242,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(242,184,154,0.25);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(58,122,58,0.08); }

.nav-brand {
  display: flex; align-items: center; gap: 0.7rem; text-decoration: none;
}
.nav-dove {
  font-size: 1.5rem;
  animation: floatDove 3s ease-in-out infinite;
}
@keyframes floatDove {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-4px) rotate(3deg); }
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--green); font-weight: 700;
}
.nav-brand-text span {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); font-weight: 400;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-rdv {
  background: var(--orange); color: #fff !important;
  padding: 0.5rem 1.3rem; border-radius: 2rem;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-rdv:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,121,58,0.35) !important;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--green); border-radius: 2px;
  transition: all 0.3s;
}

/* ══ HERO ══ */
#accueil {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5% 5%;
  position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: center; max-width: 1200px; width: 100%;
}
.hero-text { animation: fadeUp 0.9s ease both; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(58,122,58,0.08); border: 1px solid rgba(58,122,58,0.2);
  color: var(--green); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 1.5rem;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 1rem;
  color: var(--green);
}
.hero-text h1 .sub {
  display: block;
  font-style: italic; font-weight: 400;
  font-size: 0.72em; color: var(--peach);
  margin-top: 0.3rem;
}
.hero-tagline {
  font-size: 1.05rem; line-height: 1.8; color: var(--mid);
  max-width: 480px; margin-bottom: 2.2rem; font-weight: 400;
}
.hero-tagline strong { color: var(--green); font-weight: 600; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-main {
  background: var(--orange); color: #fff;
  padding: 0.9rem 2rem; border-radius: 3rem;
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232,121,58,0.35); }

.btn-ghost {
  border: 2px solid var(--green); color: var(--green);
  padding: 0.9rem 2rem; border-radius: 3rem;
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--green); color: #fff; }

.hero-contact-alt {
  margin-top: 2rem; margin-bottom: 4.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  align-items: flex-start;
}
.hero-contact-label {
  font-size: 0.85rem; color: var(--mid); opacity: 0.8;
  font-weight: 500;
}
.hero-contact-links { display: flex; gap: 1.8rem; }
.hero-contact-link {
  color: var(--text); text-decoration: none;
  font-size: 0.95rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.hero-contact-link svg { color: var(--green); opacity: 0.7; }
.hero-contact-link:hover { color: var(--green); }
.hero-contact-link:hover svg { opacity: 1; }

.hero-values { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-value {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--mid); font-weight: 500;
}
.hero-value::before { content: '🌿'; font-size: 0.9rem; }

/* Dove visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1.2s ease both 0.3s;
}
.dove-bg {
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(242,184,154,0.35) 0%, rgba(200,230,200,0.2) 60%, transparent 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dove-svg {
  font-size: 11rem;
  filter: drop-shadow(0 8px 32px rgba(242,184,154,0.6));
  animation: floatDove 4s ease-in-out infinite;
}
.dove-ring {
  position: absolute; inset: -10px; border-radius: 50%;
  border: 1.5px dashed rgba(58,122,58,0.2);
  animation: spin 20s linear infinite;
}
.dove-ring-2 {
  position: absolute; inset: 20px; border-radius: 50%;
  border: 1px solid rgba(242,184,154,0.3);
  animation: spin 15s linear infinite reverse;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.float-badge {
  position: absolute; background: #fff; border-radius: 1rem;
  padding: 0.8rem 1.2rem; box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  display: flex; align-items: center; gap: 0.7rem;
  animation: floatBadge 3.5s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.float-badge-1 { bottom: 2rem; left: -2rem; animation-delay: 0s; }
.float-badge-2 { top: 2rem; right: -1.5rem; animation-delay: 1.5s; }
.badge-ico { font-size: 1.4rem; }
.badge-info strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.badge-info span { font-size: 0.72rem; color: var(--mid); }

/* ══ SECTIONS BASE ══ */
section { padding: 6rem 5%; }
.section-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(58,122,58,0.08); color: var(--green);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2rem;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--green);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--orange); font-weight: 400; }

/* ══ KINÉSIOLOGIE ══ */
#kinesiologie { background: #fff; }
.kine-header { max-width: 800px; margin: 0 auto 4rem; text-align: center; }
.kine-intro { color: var(--mid); line-height: 1.85; font-size: 1.05rem; margin-bottom: 1.5rem; }
.kine-intro strong { color: var(--green); font-weight: 600; }
.kine-how { max-width: 1000px; margin: 0 auto; }
.kine-subtitle { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green); text-align: center; margin-bottom: 1rem; }
.kine-how-intro { text-align: center; color: var(--mid); margin-bottom: 3rem; font-size: 1rem; }
.kine-how-intro strong { color: var(--green); font-weight: 600; }
.kine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.kine-step { background: var(--warm); padding: 2.5rem 2rem; border-radius: 1.5rem; text-align: center; border: 1.5px solid rgba(242,184,154,0.3); transition: transform 0.25s, box-shadow 0.25s; }
.kine-step:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(232,121,58,0.1); }
.kine-step-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.kine-step h4 { color: var(--green); font-weight: 700; margin-bottom: 0.8rem; font-size: 1.1rem; }
.kine-step p { color: var(--mid); font-size: 0.9rem; line-height: 1.6; }

/* ══ SERVICES ══ */
#services { background: var(--warm); }
.services-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 3rem;
}
.services-top p { color: var(--mid); line-height: 1.85; font-size: 0.95rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.svc {
  background: #fff; border-radius: 1.4rem; padding: 2rem;
  border: 1.5px solid rgba(242,184,154,0.3);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(58,122,58,0.1);
  border-color: rgba(58,122,58,0.25);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 1rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--peach-light), rgba(200,230,200,0.4));
}
.svc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--green);
  margin-bottom: 0.4rem;
}
.svc-body p { font-size: 0.86rem; line-height: 1.7; color: var(--mid); }

/* ══ À PROPOS ══ */
#apropos {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem; align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.apropos-visual {
  position: relative;
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
.apropos-card {
  background: linear-gradient(150deg, var(--peach-light) 0%, rgba(200,230,200,0.3) 100%);
  border-radius: 2rem; aspect-ratio: 70/86;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1.5px solid rgba(242,184,154,0.4);
  position: relative; overflow: hidden;
}
.apropos-card::before {
  content: '🕊️';
  position: absolute; font-size: 8rem; opacity: 0.12;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.apropos-card .placeholder-text {
  font-family: 'Playfair Display', serif;
  color: var(--green); opacity: 0.5; font-size: 0.85rem;
  letter-spacing: 0.06em; z-index: 1;
}
.apropos-card .placeholder-sub {
  font-size: 0.75rem; color: var(--mid); opacity: 0.6; margin-top: 0.4rem; z-index: 1;
}
.apropos-deco {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--peach-light); opacity: 0.5; z-index: -1;
}
.apropos-text p { color: var(--mid); line-height: 1.9; font-size: 0.95rem; margin-bottom: 1.1rem; }
.apropos-text p strong { color: var(--green); font-weight: 600; }
.certifs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.certif {
  background: rgba(58,122,58,0.08);
  border: 1px solid rgba(58,122,58,0.18);
  color: var(--green); font-size: 0.77rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 2rem; letter-spacing: 0.03em;
}
.values-strip {
  margin-top: 2rem; padding: 1.2rem 1.5rem;
  background: linear-gradient(90deg, rgba(242,184,154,0.2), rgba(200,230,200,0.2));
  border-radius: 1rem; border-left: 3px solid var(--orange);
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.05rem; color: var(--green);
  letter-spacing: 0.02em;
}

/* ══ TARIFS ══ */
#tarifs {
  background: linear-gradient(160deg, var(--green) 0%, #2a5a2a 100%);
  color: #fff; position: relative; overflow: hidden;
}
#tarifs::before {
  content: '🕊️';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 18rem; opacity: 0.04; pointer-events: none;
}
#tarifs .section-chip { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
#tarifs .section-title { color: #fff; }
#tarifs .section-title em { color: var(--peach); }
.tarifs-sub { color: rgba(255,255,255,0.6); margin-bottom: 3rem; max-width: 500px; line-height: 1.8; }
.tarifs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.tarif {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 1.3rem;
  padding: 1.8rem 1.5rem;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.tarif:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.tarif.pack { background: var(--peach-pale); }
.tarif.featured { background: var(--peach-light); border: 2px solid var(--peach); }
.tarif-discount { font-size: 0.85rem; text-decoration: line-through; color: var(--mid); opacity: 0.8; margin-top: 0.5rem; }
.tarif-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin-bottom: 0.7rem;
}
.tarif-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--green); margin-bottom: 0.3rem;
}
.tarif-duration { font-size: 0.78rem; color: var(--mid); margin-bottom: 1.3rem; }
.tarif-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--orange); line-height: 1;
}
.tarif-price sup { font-size: 1rem; vertical-align: super; }
.tarif-note { margin-top: 2.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.7; }

/* ══ FAQ ══ */
#faq { background: var(--peach-pale); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.faq-left .section-title { margin-bottom: 1rem; }
.faq-left p { color: var(--mid); line-height: 1.8; font-size: 0.93rem; }
.faq-left .dove-deco { font-size: 5rem; margin-top: 2rem; opacity: 0.5; }
details.faq-item { border-bottom: 1px solid rgba(58,122,58,0.15); padding: 1.2rem 0; }
summary.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 0.93rem; color: var(--text);
  list-style: none; gap: 1rem;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::marker { display: none; }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--green);
  transition: transform 0.25s, background 0.25s;
  line-height: 1;
}
details[open] .faq-toggle { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { font-size: 0.88rem; color: var(--mid); line-height: 1.8; padding: 0.8rem 2.5rem 0 0; }

/* ══ RDV BANNER ══ */
.rdv-banner {
  background: linear-gradient(135deg, var(--orange), #d4622a);
  padding: 4rem 5%; text-align: center; color: #fff;
}
.rdv-banner .dove {
  font-size: 3rem; display: block; margin-bottom: 0.8rem;
  animation: floatDove 3s ease-in-out infinite;
}
.rdv-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  margin-bottom: 0.6rem;
}
.rdv-banner p { opacity: 0.8; margin-bottom: 2rem; font-size: 0.97rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff; color: var(--orange);
  padding: 0.95rem 2.4rem; border-radius: 3rem;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }
.rdv-insta {
  margin-top: 1.5rem; font-size: 0.88rem; opacity: 0.75;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}

/* ══ CONTACT ══ */
#contact { background: var(--warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; }
.contact-left p { color: var(--mid); line-height: 1.85; margin-bottom: 2rem; font-size: 0.95rem; }
.infos { display: flex; flex-direction: column; gap: 1.1rem; }
.info-row { display: flex; align-items: flex-start; gap: 1rem; }
.info-ico {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--peach-light), rgba(200,230,200,0.4));
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.info-text strong {
  display: block; font-size: 0.76rem; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 0.15rem;
}
.info-text span { font-size: 0.9rem; color: var(--mid); }
.info-text a { color: var(--mid); text-decoration: none; }
.info-text a:hover { color: var(--green); }

.contact-form {
  background: #fff; border-radius: 1.6rem; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(58,122,58,0.07);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--green); margin-bottom: 1.5rem; font-weight: 700;
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.fg label {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--green);
}
.fg input, .fg textarea, .fg select {
  border: 1.5px solid rgba(58,122,58,0.18); border-radius: 0.7rem;
  padding: 0.75rem 1rem; font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--cream); outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 3px rgba(58,122,58,0.08);
}
.fg textarea { resize: vertical; min-height: 100px; }
.btn-send {
  width: 100%; background: var(--orange); color: #fff;
  padding: 1rem; border-radius: 3rem; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.03em; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,121,58,0.35); }
.btn-send:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ══ FOOTER ══ */
footer {
  background: var(--text); color: rgba(255,255,255,0.45);
  padding: 2rem 5%; font-size: 0.8rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
footer a:hover { color: var(--peach); }
.footer-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: rgba(255,255,255,0.7); font-weight: 700;
}
.footer-brand img {
  background: #fff; border-radius: 50%; padding: 3px;
}

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

/* ══ FORM SUCCESS ══ */
.form-success {
  text-align: center; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.form-success-icon { font-size: 3rem; }
.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--green); font-weight: 700;
}
.form-success-msg { color: var(--mid); font-size: 0.93rem; line-height: 1.7; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns, .hero-values, .hero-contact-alt, .hero-contact-links { justify-content: center; align-items: center; }
  .hero-visual { display: none; }
  .kine-grid { grid-template-columns: 1fr; }
  .services-top { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  #apropos { grid-template-columns: 1fr; gap: 3rem; }
  .apropos-visual { margin: 0 auto; }
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* Mobile menu background overlay */
  body::after {
    content: ''; position: fixed; inset: 0;
    background: rgba(26, 38, 26, 0.4); backdrop-filter: blur(6px);
    z-index: 98; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  body.menu-open::after {
    opacity: 1; pointer-events: auto;
  }

  /* Drawer menu */
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: -100%;
    width: 85%; max-width: 350px; height: 100vh;
    background: var(--cream);
    padding: 100px 2rem 3rem;
    gap: 0; z-index: 99;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto; align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  
  /* Big tappable links */
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a { 
    display: block; width: 100%;
    font-size: 1.25rem; color: var(--text); font-weight: 600;
    padding: 1.2rem 0; border-bottom: 1px solid rgba(58,122,58,0.1);
  }
  .nav-links a.nav-rdv {
    margin-top: 1.5rem; text-align: center;
    border-bottom: none; border-radius: 3rem;
    padding: 1rem; font-size: 1.1rem;
  }

  /* Hamburger to X animation */
  .nav-toggle { display: flex; z-index: 100; position: relative; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg); background: var(--text);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); background: var(--text);
  }
}
@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
